DBA Data[Home] [Help]

APPS.OE_INTERNAL_REQUISITION_PVT dependencies on OE_LINE_SECURITY

Line 138: OE_LINE_SECURITY.g_record := l_line_rowtype_rec;

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

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

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

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

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

Line 198: OE_Line_Security.Entity -- Is_OP_Constrained

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

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

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

Line 281: OE_Line_Security.Entity -- Is_OP_Constrained

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

Line 293: OE_LINE_SECURITY.g_record := l_rowtype_rec;

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

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

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