DBA Data[Home] [Help]

APPS.OE_INTERNAL_REQUISITION_PVT dependencies on OE_LINE_SECURITY

Line 141: OE_LINE_SECURITY.g_record := l_line_rowtype_rec;

137: OE_LINE_Util_Ext.API_Rec_To_Rowtype_Rec( p_LINE_rec => l_line_rec
138: , x_rowtype_rec => l_line_rowtype_rec);
139:
140: --Initialize security global record
141: OE_LINE_SECURITY.g_record := l_line_rowtype_rec;
142:
143: IF P_Attribute IS NULL OR P_Attribute in ('REQUEST_DATE','ALL') THEN
144: IF l_debug_level > 0 THEN
145: oe_debug_pub.add( ' Checking if update of Request Date is allowed', 5);

Line 147: l_result := OE_Line_Security.Request_Date -- Is_OP_Constrained

143: IF P_Attribute IS NULL OR P_Attribute in ('REQUEST_DATE','ALL') THEN
144: IF l_debug_level > 0 THEN
145: oe_debug_pub.add( ' Checking if update of Request Date is allowed', 5);
146: END IF;
147: l_result := OE_Line_Security.Request_Date -- Is_OP_Constrained
148: ( p_operation => OE_PC_GLOBALS.UPDATE_OP
149: -- , p_column_name => 'REQUEST_DATE'
150: , p_record => l_line_rowtype_rec
151: , x_on_operation_action => l_action );

Line 174: l_result := OE_Line_Security.Ordered_Quantity --Is_OP_Constrained

170: IF l_debug_level > 0 THEN
171: oe_debug_pub.add( ' Checking if update of Ordered Quantity is allowed',5);
172: END IF;
173:
174: l_result := OE_Line_Security.Ordered_Quantity --Is_OP_Constrained
175: ( p_operation => OE_PC_GLOBALS.UPDATE_OP
176: -- , p_column_name => 'ORDERED_QUANTITY'
177: , p_record => l_line_rowtype_rec
178: , x_on_operation_action => l_action );

Line 201: OE_Line_Security.Entity -- Is_OP_Constrained

197: IF ( NOT l_entity_update_allowed ) AND ( l_attr_update_allowed ) THEN
198:
199: l_line_rec.operation := OE_GLOBALS.G_OPR_UPDATE;
200:
201: OE_Line_Security.Entity -- Is_OP_Constrained
202: ( p_LINE_rec => l_line_rec
203: , x_result => l_result
204: , x_return_status => l_return_status );
205:

Line 275: oe_debug_pub.add( ' Calling OE_Line_SEcurity.Entity',5);

271: OE_LINE_UTIL.QUERY_ROW( p_line_id => P_line_id
272: , x_line_rec => l_line_rec );
273:
274: IF l_debug_level > 0 THEN
275: oe_debug_pub.add( ' Calling OE_Line_SEcurity.Entity',5);
276: END IF;
277:
278: l_line_rec.operation := OE_GLOBALS.G_OPR_UPDATE;
279: l_line_rec.ordered_quantity := 0;

Line 284: OE_Line_Security.Entity -- Is_OP_Constrained

280: IF l_line_rec.ordered_quantity2 IS NOT NULL AND l_line_rec.ordered_quantity2 <> 0 THEN
281: l_line_rec.ordered_quantity2 := 0;
282: END IF;
283:
284: OE_Line_Security.Entity -- Is_OP_Constrained
285: ( p_LINE_rec => l_line_rec
286: , x_result => l_result
287: , x_return_status => l_return_status );
288:

Line 296: OE_LINE_SECURITY.g_record := l_rowtype_rec;

292: ( p_LINE_rec => l_line_rec
293: , x_rowtype_rec => l_rowtype_rec);
294:
295: --Initialize security global record
296: OE_LINE_SECURITY.g_record := l_rowtype_rec;
297:
298: -- Modified the code for bug 7675256
299: l_result := OE_Line_Security.Ordered_Quantity --Is_OP_Constrained
300: ( p_operation => OE_PC_GLOBALS.UPDATE_OP

Line 299: l_result := OE_Line_Security.Ordered_Quantity --Is_OP_Constrained

295: --Initialize security global record
296: OE_LINE_SECURITY.g_record := l_rowtype_rec;
297:
298: -- Modified the code for bug 7675256
299: l_result := OE_Line_Security.Ordered_Quantity --Is_OP_Constrained
300: ( p_operation => OE_PC_GLOBALS.UPDATE_OP
301: -- , p_column_name => 'ORDERED_QUANTITY'
302: , p_record => l_rowtype_rec
303: , x_on_operation_action => l_action );