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

how to do screen resolution in session method

Former Member
0 Likes
720

hi guru how to do screen resolution in session method.

please tell me.

regards

subhasis

5 REPLIES 5
Read only

Former Member
0 Likes
695

Use CTU_PARAMS addition in the BDC.

See the help on the same.

Regards,

Atish

Read only

0 Likes
695

hi i think ctu_parameters is only for call tr. method.

regards

subhasis.

Read only

0 Likes
695

Hi Subhasis,

From ECC 5 or ECC 6 it can be used in both CALL Transaction and Session Method.

Just check help on it.

Reward points if useful.

Regards,

Atish

Read only

Former Member
0 Likes
695

Hi

Check the below links for the same.

You wil get the answer

https://www.sdn.sap.com/irj/sdn/forums

Mark if helpful

Regards

Tushar Mundlik

Read only

Former Member
0 Likes
695

Sometime back this is refered in SDN :

Check table <i>CTU_PARAMS</i> and field <i>DEFSIZE</i> for setting fixed line of table control.

CALL TRANSACTION 'VA01' USING it_bdcdata

OPTIONS FROM OPT

MESSAGES INTO it_mesg.

opt of type ctu_params.

WA_CTU_PARAMS-DISMODE = 'N'. "no screen mode

WA_CTU_PARAMS-UPDMODE = 'S'. "synchronus update

WA_CTU_PARAMS-NOBINPT = 'X'.

WA_CTU_PARAMS-NOBIEND = 'X'.

WA_CTU_PARAMS-DEFSIZE = 'X'. "Default size

Default size will play good role in terms of resoultion. in one system in table control you can see 10rows, but in others system it will show 20 records. it depends on resoultion. but when you set the default size then it will take same (default screen size) in all the systems when you run BDC.

Thanks!!