cancel
Showing results for 
Search instead for 
Did you mean: 

OVS Questions

Former Member
0 Kudos

I have a couple of questions for the OVS experts.

1) The Customer Search BAPI that I'm using returns 27 columns. I've mapped 6 of those to my Controller context (OVSSearch).

The getOVSInputNode method returns wdContext.nodeOVSCustomerQueryInput() which is the context node where I've

mapped the six columns. Regardless it is pulling all 27 columns. Is my assumption correct that is how you

manage the output list? Also, is there a way of changing the order of these columns?

2) I have a page where I'm getting SOLDTO and SHIPTO information and wanted use the same OVS Customer Search for both.

What do I have to do to leverage the code I've already written? It looks like I need a way in the applyResult method to determine the current field.

Thanks,

Greg


/**** OVSSearch (Controller) Context: ****/

+ OVSCustomeQueryOutput (M)
  - City
  - Country
  - Kunnr
  - Name
  - Street
  - Street_no
 
 + Z_Mv_Possible_Cust_Values_Input (M)
   + Output
     + Cust_List
       - City
       - Country
       - Kunnr
       - Name
       - Street
       - Street_no
    
   - Kunnr
   - Name
   - ...

  + OVSCustomerQueryInput (V)
   - Kunnr
   - Name
   - ...


/**** Code from OVSSearch (Controller) ****/

public com.sap.tc.webdynpro.progmodel.api.IWDNode getOVSInputNode( )
  { return wdContext.nodeOVSCustomerQueryInput(); }
  

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi

Check Tjis URL

<a href="http://help.sap.com/saphelp_nw04/helpdata/en/13/aeeb41eda96624e10000000a1550b0/frameset.htm">Object Value Selector</a>

Regards

Chandran

Former Member
0 Kudos

For number one we just modified the BAPI to give us the fields we are interested in and in the correct order. I still could use some direction on #2.

Thanks in advance.

/Greg