DBA Data[Home] [Help]

APPS.JG_ZZ_OM_COMMON_PKG dependencies on FND_PROFILE

Line 51: --l_country_code := fnd_profile.value('JGZZ_COUNTRY_CODE');

47: l_country_code := NULL;
48: x_interface_line_rec := p_interface_line_rec;
49:
50: --Following line is commented as a part of bug 2133665
51: --l_country_code := fnd_profile.value('JGZZ_COUNTRY_CODE');
52: --
53: l_country_code := SUBSTR(p_interface_line_rec.line_gdf_attr_category,4,2);
54: --
55: OE_DEBUG_PUB.ADD('JG pkg Country Code is ' || l_country_code);

Line 121: --l_country_code := FND_PROFILE.VALUE('JGZZ_COUNTRY_CODE');

117: l_country_code := NULL;
118: x_line_rec := p_line_rec;
119:
120: --Bug 2354736
121: --l_country_code := FND_PROFILE.VALUE('JGZZ_COUNTRY_CODE');
122: l_country_code := JG_ZZ_SHARED_PKG.GET_COUNTRY(l_org_id, null);
123:
124: IF NVL(l_country_code,'$') IN ('BR','AR','CO') THEN
125: JL_ZZ_RECEIV_INTERFACE.default_gdff (p_line_rec,

Line 173: --l_country_code := fnd_profile.value('JGZZ_COUNTRY_CODE');

169: x_return_code := 0;
170: l_country_code := NULL;
171:
172: --Following line is commented as a part of bug 2133665
173: --l_country_code := fnd_profile.value('JGZZ_COUNTRY_CODE');
174: --
175: l_country_code := SUBSTR(x_interface_line_rec.line_gdf_attr_category,4,2);
176: --
177: IF (PG_DEBUG > 0) THEN

Line 239: --l_country_code := FND_PROFILE.VALUE('JGZZ_COUNTRY_CODE');

235: x_return_code := 0;
236: l_country_code := NULL;
237:
238: --Bug 2354736
239: --l_country_code := FND_PROFILE.VALUE('JGZZ_COUNTRY_CODE');
240: l_country_code := JG_ZZ_SHARED_PKG.GET_COUNTRY(l_org_id, null);
241:
242: IF NVL(l_country_code,'$') IN ('BR','AR','CO') THEN
243: JL_ZZ_RECEIV_INTERFACE.default_gdf (x_line_rec,

Line 259: PG_DEBUG := to_number(NVL(FND_PROFILE.value('ONT_DEBUG_LEVEL'), '0'));

255: END default_gdf;
256:
257: BEGIN
258:
259: PG_DEBUG := to_number(NVL(FND_PROFILE.value('ONT_DEBUG_LEVEL'), '0'));
260:
261: END JG_ZZ_OM_COMMON_PKG;