Followers
Popular Posts
- ABAP - ALV Report example with steps
- ABAP - Step by step tutorial on Smart Forms - Template Node
- ABAP - Sending email with pdf attachment
- SAP Adobe Form - Steps to create simple ADOBE Form and calling it from ABAP Program
- SAP ABAP - CL_ABAP_CHAR_UTILITIES class usage
- ABAP - Multiple value selection from F4 help for SELECT-OPTIONS
- Execute ABAP Report using SUBMIT statement
- ABAP - Select all or Deselect all in ALV or Check box handling in ALV
- Web Dynpro ABAP ALV - ON_CLICK event
- ABAP - Dynamic WHERE clause
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.