Wednesday, December 22, 2010 ABAP - Calculator in SAP | Edit Post 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: UnknownFebruary 17, 2016 at 5:59 PMCALL 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.ReplyDeleteRepliesReplyAdd commentLoad more... Your useful comments, suggestions are appreciated.Your comments are moderated.
CALL FUNCTION 'FITRV_CALCULATOR'
ReplyDeleteEXPORTING
* 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.