DBA Data[Home] [Help]

APPS.PO_PDOI_DISTRIBUTIONS_SV3 dependencies on FND_FILE

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

1261: , X_billable_flag => X_billable_flag);
1262:
1263: IF x_msg_type = 'E' and x_msg_data is not NULL THEN
1264: --Project related info causes error. Stop processing
1265: FND_FILE.put_line(FND_FILE.LOG, x_msg_data);
1266: x_valid := 'N';
1267: ELSIF x_msg_type = 'W' and x_msg_data is not NULL THEN
1268: /* Write the warning to the concurrent program log and then */
1269: /* set x_valid to 'Y' to allow processing to continue.*/

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

1266: x_valid := 'N';
1267: ELSIF x_msg_type = 'W' and x_msg_data is not NULL THEN
1268: /* Write the warning to the concurrent program log and then */
1269: /* set x_valid to 'Y' to allow processing to continue.*/
1270: FND_FILE.put_line(FND_FILE.LOG, x_msg_data);
1271: x_valid := 'Y';
1272: ELSE
1273: x_valid := 'Y';
1274: END IF;

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

1296: x_valid1 := 'N';
1297: ELSIF (l_val_proj_result = PO_PROJECT_DETAILS_SV.pjm_validate_warning) THEN
1298: /* Write the warning to the concurrent program log and then */
1299: /* set x_valid to 'Y' to allow processing to continue.*/
1300: FND_FILE.put_line(FND_FILE.LOG, FND_MESSAGE.get);
1301: x_valid1 := 'Y';
1302: ELSE /* Success */
1303: x_valid1 := 'Y';
1304: END IF;