‎2007 Oct 16 10:46 AM
i made <b> batch input call transaction</b>, after i get to the new dynpro if i dont give data in obligatory field it not giving me option to get out i need to get out with TASK MANAGER.
and if i made it in standard with out my BI it giving me out
why????
‎2007 Oct 16 11:00 AM
Hi,
You need to pass the obligatory fields in that case ...
DATA: text TYPE c LENGTH 10,
rspar_tab TYPE TABLE OF rsparams,
rspar_line LIKE LINE OF rspar_tab.
rspar_line-selname = 'SELCRIT1'.
rspar_line-kind = 'S'.
rspar_line-sign = 'I'.
rspar_line-option = 'EQ'.
rspar_line-low = 'ABAP'.
APPEND rspar_line TO rspar_tab.
SUBMIT report1 USING SELECTION-SCREEN '1100'
WITH SELECTION-TABLE rspar_tab
WITH selcrit2 BETWEEN 'H' AND 'K'
AND RETURN.
Best regards,
Prashant
‎2007 Oct 16 10:51 AM
Hi,
For obligatory fields, it will behave in the same manner.
Remove the OBLIGATORY field & put a validation in START-OF-SELECTON for the field.
Also try SUBMIT <PROGRAM_NAME> AND RETURN.
Best regards,
Prashant
‎2007 Oct 16 10:56 AM
this is function pool so ican not make submit.
i cnnot change the program it's standard
‎2007 Oct 16 11:00 AM
Hi,
You need to pass the obligatory fields in that case ...
DATA: text TYPE c LENGTH 10,
rspar_tab TYPE TABLE OF rsparams,
rspar_line LIKE LINE OF rspar_tab.
rspar_line-selname = 'SELCRIT1'.
rspar_line-kind = 'S'.
rspar_line-sign = 'I'.
rspar_line-option = 'EQ'.
rspar_line-low = 'ABAP'.
APPEND rspar_line TO rspar_tab.
SUBMIT report1 USING SELECTION-SCREEN '1100'
WITH SELECTION-TABLE rspar_tab
WITH selcrit2 BETWEEN 'H' AND 'K'
AND RETURN.
Best regards,
Prashant