Application Development 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: 

how to use the Function module BDM_DISPUTE_NOTES_GET

Former Member
0 Kudos

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

ferry_lianto
Active Contributor
0 Kudos

Hi,

Please try this.


DATA:  V_STRING TYPE TABLE OF BDM_NOTES.

Regards,

Ferry Lianto

Former Member
0 Kudos

Hi,

Declare it in the following way ..

i.e,

data : V_STRING LIKE BDM_T_NOTES.