Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

call transaction command

Former Member
0 Likes
402

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????

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
371

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

3 REPLIES 3
Read only

Former Member
0 Likes
371

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

Read only

0 Likes
371

this is function pool so ican not make submit.

i cnnot change the program it's standard

Read only

Former Member
0 Likes
372

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