Hello All,
I am trying to set the delivery text for the PR line item using BADI ME_PROCESS_REQ_CUST
I m using method PROCESS_ITEM.
Below is the code that i am using:-
wa_text-tdobject = ' '.
wa_text-tdid = 'B03'.
wa_text-tdformat = '*'.
wa_text-tdline = 'Text from BAPI'.
APPEND wa_text TO lt_text.
DATA: lv_tdid TYPE tdid.
lv_tdid = 'B03'.
CALL METHOD im_item->if_longtexts_mm~set_text
EXPORTING
im_tdid = lv_tdid
im_textlines = lt_text.
But i am not able to set the text.
<<removed_by_moderator>>
Thanks & Regards,
Tarun
Edited by: Vijay Babu Dudla on Jun 26, 2009 1:12 AM