2008 Jul 30 6:23 AM
Hi All,
i want to create a delivery order (vl01n) through bdc with text like truck number,transport number.how can i insert text to these field .
Hi All,
i want to create a delivery order (vl01n) through bdc with text like truck number,transport number.how can i insert text to these field .
2008 Jul 30 6:28 AM
after creating delivery from BDC.
you can use function module
SAVE_TEXTSAPscript: Save text
The function module writes a text module to the text file or text memory, depending on the specific text object.
The module can be used to change existing texts and to create new texts. If it is clear that it is a new text, this can be specified via the parameter INSERT. The result is better performance as a test read is not performed.CALL FUNCTION 'SAVE_TEXT'
EXPORTING
header = text_header
TABLES
lines = text_lines.
ENDIF.
CALL FUNCTION 'COMMIT_TEXT'."after save_text it is mandatory for commit workAmit.
2008 Jul 30 6:30 AM
2008 Jul 30 6:33 AM
hi,
what are the input parameters to be given to save_text function.
2008 Jul 30 6:34 AM
Hi,
if you did recording for Tcode VL01 n, then your client team wont accept that.
First check out , you cannot Record VL01n t code, as i t is enjoy Transaction. You hav to go for BAPI.
Revrt back,
regards,
Naveen
2008 Jul 30 6:34 AM
hi,
Use SAVE_TEXT FM.
http://help.sap.com/saphelp_40b/helpdata/en/d6/0db8ef494511d182b70000e829fbfe/content.htm
Regards
Sumit Agarwal
2008 Jul 30 6:39 AM
Hi All,
can u please tell me the BAPI that can be used to create delivery order with text fields(like truck no ...).