‎2007 Jun 19 7:19 AM
Hi all,
I have one Question
i am doing a data transfer in one laptop which has less resolution
i am recording a table control and i got only 5 table lines to record
but i need to test in PC which has more resolution than Lap top
here i am getting 10 lines
it is showing error like : NO Batch Input for screen available
can any one please help me
Thanks & regards,
Sri
‎2007 Jun 19 7:26 AM
Hi,
See below code :
data: f_option type ctu_params,
f_option-updmode = 'S'.
f_option-defsize = 'X'.
f_option-dismode = 'N'.
call transaction 'VA01' using bdcdata options from f_option messages into bdcerror.
Regards
‎2007 Jun 19 7:25 AM
Hi,
For Screen Resolution we use the CTU_PARAMS,
look at the below for an example program
http://www.sap-img.com/ab001.htm
Here is the Example Program for Table Control
http://www.sap-basis-abap.com/abap/handling-table-control-in-bdc.htm
data: i_ctu type ctu_params,
initialization.
i_ctu-dismode = 'A'.
i_ctu-updmode = 'S'.
i_ctu-cattmode = ' '.
i_ctu-defsize = 'X'. " Screen Resolution Option
i_ctu-nobinpt = 'X'.
CALL TRANSACTION 'KE21N'
USING IT_BDCDATA
MODE 'A'
UPDATE 'S'
MESSAGES INTO I_BDCMSGCOLL
OPTIONS FROM I_CTU. " Here you need to give the Screen ResolutionRegards
Sudheer
‎2007 Jun 19 7:26 AM
Hi,
See below code :
data: f_option type ctu_params,
f_option-updmode = 'S'.
f_option-defsize = 'X'.
f_option-dismode = 'N'.
call transaction 'VA01' using bdcdata options from f_option messages into bdcerror.
Regards