Wednesday, December 22, 2010
REPORT ztest_notepad.
DATA: x_value(15) TYPE c.
CALL FUNCTION 'FITRV_CALCULATOR'
IMPORTING
output_value         = x_value
EXCEPTIONS
invalid_input        = 1
calculation_canceled = 2
OTHERS               = 3.

IF sy-subrc = 0.
WRITE:/ 'Output Value ', x_value.
ENDIF.

1 comment:

  1. CALL FUNCTION 'FITRV_CALCULATOR'
    EXPORTING
    * INPUT_VALUE =
    * CURRENCY =
    start_column = '10'
    start_row = '10'
    IMPORTING
    output_value = x_value
    EXCEPTIONS
    invalid_input = 1
    calculation_canceled = 2
    OTHERS = 3.

    this will give u Actual output.

    this above program does not Exporting Parameters. So the Output of above program is cumin wrong.

    ReplyDelete

Your useful comments, suggestions are appreciated.Your comments are moderated.

Followers

Contact Form

Name

Email *

Message *

Web Dynpro ABAP Book

An SAP Consultant

Follow US


Want to Contribute ?

If you are interested in writing about the new stuff you learn everyday while working, please write to the.sap.consultants@gmail.com.

Click on Contribution for more details.