cancel
Showing results for 
Search instead for 
Did you mean: 

Form routine not found

Former Member
0 Kudos

hi all,

i am triggering smartform using my custom driver program for vt02n........smartform is triggered correctly and all config in nace is correct...........however ....output gives error message that form routine 'ENTRY' not found in custom program ....

Please note : all config in nace is coorect

smartform is triggered

its just that status is red and error that routine entry not found in custom_program_name

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Rajesh,

The form ENTRY should be the first subroutine of your driver program.. and all other subroutines shoule be called inside this..

This from name ENTRY should be maintained in the Output settings through SPRO transaction..

The form ENTRY should be like this:

form entry using return_code us_screen.

clear retcode.

xscreen = us_screen.

perform processing using us_screen.

case retcode.

when 0.

return_code = 0.

when 3.

return_code = 3.

when others.

return_code = 1.

endcase.

endform.

Thanks and Best Regards,

Vikas Bittera.

**Reward if useful**

Answers (2)

Answers (2)

former_member196280
Active Contributor
0 Kudos

I guess wrong driver program is used... check whether the driver program is calling smartform or not...

Close the thread if your question is answered..

Regards,

SaiRam

Former Member
0 Kudos

Did you check to see if the from Entry exists in the custom prgroam