‎2012 Nov 30 9:12 PM
In PAI, I have the table control loop, with data, and it does the looping but never enters the loop. So it gets to the LOOP AT scroll_tab and goes right to the ENDLOOP. In between there is a MODULE and then a CHAIN statement with FIELDS and MODULES. The screen allows for 3 entries so it goes to LOOP AT ... ENDLOOP 3 times and moves on. Any ideas why it doesn't enter the loop? It falls into the PBO loop no problem.
PROCESS BEFORE OUTPUT.
MODULE trans_init.
LOOP AT scroll_tab WITH CONTROL tc_pers
CURSOR scroll-cursor.
MODULE lst_sys_col.
MODULE get_entry_afrud.
MODULE set_cursor.
ENDLOOP.
PROCESS AFTER INPUT.
*--------------------- Processing after entering ------------------
MODULE processing_exit AT EXIT-COMMAND.
MODULE save_ok_code.
MODULE get_cursor_line.
LOOP AT scroll_tab.
* Provide confirmation data from table
MODULE get_conf_from_table.
CHAIN.
FIELD: afru_col-selkz,
afrud-pernr,
afrud-ismnw_2.
MODULE get_aufnr_from_cmfu ON CHAIN-REQUEST.
MODULE afvgd_set.
FIELD: afrud-ismnw_2
MODULE request_ismnw ON REQUEST.
FIELD: afrud-ismnw_2
MODULE reset_vbkz ON REQUEST.
MODULE get_conf_col.
MODULE check_conf_col ON CHAIN-REQUEST.
MODULE check_conf_col_save.
ENDCHAIN.
CHAIN.
FIELD: afrud-ismnw_2
MODULE check_kum_arbeit ON CHAIN-REQUEST.
ENDCHAIN.
MODULE reset_request.
ENDLOOP.
‎2012 Nov 30 9:31 PM
A few thoughts:
Are you sure that the code in the modules isn't executing? I'm not sure what the standard behavior is but maybe the debugger isn't stepping through the screen loop for some reason.
Are you sure that your modules are included and named correctly? The screen won't give an error if the module doesn't exist, it will just ignore it.
Is there a CONTINUE statement in the first module?
‎2012 Nov 30 9:47 PM
I have worked with table controls before and debugger definitely steps thru the modules. That is part of the reason I am at such a loss.
I am positive the modules are included and named correctly. I have gone so far as to leave only 1 module in there to test things. It is easily found. I can even double click on the module name and go to the PAI program, directly to the code.
And no, there is no CONTINUE statement in the module.
But thanks for the thoughts. Keep'im coming!
‎2012 Dec 01 12:23 AM
Which values carries the scroll-cursor? is it the current line?
Have you tried to without CURSOR command?