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

bdc (call transaction method)

Former Member
0 Likes
536

hi, i got problem in bdc program  in call transaction method.I am maping itab records into it_bdcdata .call transaction 'tcode' ,bdcdata,mode,update,msgis given.error is not there.but the updated records are not present in DB table in abao dictionary?

4 REPLIES 4
Read only

vinoth_aruldass
Contributor
0 Likes
499

hi,

first change the mode to A 'All screen Mode' and see what happens.

dont forget to refresh bdcdata inside the loop.

hope it helps,

Vinoth

Read only

koolspy_ultimate
Active Contributor
0 Likes
499

Hi,

If possible post your code here.

Also try using mode 'A' and check where the records are displaying as required.

Syntax: call transaction 'TCODE' using it_bdcdata mode 'A' update 'S'.

Regards,

Madhumahesh.

Read only

Former Member
0 Likes
499

Hello,

Please provide your code as its difficult to understand where exactly is the issue.

Also as others suggested, try to debug your code in Mode 'A' to see where is the issue.

Regards,

Deepti

Read only

Former Member
0 Likes
499

Hi Sree,

Whatever mode you are using, just put a breakpoint after following Statement and see if any 'E' type message appears in 'messtab'.

CALL TRANSACTION tcode USING bdcdata

                   MODE   var

                   UPDATE update

                   MESSAGES INTO messtab.

You will get the error. Error might be for the format in which data is provided.

Regards,

Dipesh