VBRK-ZUKRI = ZUK. ENDFORM. 如果新增一行对工厂的限制(ZUK-WERKS = LIPS-WERKS),那么不同的工厂也要开出不同的发票。 2 、阻止拆分 为了阻止拆分,可以将影响拆分的字段设置成相同的内容。例如,两个含有不同装运条件的交货单将被拆分开票,因为装运条件被拷贝到了发票抬头(VBRK)中。如果这个字段被清空了,那...
一、根据Billing的字段项目进行分拆 在sap的标准系统中,系统会比较VBRK表的所有字段(也包含复制拆分组合标准字段ZUKRI),只有这些字段完全相同才不会被拆分。如果有一个不同,系统就会自动拆分Billing. 大家可以参见下列代码: AI检测代码解析 FORM XVBRK_BEARBEITEN. XVBRK = VBRK. RC = 4. OVBRK-FIX-ERZET = VB...
VBRK-ZUKRI = ZUK. ENDFORM. 5、让ABAP根据下面代码修改001公式(代码修改部分用红色标示) FORM DATEN_KOPIEREN_001. * Header data * VBRK-xxxxx = ... * Item data * VBRP-xxxxx = ... * Additional split criteria DATA: BEGIN OF ZUK, MODUL(3) VALUE '001', VTWEG LIKE VBAK-VTWEG, SPART L...
SAP销售与分销实施指南 第7章 开票
I am sure, we are passing something incorrectly to vbrk-zukri = zuk. Can you explain if we need pass something to ZUK so that we can get only 3 line items per Invoice? Any suggestions will be appreciated ! Best Regards, NKCReply 1...
DATA: BEGIN OF ZUK, MODUL(3) VALUE '001', VTWEG LIKE VBAK-VTWEG, SPART LIKE VBAK-SPART, END OF ZUK. ZUK-SPART = VBAK-SPART. ZUK-VTWEG = VBAK-VTWEG. VBRK-ZUKRI = ZUK. ENDFORM. This is how it should look after modification: * Header data * VBRK-xxxxx = ...
Please check in VBRK table wheather ZUKRI feild is getting updated or not.If it is getting updated then it is working fine. Regards Srinath former_member217082 Active Contributor 2011 Sep 27 0 Kudos Hi If you want to split the billing document based on the line items,its better to...
Check your billing copy control routines and the specification of the ZUKRI values. Also check any other fields which would cause the comparision to split: sold-to/payer, region, assignment, address number, etc. Reply Former Member In response to brad_bohn 2011 Mar 14 7:16 AM 0 ...
the routine will be added in the field VBRK/VBRP field check in that routine if the split is happening based on any new field other than standard check in the VBRP-ZUKRI field as well if any value triggered hope it is useful regards, santosh You must be a registered user to add a co...