DBA Data[Home] [Help]

APPS.QPR_LOAD_MEAS_DATA dependencies on FND_MESSAGE

Line 1831: FND_MESSAGE.Set_Name ('QPR','QPR_NULL_PARAMETERS');

1827: g_prg_id := fnd_global.conc_program_id;
1828:
1829: if not qpr_sr_util.dm_parameters_ok then
1830: retcode:= 2;
1831: FND_MESSAGE.Set_Name ('QPR','QPR_NULL_PARAMETERS');
1832: FND_MSG_PUB.Add;
1833: log_debug('One or more mandatory parameters are not filled');
1834: return;
1835: end if;

Line 1955: FND_MESSAGE.Set_Name ('QPR','QPR_NULL_INSTANCE');

1951: g_origin := p_src_choice;
1952:
1953: if p_instance_id is null then
1954: retcode := 2;
1955: FND_MESSAGE.Set_Name ('QPR','QPR_NULL_INSTANCE');
1956: FND_MSG_PUB.Add;
1957: errbuf := 'Instance Id cannot be null';
1958: return;
1959: end if;

Line 1995: FND_MESSAGE.Set_Name ('QPR','QPR_NO_QUOTE');

1991: log_debug('SQL: '||l_sql);
1992: execute immediate l_sql into p_header_id, g_quote_hdr_sd, g_source_id;
1993: if nvl(p_header_id, 0) = 0 then
1994: retcode := 2;
1995: FND_MESSAGE.Set_Name ('QPR','QPR_NO_QUOTE');
1996: FND_MSG_PUB.Add;
1997: log_debug('Quote does not exist. ');
1998: else
1999: log_debug('Header_id: ' || p_header_id);