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

how do i enable other fields for data entry in module pool screen when an error message displayed

former_member185116
Active Participant
0 Likes
741

hello all,

i have a module pool screen..

in which for one field i have put some validation(like date should be first day of the month other wise display error message )

when the error message is displayed only that particular field is enabled for data insertion

where as other fields are disabled for data entry,....

how do i enable other fields also for data entry.....

thanks in advance.....

1 ACCEPTED SOLUTION
Read only

Mohamed_Mukhtar
Active Contributor
0 Likes
711

Hi Vinay,

Write you validation in CHAIN ENDCHAIN.

CHAIN

Field : wa-A1, wa-A2.

Moudle f_validate_o.

ENDCHAIN.

Thanks

hello all,

i have a module pool screen..

in which for one field i have put some validation(like date should be first day of the month other wise display error message )

when the error message is displayed only that particular field is enabled for data insertion

where as other fields are disabled for data entry,....

how do i enable other fields also for data entry.....

thanks in advance.....

4 REPLIES 4
Read only

former_member188724
Contributor
0 Likes
711

Hi,

Use chain Statements and include all fields to enable.

Regards,

K.S

Read only

Mohamed_Mukhtar
Active Contributor
0 Likes
712

Hi Vinay,

Write you validation in CHAIN ENDCHAIN.

CHAIN

Field : wa-A1, wa-A2.

Moudle f_validate_o.

ENDCHAIN.

Thanks

Read only

Former Member
0 Likes
711

Hi Vinay,

Write CHAIN ENDCHAIN statements in PROCESS AFTER INPUT:-

PROCESS AFTER INPUT.

CHAIN

<write your fields here>

MODULE <write your validating module name> on chain input.

ENDCHAIN.

Thanks & Regards,

Swati

Read only

Former Member
0 Likes
711

Hi

In PROCESS AFTER INPUT.

CHAIN.

     feild: <validated field>.

          module validate.

ENDCHAIN.

__________________________________________

Module validate input.

    

     <write only ur validation logic then only that partcular filed is enabled>

    

endmodule.

NOTE: If you want to validate more fields then add in CHAIN-ENDCHAIN logic.

regards.

laxman