Application Development 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: 

Screen Resolution in table control bdc

Former Member
0 Kudos

Hi ,

Im working on bdc table control using call transaction method for vk11 and mek1.While uploading data for vk11 for the first time it is taking all the records of the input file and if i do the same for the second time by changing the amount value it is taking only 24 records .(i.e if the input file contains only 24 records it wil update else if it has 25 records or more it not updating even single record and it is showing error " No batch input data for screen sapmv13A ..)...this issue is with the production server......................whereas in development and quality servers there is no problem....................

what migh be the problem and how to solve it?

can anyone plz help me on this

3 REPLIES 3

kesavadas_thekkillath
Active Contributor
0 Kudos

if its a problem in screen resolution then while recording through SHDB mark the check box default size

or

to make the bdc execute in standard screen size check the code below

data x_ctuparams type ctu_params.

x_ctuparams-defsize = 'X'. " This would freeze the resolution in any system

x_ctuparams-dismode = 'N'.

x_ctuparams-updmode = 'S'.

call transaction <TCODE> using it_bdcdata options from x_ctuparams.

So whatever is the screen size of the users front-end, the BDC will execute in standard screen size

0 Kudos

Hi ,

i have done whatever you have mentioned but still i couldnt solve the issue.

what may be the problem?

kesavadas_thekkillath
Active Contributor
0 Kudos

As you mentioned that there is no problem in QA and PRD servers, im not bale to know the exact problem.

Instead of BDC you can try

BAPI - BAPI_PRICES_CONDITIONS

Function modules

RV_CONDITION_RESET

RV_CONDITION_COPY

RV_CONDITION_SAVE