DBA Data[Home] [Help]

APPS.PJM_TASK_AUTO_ASSIGN dependencies on PJM_CONC

Line 901: PJM_CONC.put_line( 'Processing material transaction ' || X_transaction_id );

897: BEGIN
898:
899: SAVEPOINT start_of_autoassign;
900:
901: PJM_CONC.put_line( 'Processing material transaction ' || X_transaction_id );
902:
903: X_error_num := 0;
904: X_error_msg := NULL;
905:

Line 951: PJM_CONC.put_line('Task ID : Input => ' || L_org_id ||

947: if (L_proj_id is not null and
948: L_proj_check and
949: L_task_id is null) then
950:
951: PJM_CONC.put_line('Task ID : Input => ' || L_org_id ||
952: ' / ' || L_proj_id ||
953: ' / ' || L_item_id ||
954: ' / ' || L_po_header_id ||
955: ' / ' || L_cat_id ||

Line 966: PJM_CONC.put_line('Task ID => ' || L_task_id);

962: , L_po_header_id
963: , L_cat_id
964: , L_subinv_code );
965:
966: PJM_CONC.put_line('Task ID => ' || L_task_id);
967:
968: if (L_task_id is not null) then
969:
970: L_stmt_num := 40;

Line 1017: PJM_CONC.put_line('To Task ID : Input => ' || L_to_org_id ||

1013: L_to_subinv := L_txfr_subinv;
1014: L_to_cat_id := L_cat_id;
1015: end if;
1016:
1017: PJM_CONC.put_line('To Task ID : Input => ' || L_to_org_id ||
1018: ' / ' || L_to_proj_id ||
1019: ' / ' || L_item_id ||
1020: ' / ' || L_po_header_id ||
1021: ' / ' || L_to_cat_id ||

Line 1032: PJM_CONC.put_line('To Task ID => ' || L_to_task_id);

1028: , L_po_header_id
1029: , L_to_cat_id
1030: , L_to_subinv );
1031:
1032: PJM_CONC.put_line('To Task ID => ' || L_to_task_id);
1033:
1034: if (L_to_task_id is not null) then
1035:
1036: L_stmt_num := 60;

Line 1072: PJM_CONC.put_line('Src Task ID : Input => ' || L_org_id ||

1068: , L_dept_id
1069: , L_operation_id;
1070: close c_wip;
1071:
1072: PJM_CONC.put_line('Src Task ID : Input => ' || L_org_id ||
1073: ' / ' || L_src_proj_id ||
1074: ' / ' || L_item_id ||
1075: ' / ' || L_cat_id ||
1076: ' / ' || L_subinv_code ||

Line 1096: PJM_CONC.put_line('Src Task ID => ' || L_src_task_id);

1092: , L_assy_item_id
1093: , L_operation_id
1094: , L_dept_id );
1095:
1096: PJM_CONC.put_line('Src Task ID => ' || L_src_task_id);
1097:
1098: if (L_src_task_id is not null) then
1099:
1100: L_stmt_num := 80;

Line 1235: PJM_CONC.put_line( 'Processing resource transaction ' || X_transaction_id );

1231:
1232: X_error_num := 0;
1233: X_error_msg := NULL;
1234:
1235: PJM_CONC.put_line( 'Processing resource transaction ' || X_transaction_id );
1236:
1237: L_stmt_num := 10;
1238: DELETE FROM wip_txn_interface_errors
1239: WHERE transaction_id = X_transaction_id

Line 1266: PJM_CONC.put_line('Input => ' || L_org_id ||

1262: if (L_proj_id is not null and
1263: is_project(L_proj_id) and
1264: L_task_id is null) then
1265:
1266: PJM_CONC.put_line('Input => ' || L_org_id ||
1267: ' / ' || L_proj_id ||
1268: ' / ' || L_operation_id ||
1269: ' / ' || L_wip_entity_id ||
1270: ' / ' || L_assy_item_id ||

Line 1290: PJM_CONC.put_line('Operation ID => ' || L_operation_id);

1286: else
1287: raise Entity_type_not_supported;
1288: end if;
1289:
1290: PJM_CONC.put_line('Operation ID => ' || L_operation_id);
1291: /*End : Bug 6785540 (FP of 6339257): Fetch operation based on entity type.*/
1292:
1293: /*Bug 7028109 (FP of 6820737): Follow normal flow if txn is not for direct item. Also check for cost element id.
1294: If it is 1/2 then treat txn as material txn else as resource transaction.*/

Line 1296: PJM_CONC.put_line('Calling Wip_Task_WNPS to get task for resource txn.');

1292:
1293: /*Bug 7028109 (FP of 6820737): Follow normal flow if txn is not for direct item. Also check for cost element id.
1294: If it is 1/2 then treat txn as material txn else as resource transaction.*/
1295: if( L_transaction_type <> 17 OR L_cost_elm_id NOT IN (1,2) ) then
1296: PJM_CONC.put_line('Calling Wip_Task_WNPS to get task for resource txn.');
1297: L_stmt_num := 30;
1298: L_task_id := Wip_Task_WNPS ( L_org_id
1299: , L_proj_id
1300: , L_operation_id

Line 1306: PJM_CONC.put_line('Calling WipMat_Task_WNPS to get task for resource txn. (For direct item txn)');

1302: , L_assy_item_id
1303: , L_dept_id );
1304: /*Start - Bug 7028109 (FP of 6820737): For direct item, call material rule engine. */
1305: else
1306: PJM_CONC.put_line('Calling WipMat_Task_WNPS to get task for resource txn. (For direct item txn)');
1307: L_task_id := WipMat_Task_WNPS(X_org_id => L_org_id
1308: , X_project_id => L_proj_id
1309: , X_item_id => null
1310: , X_category_id => null

Line 1320: PJM_CONC.put_line('Task ID => ' || L_task_id);

1316: , X_dept_id => L_dept_id );
1317: end if;
1318: /*End - Bug 7028109 (FP of 6820737): For direct item, check the cost element id and treat txn accordingly.*/
1319:
1320: PJM_CONC.put_line('Task ID => ' || L_task_id);
1321:
1322: if (L_task_id is not null) then
1323:
1324: L_stmt_num := 40;