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

regarding RPY_DYNPRO_READ func module

Former Member
0 Likes
711

hi guys,

Is there any way to find the Screen field attributes(I/O/Output only/Mandatory) except below ways.

1-CALL FUNCTION 'RPY_DYNPRO_READ'

2-IMPORT DYNPRO le_d020s

lt_d021s

lt_d022s

lt_d023s

ID 'SAPMF05A 0100'.

I can see output field FLG1/FLG2/FLG3 of RPY_DYNPRO_READ FM is [E0,00,AC] for Given input SAPMF05A,0331, BSEG-HKONT template.

but how we can identify E0/00/AC as input/output/mandatory.

Have anybody worked on RM07DYNP or Func Module RPy_DYNPRO_READ.

Suggestion please.

Thanks

Ambichan

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
546

Hi Prince

You can see the Attributes of Screen fields in Screen Table

in <b>Debugging Mode</b>

Regards Rk

2 REPLIES 2
Read only

Former Member
0 Likes
546

hi prince

u acn do ths w/o a fm

just try using the folowing

To take advantage of the full dynamic modification range, you should use the following attributes in the Screen Painter:

Input = 'X'

Output = 'X'

Mandatory = '_'

Invisible = '_'

Highlighted = '_'.

Conversely, you cannot change the values defined on the screen in the following manner:

Input = '_'

Output = '_'

Mandatory = 'X'

Invisible= 'X'

Highlighted = 'X'

Furthermore, the following applies: If you enter the following combination of influences, it is not really a valid combination, since the combination rules stipulate that the specified display attributes cannot be changed by another influencing field (or the screen).

Input = 'X'

Output = 'X'

Active = 'X'

Mandatory = '_'

Highlighted = '_'

Invisible = '_'

regards

navjot

reward accordingly

Read only

Former Member
0 Likes
547

Hi Prince

You can see the Attributes of Screen fields in Screen Table

in <b>Debugging Mode</b>

Regards Rk