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

problem in alv report output

Former Member
0 Likes
1,186

Hi friends,

i have created alv report .no problem of getting output . but i m getting question mark in the standard menu. it is displaying 10 question mark (sub menu has print preview etc), edit ,question marks(ABC Analysis) ,question marks (abap list viewer etc ), settings ,system , help.

i don't want these question marks. how to candle this.i haven't moved to test or production , but iwant to know in development why it is coming..

if any one knows please let me know.

thanks and regards,

kani.

Hi friends,

i have created alv report .no problem of getting output . but i m getting question mark in the standard menu. it is displaying 10 question mark (sub menu has print preview etc), edit ,question marks(ABC Analysis) ,question marks (abap list viewer etc ), settings ,system , help.

i don't want these question marks. how to candle this.i haven't moved to test or production , but iwant to know in development why it is coming..

if any one knows please let me know.

thanks and regards,

kani.

9 REPLIES 9
Read only

Former Member
0 Likes
1,112

Your SAP Version is older so the question marks are coming.

Ask your basis people to upgrade it...

Read only

0 Likes
1,112

we are using ver 5 (SAP ERP Central Component 5.0) only. is there any problem . i did n't get u.

Read only

Former Member
0 Likes
1,112

The Problem is with some GUI inconsistency.

to overcome there are 2 solutions.

1. You need to run a program Which i don't remember exactly.

2. Using the Status event.

CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
  EXPORTING
    i_callback_program = sy-repid
    it_fieldcat        = it_fieldcat
I_CALLBACK_PF_STATUS_SET = 'STATUS'  "important
    it_sort            = it_sort
  TABLES
    t_outtab           = it_data
  EXCEPTIONS
    program_error      = 1.

form status using extab tyoe slis_t_extab.

"This status you can set using the program SAPLKKBL
" go to se41 transaction, enter the program name SAPLKKBL
"status as STANDARD , and click the Button Copy status 
"Now in the popup for Option to enter your program name and
"press ok, then save and activate the status
"now come here and activate the code and test now..
set pf-status 'STANDARD' excluding extab.


endform.

Read only

Former Member
0 Likes
1,112

Hi,

Can you send me the FM using for ALV? then only we can find what is the problem with that.

please follow the code below.

CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'

EXPORTING

I_BYPASSING_BUFFER = ' '

I_SAVE = 'A'

I_CALLBACK_PROGRAM = 'ZMSTR0003'

IS_LAYOUT = WA_LAYOUT

IT_FIELDCAT = IT_FCAT[]

I_GRID_TITLE = W_GRIDTITLE

TABLES

T_OUTTAB = IT_OFIN[].

Read only

Former Member
Read only

Former Member
0 Likes
1,112

Hi vijay,

if i use 'STATUS' dump is coming it is raising exception. saying that statement couldnot be executed

regards,

kani.

Read only

Former Member
0 Likes
1,112

Hi,

Just passing Status doesnt suffice.

You need to create a subroutine

Form STATUS Using EX_TAB Type SLIS_T_EXTAB.

set PF-Status 'SCREEN_ALV' Exluding EX_TAB.

EndForm.

where screen_alv has to be create in SE41.

santhosh

Edited by: Kaluvala Santhosh on Sep 17, 2008 4:36 PM

Read only

0 Likes
1,112

yes i have created and activated std menu and i m using form also . but that statement is not executed .

is it necessary to call the fom if so where should i call.

thanks and regards,

kani.

Read only

Former Member
0 Likes
1,112

Hi vijay,

i applied note 703795 it is working fine now. no question mark is coming.

thanks and regards,

kani,.