‎2010 Jan 18 6:04 AM
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???
‎2010 Jan 18 6:08 AM
‎2010 Jan 18 6:08 AM
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
‎2010 Jan 18 6:09 AM
‎2010 Jan 18 6:56 AM
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