Ansicht
Dokumentation

RNIKOSF0 - IS-H: FORM routines for batch input guarantor

RNIKOSF0 - IS-H: FORM routines for batch input guarantor

TXBHW - Original Tax Base Amount in Local Currency   Fill RESBD Structure from EBP Component Structure  
This documentation is copyright by SAP AG.
SAP E-Book

Description

The form routines for the format conversion can be defined in this report. The name of the form routine must then be entered in field FORM of table TNT2. In report RNILST00, the form routine is then automatically executed on the screen field before the value assignment.

Requirements

After conversion, the field must have a valid SAP input format.

Output

Example

The following form routine converts a seven-character field with one decimal place (but no decimal point) into an eight-character field with one decimal place and a decimal point.

FORM FORMAT61 USING FWERT.

DATA: PUFFER(8) TYPE C.
FIELD-SYMBOLS: , .

ASSIGN FWERT(6) TO .
ASSIGN FWERT+6(1) TO .
WRITE TO PUFFER(6).
WRITE ',' TO PUFFER+6.
WRITE TO PUFFER+7.
FWERT = PUFFER.

ENDFORM.






BAL Application Log Documentation   RFUMSV00 - Advance Return for Tax on Sales/Purchases  
This documentation is copyright by SAP AG.

Length: 1084 Date: 20240520 Time: 070021     sap01-206 ( 15 ms )