cancel
Showing results for 
Search instead for 
Did you mean: 

VL06O List displays

Former Member
0 Kudos

Hello,

i have a question about the list displays in VL06O.

The secenario is as follows:

There are OBD's in my system.

Each of the OBD's contain a forwarding agent (SPDNR)

If I select in the "LIST OUTBOUND DELIVERIES) just for a date range, the OBD's will be displayed correctly.

If I add then the forwarding agent and the forwarders name into the ALV, the fields are empty.

If I now add the forwarding agent into the query and do the same in the ALV, both fields are filled.

This worries me a little.

Can you tell me if there is a customizing entry to configure the lists or a known SAP note?

I have searched the SDN and the SERVICE MARKETPLACE already, but without a propoer result.

Best regards

Uwe

Accepted Solutions (1)

Accepted Solutions (1)

eduardo_hinojosa
Active Contributor
0 Kudos

Hi,

I think that the problem has its origin in ABAP code, so IMG doesn't works:

In module function WS_LM_DATA_SELECTION, you have this coding:

if if_spdnr_add ne space.

call function 'WS_LM_FORWARDING_AGENT_ADD'

tables

ct_postab = ct_postab.

endif.

Set a break-point, in 'IF if_spdnr_add NE SPACE' and surely you will have your answer.

Regards,

Eduardo

pd: I forgot it, check Note 191408 - Perf.outbound delivery monitor:sel.forwarding agent

Edited by: Eduardo Hinojosa on Jul 14, 2009 3:37 PM

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello,

I found the answer according to your source code fragment.

As IF_SPDNR_ADD is empty, the function will not be performed.

If I set in the query the forwarding agent "NOT EQUAL" to "SPACE" I get the expected result.

Thank you Eduardo!

Best regards

Uwe