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

default window size

Former Member
0 Likes
655

hi experts,

how to set the default window size in bdc program. can anybody please help me for this.

thanks in advance,

praveen.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
478

Hi

I've given you an answer

Max

2 REPLIES 2
Read only

Former Member
0 Likes
479

Hi

I've given you an answer

Max

Read only

Former Member
0 Likes
478

HI Praveen,

**----Parameter for runtime of CALL TRANSACTION.

DATA: st_opt LIKE ctu_params.

st_opt-dismode = c_mode. " Processing mode for CALL TRANSACTION

st_opt-updmode = ''. " Update mode for CALL TRANSACTION

st_opt-defsize = ''. " Default screen size for CALL TRANS

st_opt-nobiend = ''.

*----Call transaction

CALL TRANSACTION c_tcode USING it_bdcdata

<b>OPTIONS FROM st_opt</b>

MESSAGES INTO it_bdcmsgcoll.

Reward points in this helps.

Manish