DBA Data[Home] [Help]

APPS.IEX_STRY_API_PUB dependencies on STANDARD

Line 194: -- Standard check of p_commit

190: ROLLBACK TO REASSIGN_STRATEGY_PUB;
191: RETURN;
192: END if; --l_status =cancelled
193:
194: -- Standard check of p_commit
195: IF FND_API.To_Boolean(p_commit) THEN
196: COMMIT WORK;
197: END IF;
198:

Line 276: -- Standard check of p_commit

272: ROLLBACK TO ASSIGN_STRATEGY_PUB;
273: RETURN;
274: END if; --l_status =cancelled
275:
276: -- Standard check of p_commit
277: IF FND_API.To_Boolean(p_commit) THEN
278: COMMIT WORK;
279: END IF;
280:

Line 393: -- Standard check of p_commit

389: end if;
390: */
391: END IF; --if status is successful
392:
393: -- Standard check of p_commit
394: IF FND_API.To_Boolean(p_commit) THEN
395: COMMIT WORK;
396: END IF;
397:

Line 530: -- Standard check of p_commit

526: */
527: END IF ; -- p_status in 'closed' or cancelled'
528: END IF; --if status is successful
529:
530: -- Standard check of p_commit
531: IF FND_API.To_Boolean(p_commit) THEN
532: COMMIT WORK;
533: END IF;
534:

Line 739: -- Standard check of p_commit

735: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
736: IEX_DEBUG_PUB.logmessage('UPDATE_WORKITEM: ' || 'Status of work item update ' ||l_return_status);
737: END IF;
738:
739: -- Standard check of p_commit
740: IF FND_API.To_Boolean(p_commit) THEN
741: COMMIT WORK;
742: END IF;
743:

Line 795: -- Standard start of API savepoint

791: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
792: iex_debug_pub.LogMessage(G_PKG_NAME || '.' || l_api_name || ': start');
793: END IF;
794:
795: -- Standard start of API savepoint
796: SAVEPOINT SHOW_IN_UWQ_PVT;
797:
798: -- Standard call to check for call compatibility
799: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN

Line 798: -- Standard call to check for call compatibility

794:
795: -- Standard start of API savepoint
796: SAVEPOINT SHOW_IN_UWQ_PVT;
797:
798: -- Standard call to check for call compatibility
799: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
800: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
801: END IF;
802:

Line 914: -- Standard check of p_commit.

910: end if;
911:
912: -- END OF BODY OF API
913:
914: -- Standard check of p_commit.
915: IF FND_API.To_Boolean( p_commit ) THEN
916: COMMIT WORK;
917: END IF;
918:

Line 920: -- Standard call to get message count and if count is 1, get message info

916: COMMIT WORK;
917: END IF;
918:
919: x_return_status := l_return_status;
920: -- Standard call to get message count and if count is 1, get message info
921: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE,
922: p_count => x_msg_count,
923: p_data => x_msg_data);
924: