DBA Data[Home] [Help]

APPS.IBE_QUOTE_SAVE_PVT dependencies on ASO_UTILITY_PVT

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

2662:
2663: --instantiate a contract and associate to the quote
2664: /*mannamra: Chnages for MOAC : Bug 4682364*/
2665: --l_contract_template_id := FND_Profile.Value('ASO_DEFAULT_CONTRACT_TEMPLATE'); --Old style
2666: l_contract_template_id := to_number(ASO_UTILITY_PVT.GET_OU_ATTRIBUTE_VALUE(ASO_UTILITY_PVT.G_DEFAULT_CONTRACT_TEMPLATE)); --New style
2667: --
2668: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
2669: IBE_UTIL.debug('l_contract_template_id = '||l_contract_template_id);
2670: end if;

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

3739: longer a profile value but is instead stored
3740: as Quoting parameter. Bug ref: 4682364*/
3741:
3742: --l_salesrep_id := FND_Profile.Value('ASO_DEFAULT_PERSON_ID'); --Old code
3743: l_salesrep_id := ASO_UTILITY_PVT.GET_OU_ATTRIBUTE_VALUE(ASO_UTILITY_PVT.G_DEFAULT_SALESREP); --new way of getting the salesrep id
3744:
3745: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
3746: IBE_UTIL.debug('IBE_QUOTE_SAVE_PVT.Request_for_sales_assistance: salesrep id from quote_attrib: '||l_salesrep_id);
3747: END IF;

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

3859: --no contract associated with the quote yet, hence get the contract template id.
3860: --instantiate a contract and associate to the quote
3861: /*Mannamra: Changes for MOAC: Bug 4682364**/
3862: --l_contract_template_id := FND_Profile.Value('ASO_DEFAULT_CONTRACT_TEMPLATE'); --Old style
3863: l_contract_template_id := to_number(ASO_UTILITY_PVT.GET_OU_ATTRIBUTE_VALUE(ASO_UTILITY_PVT.G_DEFAULT_CONTRACT_TEMPLATE)); --New style
3864: /*Mannamra: End of changes for MOAC**/
3865: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
3866: IBE_UTIL.debug('l_contract_template_id = '||l_contract_template_id);
3867: IBE_UTIL.debug('p_quote_header_id = '||p_quote_header_id);

Line 4886: l_tmp_hd_shipment_tbl := ASO_UTILITY_PVT.Query_Shipment_Rows(

4882: IBE_Quote_Misc_pvt.getQuoteLastUpdateDate(l_qte_header_rec.quote_header_id); -- Bug# 1955991
4883: END IF;
4884: l_hd_shipment_tbl := p_hd_shipment_tbl;
4885: -- More Bug# 1955991
4886: l_tmp_hd_shipment_tbl := ASO_UTILITY_PVT.Query_Shipment_Rows(
4887: p_qte_header_id => l_qte_header_rec.quote_header_id,
4888: p_qte_line_id => null);
4889:
4890: IF l_tmp_hd_shipment_tbl.COUNT > 0 THEN