Application Development 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: 

Need help

Former Member
0 Kudos

Hi All,

I am keeping one include in report. The include contains the selction screen, but when I am include that include selection screen not coming in REport Selelction screen.

Please help me ,

regards,

AJ

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Try to check the include name is before start-of-selection.

if not then keep the include name before start-of-selection and see the results

Thanks

Seshu

8 REPLIES 8

Former Member
0 Kudos

hi,

It will,just check the event declaration.

For eg:

Report ytesting.

INCLUDE ytesting_selection.

include ytesting_start_selection.

and inside ytesting_selection.

*Selection Screen

SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-t01.

PARAMETERS : p_file TYPE string MEMORY ID fil.

PARAMETERS : r_pser RADIOBUTTON GROUP r1 USER-COMMAND fc1

DEFAULT 'X'.

PARAMETERS : r_app RADIOBUTTON GROUP r1.

SELECTION-SCREEN END OF BLOCK b1.

  • inside include ytesting_start_selection.

start-of-selection.

        • your main code goes here.

Regards

Subbu

Former Member
0 Kudos

its comming for me

REPORT ZTESTPRG.

include zintest.

in the include i have this

SELECT-OPTIONS : S_DATE FOR SY-DATUM.

0 Kudos

Hi,

My code alos same like by you people. But for me its not working.

regards,

AJ

0 Kudos

&----


*& Report Z_OTC_OPEN_REN_CONT_CONV

*&

&----


REPORT Z_OTC_OPEN_REN_CONT_CONV MESSAGE-ID ZOTC.

INCLUDE Z_CONV_SEL_SCR_INCL.

INCLUDE Z_OTC_OPEN_REN_CON_DEC_INCL.

INCLUDE Z_OTC_OPEN_REN_CON_FORM_INCL.

&----


*& SELECTION SCREEN

&----


  • Additional elements to be displayed on default selection-screen

SELECTION-SCREEN BEGIN OF BLOCK B5 WITH FRAME TITLE TEXT-001.

PARAMETERS: P_AUART TYPE TVAK-AUART DEFAULT 'ZMV1', " Contract type

P_VKORG TYPE TVKO-VKORG DEFAULT '1200', " Sales organization

P_VTWEG TYPE TVTW-VTWEG DEFAULT '99', " Distribution Channel

P_SPART TYPE TVTA-SPART DEFAULT '99'. " Division

SELECTION-SCREEN END OF BLOCK B5.

The includes contain the code of the selection screen that is used across the programs

Hope it helps!!!

Former Member
0 Kudos

Try to check the include name is before start-of-selection.

if not then keep the include name before start-of-selection and see the results

Thanks

Seshu

0 Kudos

Hi Sheshu,

I am copying the report ZZRP_STO_PLAn into YY_exmaple. Then I am including the include which contains the selection screen. Seelction screen of include not populatting the report screen.

regards,

Ajay

0 Kudos

Hi,

Take wild try and activate the main progran and include again.

aRs

0 Kudos

Hi All,

Thanks for your time on this. In that include LOOP At SCREEN valiadftion is there.

because of that i am unale to get that. now it coming.

regards,

AJay