‎2008 Jul 30 6:53 AM
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
‎2008 Jul 30 6:55 AM
hi,
this field is necessary it will indicate where it is a ascreen or not ....in bdcdata table...
‎2008 Jul 30 6:56 AM
‎2008 Jul 30 6:56 AM
hi,
it is necessary it will indicate whether it is screen or not in .....bdcdata internal table
‎2008 Jul 30 6:56 AM
Hi Amit,
DYNBEGIN - This field indicates whether a screen is ACTIVE or not ie., start of a screen(ready for input).
Regards,
Chandra Sekhar
‎2008 Jul 30 6:56 AM
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
‎2008 Jul 30 6:59 AM
Hii!
It means start of a screen(active) 'BDC screen start'. It usage depends on situation.
Regards
Abhijeet
‎2008 Jul 30 6:59 AM
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
‎2008 Jul 30 7:00 AM
‎2008 Jul 30 7:13 AM
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