Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Function module

Former Member
0 Likes
791

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
769

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

7 REPLIES 7
Read only

Former Member
0 Likes
769

Hi can you be some more specific at your requirement??

Read only

0 Likes
769

Am using an FM to dispaly a report.I dont want the output of the report to be dispalyed.This is my requirement

Read only

Former Member
0 Likes
769

Only option you have is to make it optional .you can out the parameters in the optional tab.:-)

Read only

Former Member
0 Likes
771

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

Read only

matt
Active Contributor
0 Likes
769

Please use an informative subject in future

Read only

Former Member
0 Likes
769

hi,

you need to select the parameter as optional if you wan to use it but doesnt return the value

Read only

0 Likes
769

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