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

BDCdata not uploading

Former Member
0 Likes
828

In Function Module i am using BDC its appending data in

BDCDATA succefully but when i call Trasaction .. my screen is blank..

way..

here is my code..

data l_mode.

l_mode = 'N'.

CALL TRANSACTION 'XD01' USING bdcdata3

MODE l_mode

UPDATE 'S'

MESSAGES INTO messtab.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
790

Hi,

Please make the Mode as 'A' while running the program in debugging mode and check if the values are coming properly to the XD01 screen. Correct the errors if you get any.

Regards,

Nadim

5 REPLIES 5
Read only

Former Member
0 Likes
791

Hi,

Please make the Mode as 'A' while running the program in debugging mode and check if the values are coming properly to the XD01 screen. Correct the errors if you get any.

Regards,

Nadim

Read only

vinod_vemuru2
Active Contributor
0 Likes
790

Hi Jim,

How u declared ur internal table bdcdata3?

If u declared with header line then pass it like this.

CALL TRANSACTION 'XD01' USING bdcdata3[]

MODE l_mode

UPDATE 'S'

MESSAGES INTO messtab.

Also put a break point at call transaction statement and change l_mode value from N to A and check whether values are getting populated or not.

Thanks,

Vinod.

Read only

Former Member
0 Likes
790

yes i am Using Mode 'A' in Debuging.. and this is my Custmize

bdc data.. i.e bdcdata3.. and its successfully appending all values includeing Fnam and Fval.

any other clue.?

Read only

0 Likes
790

Hi Jim,

Then there must be problem with populating BDC data. If the bdc data is not in same order as it is in recording it wont work. Compare your coding(Population of BDCDATA 3 table) with your recording. I don't think there is any other problem.

Also paste ur code so that if it is identifiable then we may help u out.

Thanks,

Vinod.

Read only

Former Member
0 Likes
790

hi....

just check the screen number and also see if you are passing the values properly in the field .

the name of the fields in which you are passing the values should not be in inverted colons.

just check the screen numbers as well.

and debug in 'A' mode to check if BDC is running properly or not.