‎2007 Jun 29 7:02 AM
in BDC screen resolution problem occurs ,
what is the solution for that one ?
‎2007 Jun 29 7:59 AM
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!
‎2007 Jun 29 8:06 AM
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.....)