DBA Data[Home] [Help]

APPS.XTR_FX_TRANSFERS_PKG dependencies on XTR_PARTIES_V

Line 178: from xtr_parties_v

174:
175: BEGIN
176: select 'Y'
177: into l_dummy
178: from xtr_parties_v
179: where party_type = 'C'
180: and party_code = p_company_code
181: and rownum = 1;
182:

Line 657: from xtr_parties_v

653: IF p_client_code is not null then
654: BEGIN
655: select 'Y'
656: into l_temp
657: from xtr_parties_v
658: where party_type = 'CP'
659: and party_category = 'CL'
660: and party_code = p_client_code
661: and rownum = 1;

Line 1361: from xtr_parties_v p,

1357:
1358: cursor rnd_fac is
1359: select p.home_currency,
1360: m.rounding_factor
1361: from xtr_parties_v p,
1362: xtr_master_currencies_v m
1363: where p.party_code = G_Fx_Main_Rec.company_code
1364: and p.party_type = 'C'
1365: and m.currency = p.home_currency;