DBA Data[Home] [Help]

APPS.WIP_JSI_VALIDATOR dependencies on FND_MESSAGE

Line 940: fnd_message.set_name('WIP','WIP_SO_EXISTS');

936: end if;
937:
938: if ( l_qty_reserved > 0 and
939: wjsi_row.status_type = wip_constants.comp_chrg) then
940: fnd_message.set_name('WIP','WIP_SO_EXISTS');
941: wip_jsi_utils.record_current_error(p_warning_only => true);
942: end if;
943:
944: /* End fix of 3927677 */

Line 980: fnd_message.set_name('WIP', 'WIP_CANCEL_JOB/SCHED_OPEN_PO');

976: ELSE
977: -- propagate_job_change_to_po is manual or job status is
978: -- 'Complete'
979: po_warning_flag := WIP_CONSTANTS.YES;
980: fnd_message.set_name('WIP', 'WIP_CANCEL_JOB/SCHED_OPEN_PO');
981: wip_jsi_utils.record_current_error(p_warning_only => true);
982: END IF;
983: ELSE
984: -- customer does not have PO patchset J onward, so behave the

Line 987: fnd_message.set_name('WIP', 'WIP_CANCEL_JOB/SCHED_OPEN_PO');

983: ELSE
984: -- customer does not have PO patchset J onward, so behave the
985: -- old way
986: po_warning_flag := WIP_CONSTANTS.YES;
987: fnd_message.set_name('WIP', 'WIP_CANCEL_JOB/SCHED_OPEN_PO');
988: wip_jsi_utils.record_current_error(p_warning_only => true);
989: END IF;
990: END IF; -- PO/requisition exists
991: END IF; -- status is either 'Cancel','Complete', or 'Complete-no-charge'

Line 1044: fnd_message.set_name('WIP', 'WIP_PROD_RATE_WARNING');

1040: from wip_lines_val_v
1041: where line_id = wjsi_row.line_id;
1042:
1043: if(l_max_line_rate < wjsi_row.daily_production_rate) then
1044: fnd_message.set_name('WIP', 'WIP_PROD_RATE_WARNING');
1045: fnd_message.set_token('ENTITY1', l_max_line_rate);
1046: wip_jsi_utils.record_current_error(p_warning_only => true);
1047: end if;
1048: end if;

Line 1045: fnd_message.set_token('ENTITY1', l_max_line_rate);

1041: where line_id = wjsi_row.line_id;
1042:
1043: if(l_max_line_rate < wjsi_row.daily_production_rate) then
1044: fnd_message.set_name('WIP', 'WIP_PROD_RATE_WARNING');
1045: fnd_message.set_token('ENTITY1', l_max_line_rate);
1046: wip_jsi_utils.record_current_error(p_warning_only => true);
1047: end if;
1048: end if;
1049: exception

Line 1962: fnd_message.set_name('PJM', 'UEFF-UNIT NUMBER INVALID') ;

1958: exception
1959: when too_many_rows then
1960: null; -- the query returning multiple rows is ok
1961: when others then
1962: fnd_message.set_name('PJM', 'UEFF-UNIT NUMBER INVALID') ;
1963: wip_jsi_utils.record_current_error ;
1964: end;
1965: end if;
1966:

Line 1984: fnd_message.set_name('PJM', 'UEFF-UNIT NUMBER REQUIRED');

1980: end if;
1981:
1982: -- Unit number is required for unit effective assemblies.
1983: if(is_unit_effective_item and wjsi_row.end_item_unit_number is null) then
1984: fnd_message.set_name('PJM', 'UEFF-UNIT NUMBER REQUIRED');
1985: wip_jsi_utils.record_current_error;
1986: raise fnd_api.g_exc_unexpected_error;
1987: end if;
1988: end if;

Line 2015: FND_Message.set_name('PJM', 'UEFF-UNIT NUMBER INVALID') ;

2011: where rowid = WIP_JSI_UTILS.CURRENT_ROWID
2012: );
2013: exception
2014: when others then
2015: FND_Message.set_name('PJM', 'UEFF-UNIT NUMBER INVALID') ;
2016: WIP_JSI_Utils.record_current_error ;
2017: raise fnd_api.g_exc_unexpected_error;
2018: end ;
2019: else

Line 2027: FND_Message.set_name('WIP', 'WIP_ML_PRIMARY_ITEM_ID') ;

2023: from wip_discrete_jobs
2024: where wip_entity_id = wjsi_row.wip_entity_id;
2025: exception
2026: when others then
2027: FND_Message.set_name('WIP', 'WIP_ML_PRIMARY_ITEM_ID') ;
2028: WIP_JSI_Utils.record_current_error ;
2029: raise fnd_api.g_exc_unexpected_error;
2030: end ;
2031: end if;

Line 2049: FND_Message.set_name('PJM', 'UEFF-UNIT NUMBER INVALID') ;

2045: where rowid = WIP_JSI_UTILS.CURRENT_ROWID
2046: );
2047: exception
2048: when others then
2049: FND_Message.set_name('PJM', 'UEFF-UNIT NUMBER INVALID') ;
2050: WIP_JSI_Utils.record_current_error ;
2051: raise fnd_api.g_exc_unexpected_error;
2052: end ;
2053: end if;