2008 Jan 28 8:20 AM
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
2008 Jan 28 8:28 AM
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.
2008 Jan 30 5:41 AM
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?
2008 Apr 01 7:55 PM
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 !!!!
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |