Hi All,
Please someone help me with this.
From the Web Dynpro OVS Valuehelp tutorial, I added an advanced search for the airport. I added RFC airport node as a child node of Bapi_Flight_Getlist_Input, and it has 4 elements; Airportid, City, Countr, and Countr_Iso. I did Edit Model Binding to import and bring Destination_From(Bapisfldst) to the Bapi_Flight_Getlist_Input RFC node. The RFC output node is OVSAirportQueryOutput, and the Value Node is OVSAirportQueryInput. Both of them have the same elements as the RFC airport node.
At runtime, it doesnt give me a hit list of the airport in the table when I type in the airport code for the search. It only gives me a blank table without record. How can I get the record of the airport values to show on the table?
This is the code.
public void onQuery(IWDNodeElement queryInputNodeElement, IWDNode queryOutputNode) {
IPublicOVSCust.IOVSAirportQueryInputElement input =
(IPublicOVSCust.IOVSAirportQueryInputElement) queryInputNodeElement;
IPublicOVSCust.IOVSAirportQueryOutputNode output =
(IPublicOVSCust.IOVSAirportQueryOutputNode) queryOutputNode;
Bapi_Flight_Getlist_Input bapiInput = new Bapi_Flight_Getlist_Input();
Bapisfldst bapiAirport = new Bapisfldst();
Bapisfldst bapiCity = new Bapisfldst();
Bapisfldst bapiCountry = new Bapisfldst();
if (input.getAirportid() != null) {
bapiAirport.setAirportid(input.getAirportid());
}
if (input.getCity() != null) {
bapiCity.setCity(input.getCity());
}
if (input.getCountr() != null) {
bapiCountry.setCountr(input.getCountr());
}
bapiInput.setDestination_From(bapiAirport);
bapiInput.setDestination_From(bapiCity);
bapiInput.setDestination_From(bapiCountry);
try {
bapiInput.execute();
<b>what should I put in here?</b>
} catch (Exception e) {
IWDMessageManager msgMgr = wdComponentAPI.getMessageManager();
msgMgr.reportException(e.getLocalizedMessage(), false);
}
}
Please help!
-Napadol