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 giving problems

Former Member
0 Likes
713

Hi all,

I have a problem with my BDC, I am using a CALL transaction to update few fields. When I do a Call transaction using 'A'(all screen mode) the values which I am passing are getting updated.But when I do the same thing using 'N'(No screen mode) the values are not getting updated.

Please help me with this.

Thanks

JM

Hi all,

I have a problem with my BDC, I am using a CALL transaction to update few fields. When I do a Call transaction using 'A'(all screen mode) the values which I am passing are getting updated.But when I do the same thing using 'N'(No screen mode) the values are not getting updated.

Please help me with this.

Thanks

JM

4 REPLIES 4
Read only

Former Member
0 Likes
679

Please change the mode to 'E'.

Read only

0 Likes
679

uses NOBINPT = 'X' its work.

eg.

DATA : opt LIKE ctu_params .

opt-nobinpt = 'X' .

opt-dismode = mode1.

CALL TRANSACTION tcode USING bdcdata OPTIONS FROM opt

Read only

Former Member
0 Likes
679

Hi

Try using the ctu param structure in call transaction statement.

DATA opt TYPE ctu_params.

opt-UPDMODE = 'N'.

opt-RACOMMIT = 'X'.

CALL TRANSACTION 'TCODE' USING bdcdata_tab OPTIONS FROM opt.

If this solves your issue rewards the points,

With Regards,

Dwarakanath.S

Read only

Former Member
0 Likes
679

Hi,

What is the exact error message that you are getting when you run your program in 'N' mode?

Rgds,

sandeep