List of WEBADI Tables
1) Integrator
BNE_INTEGRATORS_B
BNE_INTEGRATORS_VL
BNE_INTEGRATORS_TL
Layout
BNE_LAYOUTS_B
BNE_LAYOUTS_VL
BNE_LAYOUTS_TL
Layout Columns
BNE_LAYOUT_COLS
BNE_LAYOUT_COLS_V
Mapping
BNE_MAPPINGS_B
BNE_MAPPINGS_TL
BNE_MAPPINGS_VL
Content
BNE_CONTENTS_B
BNE_CONTENTS_TL
BNE_CONTENTS_VL
Interface
BNE_INTERFACES_B
BNE_INTERFACES_TL
BNE_INTERFACES_VL
--------------SQL Query to get View and PAckage Name used in integrator--------------
SELECT xxbits..user_name web_adi, ba.attribute2 "PACKAGE", xxbct.user_name "VIEW"
FROM bne_integrators_tl xxbits., bne_attributes ba, bne_contents_tl xxbct
WHERE SUBSTR (xxbits..integrator_code, 1, LENGTH (xxbits..integrator_code) - 5)
|| '_ATT' = ba.attribute_code
AND xxbits..application_id = xxbct.application_id
AND xxbits..LANGUAGE = 'US'
AND xxbct.LANGUAGE = 'US'
AND ba.attribute1 = 'PROCEDURE'
AND xxbits..application_id = ba.application_id
AND xxbct.content_code =
SUBSTR (xxbits..integrator_code, 1,
LENGTH (xxbits..integrator_code) - 5)
|| '_CNT'
AND xxbits..user_name LIKE 'XX%'
ORDER BY xxbits..user_name;