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_INSERT

Former Member
0 Likes
605

HI,

IN BDC_INSERT WHAT IS THE USE OF THESE EXPORTING FIELD

  • POST_LOCAL = NOVBLOCAL

  • PRINTING = NOPRINT

  • SIMUBATCH = ' '

AND IN BDC_OPEN_GROUP

DEST = FILLER8

HOLDDATE = FILLER8

RECORD = FILLER1

THANK YOU

ASHOK KUMAR

3 REPLIES 3
Read only

Former Member
0 Likes
513

Hi,

In BDC_INSERT there are no export parameters.

All the parameters are import parameters.

However,

POST_LOCAL indicates the "BDC message type"

PRINTING indicates "BDC status"

SIMUBATCH indicates "Simulate Background Processing (SY-BATCH='X')".

In BDC_OPEN_GROUP

DEST indicates "Target system for ODC"

HOLDDATE indicates "Session locked until specified date"

RECORD indicates " BI recording Indicator, either 'X' or ' ' ".

Regards,

Pavan P.

Read only

Former Member
0 Likes
513

Hi,

BDC_INSERT

DEST: (not applicable)

HOLDDATE: Lock folder for processing until specified date

RECORD: Flag for BI recording 'X' oder ' '

BDC_OPEN_GROUP

post_local (switch on local update) optional

printing (switch off printing) optional

simubatch (save recording option)'Simualte Background Mode') Optional

REWARD IF HELPFUL

Prajith

Read only

Former Member
0 Likes
513

hi,

<b>BDC_INSERT</b>

these parameters are imoprting parameters in function module point of view.

where are is these are exporting parameters in programmer point of view.

<b>POST_LOCAL</b>

Parameter to update data locally. If POST_LOCAL = ‘X’, data will be updated locally.

PRINTING parameter indicates the BDC status of batchinput ( it is print while updating the data in data base).

SIMUBATCH if we set this field = 'X', it will runt the BIS in Background mde

(SY-BATCH='X').

In BDC_OPEN_GROUP

these parameters are imoprting parameters in function module point of view.

where are is these are exporting parameters in programmer point of view.

DEST indicates the Target system.

<b>HOLDDATE</b>

Lock date. The session is locked and may not be processed until after the date that you specify. Only a system administrator with the LOCK authorization for the authorization object Batch Input Authorizations can unlock and run a session before this date.

Format: YYYYMMDD (8 digits).

Default: No lock date, session can be processed immediately. A lock date is optional.

RECORD indicates BI recording, possible values for this field is 'X' or space ".

regards,

Ashk Reddy