1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 | /****************************************************************************** *PURPOSE: Query to Customer, Customer Account and Customer Sites Information * *AUTHOR: Abul Mohsin * ******************************************************************************/ SELECT ---------------------------------------------------------- -- Party Information ---------------------------------------------------------- hp.party_number "Registry ID", hp.party_name "Party Name", hp.party_type "Party Type", DECODE (hp.status, 'A', 'Active', 'I', 'Inactive', hp.status ) "Party Status", ---------------------------------------------------------- -- Account Information ---------------------------------------------------------- hca.account_number "Account Number", DECODE (hca.status, 'A', 'Active', 'I', 'Inactive', hca.status ) "Account Status", hca.account_name "Account Description", hca.customer_class_code "Classification", DECODE (hca.customer_type, 'R', 'External', 'I', 'Internal', hca.customer_type ) "Account Type", ---------------------------------------------------------- -- Site Information ---------------------------------------------------------- hps.party_site_number "Customer Site Number", DECODE (hcas.status, 'A', 'Active', 'Inactive') "Site Status", DECODE (hcas.bill_to_flag, 'P', 'Primary', 'Y', 'Yes', hcas.bill_to_flag ) "Bill To Flag", DECODE (hcas.ship_to_flag, 'P', 'Primary', 'Y', 'Yes', hcas.ship_to_flag ) "Ship To Flag", hcas.cust_acct_site_id "Customer Acct Site ID", ---------------------------------------------------------- -- Address Information ---------------------------------------------------------- hl.address1 "Address1", hl.address2 "Address2", hl.address3 "Address3", hl.address4 "Address4", hl.city "City", hl.state "State", hl.postal_code "Zip Code", ter.NAME "Territory", ---------------------------------------------------------- -- DFF Information (specific to client) ---------------------------------------------------------- hcas.attribute4 "SMG Key", hcas.attribute8 "GLN Key", hca.attribute3 "Credit Approval Date", hca.attribute7 "Credit Approved By", hca.attribute4 "Acct Opened Date", hca.attribute5 "Credit Collection Status", hca.attribute1 "BPCS Last Trx Date", hca.attribute2 "BPCS Avg Pay Days", hca.attribute6 "BPCS RCM Reference", ---------------------------------------------------------- -- Collector Information ---------------------------------------------------------- col.NAME "Collector Name", ---------------------------------------------------------- -- Account Profile Information ---------------------------------------------------------- hcp.credit_checking "Credit Check Flag", hcp.credit_hold "Credit Hold Flag", hcpa.auto_rec_min_receipt_amount "Min Receipt Amount", hcpa.overall_credit_limit "Credit Limit", hcpa.trx_credit_limit "Order Credit Limit", -------------------------------------------------------- -- Attachment Flag ---------------------------------------------------------- NVL ((SELECT 'Y' FROM fnd_documents_vl doc, fnd_lobs blo, fnd_attached_documents att WHERE doc.media_id = blo.file_id AND doc.document_id = att.document_id AND att.entity_name = 'AR_CUSTOMERS' AND att.pk1_value = hca.cust_account_id AND ROWNUM = 1), 'N' ) "Attachment Flag", ---------------------------------------------------------- -- Party Relationship Flag ---------------------------------------------------------- NVL ((SELECT 'Y' FROM hz_cust_acct_relate_all hzcar WHERE hzcar.cust_account_id = hca.cust_account_id AND hzcar.relationship_type = 'ALL' AND ROWNUM = 1), 'N' ) "Party Relationship Flag", ---------------------------------------------------------- -- Account Relationship Flag ---------------------------------------------------------- NVL ((SELECT 'Y' FROM hz_cust_acct_relate_all hzcar WHERE hzcar.cust_account_id = hca.cust_account_id AND ROWNUM = 1), 'N' ) "Account Relationship Flag", ---------------------------------------------------------- -- Party Contact Flag ---------------------------------------------------------- NVL ((SELECT 'Y' FROM hz_parties hp2 WHERE 1 = 1 AND hp2.party_id = hp.party_id AND ( hp2.url IS NOT NULL OR -- LENGTH(TRIM(hp.email_address)) > 5 INSTR (hp2.email_address, '@') > 0 OR hp2.primary_phone_purpose IS NOT NULL )), 'N' ) "Party Contact Flag", ---------------------------------------------------------- -- Account Contact Flag ---------------------------------------------------------- NVL ((SELECT 'Y' FROM hz_contact_points WHERE STATUS = 'A' AND owner_table_id = (SELECT hcar.party_id FROM hz_cust_account_roles hcar, ar_contacts_v acv WHERE hcar.cust_account_id = hca.cust_account_id AND hcar.cust_account_role_id = acv.contact_id AND hcar.cust_acct_site_id IS NULL -- look for account level only AND ROWNUM = 1 -- add this row to show inactive sites (i.e. with no site id) ) AND ROWNUM = 1), 'N' ) "Account Contact Flag", ---------------------------------------------------------- -- Site Contact Flag ---------------------------------------------------------- NVL ((SELECT 'Y' FROM hz_contact_points WHERE STATUS = 'A' AND owner_table_id = (SELECT hcar.party_id FROM hz_cust_account_roles hcar, ar_contacts_v acv WHERE hcar.cust_acct_site_id = hcas.cust_acct_site_id AND hcar.cust_account_role_id = acv.contact_id AND ROWNUM = 1 -- add this row to show inactive sites (i.e. with no site id) ) AND ROWNUM = 1), 'N' -- any contact (email, phone, fax) would suffice this condition ) "Site Contact Flag" FROM hz_parties hp, hz_party_sites hps, hz_cust_accounts_all hca, hz_cust_acct_sites_all hcas, hz_customer_profiles hcp, hz_cust_profile_amts hcpa, hz_locations hl, ra_territories ter, ar_collectors col WHERE 1 = 1 AND hp.party_id = hca.party_id AND hca.cust_account_id = hcas.cust_account_id(+) AND hps.party_site_id(+) = hcas.party_site_id AND hp.party_id = hcp.party_id AND hca.cust_account_id = hcp.cust_account_id AND hps.location_id = hl.location_id(+) AND col.collector_id = hcp.collector_id AND hcas.territory_id = ter.territory_id(+) AND hcp.cust_account_profile_id = hcpa.cust_account_profile_id(+) ---- AND hp.party_type = 'ORGANIZATION' -- only ORGANIZATION Party types AND hp.status = 'A' -- only Active Parties/Customers ---- -- following conditions are for testing purpose only -- comment/uncomment as needed ---- -- AND hp.party_number = &party_number -- AND hca.account_number = &account_number ORDER BY TO_NUMBER (hp.party_number), hp.party_name, hca.account_number; |
Developer credits Abul Mohsin