‎2008 Nov 04 4:59 AM
Hi All,
i have to create a TCode for a Funciton module is it possible.
if i go to se93 there is no such option to create tcode for FM.
is it only appilcable for report program.
please help me to go ahead.
TIA
Rukmani
wrong fourm - moved to general
‎2008 Nov 04 7:28 PM
Hello Rukmani
What you can find frequently are almost empty reports which do nothing else than calling a function module, e.g. transaction CG3Z which calls report RC1TCG3Z:
*&---------------------------------------------------------------------*
*& Include RC1TCG3Z Report RC1TCG3Z *
*& *
*&---------------------------------------------------------------------*
REPORT RC1TCG3Z .
* include section -----------------------------------------------------
* declaration part ----------------------------------------------------
* main program -------------------------------------------------------
CALL FUNCTION 'C13Z_FRONT_END_TO_APPL'
EXCEPTIONS
OTHERS = 1.
exit.
Regards
Uwe
‎2008 Nov 04 5:03 AM
it is not possible to create for f.m......
possible are
1. report
2. module pro
3. oops
4. parameter
5.variant
‎2008 Nov 04 5:38 AM
Hi ,
It is not possible to create Tcode for a Function Module as F.M. are not independent entity in respect to execution.
What you can do is to create a Toce for a report program and call the FM in that very Report.
Regards,
Anirban
‎2008 Nov 04 6:12 AM
it is possible for functionpool. not for a function module
Edited by: Vijay Babu Dudla on Nov 4, 2008 1:15 AM
‎2008 Nov 04 7:28 PM
Hello Rukmani
What you can find frequently are almost empty reports which do nothing else than calling a function module, e.g. transaction CG3Z which calls report RC1TCG3Z:
*&---------------------------------------------------------------------*
*& Include RC1TCG3Z Report RC1TCG3Z *
*& *
*&---------------------------------------------------------------------*
REPORT RC1TCG3Z .
* include section -----------------------------------------------------
* declaration part ----------------------------------------------------
* main program -------------------------------------------------------
CALL FUNCTION 'C13Z_FRONT_END_TO_APPL'
EXCEPTIONS
OTHERS = 1.
exit.
Regards
Uwe
‎2008 Nov 05 3:38 AM
‎2008 Nov 05 6:44 AM
>
> but why is this a sticky?
>
> pk
Iam also wondering, how/why this has been marked as sticky?
‎2008 Nov 05 8:25 AM
‎2008 Nov 05 5:35 AM
‎2008 Nov 05 6:11 AM
Hi,
"It is not possible to create a Transaction code for Function
Modules".
You can create a transaction code for the report program.
Cheers ...
All The Best ...!
‎2008 Dec 02 5:25 AM