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 supressor FM

Former Member
0 Likes
609

HI Gurus! can u tell me a FM that will supress information popups in VA01 that can be used in BDC.

I run BDC in N mode n E mode also still its waiting on that information popup.

points sure

HI Gurus! can u tell me a FM that will supress information popups in VA01 that can be used in BDC.

I run BDC in N mode n E mode also still its waiting on that information popup.

points sure

3 REPLIES 3
Read only

Former Member
0 Likes
583

For example, the error message that usually comes in status bar while you are running the transaction online might appear in a popup window when you are running that in batch. This will make your fields disabled for input. This OPTIONS addition will remove this problem

The way to use the OPTIONS addition.

Declare a work area of type CTU_PARAMS.

Fill the fields of CTU_PARAMS. The field NOBINPT should be set to ‘X’.

This will set the SY-BINPT to space. So now the transaction which you will be calling will run in online mode.

Example.

clear X_OPTIONS.

X_OPTIONS-DISMODE = 'E'.

X_OPTIONS-UPDMODE = 'S'.

X_OPTIONS-CATTMODE = ' '.

X_OPTIONS-DEFSIZE = ' '.

X_OPTIONS-RACOMMIT = ' '.

X_OPTIONS-NOBINPT = 'X'.

X_OPTIONS-NOBIEND = ' '.

call transaction 'BP' using T_BDCDATA[] options from X_OPTIONS.

Note:

Do not use the MODE & UPDATE additions when you are using OPTIONS. The mode & update values are passed in the CTU_PARAMS structure.

Read only

0 Likes
583

Thanks alot for ur answer. it working fine but have other problem -- while creating order its asking for parner selection , therefore in N mode order is not getting created. CTU cant supress this option also?

Read only

0 Likes
583

Hi !

I am setting NOBINT = 'X' through a work area(wa_opt) while doing

CALL TRANSACTION 'MFBF' USING i_bdcdata OPTIONS FROM wa_opt

The BDC is running fine when run directly from SE38

BUT...BUT...BUT when I schedule a job through SM36 and run my program through scheduled job then My screens are NOT getting populated with the values passed in internal table i_bdcdata

Please help....It's really urgent.... REWARD POINTS guaranteed !!!!