DBA Data[Home] [Help]

APPS.QPR_LOAD_MEAS_DATA dependencies on FND_MESSAGE

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

1814: g_prg_id := fnd_global.conc_program_id;
1815:
1816: if not qpr_sr_util.dm_parameters_ok then
1817: retcode:= 2;
1818: FND_MESSAGE.Set_Name ('QPR','QPR_NULL_PARAMETERS');
1819: FND_MSG_PUB.Add;
1820: log_debug('One or more mandatory parameters are not filled');
1821: return;
1822: end if;

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

1938: g_origin := p_src_choice;
1939:
1940: if p_instance_id is null then
1941: retcode := 2;
1942: FND_MESSAGE.Set_Name ('QPR','QPR_NULL_INSTANCE');
1943: FND_MSG_PUB.Add;
1944: errbuf := 'Instance Id cannot be null';
1945: return;
1946: end if;

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

1978: log_debug('SQL: '||l_sql);
1979: execute immediate l_sql into p_header_id, g_quote_hdr_sd, g_source_id;
1980: if nvl(p_header_id, 0) = 0 then
1981: retcode := 2;
1982: FND_MESSAGE.Set_Name ('QPR','QPR_NO_QUOTE');
1983: FND_MSG_PUB.Add;
1984: log_debug('Quote does not exist. ');
1985: else
1986: log_debug('Header_id: ' || p_header_id);