‎2009 Jul 28 8:54 PM
Hi,
We have a custom screen to create an equipment. When users click on Save, the screen flow goes into BDC and creates the equipment.
After the equipment is created, we need to execute another custom program to create Measuring points.
How can I call this custom program and still get back to my equipment master screen?
I have coded it as follows but the result is the end result of the measuring point screen and not my original equipment master screen.
SUBMIT ZCREATE_MEASURING_POINTS USING SELECTION-SCREEN '1000'
WITH SELECTION-TABLE rspar_tab
AND return.
‎2009 Jul 28 9:09 PM
I have coded it as follows but the result is the end result of the measuring point screen and not my original equipment master scree
Does it mean that you end up in list output of measuring custom program? If so, you have to export this resulting list to memory, which will suppress showing it.
SUBMIT ZCREATE_MEASURING_POINTS USING SELECTION-SCREEN '1000'
WITH SELECTION-TABLE rspar_tab
EXPORTING LIST TO MEMORY
AND return.
This way you will be back on calling program.
Regards
Marcin
‎2009 Jul 28 9:09 PM
I have coded it as follows but the result is the end result of the measuring point screen and not my original equipment master scree
Does it mean that you end up in list output of measuring custom program? If so, you have to export this resulting list to memory, which will suppress showing it.
SUBMIT ZCREATE_MEASURING_POINTS USING SELECTION-SCREEN '1000'
WITH SELECTION-TABLE rspar_tab
EXPORTING LIST TO MEMORY
AND return.
This way you will be back on calling program.
Regards
Marcin