DBA Data[Home] [Help]

APPS.ZX_TPI_SERVICES_PKG dependencies on ZX_LINES

Line 13: application_id zx_lines.application_id%type,

9: for a transaction line. In order to avoid unwanted multiple calls to the procedure for same regime
10: we are storing hit regimes in a temporary structure*/
11: TYPE tax_regime_prvdr_rec_type is record(
12: srvc_provider_id zx_srvc_subscriptions.SRVC_PROVIDER_ID%type,
13: application_id zx_lines.application_id%type,
14: entity_code zx_lines.entity_code%type,
15: event_class_code zx_lines.event_class_code%type,
16: first_pty_org_id zx_party_tax_profile.party_tax_profile_id%type,
17: tax_regime_code zx_regimes_b.tax_regime_code%type

Line 14: entity_code zx_lines.entity_code%type,

10: we are storing hit regimes in a temporary structure*/
11: TYPE tax_regime_prvdr_rec_type is record(
12: srvc_provider_id zx_srvc_subscriptions.SRVC_PROVIDER_ID%type,
13: application_id zx_lines.application_id%type,
14: entity_code zx_lines.entity_code%type,
15: event_class_code zx_lines.event_class_code%type,
16: first_pty_org_id zx_party_tax_profile.party_tax_profile_id%type,
17: tax_regime_code zx_regimes_b.tax_regime_code%type
18: );

Line 15: event_class_code zx_lines.event_class_code%type,

11: TYPE tax_regime_prvdr_rec_type is record(
12: srvc_provider_id zx_srvc_subscriptions.SRVC_PROVIDER_ID%type,
13: application_id zx_lines.application_id%type,
14: entity_code zx_lines.entity_code%type,
15: event_class_code zx_lines.event_class_code%type,
16: first_pty_org_id zx_party_tax_profile.party_tax_profile_id%type,
17: tax_regime_code zx_regimes_b.tax_regime_code%type
18: );
19: TYPE tax_regime_tmp_tbl_type is table of tax_regime_prvdr_rec_type index by BINARY_INTEGER;