‎2007 Jun 04 9:48 AM
hi guru how to do screen resolution in session method.
please tell me.
regards
subhasis
‎2007 Jun 04 9:50 AM
Use CTU_PARAMS addition in the BDC.
See the help on the same.
Regards,
Atish
‎2007 Jun 04 9:55 AM
hi i think ctu_parameters is only for call tr. method.
regards
subhasis.
‎2007 Jun 04 10:08 AM
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
‎2007 Jun 04 9:55 AM
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
‎2007 Jun 04 10:08 AM
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!!