DBA Data[Home] [Help]

APPS.OE_ORDER_PUB dependencies on OE_GLOBALS

Line 269: OE_GLOBALS.Set_Context();

265: raise FND_API.G_EXC_ERROR;
266: end if;
267: end if;
268: MO_GLOBAL.set_policy_context('S',l_org_id);
269: OE_GLOBALS.Set_Context();
270: end if;
271: end ;
272:
273: -- Header_Adj record type

Line 1818: l_control_rec OE_GLOBALS.Control_Rec_Type;

1814: )
1815: IS
1816: l_api_version_number CONSTANT NUMBER := 1.0;
1817: l_api_name CONSTANT VARCHAR2(30):= 'Process_Order';
1818: l_control_rec OE_GLOBALS.Control_Rec_Type;
1819: l_return_status VARCHAR2(1);
1820: l_header_rec Header_Rec_Type;
1821: l_Header_Adj_tbl Header_Adj_Tbl_Type;
1822: l_Header_price_Att_tbl Header_Price_Att_Tbl_Type ;

Line 2528: l_control_rec OE_GLOBALS.control_rec_type;

2524: , x_msg_count OUT NOCOPY /* file.sql.39 change */ NUMBER
2525: , x_msg_data OUT NOCOPY /* file.sql.39 change */ VARCHAR2
2526: ) IS
2527: l_line_tbl OE_ORDER_PUB.Line_Tbl_Type;
2528: l_control_rec OE_GLOBALS.control_rec_type;
2529: l_api_name CONSTANT VARCHAR2(30) := 'Update Line';
2530: l_header_out_rec OE_ORDER_PUB.Header_Rec_Type;
2531: l_line_adj_out_tbl oe_order_pub.line_Adj_Tbl_Type;
2532: l_header_adj_out_tbl OE_Order_PUB.Header_Adj_Tbl_Type;

Line 2606: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID

2602: -- Set Application Context
2603: -- Since we pass validation, we start to Set Application Context
2604: -- Call MO set_policy_context to set application context by sending
2605: -- p_access_mode ='S' (Single Operating Unit Access) and org_id
2606: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID
2607: --
2608: -- MO_GLOBAL.set_policy_context('S',l_org_id);
2609: -- OE_GLOBALS.Set_Context();
2610: --Moved the logic to set context to new procedure set_context

Line 2609: -- OE_GLOBALS.Set_Context();

2605: -- p_access_mode ='S' (Single Operating Unit Access) and org_id
2606: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID
2607: --
2608: -- MO_GLOBAL.set_policy_context('S',l_org_id);
2609: -- OE_GLOBALS.Set_Context();
2610: --Moved the logic to set context to new procedure set_context
2611: set_context(p_org_id =>l_org_id);
2612: -- From now on, we are in single access mode.
2613:

Line 2622: If (x_line_out_tbl(i).operation = OE_GLOBALS.G_OPR_CREATE

2618: /* System Parameter "OM: Subscription Item Line Behavior" needs to be honored only from UI */
2619: If x_line_out_tbl.count > 0 THEN
2620: For i in x_line_out_tbl.first .. x_line_out_tbl.last
2621: LOOP
2622: If (x_line_out_tbl(i).operation = OE_GLOBALS.G_OPR_CREATE
2623: or x_line_out_tbl(i).operation = OE_GLOBALS.G_OPR_INSERT)
2624: AND NVL(x_line_out_tbl(i).subscription_enable_flag,FND_API.G_MISS_CHAR) = FND_API.G_MISS_CHAR THEN
2625: x_line_out_tbl(i).subscription_enable_flag := 'N';
2626: End If;

Line 2623: or x_line_out_tbl(i).operation = OE_GLOBALS.G_OPR_INSERT)

2619: If x_line_out_tbl.count > 0 THEN
2620: For i in x_line_out_tbl.first .. x_line_out_tbl.last
2621: LOOP
2622: If (x_line_out_tbl(i).operation = OE_GLOBALS.G_OPR_CREATE
2623: or x_line_out_tbl(i).operation = OE_GLOBALS.G_OPR_INSERT)
2624: AND NVL(x_line_out_tbl(i).subscription_enable_flag,FND_API.G_MISS_CHAR) = FND_API.G_MISS_CHAR THEN
2625: x_line_out_tbl(i).subscription_enable_flag := 'N';
2626: End If;
2627: End LOOP;

Line 2721: l_control_rec OE_GLOBALS.Control_Rec_Type;

2717: , x_return_status OUT NOCOPY /* file.sql.39 change */ VARCHAR2
2718: , x_msg_count OUT NOCOPY /* file.sql.39 change */ NUMBER
2719: , x_msg_data OUT NOCOPY /* file.sql.39 change */ VARCHAR2
2720: )IS
2721: l_control_rec OE_GLOBALS.Control_Rec_Type;
2722: l_api_name CONSTANT VARCHAR2(30) := 'Process_header';
2723: l_line_out_tbl OE_ORDER_PUB.Line_Tbl_Type;
2724: l_line_adj_out_tbl oe_order_pub.line_Adj_Tbl_Type;
2725: l_header_adj_out_tbl OE_Order_PUB.Header_Adj_Tbl_Type;

Line 2799: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID

2795: -- Set Application Context
2796: -- Since we pass validation, we start to Set Application Context
2797: -- Call MO set_policy_context to set application context by sending
2798: -- p_access_mode ='S' (Single Operating Unit Access) and org_id
2799: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID
2800: --
2801: --MO_GLOBAL.set_policy_context('S',l_org_id);
2802: --OE_GLOBALS.Set_Context();
2803: --Moved the logic to set context to new procedure set_context

Line 2802: --OE_GLOBALS.Set_Context();

2798: -- p_access_mode ='S' (Single Operating Unit Access) and org_id
2799: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID
2800: --
2801: --MO_GLOBAL.set_policy_context('S',l_org_id);
2802: --OE_GLOBALS.Set_Context();
2803: --Moved the logic to set context to new procedure set_context
2804: set_context(p_org_id =>l_org_id);
2805:
2806: -- From now on, we are in single access mode.

Line 2904: l_control_rec OE_GLOBALS.Control_Rec_Type;

2900: , x_msg_data OUT NOCOPY /* file.sql.39 change */ VARCHAR2
2901: )IS
2902: l_header_rec OE_ORDER_PUB.Header_Rec_Type;
2903: l_old_header_rec OE_ORDER_PUB.Header_Rec_Type;
2904: l_control_rec OE_GLOBALS.Control_Rec_Type;
2905: l_api_name CONSTANT VARCHAR2(30) := 'Delete Order';
2906: l_header_out_rec OE_ORDER_PUB.Header_Rec_Type;
2907: l_line_out_tbl OE_ORDER_PUB.Line_Tbl_Type;
2908: l_line_adj_out_tbl oe_order_pub.line_Adj_Tbl_Type;

Line 2982: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID

2978: -- Set Application Context
2979: -- Since we pass validation, we start to Set Application Context
2980: -- Call MO set_policy_context to set application context by sending
2981: -- p_access_mode ='S' (Single Operating Unit Access) and org_id
2982: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID
2983: --
2984: --MO_GLOBAL.set_policy_context('S',l_org_id);
2985: --OE_GLOBALS.Set_Context();
2986: --Moved the logic to set context to new procedure set_context

Line 2985: --OE_GLOBALS.Set_Context();

2981: -- p_access_mode ='S' (Single Operating Unit Access) and org_id
2982: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID
2983: --
2984: --MO_GLOBAL.set_policy_context('S',l_org_id);
2985: --OE_GLOBALS.Set_Context();
2986: --Moved the logic to set context to new procedure set_context
2987: set_context(p_org_id =>l_org_id);
2988:
2989: -- From now on, we are in single access mode.

Line 2997: l_header_rec.operation := OE_GLOBALS.G_OPR_DELETE;

2993:
2994: l_header_rec := OE_Order_PUB.G_MISS_HEADER_REC;
2995: l_header_rec.header_id := p_header_id;
2996: -- Set Operation. Bug #1198949
2997: l_header_rec.operation := OE_GLOBALS.G_OPR_DELETE;
2998:
2999:
3000:
3001: OE_ORDER_PVT.Process_order

Line 3091: l_control_rec OE_GLOBALS.control_rec_type;

3087: , x_msg_count OUT NOCOPY /* file.sql.39 change */ NUMBER
3088: , x_msg_data OUT NOCOPY /* file.sql.39 change */ VARCHAR2
3089: )IS
3090: l_line_tbl OE_ORDER_PUB.Line_tbl_Type;
3091: l_control_rec OE_GLOBALS.control_rec_type;
3092: l_api_name CONSTANT VARCHAR2(30) := 'Update Line';
3093: l_header_out_rec OE_ORDER_PUB.Header_Rec_Type;
3094: l_line_out_tbl OE_ORDER_PUB.Line_Tbl_Type;
3095: l_line_adj_out_tbl oe_order_pub.line_Adj_Tbl_Type;

Line 3169: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID

3165: -- Set Application Context
3166: -- Since we pass validation, we start to Set Application Context
3167: -- Call MO set_policy_context to set application context by sending
3168: -- p_access_mode ='S' (Single Operating Unit Access) and org_id
3169: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID
3170: --
3171: --MO_GLOBAL.set_policy_context('S',l_org_id);
3172: --OE_GLOBALS.Set_Context();
3173: --Moved the logic to set context to new procedure set_context

Line 3172: --OE_GLOBALS.Set_Context();

3168: -- p_access_mode ='S' (Single Operating Unit Access) and org_id
3169: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID
3170: --
3171: --MO_GLOBAL.set_policy_context('S',l_org_id);
3172: --OE_GLOBALS.Set_Context();
3173: --Moved the logic to set context to new procedure set_context
3174: set_context(p_org_id =>l_org_id);
3175:
3176:

Line 3187: l_line_tbl(1).operation := OE_GLOBALS.G_OPR_DELETE;

3183: l_line_tbl(1).line_id := p_line_id;
3184:
3185: -- Set Operation.
3186:
3187: l_line_tbl(1).operation := OE_GLOBALS.G_OPR_DELETE;
3188:
3189: OE_Order_PVT.Process_order
3190: ( p_api_version_number => 1.0
3191: , p_init_msg_list => FND_API.G_TRUE

Line 3283: l_control_rec OE_GLOBALS.Control_Rec_Type;

3279: , x_msg_data OUT NOCOPY /* file.sql.39 change */ VARCHAR2
3280: )IS
3281: l_header_rec OE_ORDER_PUB.Header_Rec_Type;
3282: l_old_header_rec OE_ORDER_PUB.Header_Rec_Type;
3283: l_control_rec OE_GLOBALS.Control_Rec_Type;
3284: l_api_name CONSTANT VARCHAR2(30) := 'Process_header';
3285: l_header_out_rec OE_ORDER_PUB.Header_Rec_Type;
3286: l_line_out_tbl OE_ORDER_PUB.Line_Tbl_Type;
3287: l_line_adj_out_tbl oe_order_pub.line_Adj_Tbl_Type;

Line 3361: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID

3357: -- Set Application Context
3358: -- Since we pass validation, we start to Set Application Context
3359: -- Call MO set_policy_context to set application context by sending
3360: -- p_access_mode ='S' (Single Operating Unit Access) and org_id
3361: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID
3362: --
3363: --MO_GLOBAL.set_policy_context('S',l_org_id);
3364: --OE_GLOBALS.Set_Context();
3365: --Moved the logic to set context to new procedure set_context

Line 3364: --OE_GLOBALS.Set_Context();

3360: -- p_access_mode ='S' (Single Operating Unit Access) and org_id
3361: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID
3362: --
3363: --MO_GLOBAL.set_policy_context('S',l_org_id);
3364: --OE_GLOBALS.Set_Context();
3365: --Moved the logic to set context to new procedure set_context
3366: set_context(p_org_id =>l_org_id);
3367:
3368: -- From now on, we are in single access mode.

Line 3375: l_header_rec.operation := OE_GLOBALS.G_OPR_UPDATE; -- Bug 8340976

3371:
3372:
3373: l_header_rec := OE_Order_PUB.G_MISS_HEADER_REC;
3374: l_header_rec.header_id := p_header_id;
3375: l_header_rec.operation := OE_GLOBALS.G_OPR_UPDATE; -- Bug 8340976
3376:
3377:
3378:
3379:

Line 3393: -- Bug 8340976 l_header_rec.operation := OE_GLOBALS.G_OPR_UPDATE;

3389: RAISE FND_API.G_EXC_ERROR;
3390: END IF;
3391:
3392:
3393: -- Bug 8340976 l_header_rec.operation := OE_GLOBALS.G_OPR_UPDATE;
3394:
3395: OE_Order_PVT.Process_order
3396: ( p_api_version_number => 1.0
3397: , p_init_msg_list => FND_API.G_TRUE

Line 3487: l_control_rec OE_GLOBALS.control_rec_type;

3483: , x_msg_data OUT NOCOPY /* file.sql.39 change */ VARCHAR2
3484: )IS
3485: l_line_rec OE_ORDER_PUB.Line_rec_Type;
3486: l_line_tbl OE_ORDER_PUB.Line_tbl_Type;
3487: l_control_rec OE_GLOBALS.control_rec_type;
3488: l_api_name CONSTANT VARCHAR2(30) := 'Update Line';
3489: l_header_out_rec OE_ORDER_PUB.Header_Rec_Type;
3490: l_line_out_tbl OE_ORDER_PUB.Line_Tbl_Type;
3491: l_line_adj_out_tbl oe_order_pub.line_Adj_Tbl_Type;

Line 3565: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID

3561: -- Set Application Context
3562: -- Since we pass validation, we start to Set Application Context
3563: -- Call MO set_policy_context to set application context by sending
3564: -- p_access_mode ='S' (Single Operating Unit Access) and org_id
3565: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID
3566: --
3567: --MO_GLOBAL.set_policy_context('S',l_org_id);
3568: --OE_GLOBALS.Set_Context();
3569: --Moved the logic to set context to new procedure set_context

Line 3568: --OE_GLOBALS.Set_Context();

3564: -- p_access_mode ='S' (Single Operating Unit Access) and org_id
3565: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID
3566: --
3567: --MO_GLOBAL.set_policy_context('S',l_org_id);
3568: --OE_GLOBALS.Set_Context();
3569: --Moved the logic to set context to new procedure set_context
3570: set_context(p_org_id =>l_org_id);
3571:
3572: -- From now on, we are in single access mode.

Line 3590: l_line_rec.operation := OE_GLOBALS.G_OPR_UPDATE;

3586: ELSIF l_return_status = FND_API.G_RET_STS_ERROR THEN
3587: RAISE FND_API.G_EXC_ERROR;
3588: END IF;
3589:
3590: l_line_rec.operation := OE_GLOBALS.G_OPR_UPDATE;
3591: l_line_tbl(1) := l_line_rec;
3592:
3593:
3594: OE_Order_PVT.Process_order

Line 3824: l_control_rec OE_GLOBALS.Control_Rec_Type;

3820: l_operating_unit VARCHAR2(240);
3821:
3822: l_api_version_number CONSTANT NUMBER := 1.0;
3823: l_api_name CONSTANT VARCHAR2(30):= 'Process_Order';
3824: l_control_rec OE_GLOBALS.Control_Rec_Type;
3825: l_return_status VARCHAR2(1);
3826: l_header_rec Header_Rec_Type;
3827: l_Header_Adj_tbl Header_Adj_Tbl_Type;
3828: l_Header_price_Att_tbl Header_Price_Att_Tbl_Type ;

Line 3933: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID

3929: -- Set Application Context
3930: -- Since we pass validation, we start to Set Application Context
3931: -- Call MO set_policy_context to set application context by sending
3932: -- p_access_mode ='S' (Single Operating Unit Access) and org_id
3933: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID
3934: --
3935: --MO_GLOBAL.set_policy_context('S',l_org_id);
3936: --OE_GLOBALS.Set_Context();
3937: --Moved the logic to set context to new procedure set_context

Line 3936: --OE_GLOBALS.Set_Context();

3932: -- p_access_mode ='S' (Single Operating Unit Access) and org_id
3933: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID
3934: --
3935: --MO_GLOBAL.set_policy_context('S',l_org_id);
3936: --OE_GLOBALS.Set_Context();
3937: --Moved the logic to set context to new procedure set_context
3938: set_context(p_org_id =>l_org_id);
3939:
3940:

Line 4131: OE_GLOBALS.g_validate_desc_flex :=p_validate_desc_flex; --bug 4343612

4127: , p_x_line_tbl => l_line_tbl
4128: , x_return_status =>x_return_status);
4129: END IF;
4130:
4131: OE_GLOBALS.g_validate_desc_flex :=p_validate_desc_flex; --bug 4343612
4132: -- Call OE_Order_PVT.Process_Order
4133: -- sol_ord_er #16014165 start
4134: /* System Parameter "OM: Subscription Item Line Behavior" needs to be honored only from UI */
4135: If l_line_tbl.count > 0 THEN

Line 4138: If (l_line_tbl(i).operation = OE_GLOBALS.G_OPR_CREATE

4134: /* System Parameter "OM: Subscription Item Line Behavior" needs to be honored only from UI */
4135: If l_line_tbl.count > 0 THEN
4136: For i in l_line_tbl.first .. l_line_tbl.last
4137: LOOP
4138: If (l_line_tbl(i).operation = OE_GLOBALS.G_OPR_CREATE
4139: or l_line_tbl(i).operation = OE_GLOBALS.G_OPR_INSERT)
4140: AND NVL(l_line_tbl(i).subscription_enable_flag,FND_API.G_MISS_CHAR) = FND_API.G_MISS_CHAR THEN
4141: l_line_tbl(i).subscription_enable_flag := 'N';
4142: End If;

Line 4139: or l_line_tbl(i).operation = OE_GLOBALS.G_OPR_INSERT)

4135: If l_line_tbl.count > 0 THEN
4136: For i in l_line_tbl.first .. l_line_tbl.last
4137: LOOP
4138: If (l_line_tbl(i).operation = OE_GLOBALS.G_OPR_CREATE
4139: or l_line_tbl(i).operation = OE_GLOBALS.G_OPR_INSERT)
4140: AND NVL(l_line_tbl(i).subscription_enable_flag,FND_API.G_MISS_CHAR) = FND_API.G_MISS_CHAR THEN
4141: l_line_tbl(i).subscription_enable_flag := 'N';
4142: End If;
4143: End LOOP;

Line 4451: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID

4447: -- Set Application Context
4448: -- Since we pass validation, we start to Set Application Context
4449: -- Call MO set_policy_context to set application context by sending
4450: -- p_access_mode ='S' (Single Operating Unit Access) and org_id
4451: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID
4452: --
4453: --MO_GLOBAL.set_policy_context('S',l_org_id);
4454: --OE_GLOBALS.Set_Context();
4455: --Moved the logic to set context to new procedure set_context

Line 4454: --OE_GLOBALS.Set_Context();

4450: -- p_access_mode ='S' (Single Operating Unit Access) and org_id
4451: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID
4452: --
4453: --MO_GLOBAL.set_policy_context('S',l_org_id);
4454: --OE_GLOBALS.Set_Context();
4455: --Moved the logic to set context to new procedure set_context
4456: set_context(p_org_id =>l_org_id);
4457:
4458: -- From now on, we are in single access mode.

Line 4730: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID

4726: -- Set Application Context
4727: -- Since we pass validation, we start to Set Application Context
4728: -- Call MO set_policy_context to set application context by sending
4729: -- p_access_mode ='S' (Single Operating Unit Access) and org_id
4730: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID
4731: --
4732: --MO_GLOBAL.set_policy_context('S',l_org_id);
4733: --OE_GLOBALS.Set_Context();
4734: --Moved the logic to set context to new procedure set_context

Line 4733: --OE_GLOBALS.Set_Context();

4729: -- p_access_mode ='S' (Single Operating Unit Access) and org_id
4730: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID
4731: --
4732: --MO_GLOBAL.set_policy_context('S',l_org_id);
4733: --OE_GLOBALS.Set_Context();
4734: --Moved the logic to set context to new procedure set_context
4735: set_context(p_org_id =>l_org_id);
4736:
4737:

Line 4985: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID

4981: -- Set Application Context
4982: -- Since we pass validation, we start to Set Application Context
4983: -- Call MO set_policy_context to set application context by sending
4984: -- p_access_mode ='S' (Single Operating Unit Access) and org_id
4985: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID
4986: --
4987: --MO_GLOBAL.set_policy_context('S',l_org_id);
4988: --OE_GLOBALS.Set_Context();
4989: --Moved the logic to set context to new procedure set_context

Line 4988: --OE_GLOBALS.Set_Context();

4984: -- p_access_mode ='S' (Single Operating Unit Access) and org_id
4985: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID
4986: --
4987: --MO_GLOBAL.set_policy_context('S',l_org_id);
4988: --OE_GLOBALS.Set_Context();
4989: --Moved the logic to set context to new procedure set_context
4990: set_context(p_org_id =>l_org_id);
4991:
4992:

Line 5133: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID

5129: -- Set Application Context
5130: -- Since we pass validation, we start to Set Application Context
5131: -- Call MO set_policy_context to set application context by sending
5132: -- p_access_mode ='S' (Single Operating Unit Access) and org_id
5133: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID
5134: --
5135: --MO_GLOBAL.set_policy_context('S',l_org_id);
5136: --OE_GLOBALS.Set_Context();
5137: --Moved the logic to set context to new procedure set_context

Line 5136: --OE_GLOBALS.Set_Context();

5132: -- p_access_mode ='S' (Single Operating Unit Access) and org_id
5133: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID
5134: --
5135: --MO_GLOBAL.set_policy_context('S',l_org_id);
5136: --OE_GLOBALS.Set_Context();
5137: --Moved the logic to set context to new procedure set_context
5138: set_context(p_org_id =>l_org_id);
5139:
5140:

Line 5277: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID

5273: -- Set Application Context
5274: -- Since we pass validation, we start to Set Application Context
5275: -- Call MO set_policy_context to set application context by sending
5276: -- p_access_mode ='S' (Single Operating Unit Access) and org_id
5277: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID
5278: --
5279: --MO_GLOBAL.set_policy_context('S',l_org_id);
5280: --OE_GLOBALS.Set_Context();
5281: --Moved the logic to set context to new procedure set_context

Line 5280: --OE_GLOBALS.Set_Context();

5276: -- p_access_mode ='S' (Single Operating Unit Access) and org_id
5277: -- Then call OE_GLOBALS.Set_Context to set OE_GLOBALS.G_ORG_ID
5278: --
5279: --MO_GLOBAL.set_policy_context('S',l_org_id);
5280: --OE_GLOBALS.Set_Context();
5281: --Moved the logic to set context to new procedure set_context
5282: set_context(p_org_id =>l_org_id);
5283:
5284: