Re: [sap-log-sd] ALV filter criteria - strange problem.
Posted by
Admin at
|
Share this post:
|
on 07/28/2009 12:49:00 PM
Hi Nakayama,
Are you seeing values such as 'AG' (sold-to party) on the ALV and 'SP' (Sold-to party) on the filter drop down?
If this is your issue it is due to the conversion exit on the domain (you can see this in SE11).
To get the values to match, try sending the ALV field value to function CONVERSION_EXIT_PARVW_OUTPUT and displaying the result on your ALV. Another way to get the conversion is to use a write statement to populate you ALV field:
Data:
lv_PARVW(2) type c,
lv_tabix type tabix.
loop at itab.
lv_tabix = sy-tabix.
* use FM:
call function 'CONVERSION_EXIT_PARVW_OUTPUT'
exporting
input = itab-PARVW
importing
output = lv_PARVW
* or use write:
write itab-PARVW to lv_PARVW.
itab-PARVW = lv_PARVW.
modify itab index lv_tabix transporting PARVW.
endloop.
You can also see how this works using SE16. If you have the user parameter set to 'SE16 standard list' you'll see the data on the initial output screen without the conversion (the way it is actually stored in the table). And then double click a line and you'll see it displayed with the conversion (the way a write statement would display it).
hope this helps
mike
________________________________
From: USER_1654336 via sap-log-sd <sap-log-sd@Groups.ITtoolbox.com>
To: Mike Hammond <mhammond7926@yahoo.com>
Sent: Tuesday, July 28, 2009 8:16:52 AM
Subject: [sap-log-sd] ALV filter criteria - strange problem.
Hi experts!
I have a strange problem:
In my ALV i've got a field, "partner function" listed... when i select this field, and go to "filter criteria" calling the standard selection screen for this field. I press F4 and the elements listed do not correspond to the elements listed for this field in the ALV...
Please help.
Tks. __.____._
Toolbox.com
4343 N. Scottsdale Road
Suite 280
Scottsdale, AZ 85251
In the Spotlight
Manage group e-mails
Create an FAQ on this topic
Tell us what you think
Unsubscribe from discussion