‎2009 Apr 03 12:35 PM
Please use an informative subject in future
Hi,
Is it possible to hide the Function module o/p.If so how to do it?
Edited by: Matt on Apr 3, 2009 1:40 PM
‎2009 Apr 03 12:40 PM
Hi:
As I understand, you are talking when call function would occur.
Only optional parameter can be hidden.
Have a look for the details
[Link|http://help.sap.com/saphelp_nw70/helpdata/EN/9f/db98fc35c111d1829f0000e829fbfe/content.htm]
Regards
Shashi
‎2009 Apr 03 12:37 PM
‎2009 Apr 03 12:39 PM
Am using an FM to dispaly a report.I dont want the output of the report to be dispalyed.This is my requirement
‎2009 Apr 03 12:37 PM
Only option you have is to make it optional .you can out the parameters in the optional tab.:-)
‎2009 Apr 03 12:40 PM
Hi:
As I understand, you are talking when call function would occur.
Only optional parameter can be hidden.
Have a look for the details
[Link|http://help.sap.com/saphelp_nw70/helpdata/EN/9f/db98fc35c111d1829f0000e829fbfe/content.htm]
Regards
Shashi
‎2009 Apr 03 12:41 PM
‎2009 Apr 03 12:44 PM
hi,
you need to select the parameter as optional if you wan to use it but doesnt return the value
‎2009 Apr 03 12:52 PM
If the output parameters are optional then you can hide them .
When you call the function the all output parameters come as importing parameters..
If u don't want the output , comment all the importing parameters as shown below.
CALL FUNCTION 'SPELL_AMOUNT'
EXPORTING
AMOUNT = 0
CURRENCY = ' '
FILLER = ' '
LANGUAGE = SY-LANGU
IMPORTING
IN_WORDS =
EXCEPTIONS
NOT_FOUND = 1
TOO_LARGE = 2
OTHERS = 3
.
See all importing i.e output parameters are commented.
Thanks
Jayati