DBA Data[Home] [Help]

APPS.AMS_RUNTIME_SCRIPTING_PVT dependencies on AMS_UTILITY_PVT

Line 91: AMS_UTILITY_PVT.debug_message('notifyForgetLogin starts');

87:
88: -- Initialize API return status to success
89: x_return_status := FND_API.G_RET_STS_SUCCESS;
90:
91: AMS_UTILITY_PVT.debug_message('notifyForgetLogin starts');
92:
93: l_adhoc_user := upper(p_user_name);
94:
95: FOR c_rec IN c_login_user(l_adhoc_user) LOOP

Line 100: AMS_UTILITY_PVT.debug_message('adhoc user : '||l_adhoc_user);

96: l_adhoc_user := 'HZ_PARTY:'||c_rec.Name;
97: l_partyId := c_rec.Name;
98: END LOOP;
99:
100: AMS_UTILITY_PVT.debug_message('adhoc user : '||l_adhoc_user);
101: AMS_UTILITY_PVT.debug_message('party id : '||l_partyId);
102:
103: IF(l_partyId IS NULL) THEN
104: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 101: AMS_UTILITY_PVT.debug_message('party id : '||l_partyId);

97: l_partyId := c_rec.Name;
98: END LOOP;
99:
100: AMS_UTILITY_PVT.debug_message('adhoc user : '||l_adhoc_user);
101: AMS_UTILITY_PVT.debug_message('party id : '||l_partyId);
102:
103: IF(l_partyId IS NULL) THEN
104: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
105: END IF;

Line 113: AMS_UTILITY_PVT.debug_message('ad hoc user name '||l_user_name||' display name '||l_disp_name);

109: notification_preference => 'MAILTEXT',
110: email_address => p_email_address
111: );
112:
113: AMS_UTILITY_PVT.debug_message('ad hoc user name '||l_user_name||' display name '||l_disp_name);
114:
115: l_item_key := '-'||to_char(sysdate,'MMDDYYHH24MISS')||
116: '-'||l_adhoc_user;
117:

Line 118: AMS_UTILITY_PVT.debug_message('Create and Start Process with Item Key: '||l_item_key);

114:
115: l_item_key := '-'||to_char(sysdate,'MMDDYYHH24MISS')||
116: '-'||l_adhoc_user;
117:
118: AMS_UTILITY_PVT.debug_message('Create and Start Process with Item Key: '||l_item_key);
119:
120: wf_engine.CreateProcess(
121: itemtype => g_ItemType,
122: itemkey => l_item_key,

Line 188: AMS_UTILITY_PVT.debug_message('Process Started');

184: wf_engine.StartProcess(
185: itemtype => g_ItemType,
186: itemkey => l_item_key);
187:
188: AMS_UTILITY_PVT.debug_message('Process Started');
189:
190: AMS_UTILITY_PVT.debug_message('notifyForgetLogin ends');
191:
192: -- Standard check for p_commit

Line 190: AMS_UTILITY_PVT.debug_message('notifyForgetLogin ends');

186: itemkey => l_item_key);
187:
188: AMS_UTILITY_PVT.debug_message('Process Started');
189:
190: AMS_UTILITY_PVT.debug_message('notifyForgetLogin ends');
191:
192: -- Standard check for p_commit
193: IF FND_API.to_Boolean( p_commit )
194: THEN