‎2008 Oct 29 1:57 PM
Hi Abapers,
Issue is that i need to display quantity field in script as per user profile being set. How can this be met?
FM: /OSP/GET_DECIMAL_NOTATION gives the user specific format.. Pleas
‎2008 Oct 29 4:36 PM
Hi,
You could write the quantity to a character field (i.e. write v_qty to v_char.), this will assume the current users format settings. Then output the character field within your SAP Script.
The write will have to be performed within the calling ABAP program or use the perform statement within the SAP script
PERFORM FORMAT_AMT IN PROGRAM ZSCRIPT_FORMS
USING &V_QTY&
CHANGING &V_CHAR&
ENDPERFORMDarren
‎2008 Oct 29 4:36 PM
Hi,
You could write the quantity to a character field (i.e. write v_qty to v_char.), this will assume the current users format settings. Then output the character field within your SAP Script.
The write will have to be performed within the calling ABAP program or use the perform statement within the SAP script
PERFORM FORMAT_AMT IN PROGRAM ZSCRIPT_FORMS
USING &V_QTY&
CHANGING &V_CHAR&
ENDPERFORMDarren