advanced collections setup steps

36
Advanced Collections setup steps 1. Creating a user account and assigning responsibilities In System Administrator Responsibility> Security>User>Define Enter a Username and Password Assign the following responsibilities: • System Administrator • Application Developer • Receivables Manager • Collections Agent • Collections Forms Administrator • CRM Resource Manager • Collections HTML Admin • Telesales Agent • Human Resources Manager • CRM Administrator 2. Setting up an Employee • Navigate to HR Responsibility • Setup employee • People>Enter & Maintain • Enter name, birthday, gender, SSN and Save • Note the employee number 3. Attach the employee name to the user name • Navigate to System Administrator Responsibility • Security>User>Define • Query your Username

Upload: redro

Post on 21-Apr-2017

304 views

Category:

Documents


11 download

TRANSCRIPT

Page 1: Advanced Collections Setup Steps

Advanced Collections setup steps

1. Creating a user account and assigning responsibilities

In System Administrator Responsibility> Security>User>Define

Enter a Username and Password

Assign the following responsibilities:• System Administrator• Application Developer• Receivables Manager• Collections Agent• Collections Forms Administrator• CRM Resource Manager• Collections HTML Admin• Telesales Agent• Human Resources Manager• CRM Administrator

2. Setting up an Employee• Navigate to HR Responsibility• Setup employee• People>Enter & Maintain• Enter name, birthday, gender, SSN and Save• Note the employee number

3. Attach the employee name to the user name• Navigate to System Administrator Responsibility• Security>User>Define• Query your Username• Enter the Full Name as it appeared in the HR setup screen above• Save

4. Create a group

Page 2: Advanced Collections Setup Steps

a. Navigation : CRM Resource Manager -> Maintain Resources -> Groupsb. Name/Start Date (you can use anything)c. -Assign Usagesi. Collectionsd. -Rolese. Collections Agent

Test Dunning Group

Page 5: Advanced Collections Setup Steps

a. Navigation : CRM Resource Manager -> Maintain Resources -> Import Resourcesb. Resource Cat = Employeec. Enter Employee # that was noted previouslyd. Click search/select employeee. Click start import

Page 6: Advanced Collections Setup Steps

f. select start date of the resource

Page 8: Advanced Collections Setup Steps

h. Save Resource.

i. Click Detailsj. From the Resource Management Form, enter the Usernamek. Click on Roles Tab (Security & Access)Add the following roles:Collections Role TypeCollections Agent Role

Page 9: Advanced Collections Setup Steps

l. Click on the Group TabQuery Group you created previouslyClose the form

Page 10: Advanced Collections Setup Steps

m. Add yourself as an employee to the groupClose the form.

Page 11: Advanced Collections Setup Steps

——————————————-

1. Changing Data Template

a. Navigate to: XML Publisher Administratorb. Click on Data Definition tab

Page 12: Advanced Collections Setup Steps

c. Search for: Collection XML Data Sourced. Update the template you want to use for your dunning letters

Page 17: Advanced Collections Setup Steps

XXX -NL-BE Dun Letter – STG1XXX -NL-BE Dun Letter – STG2XXX -NL-BE Dun Letter – STG3

Page 18: Advanced Collections Setup Steps

select to_char(sysdate, ‘MM/DD/YYYY’) currsysdate,decode((per.person_first_name || per.person_last_name), null, ARPT_SQL_FUNC_UTIL.get_lookup_meaning(‘RESPONSIBILITY’, ‘APS’), per.person_first_name) first_name,per.person_last_name last_name,org.party_name org_name,loc.address1 address1,loc.address2 address2,loc.city city,loc.state state,loc.postal_code postal_code,per.person_first_name first_name1,

Page 19: Advanced Collections Setup Steps

(select sum(aps.amount_due_remaining)fromiex_delinquencies_all dd,ar_payment_schedules_all apswheredd.payment_schedule_id = aps.payment_schedule_id anddd.party_cust_id = org.party_id anddd.cust_account_id = :ACCOUNT_ID anddd.customer_site_use_id = :CUSTOMER_SITE_USE_ID) total_amount_due_remaining,to_char(sysdate+14, ‘MM/DD/YYYY’) required_pay_date,rs.source_name collector_name,rs.source_job_title collector_title,rs.source_phone collector_phone,cursor(selectct.trx_number invoice_number,to_char(ar.due_date, ‘MM/DD/YYYY’) due_date,ar.amount_due_remaining amount_due_remainingfromiex_delinquencies_all d,ar_payment_schedules_all ar,ra_customer_trx_all ctwhered.party_cust_id = org.party_idand d.cust_account_id = :ACCOUNT_IDand d.customer_site_use_id = :CUSTOMER_SITE_USE_IDand d.payment_schedule_id = ar.payment_schedule_idand d.status = ‘DELINQUENT’and ar.customer_trx_id = ct.customer_trx_idand ar.amount_due_remaining <> 0) as payment_historyfromHZ_LOCATIONS loc,hz_parties org,hz_parties per,jtf_rs_resource_extns rswhere

Page 20: Advanced Collections Setup Steps

loc.location_id = :LOCATION_IDand org.party_id= :PARTY_IDand per.party_id = nvl(:CONTACT_ID, org.party_id)and rs.RESOURCE_ID = :RESOURCE_IDf. SELECT TEMPLATE_ID, APPLICATION_ID, TEMPLATE_CODE, TEMPLATE_NAME FROM XDO_TEMPLATES_VL WHERE TEMPLATE_NAME LIKE ‘%MyTemplateName%’;g. Verify reference exist between XDO Template and Collections QuerySELECT * FROM IEX_QUERY_TEMP_XREF WHERE TEMPLATE_ID = <MyTemplateID>;h. Review the existing queries in the table based on Dunning Level(Strategy level) in this case, we are using BillTo.SELECT QUERY_ID, DESCRIPTION from IEX_XML_QUERIES WHERE OBJECT_TYPE = ‘DUNN’ AND QUERY_LEVEL = ‘BILL_TO;i. Insert into row into IEX_QUERY_TEMP_XREF table connecting Template and Query Use the sequence value from IEX_QUERY_TEMP_XREF_S for QUERY_TEMP_IDReceivables -> Setup -> Collections -> Aging Buckets

XXX Aging Bucket

2. Setting up for Dunning Plans

Page 21: Advanced Collections Setup Steps

a. Navigation: Collections Administrator -> Setup Checklistb. Click on Home tab

c. Click on Edit Questionnaire for Operations Setupd. Check the Bill To radio button and check box for collection / dunning level

Page 22: Advanced Collections Setup Steps

e. Click Next leave default.f. Click Next.g. Click on Dunning Plan radio button for collections method

Page 23: Advanced Collections Setup Steps

3. Create Scoring Componentsa. Navigation: Collections Administrator -> Setup Checklist -> Click on tab Collections Method Setupb. Click on Create Scoring Component

Page 24: Advanced Collections Setup Steps

c. Give a named. Enable the check boxe. Select type as Bill Tof. Select Value Type as Select Statementg. Give any valid SQL

Page 25: Advanced Collections Setup Steps

XXX Dunning Comp

SELECT NVL(MAX(ABL.BUCKET_SEQUENCE_NUM),0)FROM AR_AGING_BUCKETS AB,AR_AGING_BUCKET_LINES ABL,AR_PAYMENT_SCHEDULES ARP,IEX_DELINQUENCIES DELWHERE ABL.AGING_BUCKET_ID = AB.AGING_BUCKET_IDAND AB.BUCKET_NAME = ‘XXX Aging Bucket’AND DEL.PAYMENT_SCHEDULE_ID = ARP.PAYMENT_SCHEDULE_IDAND (TRUNC(SYSDATE) – TRUNC(ARP.DUE_DATE)) BETWEEN ABL.DAYS_START AND ABL.DAYS_TOAND DEL.STATUS IN (‘DELINQUENT’, ‘PREDELINQUENT’)AND ARP.STATUS =’OP’AND DEL.CUSTOMER_SITE_USE_ID = :BILLTO_ID

h. Click on apply.

4. Create Scoring Engine

Page 26: Advanced Collections Setup Steps

a. Click on Create scoring Engine tab under Collections Method Setupb. Click on Create Scoring Engine button

c. Fill up the form as in screen shot and click next

XXX Dunning Scoring engine

Page 27: Advanced Collections Setup Steps

d. Click on Add Score Component

Page 29: Advanced Collections Setup Steps

e. Search you Scoring Component and select it

f. Key in the weight for that component and click on recalculate buttong. Define ranges for you component and click next

Page 30: Advanced Collections Setup Steps

h. Define segments and click nextIEX_F_BILLTO_V

Page 31: Advanced Collections Setup Steps

5. Create Dunning Plans

a. Go to create dunning plans tab under Collections Method Setup

Page 32: Advanced Collections Setup Steps

b. Fill in the form and select the aging bucket you want to use for this dunning plan, click next

Dunning Planc. Select the scoring engine you created and click next

Page 33: Advanced Collections Setup Steps

d. Define your dunning plan as per the score and assign dunning letter template and click next

e. Click finish

Page 34: Advanced Collections Setup Steps

6. Define Contacts with dunning purpose

7. Running Concurrent Programs

• IEX: Scoring Engine Harness:

You can select up to five scoring engines to run at the same time. The scoring harness assigns a value to an object such as a customer, account, or bill to location. Another score determines whether transactions are delinquent, pre-delinquent, or current. At a minimum, you must run a scoring engine that scores transactions to create delinquencies; and then run a scoring engine to score the level of your dunning plan (customer, account, or bill to location).

Set

• IEX: Collections Bucket profile for your aging bucket.• IEX: Send Dunnings for delinquent customers:

Page 35: Advanced Collections Setup Steps

This program sends the results of the scoring engine harness to Oracle One-to-One Fulfillment to send out dunningcorrespondence

IEX: Purge Score History TableThe concurrent program IEX: Score History Purge: Purges historical data stored in the IEX_SCORE_HISTORIES table. Run this program if you do not use historical data.

The parameters:a) Score Object ID: This parameter will clean up score history for a single object, ‘Customer/Account/Site/Transaction’. For example if you pick a customer you can say to clean all scores for customer = ‘Business World’.

b) Score Object Code: This parameter will clean up all the history for the type of objects. For example, you can set it to clean up all scores for transactions.

c) Request ID: This parameters will clean up all the scores generated by a concurrent program request. If you ran a concurrent program with a scoring engine and did not like the result, you can basically wipe it clean by entering the request id.

d) The recommendation is for administrator to run this at least once a week to clean up transaction histories. OR to run this and leave all the fields blank and only select ‘Save Last Run’ = ‘Y’, which will cause the concurrent program to clean all the score history for all objects BUT it will leave the last score created for each object. So if you run scoring for customers for a year, if you use this option all the scores except the last one for each of your customers will be deleted.