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: 

BDC

Former Member
0 Kudos

Hi Friends,

I am new to ABAP programmming.

Can anybody explain the use of the option DEFSIZE in the function CALL TRANSACTION in a BDC.

What difference does it cause when i give this as 'X' or ' '.

Your inputs would be more than helpful.

Regards,

Yasmin.

2 REPLIES 2

Former Member
0 Kudos

Hi Yasmin

DEFSIZE in call transaction stands for definition of window size.

By default it is ' ' which means that Do not use standard window size.

If you put it to 'X' - means use standard window size

Cheers

Ashish Jain

Former Member
0 Kudos

Hi,

I agree with what Ashish says. The window size option in a BDC is important when you have a long table displayed on the screen. The table will have different number of entries on one page depending on the screen size. If your BDC is written assuming certain screen size, and if DEFSIZE is not set to 'X' and if the user running the BDC has a different screen size setting then the BDC can fail.

So it is best to set DEFSIZE to 'X' when dealing with such situations.

This is how you can set the standard window size on your PC:

Minimize the SAP window, click 'customizing of local layout' button from the toolbar and choose 'default size'.

Sudhir