Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

how to use the Function module BDM_DISPUTE_NOTES_GET

Former Member
0 Kudos
462

i have to use the FM BDM_DISPUTE_NOTES_GET to ET_NOTES

CALL FUNCTION 'BDM_DISPUTE_NOTES_GET'

EXPORTING

im_guid =

  • IMPORTING

  • ES_RETURN =

ET_NOTES = V_STRING.

V_STRING type ???????(i want this)

my output will be a paragraph of 4 lines.

what should be the data type of the V_STRING, i am getting type conflict error

.

2 REPLIES 2
Read only

ferry_lianto
Active Contributor
0 Kudos
376

Hi,

Please try this.


DATA:  V_STRING TYPE TABLE OF BDM_NOTES.

Regards,

Ferry Lianto

Read only

Former Member
0 Kudos
376

Hi,

Declare it in the following way ..

i.e,

data : V_STRING LIKE BDM_T_NOTES.