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: 

How to prevent the values from entering in a field?

Former Member
0 Kudos

Hi,

If user input Ref Key 1 & Personnel number for the GL a/c that do not need the input ,how can we prevent this? In this case i am not able to hardcode GL accounts in the programme also.Is it possible to make the Ref key 1 and Personnel number field suppressed for that GL account so that the program cannot pass the value for that GL account.Can u all please suggest some other methods to do it.

With regards,

Arun

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Dear Arun,

You can surpress or Disable a particular feild like below.

 
 loop at screen.
    if screen-name eq 'PARTICULAR_FIELD'.
      screen-invisible = '1'.
      modify screen.
    endif.
  endloop.

use the link to handle at User Exit Level...

Link: [;

Thnks,

Raghu Posani.

2 REPLIES 2

Former Member
0 Kudos

Dear Arun,

You can surpress or Disable a particular feild like below.

 
 loop at screen.
    if screen-name eq 'PARTICULAR_FIELD'.
      screen-invisible = '1'.
      modify screen.
    endif.
  endloop.

use the link to handle at User Exit Level...

Link: [;

Thnks,

Raghu Posani.

0 Kudos

Hi,

Thanks for ur reply.In this case i done want to disable the fields for all the GL accounts.I need to disable only for sone GL accounts which i cannot hard code.How can i do this?.The code mentioned above will disable for all the GL account right?

With regards,

Arun.