DBA Data[Home] [Help]

APPS.JG_ZZ_SHARED_PKG dependencies on FND_API

Line 221: IF l_return_status <> FND_API.G_RET_STS_SUCCESS Then

217: x_msg_data => l_msg_data,
218: p_operating_unit => p_org_id,
219: x_country_code => l_country_code);
220:
221: IF l_return_status <> FND_API.G_RET_STS_SUCCESS Then
222: l_country_code := NULL;
223: END IF;
224:
225: ELSIF p_ledger_id IS NOT NULL Then

Line 236: IF l_return_status = FND_API.G_RET_STS_SUCCESS Then

232: x_msg_data => l_msg_data,
233: p_ledger_id => p_ledger_id,
234: x_register_country_tbl => l_country_tbl);
235:
236: IF l_return_status = FND_API.G_RET_STS_SUCCESS Then
237: -- check if there is only one globalization country supported by Jx products
238: -- and return it. If there is more than one globalization country, return NULL
239: l_global_cnt := 0;
240: FOR i IN l_country_tbl.first..l_country_tbl.last

Line 324: IF l_return_status <> FND_API.G_RET_STS_SUCCESS Then

320: P_Le_ID => NULL,
321: P_Party_ID => NULL,
322: x_Inv_Le_info => l_Inv_Le_info_rec);
323:
324: IF l_return_status <> FND_API.G_RET_STS_SUCCESS Then
325: l_country_code := NULL;
326: ELSE
327: l_country_code := l_Inv_Le_info_rec(l_Inv_Le_info_rec.FIRST).COUNTRY;
328: END IF;