DBA Data[Home] [Help]

APPS.PO_AUTO_HEADER_PROCESS_PVT dependencies on FINANCIALS_SYSTEM_PARAMETERS

Line 1099: -- financials_system_parameters.this is done to maintain consistency with the other

1095:
1096:
1097: --Bug 14369833
1098: --if x_valid_ship_to and x_valid_bill_to is null, need to default them from
1099: -- financials_system_parameters.this is done to maintain consistency with the other
1100: -- flows,i.e when creating a an award from BWC, when the user clicks on Create
1101: -- the ship_to_loc_id, bill_to_loc_id are defaulted from financials_system_parameters
1102: IF x_valid_ship_to IS null THEN
1103: SELECT ship_to_location_id

Line 1101: -- the ship_to_loc_id, bill_to_loc_id are defaulted from financials_system_parameters

1097: --Bug 14369833
1098: --if x_valid_ship_to and x_valid_bill_to is null, need to default them from
1099: -- financials_system_parameters.this is done to maintain consistency with the other
1100: -- flows,i.e when creating a an award from BWC, when the user clicks on Create
1101: -- the ship_to_loc_id, bill_to_loc_id are defaulted from financials_system_parameters
1102: IF x_valid_ship_to IS null THEN
1103: SELECT ship_to_location_id
1104: INTO x_valid_ship_to
1105: FROM financials_system_parameters ;

Line 1105: FROM financials_system_parameters ;

1101: -- the ship_to_loc_id, bill_to_loc_id are defaulted from financials_system_parameters
1102: IF x_valid_ship_to IS null THEN
1103: SELECT ship_to_location_id
1104: INTO x_valid_ship_to
1105: FROM financials_system_parameters ;
1106: END IF;
1107:
1108: IF x_valid_bill_to IS null THEN
1109: SELECT bill_to_location_id

Line 1111: FROM financials_system_parameters ;

1107:
1108: IF x_valid_bill_to IS null THEN
1109: SELECT bill_to_location_id
1110: INTO x_valid_bill_to
1111: FROM financials_system_parameters ;
1112: END IF;
1113:
1114: -- Storing the valid ship_to and bill_to
1115: x_headers.ship_to_loc_id := x_valid_ship_to;