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

ragarding module pool

Former Member
0 Likes
831

how we do validations in module pools

1 ACCEPTED SOLUTION
Read only

sreeramkumar_madisetty
Active Contributor
0 Likes
716

Hi

Using Chain...endchain for Group Validations. Filed...EndField for individual validations.

Regards,

kumar

6 REPLIES 6
Read only

sreeramkumar_madisetty
Active Contributor
0 Likes
717

Hi

Using Chain...endchain for Group Validations. Filed...EndField for individual validations.

Regards,

kumar

Read only

Former Member
0 Likes
716

Hi,

In PAI (process after Input) Event, you have to write the code for each field/s and do the Validations.

Like:

MODULE < Name> FIELD <name>

Regards,

Anji

Read only

Former Member
0 Likes
716

PROCESS AFTER INPUT.

LOOP AT G_TC2_ITAB.

CHAIN.

FIELD MARA-MATNR.

FIELD MARA-WESCH.

FIELD MARA-ERGEW.

MODULE TC2_MODIFY ON CHAIN-REQUEST.

ENDCHAIN.

MODULE DEL_MAT.

ENDLOOP.

MODULE TC2_MODIFY INPUT.

*****Here you can write validation code.

ENDMODULE. "TC2_MODIFY INPUT

Read only

0 Likes
716

thanks a lot

Read only

Former Member
0 Likes
716

check the link

<a href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbaa2035c111d1829f0000e829fbfe/content.htm">http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbaa2035c111d1829f0000e829fbfe/content.htm</a>

regards

shiba dutta

Read only

Former Member
0 Likes
716

Hi,

see below url

<b><a href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbaa2035c111d1829f0000e829fbfe/content.htm">MODULE POOL</a></b>

reward if useful.