FINF9300 - Sponsor Inquiry

Purpose

To query on a single Sponsor code

SubSystem

Finance

Normally Run By Finance Specialist
Anticipated Frequency As required
Structure  Block Student Course Attempt
Tabs Student Details
Payment Details
Sponsor Details
Buttons Retrieve List (Fills in details to Sponsor Students section)
Units (overlay to Unit Sponsorship)
Download Records (creates .CSV file)
Back

 

This function enables users to query on a single Sponsor Code and check details connected with the sponsor’s sponsorships, including debts, credits, payments, refunds, etc. The information is broken down by Student and Fee Period. The user can view a complete list of all students that the sponsor is sponsoring, or restrict this list by Fee Period.

The sponsored (debt) amounts will be the amounts the sponsor is expected to pay rather than the gross sponsored amounts of each debt. So where discounts are involved they are expected to pay the discounted amount unless the debt is not paid and the due date has passed or the debt is paid late.

The data displayed can be downloaded to a csv file.

This form is accessed from the main menu.

 

The Sponsor Inquiry block contains:

  • Sponsor Code (LOV)
  • Sponsor Status
  • Payment Advice Number
  • Total Paid
  • Total Liability
  • Total Allocated Amount
  • Balance
  • Total Refund
  • Unallocated Amount

Tabs (disabled when the above block is in Query Mode)

The Student Details tab contains:

Financial and Fee Calendars (Title)

  • Financial Period (LOV)
  • Fee Period (LOV)

Sponsored Students (Title)

  • Display Owing Students Only check box
  • Financial Period
  • Fee Period
  • Person ID
  • Course Code
  • Fee Category
  • Fee Type
  • Sponsored Amount
  • Payment Received
  • Amount Owed
  • Total (Sponsored Amount)
  • Total (Payment Received)
  • Total (Amount Owed)
  • Person Name
  • Total Sponsorship Limit
  • Course Title
  • Version Number

Buttons

  • Retrieve List (fills in fields of Sponsored Students)
  • Units (overlay to Unit Sponsorship )
    • Person ID
    • Financial Period
    • Dee Period
    • Unit Code
    • Version
    • Title
    • Sponsored Amount
    • Student Status
    • Download Records Button
    • Back button
  • Download Records

The Payment Details tab contains:

  • Receipt Date
  • Receipt Number
  • Currency
  • Transaction Amount
  • Applied amount
  • Unallocated
  • Payment Type
  • Pay Sort Key
  • Total

Button

  • Download Records

The Sponsor Details tab contains:

  • Financial Period
  • Fee Period
  • Total Liability
  • Total Paid
  • Balance
  • Total

Button

  • Download Records

Rule/Notes:

The Sponsor Inquiry block

The Sponsor Code can only be queried.

A lamp will display either OWING, BALANCED or CREDIT.

The amounts displayed here are derived for each sponsor queried in the top block (Sponsor Code).

The Total Paid field contains the sum of all payments made by the sponsor.

The Unallocated Amount field is derived as the Total Paid – (Total Allocated Amount + Total Refund).

The Total Refund field contains the sum of all refunds issued to the sponsor.

The Student Details Tab

The Financial Period field is Mandatory.

The Fee Period is restricted to only when a student is sponsored. If the Fee Period is not specified, then ALL Fee Periods applicable for the Financial Period apply.

The Display Owing Students Only check box is checked when user only wants records on sponsors who owe money to be queried.

The Retrieve List button will be enabled if % is selected for the Financial and Fee Periods. In some cases the Retrieve List may return no records.

The Units button is only displayed when a sponsor is sponsoring the particular units for the Student Course Attempt.

 

 

Download Button

The Download button is disabled if no records have been queried. When displayed and selected, the File Dialog Box will allow users to specify a file name for the CSV file. Under the different tabs the .CSV file will display:

Sponsored Students Unit Sponsorship Payment Details Sponsorship Details
Header Header Header Header
File Type File Type File Type File Type
Sponsor Code Sponsor Code Sponsor Code Sponsor Code
Person ID Person ID

Receipt Date

Financial Calendar Type
Name Course Code Receipt Number Financial Calendar Sequence Number
Course Code Version Number Currency Financial Year
Version Number Short Title Transaction Amount Fee Calendar Type
Short Title Fee Category Applied Amount Fee Calendar Sequence Number
Fee Category Financial Calendar Type Unallocated Total Liability
Financial Calendar Type Financial Calendar Sequence Number Payment Type Total Paid
Financial Calendar Fee Calendar Type Pay Sort Key Balance
Fee Calendar Type Fee Type           
Fee Calendar Sequence Number Sponsored Amount
Fee Type Student Status
Total Sponsorship Limit      
Sponsored Amount
Payment Received
Amount Owed

 

Sponsor Inquiry block

Label Field Source Field Type Format Comments
Sponsor Code STUDENT_FEE_SPONSOR_V.SPONSOR_CD Text with LOV button Varchar 10 Allow query on this field only
  STUDENT_FEE_SPONSOR_V.SPONSOR_NAME Display Varchar 85  
Sponsor Status STUDENT_FEE_SPONSOR_V.SPONSOR_STATUS Display Varchar 10  
Payment Advice Number STUDENT_FEE_SPONSOR_V.PAYMENT_ADVICE_NUMBER Display Varchar 20  
Total Liability SPONSOR_BALANCE_V.DEBT_AMOUNT Display Number $9,999,999,990.00

SELECT SUM(sbv.debt_amount)
FROM sponsor_balance_v sbv
WHERE sbv.sponsor_cd = sfsv.sponsor_cd
GROUP BY sbv.sponsor_cd

Total Paid SPONSOR_BALANCE_V.PAID_AMOUNT Display Number $9,999,999,990.00

SELECT SUM(sbv.paid_amount)
FROM sponsor_balance_v sbv
WHERE sbv.sponsor_cd = sfsv.sponsor_cd
GROUP BY sbv.sponsor_cd

Balance SPONSOR_BALANCE_V.BALANCE_AMOUNT Display Number $9,999,999,990.00

SELECT SUM(sbv.balance_amount)
FROM sponsor_balance_v sbv
WHERE sbv.sponsor_cd = sfsv.sponsor_cd
GROUP BY sbv.sponsor_cd

Total Refund   Display Number $9,999,999,990.00

If Total Paid – Total Liability > 0 then Total Refund = Total Paid – Total Liability
Else
Total Refund = 0

OWING / BALANCED / CREDIT   Lamp    

 

Financial and Fee Calendars

Label Field Source Field Type Format Comments
Financial Period CAL_INSTANCE.ALTERNATE_CODE Text (with LOV button) Varchar 10

The LOV and field definitions will make this field mandatory.
LOV restricted to % and financial periods for which students have been sponsored. This is achieved by querying the sponsor_debt_v for records with the same sponsor_cd as in the Sponsor Inquiry record

Fee Period CAL_INSTANCE.ALTERNATE_CODE Text (with LOV button) Varchar 10

LOV restricted to % and fee periods for which students have been sponsored. This is achieved by querying the sponsor_debt_v for records with the same sponsor_cd as in the Sponsor Inquiry record and fee period as specified above.
If the Fee Period is not specified then ALL Fee Periods appicable to the Financial Period apply

Retrieve List   Button    

 

Sponsored Students

Label Field Source Field Type Format Comments
Display Owing Students Only   Checkbox  

Checkbox can only be selected in query mode (i.e., before the query and not after).
If records have already been queried then disable the check box.
If selected, only records with an ‘Amount Owed’ that is greater than 0 will be selected and included in the totals

Financial Period SPONSOR_DEBT_V.FIN_ALTERNATE_CODE Text Varchar 10 User can perform queries on this field
Fee Period SPONSOR_DEBT_V.FEE_ALTERNATE_CODE Text Varchar 10 User can perform queries on this field
Person ID SPONSOR_DEBT_V.PERSON_ID Text Varchar 10 User can perform queries on this field
Course Code SPONSOR_DEBT_V.COURSE_CD Text Varchar 20 User can perform queries on this field
Version SPONSOR_DEBT_V.VERSION_NUMBER Display Number 990  
Fee Category SPONSOR_DEBT_V.FEE_CAT Text Varchar 10 User can perform queries on this field
Fee Type SPONSOR_DEBT_V.FEE_TYPE Text Varchar 10 User can perform queries on this field
Total Sponsorship Limit SPONSOR_DEBT_V.TOTAL_SPONSORSHIP_LIMIT Display Number $9,999,999,990.00  
Sponsored Amount SPONSOR_DEBT_V.DEBT_AMOUNT Display Number $9,999,999,990.00  
Payment Received SPONSOR_DEBT_V.PAID_AMOUNT Display Number $9,999,999,990.00  
Amount Owed SPONSOR_DEBT_V.BALANCE_AMOUNT Display Number $9,999,999,990.00  
Units   Button  

This button will be enabled only when Sponsored Fee has a management level of UNIT

Total SUM(SPONSOR_DEBT_V.TOTAL_SPONSORSHIP_LIMIT) Display Number $9,999,999,990.00 Total of the Total Sponsorship Limits displayed
  SUM(SPONSOR_DEBT_V.DEBT_AMOUNT) Display Number $9,999,999,990.00 Total of the Assessed Amounts displayed
  SUM(SPONSOR_DEBT_V.PAID_AMOUNT) Display Number $9,999,999,990.00 Total of the Payment Received amounts displayed
  SUM(SPONSOR_DEBT_V.BALANCE_AMOUNT) Display Number $9,999,999,990.00 Total of the Amount Owed amounts displayed
Person Name SPONSOR_DEBT_V.CONTEXT_BLOCK_NAME Display Varchar 85  
Course Title SPONSOR_DEBT_V.SHORT_TITLE Display Varchar 40  
Download Records   Button   The button will be disabled if no records have been queried in this block. The button will also be disabled in query mode

 

Unit Sponsorship

Label Field Source Field Type Format Comments
Person ID USPV.PERSON_ID Display Number 9999999990  
  PDV.CONTEXT_BLOCK_NAME Display Varchar 85 Select from person_display_v where person_id = USPV.PERSON_ID
Financial Period USPV.FIN_ALTERNATE_CD Display Varchar 10  
Fee Period USPV.FEE_ALTERNATE_CD Display Varchar 10 The alternate code for the Fee Period
Unit Code USPV.UNIT_CD Text Varchar 20 Query Enabled
Version USPV.VERSION_NUMBER Display Number 990 The view is based on the pps records. Where a fee has a management level of unit, the pps record identifies the uoo_id and the version number can be determined from that
Title USPV.SHORT_TITLE Display Varchar 40 The title of the unit version
Sponsored Amount USPV.DEBT_AMOUNT Display Number $99,999,990.99  
Student Status STUDENT_UNIT_STUDENT_STATUS_V.STUDENT_STATUS Display Varchar 10  
Download Records   Button   The button will be disabled if no records have been queried in this block. The button will also be disabled in query mode
Back   Button    

 

Payment Details

Label Field Source Field Type Format Comments
Receipt Date I_PAYMENT.EFFECTIVE_DT Text Date DD/MM/YYYY This field can be queried
Receipt Number I_PAYMENT.RECEIPT_NUM Text Varchar 30 This field can be queried
Currency I_PAYMENT.CURRENCY_CD Display Varchar 3  
Transaction Amount I_PAYMENT.TRANSACTION_AMOUNT Display Number $999,999,999,990.99  
Applied Amount I_INVOICE_PAYMENT.TRANSACTION_AMOUNT Display Number $999,999,999,990.99 Join to I_INVOICE_PAYMENT where iip.ip_sequence_number = ip.ip_sequence_number and iip.customer_num = ip.customer_num
Unallocated I_PAYMENT.TRANSACTION_AMOUNT - I_INVOICE_PAYMENT.TRANSACTION_AMOUNT Display Number $999,999,999,990.99 Use the join to I_INVOICE_PAYMENT
Payment Type I_PAYMENT.PAYMENT_TYPE Display Varchar 10  
Pay Sort Key I_PAYMENT.PAY_SORT_KEY Display Varchar 10  
TOTAL SUM(I_PAYMENT.TRANSACTION_AMOUNT) Display Number $999,999,999,990.99  
  SUM(I_INVOICE_PAYMENT.TRANSACTION_AMOUNT) Display Number $999,999,999,990.99 Use the join to I_INVOICE_PAYMENT
  SUM(I_PAYMENT.TRANSACTION_AMOUNT - I_INVOICE_PAYMENT.TRANSACTION_AMOUNT) Display Number $999,999,999,990.99 Use the join to I_INVOICE_PAYMENT
Download Records   Button   The button will be disabled if no records have been queried in this block. The button will also be disabled in query mode

 

 

Sponsor Details

Label Field Source Field Type Format Comments
Financial Period SDTLV.FIN_YEAR Display VARCHAR 10 Query allowed
Fee Period SDTLV.FEE_PERIOD Display VARCHAR 10 Query allowed
Total Liability SDTLV.DEBT_AMOUNT Display NUMBER $9,999,999,990.00  
Total Paid SDTLV.PAID_AMOUNT Display NUMBER $9,999,999,990.00  
Balance SDTLV.BALANCE_AMOUNT Display NUMBER $9,999,999,990.00  
OWING / BALANCED / CREDIT   Display  

The lamp will display one of ‘OWING’, ‘BALANCED’ or CREDIT. dependent on balance_amount

0 – BALANCED
<0 CREDIT
>0 OWING

TOTAL SUM(SDTLV.DEBT_AMOUNT) Display NUMBER $9,999,999,990.00  
  SUM(SDTLV.PAID_AMOUNT) Display NUMBER $9,999,999,990.00  
  SUM(SDTLV.BALANCE_AMOUNT) Display NUMBER $9,999,999,990.00  
Download Records   Button   The button will be disabled if no records have been queried in this block. The button will also be disabled in query mode

 

Last modified on 11 June, 2008 11:21 AM

History Information

Release Version Project Change to Document
11.0.0.0.0.0 1284 - Product Changes Updated field labels and briefly described new fields.