DBA Data[Home] [Help]

APPS.WIP_JSI_VALIDATOR dependencies on FND_MESSAGE

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

941: end if;
942:
943: if ( l_qty_reserved > 0 and
944: wjsi_row.status_type = wip_constants.comp_chrg) then
945: fnd_message.set_name('WIP','WIP_SO_EXISTS');
946: wip_jsi_utils.record_current_error(p_warning_only => true);
947: end if;
948:
949: /* End fix of 3927677 */

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

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

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

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

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

1045: from wip_lines_val_v
1046: where line_id = wjsi_row.line_id;
1047:
1048: if(l_max_line_rate < wjsi_row.daily_production_rate) then
1049: fnd_message.set_name('WIP', 'WIP_PROD_RATE_WARNING');
1050: fnd_message.set_token('ENTITY1', l_max_line_rate);
1051: wip_jsi_utils.record_current_error(p_warning_only => true);
1052: end if;
1053: end if;

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

1046: where line_id = wjsi_row.line_id;
1047:
1048: if(l_max_line_rate < wjsi_row.daily_production_rate) then
1049: fnd_message.set_name('WIP', 'WIP_PROD_RATE_WARNING');
1050: fnd_message.set_token('ENTITY1', l_max_line_rate);
1051: wip_jsi_utils.record_current_error(p_warning_only => true);
1052: end if;
1053: end if;
1054: exception

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

1963: exception
1964: when too_many_rows then
1965: null; -- the query returning multiple rows is ok
1966: when others then
1967: fnd_message.set_name('PJM', 'UEFF-UNIT NUMBER INVALID') ;
1968: wip_jsi_utils.record_current_error ;
1969: end;
1970: end if;
1971:

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

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

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

2016: where rowid = WIP_JSI_UTILS.CURRENT_ROWID
2017: );
2018: exception
2019: when others then
2020: FND_Message.set_name('PJM', 'UEFF-UNIT NUMBER INVALID') ;
2021: WIP_JSI_Utils.record_current_error ;
2022: raise fnd_api.g_exc_unexpected_error;
2023: end ;
2024: else

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

2028: from wip_discrete_jobs
2029: where wip_entity_id = wjsi_row.wip_entity_id;
2030: exception
2031: when others then
2032: FND_Message.set_name('WIP', 'WIP_ML_PRIMARY_ITEM_ID') ;
2033: WIP_JSI_Utils.record_current_error ;
2034: raise fnd_api.g_exc_unexpected_error;
2035: end ;
2036: end if;

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

2050: where rowid = WIP_JSI_UTILS.CURRENT_ROWID
2051: );
2052: exception
2053: when others then
2054: FND_Message.set_name('PJM', 'UEFF-UNIT NUMBER INVALID') ;
2055: WIP_JSI_Utils.record_current_error ;
2056: raise fnd_api.g_exc_unexpected_error;
2057: end ;
2058: end if;