cancel
Showing results for 
Search instead for 
Did you mean: 

Can I skip selection screen when using PNP & HR Report Cat?

Former Member
0 Kudos

I am using log. database PNP for my report that we are then accessing through ITS - ESS. I do not want the ESS user to see the selection screen (It populates all values in initialization). I have created an HR Report category with nothing selected, but I still get pernr as a selection.

Is there a way to skip the selection screen? (Sorry, this might be very simple and i'm missing something!)

Thanks so much!!!!

Accepted Solutions (1)

Accepted Solutions (1)

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

Can you use the SUBMIT statement to trigger your report.

SUBMIT <report> and return.

Regards,

Rich Heilman

Former Member
0 Kudos

I'm not sure where i'd actually submit it. And as far as hiding fields, I can do that using HR report category.... I just want to skip the selection screen all together...

Former Member
0 Kudos

Then don't use "if" clause.

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

SCREEN-ACTIVE = '0'.

MODIFY SCREEN.

endloop.

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

Well, I'm thinking that you would have to have a short "driver" program.

report zdriver.

submit <zreport> and return.

Regards,

Rich Heilman

Former Member
0 Kudos

THAT WORKS! Thank you so much!

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

This is an example how you can hide fields of LDB.

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

IF SCREEN-GROUP4 > '006' and SCREEN-GROUP4 <= '026'.

SCREEN-ACTIVE = '0'.

MODIFY SCREEN.

endif.

endloop.