2007 Jun 28 3:42 PM
2007 Jun 28 3:45 PM
Hi,
Yes,you can do a sy-subrc check after a perform but after instead of doing it after the perform you can do it inside the perform after some statements.
Thanks,
Sandeep.
2007 Jun 28 3:45 PM
no use.
it is not worth checking sy-subrc after perform.
Regards
Vijay
2007 Jun 28 3:46 PM
Hi,
PERFORM will not return any value to SY-SUBRC.
but hat you can do is pass a changing parameter to the PERFORM with similar type and then set the value in the FORM ENDFORM.
Regards,
Sesh
2007 Jun 28 3:49 PM
Perform routine - no exception handling means it will not return sy-subrc but you can have externally
where as Function module gives exception handling
Thanks
Seshu