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 recording

Former Member
0 Likes
1,021

Hi,

Please tell me what does each of the values signify ( column wise 'X' 'SAPMH5A0' '1000' ) and what does Dynpro mean ?

perform dynpro using:

'X' 'SAPMH5A0' '1000',

' ' 'PPHDR-PLVAR' '01',

' ' 'PPHDR-OTYPE' 'S ',

' ' 'PM0D1-SEARK' s_pos-plans, "POSITION

' ' 'PPHDR-INFTY' '1008',

' ' 'PPHDR-SUBTY' ' ',

' ' 'PPHDR-ISTAT' '1',

' ' 'PPHDR-BEGDA' g_char_begda,

' ' 'PPHDR-ENDDA' g_char_endda,

' ' 'BDC_OKCODE' '=INSE',

'X' 'MP100800' '2000',

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
991

hi

DynPro is screen number

regards

ravish

reward points if useful

8 REPLIES 8
Read only

Former Member
0 Likes
992

hi

DynPro is screen number

regards

ravish

reward points if useful

Read only

Former Member
0 Likes
991

'X'

'SAPMH5A0' - Program Name

'1000', - Screen No.

' ' - Start ID

'PPHDR-PLVAR' - Field Name

'01', - Field Value

Read only

kishorepallapothula
Participant
0 Likes
991

Hi Binay,

Dynpro is nothing but the combination of Screen + flow logic.

SAPMH5A0 is nothing but program name and 1000 nothing but screen number.

All the best.

Reward if useful.

Kishore

Read only

Former Member
0 Likes
991
Read only

Former Member
0 Likes
991

Hi,

Dynpro is Screen + flow logic.

In this case you have declared a subroutine named dynpro.For that form we have to pass some values.The values which are passed here is 'X' 'SAPMH5A0' '1000'.

Hope this will help you.

Regards,

Shibino.

Reward if useful.

Read only

Former Member
0 Likes
991

Hi

X - Start ID (It will come when you come to a new screen)

SAPMH5A0 - Program name which is being used behind the transaction that you are recording

1000 - Screen number on which you are.

Dynpro means screen + flow logic.

Regards,

Suruchi Mahajan

Read only

Former Member
0 Likes
991

There are 5 fields....

BDCDATA

program = program name.

dynpro = screen no.

dynbegin = 'X'.

BDCFIELD

fnam = field name

fval = field value

regards

Read only

Former Member
0 Likes
991

Hi Vinay

'X' 'SAPMH5A0' '1000'

X = dynbegin

SAPMH5A0 = module pool program name

1000 = screen no

'PPHDR-PLVAR' '01'

'PPHDR-PLVAR' = fnam

01 = fval

Dynpro indicates screen no

Reward if useful