Application Development 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: 

Adding Fileds to Standard Dialog programme

Former Member
0 Kudos
277

Hi All,

Issue related to Transaction F-28(Post Incoming Payments):

I was added two new fields in a standard program SAPMF05A screen 301, I set the attributes and settings as Input enable fileds but I am not able to input into this new fields which are display mode only.

Can any one please clarify my issue, Is there any source code required to enable the fields to input a value.

Or Any other settings required.

Please let me know ASAP.

Thanks in advance.

Message was edited by: Lakshmi b

3 REPLIES 3

uwe_schieferstein
Active Contributor
0 Kudos
143

Hello Lakshmi

If you have fields on the screen that are enabled for input you can compare the attributes of such field (in the element list of the dynpro) with your additional fields. Pay special attention to the <b>modification groups</b>. If the Input-field has a value there copy it at the very same modification group in your fields. Perhaps in PBO of the dynro there is logic implemented to "shut off" and "shut on" certain fields.

Regards

Uwe

0 Kudos
143

Hi Uwe,

Thank you so much for your response. I gave the same modification groups, comparing with other fields. I want to know what is the "Shut off" and "Shut on" certail feilds. Are you talking about the SCREEN table using which u can disable and enable the fields during the runtime.

Best Regards,

Lakshmi

uwe_schieferstein
Active Contributor
0 Kudos
143

Hello Lakshmi

That is exactly what I meant:

LOOP AT SCREEN.
  IF ( screen-group1 = ... ).

   screen-input = 0.
  ENDIF.
  
  MODIFY SCREEN.
ENDLOOP.

I am sure you will find coding like this somewhere in your screen.

Regards

Uwe