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

Input field is disabled on error

Former Member
0 Likes
621

Hi Friends,

I am facing problem with respect to an input field that is designed in screen.

Screen has 1 input field and below the input field is container to display ALV grid.

when ever i get error on the screen due to some other validations i put based on Application tool bar icons this input field is being disabled, even though i have chain endchain for this inputfield.

Appreciate if someone can help me out in how to enable the input field back.


PROCESS BEFORE OUTPUT.
  MODULE PBO_100.

  CHAIN.
    FIELD ZTEIHDR-ACCT_PAY_OFR_NAM MODULE CHECK_ACCT_PAY.
  ENDCHAIN.
 
PROCESS AFTER INPUT.
  MODULE PAI_USER_COMMAND_100.

regards,

Simha

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
547

CHECK_ACCT_PAY.

u have to use validation in this module only

CHECK_ACCT_PAY.

u have to use validation in this module only

2 REPLIES 2
Read only

Former Member
0 Likes
548

CHECK_ACCT_PAY.

u have to use validation in this module only

Read only

0 Likes
547

thanks anil.

I understood that any errors have to be handled with thin this module.