‎2008 May 23 7:40 AM
hi experts,
Does any one have a sample code for the BADI_SD_DOCUMENTFLOW.
Method is ADD_SUBSEQUENT_DOCUMENT.
Thanks,
Krishnakumar
‎2008 May 23 7:46 AM
Hi,
SAP has provide example code for each BADI.
There u can find expamle code for each method. check in SE18 example implementations.
By
Gupta.
‎2008 May 23 7:46 AM
Hi,
SAP has provide example code for each BADI.
There u can find expamle code for each method. check in SE18 example implementations.
By
Gupta.
‎2008 May 23 7:47 AM
‎2008 May 23 7:58 AM
Hi,
goto SE18 enter BADI name goto ->Enhancement Implementaion in menu bar-> click overview.
their u will get list of implementions.
ex implementation names are :
BOS_BADI_SD_DOCFLOW,
ISUWA_SD_DOCUMENT
or goto SE19 enter above names in implementation names u will get .
By
Gupta..........
‎2008 May 23 8:00 AM
hi gupta,
is this implementation has a sample code for the method add_subsequent document.
If so can you please copy and paste the code.
Thanks,
Krishna
‎2008 May 23 8:38 AM
Hi Krishna Kumar,
As the BADI BADI_SD_DOCUMENTFLOW Is for SAP internal use u can't implement the BADI.
Regards
Kiran Sure
‎2008 May 23 9:21 AM
Hi,
METHOD if_ex_badi_sd_documentflow~add_subsequent_document .
CLASS cl_isu_wa_sd_int_common DEFINITION LOAD.
Überprüfung nur bei SD-Kontrakten
CHECK f_vbtyp = 'G'.
CALL METHOD cl_isu_wa_sd_int_common=>add_subsequent_document
EXPORTING
f_xvbfa = f_xvbfa
f_beleg = f_beleg
f_position = f_position
f_vbtyp = f_vbtyp
f_stufe = f_stufe
CHANGING
f_nachfolger = f_vbfa_tab
f_nach_index = f_vbfa_index.
ENDMETHOD.
tell me what is your requirment, so that we can try accordingly......
by
Gupta