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 issue - BDC Grid

Former Member
0 Kudos

Hi All,

I am facing an issue with BDC for PRMM transaction.

If we look at the PRMM transaction, the very first screen consist of GRid forAction type.

The records in the grid of PRMM transaction is changing as per the screen resolution of User desktop.

Example: In my screen, I am able to see 16 rows in Grid and in user desktop i can see 10 or 20 rows. Because of this the Pagedown option and BDC is not behaving properly.

Please suggest what should be done to resolve it.

Thanks,

Shilpa

1 ACCEPTED SOLUTION

kesavadas_thekkillath
Active Contributor
0 Kudos

while doing the recording in shdb .. mark the check box default size

3 REPLIES 3

Former Member
0 Kudos

Hello,

Make use of the CTU_PARAMS parameter of the CALL TRANSACTION statement to set the default screen size as 'X' . This will make the BDC independent of the screen resolution

Vikranth

kesavadas_thekkillath
Active Contributor
0 Kudos

while doing the recording in shdb .. mark the check box default size

Former Member
0 Kudos

Hi Shilpa,

during recording from SHDB, use check box for Default Size.

in call transaction syntax: use

data: wa_opt type ctu_params.

wa_opt-dismode = w_mode. [N OR A OR E]

wa_opt-defsize = c_check.[X]

wa_opt-updmode = 'A'.

CALL TRANSACTION c_me41 USING i_bdcdata

OPTIONS FROM wa_opt [INSTEAD OF HARD CODING MODE]

MESSAGES INTO i_msgcoll.

Hope this can solve your problems.

Regards,

Tutun