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

resolution

Former Member
0 Likes
371

hi all,

friends can anyone explain the concept of resolution in bdc.,... why we use the ctu_params in bdc... it would be very useful if anyone can explain me with an example.

regards,

karthi.

1 ACCEPTED SOLUTION
Read only

varma_narayana
Active Contributor
0 Likes
346

Hi

We have to Set the Resolution of Screen when we populate the Data to Table control.

We have to use the Attribute called DEFAULTSIZE in CTUPARAMS in this case.

while using CALL TRANSACTION ...we can declare a structure with type CTUPARAMS....and set the DEFAULT SIZE ....By doing so...the screen resolution becomes 10.no matter where u r executing the program.

And so we can write as....

CALL TRANSACTION 'VK11' OPTIONS FROM S_CTUPARAMS.

We can handle this in Session method also.

If you check the FM BDC_INSERT there is a parameter

CTUPARAMS LIKE CTU_PARAMS which can be used to fill the Default size.

<b>Reward if Helpful</b>

1 REPLY 1
Read only

varma_narayana
Active Contributor
0 Likes
347

Hi

We have to Set the Resolution of Screen when we populate the Data to Table control.

We have to use the Attribute called DEFAULTSIZE in CTUPARAMS in this case.

while using CALL TRANSACTION ...we can declare a structure with type CTUPARAMS....and set the DEFAULT SIZE ....By doing so...the screen resolution becomes 10.no matter where u r executing the program.

And so we can write as....

CALL TRANSACTION 'VK11' OPTIONS FROM S_CTUPARAMS.

We can handle this in Session method also.

If you check the FM BDC_INSERT there is a parameter

CTUPARAMS LIKE CTU_PARAMS which can be used to fill the Default size.

<b>Reward if Helpful</b>