‎2007 Aug 13 9:01 AM
The Standard Program & Standard Form For printing RFQ Details
are : SAPFM06P (Standard Program)
MEDRUCK (Standard Form)
The Program SAPFM06P is a Subroutine Pool.
this program is not executing.
Pls Tell me how to execute a Subroutine Pool as well as What
is a Subroutine Pool ?
‎2007 Aug 13 9:06 AM
HI,
we cannot execute them directly.
subroutine-pool programs normally will have subroutines.
we will call them from different programs.
in this case these subroutines will be called from the sap-script MEDRUCK.
<b>reward if helpful</b>
rgds,
bharat.
‎2007 Aug 13 9:16 AM
HI,
how the subroutines will be called from the Form MEDRUCK.
rgrds
Sandeep
‎2007 Aug 13 11:01 AM
HI,
how the subroutines will be called from the Form MEDRUCK.
rgrds
Sandeep
‎2007 Aug 13 12:53 PM
we use subroutines in SAP SCRIPTS if we want to add new fields and modify fields for this in the text editor of the scripts call SUBROUTINE using the fallowing code.
PERFORM <PER NAME> IN <PROG.NAME> USING <FIL1>
CHANGING <FIL2>.
in SE38 the report type SUBROUTINEPOOL.
FORM <PERNAME> USING <FIL1> TYPE ITCSY
CHANGING <FIL2> TYPE ITCSY.
ITCSY is structure contains 2 fields NAME and VALUE.
<b> reward points to all helpful answers</b>
suredarreddy pulimamidi
‎2007 Aug 13 9:09 AM
Hi,
Subrotuine pool is a collection of Subroutines.
These routine's can be called from other programs as follows.
PERFORM sub_name(prog_name) using ... changing ...
If you want to call from Method of a class then
PERFORM sub_name in prog_name.
Regards,
Sesh