DBA Data[Home] [Help]

APPS.CN_PMTPLAN_PUB dependencies on MO_GLOBAL

Line 133: mo_global.validate_orgid_pub_api(org_id => l_create_rec.org_id,status =>l_status);

129:
130: -- Copy the Record values into l_create_rec and call private
131:
132: l_create_rec.org_id := p_PmtPlan_rec.org_id;
133: mo_global.validate_orgid_pub_api(org_id => l_create_rec.org_id,status =>l_status);
134: if (FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then
135: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT,'cn.plsql.cn_pmtplan_pub.Create_PmtPlan.org_validate',
136: 'Validated org_id = ' || l_create_rec.org_id || ' status ='||l_status);
137: end if;

Line 275: --mo_global.validate_orgid_pub_api(org_id => l_update_old_rec.org_id,status =>l_status);

271: g_mode := 'UPDATE';
272:
273: -- copy the old record values
274: l_update_old_rec.org_id := p_old_PmtPlan_rec.org_id;
275: --mo_global.validate_orgid_pub_api(org_id => l_update_old_rec.org_id,status =>l_status);
276: l_update_old_rec.name := p_old_PmtPlan_rec.name;
277: l_update_old_rec.minimum_amount := p_old_PmtPlan_rec.minimum_amount;
278: l_update_old_rec.maximum_amount := p_old_PmtPlan_rec.maximum_amount;
279: l_update_old_rec.min_rec_flag := p_old_PmtPlan_rec.min_rec_flag;

Line 313: mo_global.validate_orgid_pub_api(org_id => l_update_rec.org_id,status =>l_status);

309:
310: -- Copy the new Record values into l_update_rec and call private
311:
312: l_update_rec.org_id := p_PmtPlan_rec.org_id;
313: mo_global.validate_orgid_pub_api(org_id => l_update_rec.org_id,status =>l_status);
314: if (FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then
315: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT,'cn.plsql.cn_pmtplan_pub.Update_PmtPlan.org_validate',
316: 'Validated org_id = ' || l_update_rec.org_id || ' status ='||l_status);
317: end if;

Line 455: mo_global.validate_orgid_pub_api(org_id => l_create_rec.org_id,status =>l_status);

451: BEGIN
452:
453: -- Get the start date for payment plan using the payment plan name and org id
454: l_create_rec.org_id := p_PmtPlan_rec.org_id;
455: mo_global.validate_orgid_pub_api(org_id => l_create_rec.org_id,status =>l_status);
456: if (FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then
457: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT,'cn.plsql.cn_pmtplan_pub.delete_PmtPlan.org_validate',
458: 'Validated org_id = ' || l_create_rec.org_id || ' status ='||l_status);
459: end if;