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

screen resolution problem in BDC

Former Member
0 Likes
425

in BDC screen resolution problem occurs ,

what is the solution for that one ?

2 REPLIES 2
Read only

Former Member
0 Likes
359

Hi,

1. Pass CTUPARAMS to FM BDC_INSERT.

2. While recording set the screen to default size through SHDB.

3. Or press ALT + F12 and select defauklt screen option.

Reward if useful!

Read only

Former Member
0 Likes
359

Hi Nagaraju,

To make the screen resoultion size fixed in call transaction use the structure called CTU_PARAMS

Data : zopt like ctu_params.

zopt-dismode = 'e'.

zopt-updmode = 'a'.

zopt-cattmode = ' ' .

zopt-defsize = 'x'. [this make the size fixed]

zopt-racommit = 'x'.

call transaction "XDO1' using bdcdata

options from zopt.

try this ......

Regards...

Balaji ( Reward points if its useful.....)