Ansicht
Dokumentation

RNIGPAF0 - IS-H: FORM Routines for Batch Input Business Partner

RNIGPAF0 - IS-H: FORM Routines for Batch Input Business Partner

Fill RESBD Structure from EBP Component Structure   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 the field FORM of the table TNT2. In report RNILST00, the form routine is then executed automatically in 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.






Fill RESBD Structure from EBP Component Structure   Vendor Master (General Section)  
This documentation is copyright by SAP AG.

Length: 1092 Date: 20240531 Time: 075905     sap01-206 ( 22 ms )