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: 

Module Endmodule

Former Member
0 Kudos

Hi Experts,

I wanted to write login in module endmodule.

For field validation I wrote

FIELD KNA1-KUNNR MODULE VALIDATE_KUNNR.

While double click on VALIDATE_KUNNR the control will not move to MODULE VALIDATE_KUNNR.

Could anybody suggest me what I can do so that I can do the validation & all.

Regards,

Poonam

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

There might be some syntax error in you program, that is why it is not navigating to the module validate. Go to se80 select your program there and try to reactivate all the includes (if present any in that program) and reactivate the program itself.

Thanks & Regards,

Navneeth K.

5 REPLIES 5

Former Member
0 Kudos

Hi,

There might be some syntax error in you program, that is why it is not navigating to the module validate. Go to se80 select your program there and try to reactivate all the includes (if present any in that program) and reactivate the program itself.

Thanks & Regards,

Navneeth K.

MarcinPciak
Active Contributor
0 Kudos

Hi,

Sometimes this is also happening to me.

Don't bother this.

Write your module in the program


MODULE VALIDATE_KUNNR INPUT/OUTPUT.
...
ENDMODULE.

..and check if the processing works.

Regards

Marcin

former_member188685
Active Contributor
0 Kudos

copy the code , and delete the module code in the program. now go to Flow logic, and double click on the module name and create once again. now paste code what ever you copied in the first step. if you manually create/some error in your code then it will not navigate properly check it once.

Former Member
0 Kudos

Hi,

Recreate the Module. it will wrok.

Former Member
0 Kudos

thanks