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 2486: CN_PAYMENT_SECURITY_PVT.Payrun_Action

2482: END IF;
2483:
2484: -- Section included by Sundar Venkat on 07 Mar 2002
2485: -- Procedure to check if the payrun action is valid.
2486: CN_PAYMENT_SECURITY_PVT.Payrun_Action
2487: ( p_api_version => 1.0,
2488: p_init_msg_list => fnd_api.g_true,
2489: p_validation_level => fnd_api.g_valid_level_full,
2490: x_return_status => x_return_status,

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

2656: RAISE FND_API.G_EXC_ERROR;
2657: END IF;
2658:
2659: -- validate lock and audit worksheet
2660: cn_payment_security_pvt.worksheet_action(p_api_version => 1.0,
2661: p_init_msg_list => fnd_api.g_false,
2662: p_commit => 'F',
2663: p_validation_level => p_validation_level,
2664: x_return_status => x_return_status,

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

2676:
2677: -- Approve all wksht
2678: FOR unapprove_rec IN get_unapprove_wksht LOOP
2679: -- validate
2680: cn_payment_security_pvt.worksheet_action(p_api_version => 1.0,
2681: p_init_msg_list => fnd_api.g_false,
2682: p_commit => 'F',
2683: p_validation_level => p_validation_level,
2684: x_return_status => x_return_status,

Line 2693: CN_PAYMENT_SECURITY_PVT.Worksheet_Audit

2689: p_do_audit => fnd_api.g_false
2690: );
2691:
2692: -- set wksht audit
2693: CN_PAYMENT_SECURITY_PVT.Worksheet_Audit
2694: (p_worksheet_id => unapprove_rec.payment_worksheet_id,
2695: p_payrun_id => p_payrun_id,
2696: p_salesrep_id => unapprove_rec.salesrep_id,
2697: p_action => 'APPROVE',

Line 3035: cn_payment_security_pvt.payrun_action

3031: CLOSE get_payrun;
3032: l_status_meaning := l_payrun_rec.statusmeaning;
3033:
3034: -- initialize payrun action
3035: cn_payment_security_pvt.payrun_action
3036: (p_api_version => 1.0,
3037: x_return_status => x_return_status,
3038: x_msg_count => x_msg_count,
3039: x_msg_data => x_msg_data,

Line 3320: cn_payment_security_pvt.paid_payrun_audit

3316: END LOOP;
3317:
3318: END LOOP; -- each srp loop
3319:
3320: cn_payment_security_pvt.paid_payrun_audit
3321: (p_payrun_id => p_payrun_id,
3322: x_return_status => x_return_status,
3323: x_msg_count => x_msg_count,
3324: x_msg_data => x_msg_data);