DBA Data[Home] [Help]

APPS.CN_PAYRUN_PVT dependencies on CN_PAYMENT_SECURITY_PVT

Line 111: CN_PAYMENT_SECURITY_PVT.Payrun_Action

107: END IF;
108:
109: -- Section included by Sundar Venkat on 07 Mar 2002
110: -- Procedure to check if the payrun action is valid.
111: CN_PAYMENT_SECURITY_PVT.Payrun_Action
112: ( p_api_version => 1.0,
113: p_init_msg_list => fnd_api.g_true,
114: p_validation_level => fnd_api.g_valid_level_full,
115: x_return_status => x_return_status,

Line 1847: l_has_access := CN_PAYMENT_SECURITY_PVT.get_security_access(

1843: x_loading_status := 'CN_INSERTED';
1844: --
1845: -- API body
1846: --Added for R12 payment security check begin.
1847: l_has_access := CN_PAYMENT_SECURITY_PVT.get_security_access(
1848: CN_PAYMENT_SECURITY_PVT.g_type_payrun,
1849: CN_PAYMENT_SECURITY_PVT.g_access_payrun_create);
1850: IF ( l_has_access = FALSE)
1851: THEN

Line 1848: CN_PAYMENT_SECURITY_PVT.g_type_payrun,

1844: --
1845: -- API body
1846: --Added for R12 payment security check begin.
1847: l_has_access := CN_PAYMENT_SECURITY_PVT.get_security_access(
1848: CN_PAYMENT_SECURITY_PVT.g_type_payrun,
1849: CN_PAYMENT_SECURITY_PVT.g_access_payrun_create);
1850: IF ( l_has_access = FALSE)
1851: THEN
1852: RAISE FND_API.G_EXC_ERROR ;

Line 1849: CN_PAYMENT_SECURITY_PVT.g_access_payrun_create);

1845: -- API body
1846: --Added for R12 payment security check begin.
1847: l_has_access := CN_PAYMENT_SECURITY_PVT.get_security_access(
1848: CN_PAYMENT_SECURITY_PVT.g_type_payrun,
1849: CN_PAYMENT_SECURITY_PVT.g_access_payrun_create);
1850: IF ( l_has_access = FALSE)
1851: THEN
1852: RAISE FND_API.G_EXC_ERROR ;
1853: END IF;

Line 2059: cn_payment_security_pvt.pmt_raise_event(

2055: p_note_type => 'CN_SYSGEN', -- for system generated
2056: x_jtf_note_id => l_note_id -- returned
2057: );
2058:
2059: cn_payment_security_pvt.pmt_raise_event(
2060: p_type => 'PAYRUN',
2061: p_event_name => 'create',
2062: p_payrun_id => p_payrun_rec.payrun_id ) ;
2063:

Line 2214: CN_PAYMENT_SECURITY_PVT.Payrun_Action

2210:
2211:
2212: -- Step 1
2213: -- Procedure to check if the payrun action is valid.
2214: CN_PAYMENT_SECURITY_PVT.Payrun_Action
2215: ( p_api_version => 1.0,
2216: p_init_msg_list => fnd_api.g_true,
2217: p_validation_level => fnd_api.g_valid_level_full,
2218: x_return_status => x_return_status,

Line 2233: -- in CN_PAYMENT_SECURITY_PVT.Payrun_Action

2229:
2230: -- Step 2
2231: -- Check Action Type and perform action accordingly
2232: -- Check for FREEZE/UNFREEZE is removed since, the status is updated
2233: -- in CN_PAYMENT_SECURITY_PVT.Payrun_Action
2234:
2235: IF p_action = 'REFRESH' THEN
2236:
2237:

Line 2280: CN_PAYMENT_SECURITY_PVT.Payrun_Audit

2276: -- Bug 3391231: ACHUNG 01/21/04
2277: -- move the audit after set_ced_and_bb.Otherwise
2278: -- record won't be created since set_ced_and_bb need payrun
2279: -- status = 'UNPAID'
2280: CN_PAYMENT_SECURITY_PVT.Payrun_Audit
2281: (p_payrun_id => p_payrun_id,
2282: p_action => p_action,
2283: x_return_status => x_return_status,
2284: x_msg_count => x_msg_count,

Line 2513: CN_PAYMENT_SECURITY_PVT.Payrun_Action

2509: END IF;
2510:
2511: -- Section included by Sundar Venkat on 07 Mar 2002
2512: -- Procedure to check if the payrun action is valid.
2513: CN_PAYMENT_SECURITY_PVT.Payrun_Action
2514: ( p_api_version => 1.0,
2515: p_init_msg_list => fnd_api.g_true,
2516: p_validation_level => fnd_api.g_valid_level_full,
2517: x_return_status => x_return_status,

Line 2687: cn_payment_security_pvt.worksheet_action(p_api_version => 1.0,

2683: RAISE FND_API.G_EXC_ERROR;
2684: END IF;
2685:
2686: -- validate lock and audit worksheet
2687: cn_payment_security_pvt.worksheet_action(p_api_version => 1.0,
2688: p_init_msg_list => fnd_api.g_false,
2689: p_commit => 'F',
2690: p_validation_level => p_validation_level,
2691: x_return_status => x_return_status,

Line 2707: cn_payment_security_pvt.worksheet_action(p_api_version => 1.0,

2703:
2704: -- Approve all wksht
2705: FOR unapprove_rec IN get_unapprove_wksht LOOP
2706: -- validate
2707: cn_payment_security_pvt.worksheet_action(p_api_version => 1.0,
2708: p_init_msg_list => fnd_api.g_false,
2709: p_commit => 'F',
2710: p_validation_level => p_validation_level,
2711: x_return_status => x_return_status,

Line 2720: CN_PAYMENT_SECURITY_PVT.Worksheet_Audit

2716: p_do_audit => fnd_api.g_false
2717: );
2718:
2719: -- set wksht audit
2720: CN_PAYMENT_SECURITY_PVT.Worksheet_Audit
2721: (p_worksheet_id => unapprove_rec.payment_worksheet_id,
2722: p_payrun_id => p_payrun_id,
2723: p_salesrep_id => unapprove_rec.salesrep_id,
2724: p_action => 'APPROVE',

Line 3062: cn_payment_security_pvt.payrun_action

3058: CLOSE get_payrun;
3059: l_status_meaning := l_payrun_rec.statusmeaning;
3060:
3061: -- initialize payrun action
3062: cn_payment_security_pvt.payrun_action
3063: (p_api_version => 1.0,
3064: x_return_status => x_return_status,
3065: x_msg_count => x_msg_count,
3066: x_msg_data => x_msg_data,

Line 3347: cn_payment_security_pvt.paid_payrun_audit

3343: END LOOP;
3344:
3345: END LOOP; -- each srp loop
3346:
3347: cn_payment_security_pvt.paid_payrun_audit
3348: (p_payrun_id => p_payrun_id,
3349: x_return_status => x_return_status,
3350: x_msg_count => x_msg_count,
3351: x_msg_data => x_msg_data);