DBA Data[Home] [Help]

APPS.PO_PDOI_DISTRIBUTIONS_SV3 dependencies on FND_FILE

Line 1289: FND_FILE.put_line(FND_FILE.LOG, x_msg_data);

1285:
1286: x_msg_name := x_msg_data; --
1287: IF x_msg_type = 'E' and x_msg_data is not NULL THEN
1288: --Project related info causes error. Stop processing
1289: FND_FILE.put_line(FND_FILE.LOG, x_msg_data);
1290: x_valid := 'N';
1291: ELSIF x_msg_type = 'W' and x_msg_data is not NULL THEN
1292: /* Write the warning to the concurrent program log and then */
1293: /* set x_valid to 'Y' to allow processing to continue.*/

Line 1294: FND_FILE.put_line(FND_FILE.LOG, x_msg_data);

1290: x_valid := 'N';
1291: ELSIF x_msg_type = 'W' and x_msg_data is not NULL THEN
1292: /* Write the warning to the concurrent program log and then */
1293: /* set x_valid to 'Y' to allow processing to continue.*/
1294: FND_FILE.put_line(FND_FILE.LOG, x_msg_data);
1295: x_valid := 'Y';
1296: ELSE
1297: x_valid := 'Y';
1298: END IF;

Line 1332: FND_FILE.put_line(FND_FILE.LOG, FND_MESSAGE.get);

1328: x_valid1 := 'N';
1329: ELSIF (l_val_proj_result = PO_PROJECT_DETAILS_SV.pjm_validate_warning) THEN
1330: /* Write the warning to the concurrent program log and then */
1331: /* set x_valid to 'Y' to allow processing to continue.*/
1332: FND_FILE.put_line(FND_FILE.LOG, FND_MESSAGE.get);
1333: x_valid1 := 'Y';
1334: ELSE /* Success */
1335: x_valid1 := 'Y';
1336: END IF;