DBA Data[Home] [Help]

APPS.QP_ATTRIBUTES_PVT dependencies on QP_CON_UTIL

Line 46: QP_Con_Util.Convert_Miss_To_Null (l_old_CON_rec);

42:
43: -- Set missing old record elements to NULL.
44:
45: l_old_CON_rec :=
46: QP_Con_Util.Convert_Miss_To_Null (l_old_CON_rec);
47:
48: ELSIF l_CON_rec.operation = QP_GLOBALS.G_OPR_UPDATE
49: OR l_CON_rec.operation = QP_GLOBALS.G_OPR_DELETE
50: THEN

Line 59: l_old_CON_rec := QP_Con_Util.Query_Row

55:
56: IF l_old_CON_rec.prc_context_id = FND_API.G_MISS_NUM
57: THEN
58:
59: l_old_CON_rec := QP_Con_Util.Query_Row
60: ( p_prc_context_id => l_CON_rec.prc_context_id
61: );
62:
63: ELSE

Line 68: QP_Con_Util.Convert_Miss_To_Null (l_old_CON_rec);

64:
65: -- Set missing old record elements to NULL.
66:
67: l_old_CON_rec :=
68: QP_Con_Util.Convert_Miss_To_Null (l_old_CON_rec);
69:
70: END IF;
71:
72: -- Complete new record from old

Line 74: l_CON_rec := QP_Con_Util.Complete_Record

70: END IF;
71:
72: -- Complete new record from old
73:
74: l_CON_rec := QP_Con_Util.Complete_Record
75: ( p_CON_rec => l_CON_rec
76: , p_old_CON_rec => l_old_CON_rec
77: );
78:

Line 111: QP_Con_Util.Clear_Dependent_Attr

107:
108:
109: IF l_control_rec.change_attributes THEN
110: l_p_CON_rec := l_CON_rec;
111: QP_Con_Util.Clear_Dependent_Attr
112: ( p_CON_rec => l_p_CON_rec
113: , p_old_CON_rec => l_old_CON_rec
114: , x_CON_rec => l_CON_rec
115: );

Line 138: QP_Con_Util.Apply_Attribute_Changes

134: IF l_control_rec.default_attributes
135: OR l_control_rec.change_attributes
136: THEN
137: l_p_CON_rec := l_CON_rec;
138: QP_Con_Util.Apply_Attribute_Changes
139: ( p_CON_rec => l_p_CON_rec
140: , p_old_CON_rec => l_old_CON_rec
141: , x_CON_rec => l_CON_rec
142: );

Line 181: QP_Con_Util.Delete_Row

177: IF l_control_rec.write_to_db THEN
178:
179: IF l_CON_rec.operation = QP_GLOBALS.G_OPR_DELETE THEN
180:
181: QP_Con_Util.Delete_Row
182: ( p_prc_context_id => l_CON_rec.prc_context_id
183: );
184:
185: ELSE

Line 195: QP_Con_Util.Update_Row (l_CON_rec);

191: l_CON_rec.last_update_login := FND_GLOBAL.LOGIN_ID;
192:
193: IF l_CON_rec.operation = QP_GLOBALS.G_OPR_UPDATE THEN
194:
195: QP_Con_Util.Update_Row (l_CON_rec);
196:
197: ELSIF l_CON_rec.operation = QP_GLOBALS.G_OPR_CREATE THEN
198:
199: l_CON_rec.creation_date := SYSDATE;

Line 202: QP_Con_Util.Insert_Row (l_CON_rec);

198:
199: l_CON_rec.creation_date := SYSDATE;
200: l_CON_rec.created_by := FND_GLOBAL.USER_ID;
201:
202: QP_Con_Util.Insert_Row (l_CON_rec);
203:
204: END IF;
205:
206: END IF;

Line 847: QP_Con_Util.Lock_Row

843: -- Lock CON
844:
845: IF p_CON_rec.operation = QP_GLOBALS.G_OPR_LOCK THEN
846:
847: QP_Con_Util.Lock_Row
848: ( p_CON_rec => p_CON_rec
849: , x_CON_rec => x_CON_rec
850: , x_return_status => l_return_status
851: );

Line 1008: l_CON_rec := QP_Con_Util.Query_Row

1004: END IF;
1005:
1006: -- Get CON ( parent = CON )
1007:
1008: l_CON_rec := QP_Con_Util.Query_Row
1009: ( p_prc_context_id => p_prc_context_id
1010: );
1011:
1012: -- Get SEG ( parent = CON )