DBA Data[Home] [Help]

APPS.PO_REQIMP_VAL_PVT dependencies on PO_PROJECT_DETAILS_SV

Line 156: PO_PROJECT_DETAILS_SV.validate_proj_references_wpr

152: -- Validate each record in our PL/SQL tables
153: FOR i IN l_project_id_tbl.FIRST..l_project_id_tbl.LAST LOOP
154: --< Bug 3265539 Start >
155: -- Call PO wrapper procedure to validate the PJM project
156: PO_PROJECT_DETAILS_SV.validate_proj_references_wpr
157: (p_inventory_org_id => l_destination_org_id_tbl(i),
158: p_operating_unit => l_destination_ou_id_tbl(i),
159: p_project_id => l_project_id_tbl(i),
160: p_task_id => l_task_id_tbl(i),

Line 167: IF (l_val_proj_result = PO_PROJECT_DETAILS_SV.pjm_validate_failure) THEN

163: p_calling_function => 'REQIMPORT',
164: x_error_code => l_val_proj_error_code,
165: x_return_code => l_val_proj_result);
166:
167: IF (l_val_proj_result = PO_PROJECT_DETAILS_SV.pjm_validate_failure) THEN
168: -- Add the error and the current transaction ID to PL/SQL tables
169: l_errors_tbl(l_errorI) := fnd_message.get;
170: l_err_transaction_id_tbl(l_errorI) := l_transaction_id_tbl(i);
171: l_errorI := l_errorI + 1;

Line 172: ELSIF (l_val_proj_result = PO_PROJECT_DETAILS_SV.pjm_validate_warning) THEN

168: -- Add the error and the current transaction ID to PL/SQL tables
169: l_errors_tbl(l_errorI) := fnd_message.get;
170: l_err_transaction_id_tbl(l_errorI) := l_transaction_id_tbl(i);
171: l_errorI := l_errorI + 1;
172: ELSIF (l_val_proj_result = PO_PROJECT_DETAILS_SV.pjm_validate_warning) THEN
173: -- Write the warning to the concurrent program log
174: FND_FILE.put_line(FND_FILE.LOG, FND_MESSAGE.get);
175: END IF;
176: --< Bug 3265539 End >