DBA Data[Home] [Help]

APPS.CSD_RULES_ENGINE_PVT dependencies on STANDARD

Line 90: --* Standard Start of API savepoint

86:
87: l_rule_cond_rec cur_get_rule_conditions%ROWTYPE;
88:
89: BEGIN
90: --* Standard Start of API savepoint
91: SAVEPOINT PROCESS_RULE_MATCHING_PVT;
92:
93: --* Standard call to check for call compatibility.
94: IF NOT FND_API.Compatible_API_Call ( c_API_VERSION_NUMBER,

Line 93: --* Standard call to check for call compatibility.

89: BEGIN
90: --* Standard Start of API savepoint
91: SAVEPOINT PROCESS_RULE_MATCHING_PVT;
92:
93: --* Standard call to check for call compatibility.
94: IF NOT FND_API.Compatible_API_Call ( c_API_VERSION_NUMBER,
95: p_api_version_number,
96: c_API_NAME,
97: G_PKG_NAME)

Line 208: --* Standard check for p_commit

204: END LOOP; --* end FOR l_rule_rec ... *--
205:
206: --* logic ends here *--
207:
208: --* Standard check for p_commit
209: IF FND_API.to_Boolean( p_commit ) THEN
210: COMMIT WORK;
211: END IF;
212:

Line 217: --* Standard call to get message count and if count is 1, get message info.

213: --** debug starts!!
214: --dbms_output.put_line('PROCESS_RULE_MATCHING -> after commit work');
215: --** debug ends!!
216:
217: --* Standard call to get message count and if count is 1, get message info.
218: FND_MSG_PUB.Count_And_Get(
219: p_count => x_msg_count,
220: p_data => x_msg_data
221: );

Line 224: --dbms_output.put_line('PROCESS_RULE_MATCHING -> after standard call to message count');

220: p_data => x_msg_data
221: );
222:
223: --** debug starts!!
224: --dbms_output.put_line('PROCESS_RULE_MATCHING -> after standard call to message count');
225: --** debug ends!!
226:
227: EXCEPTION
228: WHEN FND_API.G_EXC_ERROR THEN

Line 331: --* Standard Start of API savepoint

327: l_value_type VARCHAR(30) := NULL;
328: l_defaulting_value VARCHAR(150) := NULL;
329: l_default_rule_id NUMBER := NULL; -- swai: added for 12.1.1
330: BEGIN
331: --* Standard Start of API savepoint
332: SAVEPOINT GET_DFLT_VAL_FROM_RULE_PVT;
333:
334: --* Standard call to check for call compatibility.
335: IF NOT FND_API.Compatible_API_Call ( c_API_VERSION_NUMBER,

Line 334: --* Standard call to check for call compatibility.

330: BEGIN
331: --* Standard Start of API savepoint
332: SAVEPOINT GET_DFLT_VAL_FROM_RULE_PVT;
333:
334: --* Standard call to check for call compatibility.
335: IF NOT FND_API.Compatible_API_Call ( c_API_VERSION_NUMBER,
336: p_api_version_number,
337: c_API_NAME,
338: G_PKG_NAME)

Line 442: --* Standard call to get message count and if count is 1, get message info.

438: x_default_value := l_default_val_str;
439: --* logic ends here *--
440:
441:
442: --* Standard call to get message count and if count is 1, get message info.
443: FND_MSG_PUB.Count_And_Get(
444: p_count => x_msg_count,
445: p_data => x_msg_data
446: );

Line 534: --* Standard Start of API savepoint

530:
531: ---- local variables ----
532: l_default_val_str VARCHAR2(150) := NULL;
533: BEGIN
534: --* Standard Start of API savepoint
535: SAVEPOINT GET_DFLT_VAL_FROM_RULE_PVT;
536:
537: --* call the string function
538: GET_DEFAULT_VALUE_FROM_RULE (

Line 644: --* Standard Start of API savepoint

640: ---- local variables ----
641: l_default_val_str VARCHAR2(150) := NULL;
642:
643: BEGIN
644: --* Standard Start of API savepoint
645: SAVEPOINT GET_DFLT_VAL_FROM_RULE_PVT;
646: --* call the string function
647: GET_DEFAULT_VALUE_FROM_RULE (
648: p_api_version_number => p_api_version_number,