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

GETWA_NOT_ASSIGNED dump error in program SAPLSLVC

senthil_kumar29
Participant
0 Likes
5,378

Hi,

I am using REUSE_ALV_GRID_DISPLAY FM to print ALV report and getting GETWA_NOT_ASSIGNED dump error in program SAPLSLVC.

I check the SAP Note for this error.. no luck..

Any one face similar issue.

Cheers

Senthil

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
2,809

try putting layout parameters like dis..

layout-get_selinfos = 'X'.

layout-colwidth_optimize = 'X'.

layout-box_fieldname = 'SEL'.

layout-detail_initial_lines = 'X'.

layout-detail_titlebar = 'Details'.

Hi,

I am using REUSE_ALV_GRID_DISPLAY FM to print ALV report and getting GETWA_NOT_ASSIGNED dump error in program SAPLSLVC.

I check the SAP Note for this error.. no luck..

Any one face similar issue.

Cheers

Senthil

8 REPLIES 8
Read only

Former Member
0 Likes
2,810

try putting layout parameters like dis..

layout-get_selinfos = 'X'.

layout-colwidth_optimize = 'X'.

layout-box_fieldname = 'SEL'.

layout-detail_initial_lines = 'X'.

layout-detail_titlebar = 'Details'.

Read only

0 Likes
2,809

Hi,

Here is my source code.

    • Layout

it_layout-no_input = 'X'.

it_layout-colwidth_optimize = 'X'.

it_layout-zebra = 'X'.

it_layout-get_selinfos = 'X'.

it_layout-box_fieldname = 'SEL'.

it_layout-detail_initial_lines = 'X'.

it_layout-detail_titlebar = 'Details'.

    • ALV

CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'

EXPORTING

i_callback_pf_status_set = y_pfstatus

i_callback_program = y_repid

  • i_callback_user_command = 'USER_COMMAND'

i_grid_title = y_outtext

is_layout = it_layout

it_fieldcat = it_fieldcat[]

i_save = 'X'

TABLES

t_outtab = it_out

EXCEPTIONS

program_error = 1

OTHERS = 2.

I am still getting dump error.

Any parameter missing..!

Thanks

Senthil

Read only

0 Likes
2,809

hi,

i feel ur fieldcatog assignment having problem not layout.it is work area for field values not assigned properly.

1.check all the fields in capital letter

2.table name given correctly

3.field names are correct.

for checking purpose u can comment entire fields and keep one record in fieldcatalog with correct valueand try to execute ,check whether it is problrm with field catalog.

Read only

0 Likes
2,809

Hi..change like dis...

CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'

EXPORTING

i_callback_pf_status_set = 'SET_PF_STATUS'

i_callback_program = y_repid

i_callback_user_command = 'USER_COMMAND'

i_grid_title = y_outtext

is_layout = it_layout

it_fieldcat = it_fieldcat[]

i_save = 'X'

TABLES

t_outtab = it_out

EXCEPTIONS

program_error = 1

OTHERS = 2.

form set_pf_status.

code...

endform.

Read only

0 Likes
2,809

Hi Thanx for that.. I gave field description in place of actual field name.. Solved

Read only

Former Member
0 Likes
2,809

Hi

Check your field catalog and one of the field is not declared in ITAB which is passed to ALV and used in

field catalog

Regards

Shiva

Read only

senthil_kumar29
Participant
0 Likes
2,809

After run the report when I press Back button.. Getting dump error MOVE_TO_LIT_NOTALLOWED_NODATA.

Any suggestions?

Cheers

Senthil

Read only

Former Member
0 Likes
2,809

Hi Senthil,

This has been a long time.. just wanted to know how you resolved the error.

Gurus,

In my case, we don't have custom code.

To get this dump during transaction, please follow below

go to WRF_PPW01 - select price plan - choose Markdown - click on create new price plan and then you get this dump.

Please let me know what would be the issue if there is no custom code involved.

Thankz,

Ajay