DBA Data[Home] [Help]

APPS.IBE_QUOTE_SAVE_PVT dependencies on ASO_UTILITY_PVT

Line 2647: l_contract_template_id := to_number(ASO_UTILITY_PVT.GET_OU_ATTRIBUTE_VALUE(ASO_UTILITY_PVT.G_DEFAULT_CONTRACT_TEMPLATE)); --New style

2643:
2644: --instantiate a contract and associate to the quote
2645: /*mannamra: Chnages for MOAC : Bug 4682364*/
2646: --l_contract_template_id := FND_Profile.Value('ASO_DEFAULT_CONTRACT_TEMPLATE'); --Old style
2647: l_contract_template_id := to_number(ASO_UTILITY_PVT.GET_OU_ATTRIBUTE_VALUE(ASO_UTILITY_PVT.G_DEFAULT_CONTRACT_TEMPLATE)); --New style
2648: --
2649: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
2650: IBE_UTIL.debug('l_contract_template_id = '||l_contract_template_id);
2651: end if;

Line 3724: l_salesrep_id := ASO_UTILITY_PVT.GET_OU_ATTRIBUTE_VALUE(ASO_UTILITY_PVT.G_DEFAULT_SALESREP); --new way of getting the salesrep id

3720: longer a profile value but is instead stored
3721: as Quoting parameter. Bug ref: 4682364*/
3722:
3723: --l_salesrep_id := FND_Profile.Value('ASO_DEFAULT_PERSON_ID'); --Old code
3724: l_salesrep_id := ASO_UTILITY_PVT.GET_OU_ATTRIBUTE_VALUE(ASO_UTILITY_PVT.G_DEFAULT_SALESREP); --new way of getting the salesrep id
3725:
3726: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
3727: IBE_UTIL.debug('IBE_QUOTE_SAVE_PVT.Request_for_sales_assistance: salesrep id from quote_attrib: '||l_salesrep_id);
3728: END IF;

Line 3844: l_contract_template_id := to_number(ASO_UTILITY_PVT.GET_OU_ATTRIBUTE_VALUE(ASO_UTILITY_PVT.G_DEFAULT_CONTRACT_TEMPLATE)); --New style

3840: --no contract associated with the quote yet, hence get the contract template id.
3841: --instantiate a contract and associate to the quote
3842: /*Mannamra: Changes for MOAC: Bug 4682364**/
3843: --l_contract_template_id := FND_Profile.Value('ASO_DEFAULT_CONTRACT_TEMPLATE'); --Old style
3844: l_contract_template_id := to_number(ASO_UTILITY_PVT.GET_OU_ATTRIBUTE_VALUE(ASO_UTILITY_PVT.G_DEFAULT_CONTRACT_TEMPLATE)); --New style
3845: /*Mannamra: End of changes for MOAC**/
3846: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
3847: IBE_UTIL.debug('l_contract_template_id = '||l_contract_template_id);
3848: IBE_UTIL.debug('p_quote_header_id = '||p_quote_header_id);

Line 4799: l_tmp_hd_shipment_tbl := ASO_UTILITY_PVT.Query_Shipment_Rows(

4795: IBE_Quote_Misc_pvt.getQuoteLastUpdateDate(l_qte_header_rec.quote_header_id); -- Bug# 1955991
4796: END IF;
4797: l_hd_shipment_tbl := p_hd_shipment_tbl;
4798: -- More Bug# 1955991
4799: l_tmp_hd_shipment_tbl := ASO_UTILITY_PVT.Query_Shipment_Rows(
4800: p_qte_header_id => l_qte_header_rec.quote_header_id,
4801: p_qte_line_id => null);
4802:
4803: IF l_tmp_hd_shipment_tbl.COUNT > 0 THEN