Application Development and Automation 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: 
Read only

bdc program issue

Former Member
0 Likes
640

after upgrade , one of my upload program which use BDC recoding only work on resolution 1280 --1024 , if i change the resulution program showing error. any idea?? is bdc have any relation with screen resulution if yes how to resolve it???

4 REPLIES 4
Read only

GauthamV
Active Contributor
0 Likes
605

Plz SEARCH in SCN before posting.

Use CTU_PARAMS structure.

Read only

nirajgadre
Active Contributor
0 Likes
605

Hi,

if in your BDC if you are populating the table control field then yes based on the resolution of the screen the number of lines present in the table control gets changed.

use the CTU_PARAS structure whole doing the call transaction

Read only

Former Member
0 Likes
605

hi,

Yes Screen resolution is very important factor,Use ctu_params in Call transaction .

Please se this link

thanks,

Read only

Former Member
0 Likes
605

Hi Haris,

Screen resolution isvery important, specially for BDC table control.

Use structure CTU_PARAMS.

CLEAR wa_opt.

wa_opt-dismode = w_mode.

wa_opt-defsize = c_check.[ C_CHECK = 'x', This hold the default size of your screen.]

wa_opt-nobinpt = c_check.

wa_opt-racommit = c_check.

wa_opt-updmode = c_a.

*-->> Call Transaction for your BDC.

CALL TRANSACTION c_XXX USING i_bdcdata

OPTIONS FROM wa_opt

MESSAGES INTO i_msgcoll.

use in this way. Your problems will be solved.

Regards,

Tutun