|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| Question |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: |
PROCEDURE CHECK_INV ( p_inventory_item_id IN NUMBER
, p_reqd_qty IN NUMBER
, p_country IN VARCHAR2
, p_state IN VARCHAR2
, p_postal_code IN VARCHAR2
, x_org_id OUT NUMBER
, x_availability OUT NUMBER
, x_def_lead_time OUT NUMBER
, x_min_lead_time OUT NUMBER)
----------------------------------------------------------------------------------------
oracleconnection = (OracleConnection)TransactionScope.getConnection();
oraclecallablestatement = (OracleCallableStatement)oracleconnection.prepareCall("call APPS.MYPACKAGE.CHECK_INV(:1,:2,:3,:4,:5)");
oraclecallablestatement.registerOutParameter(1, Types.INTEGER);
oraclecallablestatement.registerOutParameter(2, Types.INTEGER);
oraclecallablestatement.registerOutParameter(3, Types.INTEGER);
oraclecallablestatement.registerOutParameter(4, Types.INTEGER);
oraclecallablestatement.setInt(1, inventoryitemid);
oraclecallablestatement.setInt(2, itemQtyinCart);
oraclecallablestatement.setString(3, ShiptoCountry);
oraclecallablestatement.setString(4, ShiptoState);
oraclecallablestatement.setString(5, ShiptoPostalCode);
oraclecallablestatement.execute();
int warehouseorgid = oraclecallablestatement.getInt(1);
int instock = oraclecallablestatement.getInt(2);
|
Advertisement
| Hall of Fame |