VBRK-ZUKRI = ZUK. ENDFORM. 如果新增一行对工厂的限制(ZUK-WERKS = LIPS-WERKS),那么不同的工厂也要开出不同的发票。 2 、阻止拆分 为了阻止拆分,可以将影响拆分的字段设置成相同的内容。例如,两个含有不同装运条件的交货单将被拆分开票,因为装运条件被拷贝到了发票抬头(VBRK)中。如果这个字段被清空了,那...
一、根据Billing的字段项目进行分拆 在sap的标准系统中,系统会比较VBRK表的所有字段(也包含复制拆分组合标准字段ZUKRI),只有这些字段完全相同才不会被拆分。如果有一个不同,系统就会自动拆分Billing. 大家可以参见下列代码: FORM XVBRK_BEARBEITEN. XVBRK = VBRK. RC = 4. OVBRK-FIX-ERZET = VBRK-ERZET. IF ...
PSTYV LIKE VBAP-PSTYV, <- New line END OF ZUK. ZUK-SPART = VBAK-SPART. ZUK-VTWEG = VBAK-VTWEG. ZUK-PSTYV = VBAP-PSTYV. <- New line VBRK-ZUKRI = ZUK. ENDFORM. 这样发票就可以根据项目类别分开开具发票,用户的其他需求可以参照该方式配置完成。 关于SAP SD中怎么配置发票分割开票就...
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...
VBRK-ZUKRI = ZUK. *** A D D I T I O N A L C O D E * *** here i need the code to written ENDIF. *} INSERT ENDFORM. Reply Former Member In response to Former Member 2007 Jul 08 10:59 AM 0 Kudos 124 SAP Managed Tags: ABAP Development Hi Bijender, Yes I ...
vbrk-zukri = zuk. ie: it is populating the field ZUKRI in VBRK. routing 011 sets: vbrk-fkdat = sy-datum. Think that routine is called from include LV60AA95 in this coding cpymodul-nr = tvcpf-grurp. perform (cpymodul) in program sapfv60c. and TVCPF-GRURP is the VOFM routine....
SAP销售与分销实施指南 第7章 开票
I checked VBRK-ZUKRI, and found the information for these 2 billing document is "700+delivery note number", and 700 in VTFL is "Inv.Split (Rec/Div)". Then I checked the header information for delivery notes of these 2 billing document, they are almost the same (same Pay...
During billing the data from the reference document flows and comes and sits in ZUKRI field in the Invoice Header. In your copy control routines at header and item levels (Transaction VTFL), you can code to clear the values on EIKP-EXNUM. By doing this, you will be able to create a...
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 ...