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

batch input

Former Member
0 Likes
966

hi experts

i want to do a batch input what does the field DYNBEGIN in the bdcdata table means, i want to know if to use it or not.

thanks

Amit

9 REPLIES 9
Read only

Former Member
0 Likes
930

hi,

this field is necessary it will indicate where it is a ascreen or not ....in bdcdata table...

Read only

bpawanchand
Active Contributor
0 Likes
930

Hi

It is the Screen Number

Regards

Pavan

Read only

Former Member
0 Likes
930

hi,

it is necessary it will indicate whether it is screen or not in .....bdcdata internal table

Read only

Former Member
0 Likes
930

Hi Amit,

DYNBEGIN - This field indicates whether a screen is ACTIVE or not ie., start of a screen(ready for input).

Regards,

Chandra Sekhar

Read only

Former Member
0 Likes
930

Hi Amit,

DYNBEGIN (New screen start) X=new screen

It indicates wheather the new screen has started or not in BDC

PROGRAM DYNPRO   DYNBEGIN      FNAM      FVAL 
program1 screen1   X   
                              BDC_CURSOR pos1 
                              BDC_OKCODE comm1 
                              fieldname1 fieldvalue1 
                              fieldname2 fieldvalue2 
program2 screen2   X   
                              BDC_CURSOR pos1 
                              BDC_OKCODE comm1 
                              fieldname1 fieldvalue1 
                              fieldname2 fieldvalue2

Best regards,

raam

Read only

Former Member
0 Likes
930

Hii!

It means start of a screen(active) 'BDC screen start'. It usage depends on situation.

Regards

Abhijeet

Read only

Former Member
0 Likes
930

Hi,

Dynbegin ---BDC screen start.

Naturally the value is X.

For Eg:

*Start new screen *

----


FORM bdc_dynpro USING program dynpro.

CLEAR bdctab.

bdctab-program = program.

bdctab-dynpro = dynpro.

bdctab-dynbegin = 'X'.

APPEND bdctab.

ENDFORM. " BDC_DYNPRO

&----


*& Form BDC_FIELD

&----


FORM bdc_field USING fnam fval.

CLEAR bdctab.

bdctab-fnam = fnam.

bdctab-fval = fval.

APPEND bdctab.

ENDFORM. " BDC_FIELD

Regards,

Shiva Kumar

Read only

Former Member
0 Likes
930
Read only

Former Member
0 Likes
930

hi ,

please refer to the following link ,i hope it will anwer ur question.

http://allsapabap.blogspot.com/search/label/ABAP%20BDC%20COMPLETE

pls reward points .

sri.

Edited by: durga naga venkata sridevi on Jul 30, 2008 8:13 AM