Posted: Thu Nov 03, 2016 2:18 pm Post subject: Check amount field in event 01 of the table maintain
There are some issues with extract integer or decimals data from table EXTRACT in the events of table maintain generator.
Here is a trick:
There is a standard field that is updated if you loop at an EXTRACT.
Within the loop the field symbol <vim_extract_struc> is assigned automatically. This field symbol has the same structure as your table.
Code:
FORM form_event_01.
FIELD-SYMBOLS: <fs> TYPE zproject.
LOOP AT extract.
ASSIGN <vim_extract_struc> TO <fs>.
IF <fs> IS ASSIGNED.
IF <fs>-amount_control IS NOT INITIAL AND
<fs>-amount IS INITIAL.
MESSAGE i000(su) WITH 'Field AMOUNT must not be empty in the line: ' sy-tabix.
vim_abort_saving = 'X'.
sy-subrc = 4.
ENDIF.
ENDIF.
ENDLOOP.
ENDFORM.
The same is true for the total table
<vim_total_struc>
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG. SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG. Every effort is made to ensure content integrity. Use information on this site at your own risk.