DBA Data[Home] [Help]

APPS.PA_PROJECT_UTILS dependencies on PA_PROJ_TSK_UTILS

Line 906: pa_proj_tsk_utils.check_event_exists(x_project_id, null);

902:
903: -- Check if project has event
904: x_err_stage := 'check event for '|| x_project_id;
905: status_code :=
906: pa_proj_tsk_utils.check_event_exists(x_project_id, null);
907: if ( status_code = 1 ) then
908: x_err_code := 20;
909: x_err_stage := 'PA_PROJ_EVENT_EXIST';
910: return;

Line 919: pa_proj_tsk_utils.check_exp_item_exists(x_project_id, null);

915:
916: -- Check if project has expenditure item
917: x_err_stage := 'check expenditure item for '|| x_project_id;
918: status_code :=
919: pa_proj_tsk_utils.check_exp_item_exists(x_project_id, null);
920: if ( status_code = 1 ) then
921: x_err_code := 30;
922: x_err_stage := 'PA_PROJ_EXP_ITEM_EXIST';
923: return;

Line 932: pa_proj_tsk_utils.check_po_dist_exists(x_project_id, null);

928:
929: -- Check if project has purchase order distribution
930: x_err_stage := 'check purchase order for '|| x_project_id;
931: status_code :=
932: pa_proj_tsk_utils.check_po_dist_exists(x_project_id, null);
933: if ( status_code = 1 ) then
934: x_err_code := 40;
935: x_err_stage := 'PA_PROJ_PO_DIST_EXIST';
936: return;

Line 945: pa_proj_tsk_utils.check_po_req_dist_exists(x_project_id, null);

941:
942: -- Check if project has purchase order requisition
943: x_err_stage := 'check purchase order requisition for '|| x_project_id;
944: status_code :=
945: pa_proj_tsk_utils.check_po_req_dist_exists(x_project_id, null);
946: if ( status_code = 1 ) then
947: x_err_code := 50;
948: x_err_stage := 'PA_PROJ_PO_REQ_DIST_EXIST';
949: return;

Line 958: pa_proj_tsk_utils.check_ap_invoice_exists(x_project_id, null);

954:
955: -- Check if project has supplier invoices
956: x_err_stage := 'check supplier invoice for '|| x_project_id;
957: status_code :=
958: pa_proj_tsk_utils.check_ap_invoice_exists(x_project_id, null);
959: if ( status_code = 1 ) then
960: x_err_code := 60;
961: x_err_stage := 'PA_PROJ_AP_INV_EXIST';
962: return;

Line 971: pa_proj_tsk_utils.check_ap_inv_dist_exists(x_project_id, null);

967:
968: -- Check if project has supplier invoice distribution
969: x_err_stage := 'check supplier inv distribution for '|| x_project_id;
970: status_code :=
971: pa_proj_tsk_utils.check_ap_inv_dist_exists(x_project_id, null);
972: if ( status_code = 1 ) then
973: x_err_code := 70;
974: x_err_stage := 'PA_PROJ_AP_INV_DIST_EXIST';
975: return;

Line 984: pa_proj_tsk_utils.check_funding_exists(x_project_id, null);

980:
981: -- Check if project has funding
982: x_err_stage := 'check funding for '|| x_project_id;
983: status_code :=
984: pa_proj_tsk_utils.check_funding_exists(x_project_id, null);
985: if ( status_code = 1 ) then
986: x_err_code := 80;
987: x_err_stage := 'PA_PROJ_FUND_EXIST';
988: return;

Line 1025: pa_proj_tsk_utils.check_commitment_txn_exists(x_project_id, null);

1021:
1022: -- Check if project has commitment transaction
1023: x_err_stage := 'check commitment transaction for '|| x_project_id;
1024: status_code :=
1025: pa_proj_tsk_utils.check_commitment_txn_exists(x_project_id, null);
1026: if ( status_code = 1 ) then
1027: x_err_code := 100;
1028: x_err_stage := 'PA_PROJ_CMT_TXN_EXIST';
1029: return;

Line 1038: pa_proj_tsk_utils.check_comp_rule_set_exists(x_project_id, null);

1034:
1035: -- Check if project has compensation rule set
1036: x_err_stage := 'check compensation rule set for '|| x_project_id;
1037: status_code :=
1038: pa_proj_tsk_utils.check_comp_rule_set_exists(x_project_id, null);
1039: if ( status_code = 1 ) then
1040: x_err_code := 110;
1041: x_err_stage := 'PA_PROJ_COMP_RULE_SET_EXIST';
1042: return;

Line 1284: status_code := pa_proj_tsk_utils.check_cdl_exists

1280: return;
1281: end if ;
1282: -- Check for cdls for the project
1283: x_err_stage := 'check cdls for project '|| x_project_id;
1284: status_code := pa_proj_tsk_utils.check_cdl_exists
1285: (x_project_id,Null);
1286: if status_code <> 0 Then
1287: x_err_code := 20;
1288: x_err_stage := 'PA_PR_CANT_CHG_PROJ_TYPE';

Line 1294: status_code := pa_proj_tsk_utils.check_draft_rev_item_exists

1290: end if;
1291:
1292: -- Check for draft revenue items for the project
1293: x_err_stage := 'check draft rev for project '|| x_project_id;
1294: status_code := pa_proj_tsk_utils.check_draft_rev_item_exists
1295: (x_project_id,Null);
1296: if status_code <> 0 Then
1297: x_err_code := 30;
1298: x_err_stage := 'PA_PR_CANT_CHG_PROJ_TYPE';

Line 1304: status_code := pa_proj_tsk_utils.check_draft_inv_item_exists

1300: end if;
1301:
1302: -- Check for draft inv items for the project
1303: x_err_stage := 'check draft inv for project '|| x_project_id;
1304: status_code := pa_proj_tsk_utils.check_draft_inv_item_exists
1305: (x_project_id,Null);
1306: if status_code <> 0 Then
1307: x_err_code := 40;
1308: x_err_stage := 'PA_PR_CANT_CHG_PROJ_TYPE';

Line 1359: status_code := pa_proj_tsk_utils.check_exp_item_exists

1355: end if ;
1356:
1357: -- Check for exp items for the project
1358: x_err_stage := 'check exp items for project '|| x_project_id;
1359: status_code := pa_proj_tsk_utils.check_exp_item_exists
1360: (x_project_id,Null);
1361: if status_code <> 0 Then
1362: x_err_code := 20;
1363: x_err_stage := 'PA_PR_NO_UPD_SEGMENT1_EXP';

Line 1369: status_code := pa_proj_tsk_utils.check_draft_inv_item_exists

1365: end if;
1366:
1367: -- Check for invoices for the project
1368: x_err_stage := 'check invoices for project '|| x_project_id;
1369: status_code := pa_proj_tsk_utils.check_draft_inv_item_exists
1370: (x_project_id,Null);
1371: if status_code <> 0 Then
1372: x_err_code := 30;
1373: x_err_stage := 'PA_PR_NO_UPD_SEGMENT1_INV';

Line 1379: status_code := pa_proj_tsk_utils.check_po_req_dist_exists

1375: end if;
1376:
1377: -- Check for po reqs for the project
1378: x_err_stage := 'check po reqs for project '|| x_project_id;
1379: status_code := pa_proj_tsk_utils.check_po_req_dist_exists
1380: (x_project_id,Null);
1381: if status_code <> 0 Then
1382: x_err_code := 40;
1383: x_err_stage := 'PA_PR_NO_UPD_SEGMENT1_EXP';

Line 1389: status_code := pa_proj_tsk_utils.check_po_dist_exists

1385: end if;
1386:
1387: -- Check for po dist for the project
1388: x_err_stage := 'check po dist for project '|| x_project_id;
1389: status_code := pa_proj_tsk_utils.check_po_dist_exists
1390: (x_project_id,Null);
1391: if status_code <> 0 Then
1392: x_err_code := 50;
1393: x_err_stage := 'PA_PR_NO_UPD_SEGMENT1_EXP';

Line 1399: status_code := pa_proj_tsk_utils.check_ap_invoice_exists

1395: end if;
1396:
1397: -- Check for ap inv for the project
1398: x_err_stage := 'check ap inv for project '|| x_project_id;
1399: status_code := pa_proj_tsk_utils.check_ap_invoice_exists
1400: (x_project_id,Null);
1401: if status_code <> 0 Then
1402: x_err_code := 60;
1403: x_err_stage := 'PA_PR_NO_UPD_SEGMENT1_INV';

Line 1409: status_code := pa_proj_tsk_utils.check_ap_inv_dist_exists

1405: end if;
1406:
1407: -- Check for ap inv dist for the project
1408: x_err_stage := 'check ap inv dist for project '|| x_project_id;
1409: status_code := pa_proj_tsk_utils.check_ap_inv_dist_exists
1410: (x_project_id,Null);
1411: if status_code <> 0 Then
1412: x_err_code := 70;
1413: x_err_stage := 'PA_PR_NO_UPD_SEGMENT1_INV';