Posted: Fri Nov 21, 2008 4:56 pm Post subject: Дамп при выгрузке в экранную табличку
Здравствуйте возникла такаяпроблема. На экране была созданна табличка с полями структуры wa_receipt_doc,затем для заполнения этой таблицы в pbo логике было сделано следующее
PROCESS BEFORE OUTPUT.
* PBO FLOW LOGIC FOR SCREEN 9003
MODULE refresh_9003.
LOOP AT t_receipt_docs WITH CONTROL T_RECEIPT_DOCS_TABLE
CURSOR T_RECEIPT_DOCS_TABLE-current_line.
MODULE pbo_transport_9003n.
ENDLOOP.
Модули выгледят так
MODULE refresh_9003 OUTPUT.
t_receipt_docs_table-current_line = t_receipt_docs_table-top_line.
REFRESH CONTROL 'T_RECEIPT_DOCS_TABLE' FROM SCREEN '9003'.
t_receipt_docs_table-top_line = t_receipt_docs_table-current_line.
LOOP AT SCREEN.
IF screen-name = 'FB_DELETE_9003' OR
screen-name = 'FB_COPY_9003' OR
screen-name = 'FB_SELECT_9003' OR
screen-name = 'FB_DESELECT_9003' OR
screen-name = 'FB_POST_9003' OR
screen-name = 'FB_PRINT_RECEIPT_9003'
.
screen-output = '0'.
screen-input = '0'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
ENDMODULE. " REFRESH_9002 OUTPUT
и
MODULE PBO_TRANSPORT_9003N OUTPUT.
MOVE-CORRESPONDING t_receipt_docs TO wa_receipt_doc.
ENDMODULE. " PBO_TRANSPORT_9003N OUTPUT
при этом в конце логики выпадает дамп с тестом
The current screen processing action was terminated since a situation occured where the application could not continue.
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.