SlideShare a Scribd company logo
1 of 13
Download to read offline
Step-By –Step Process for Check Printing in Oracle R12
Overview of Check Print Report
Check Print Report (Format Payment Instructions) Program used display the check details which
we issue to the suppliers and the invoice details of the suppliers.
This program will be called when we create invoices for the suppliers and when make the
payments against these invoices.
The standard check print report displays the check information at the top and the invoice details
just below the Check information.
Along this program Standard remittance advice program also called. It displays the invoice
details for a particular Check, when we have given limited number of invoices to be displayed in
the check print report.
This Learning deals how to customize these two report layouts and how to derive the additional
data in R12.
How to run the Standard Program
To run this report we need to have invoices created for suppliers. Then submit the request to
generate checks and as well as to display the check information.
Create Invoices:
Navigation: Payables Manager-->Invoice-->Entry-->Invoice Batches
Create one invoice batch and click on invoices.
Enter the required information as below. And click on distributions
And enter the required information as below. Save the record and validate it by clicking on
actions.
Once it is got validated, submit the request to generate checks to make payments.
Navigate to: Payables Manager-->Payments-->Entry-->Payments Manager
Search for the Payment process request template which we have for Payment method ‘Check’. if
it doesn’t exist create one click on Submit Single Request.
Then you can check the status of the program from SRS Window. This program builds the
payments. Once the program builds the payments you can start making payments. This will be
visible under pending actions.
Then select the list of suppliers and invoices created for them to whom we want to make
payments. And click on go. The system submits the standard program Format payment
instruction as well as separate Remittance Advice programs. You can check the status and output
from SRS window.
It first formats the both templates Check format and remittance advice and populates the base
table IBY_TRXN_DOCUMENTS.
We can have a look at the xml tags generated for this data in the column document of the table
IBY_TRXN_DOCUMENTS.
How the program works?
While submitting the request we need to select the appropriate Payment process profile and
Payment document. As we aware that we have template format assigned to this Payment process
profile. So when we submit the request the program creates the xml tags for the data, it generates
and displays it on the template which is assigned to the format template.
Common customizations to the check Print report
We normally get the requirement to customize the standard check print report to,
1. Derive/extract the data which is not achieved from standard functionality.
2. To display the data on layout as per the business requirement
Changes required to the code:
1. If we require to fetch the additional information of the supplier to whom we are issuing the
check.
To derive the additional data we do not require to customize the existing rather we need to add
the code to the seeded pl/sql package which has provided by oracle
Changes required to the Layout:
1. Many a times, business needs to display the check information with different formats, like
displaying the logo and displaying the additional details of payee.
2. Controlling the stub (invoice details) when the number of these invoices exceeds certain
limits. For example displaying the entire stub details in separate program when the total number
of invoices exceeds certain limit.
To display the data on customized layout we need to additional setup.
Customizing the code
As it is a java concurrent program, it calls the seeded pl/sql package to generate the xml tags for
the data that we are going to display. In addition it also calls one more package
IBY_FD_EXTRACT_EXT_PUB which we use to add the code to get the additional data in the
form of xml tags.
As we are aware that we have the data for check print report at various levels (Master and child
levels), we have the seeded code IBY_FD_EXTRACT_EXT_PUB to derive the data at all these
levels.
1. Assume, we need to find the payee site alternate name for a particular payment
As, it is for a particular payment we need to add the code to the function which has the input
payment id as a parameter.
Get the code for the package IBY_FD_EXTRACT_EXT_PUB and add the code to the function
Get_Pmt_Ext_Agg which accepts the payment id as a parameter.
Refer the below code to derive the Payee site alternate name.
CREATE OR REPLACE PACKAGE BODY IBY_FD_EXTRACT_EXT_PUB AS
FUNCTION Get_Pmt_Ext_Agg (p_payment_id IN NUMBER)
RETURN XMLTYPE
IS
l_alt_name varchar2(100);
BEGIN
SELECT XMLConcat (
XMLElement ("Extend",
XMLElement ("Name", 'PAYEE_SITE_ALT_NAME'),
XMLElement ("Value", payee_site_alternate_name)))
INTO l_alt_name
From IBY_PAYMENTS_all where payment_id = p_payment_id;
RETURN l_alt_name;
END Get_Pmt_Ext_Agg;
Save the code and compile it, it creates the xml tags Name and Value under the group Extend.
And this gets created at payment id level.
Customizing the Layout
We need to customize the existing layout as per the business requirement. But you can’t replace
the existing template (rtf) with the customized rtf.
To display the data in customized rtf we need to do few setups.
Even after doing so, we can have the existing functionality (displaying the data in seeded
template) remains same; if we want we can display the data in seeded template at any time.
Required Setup
Assume the requirement where we need to customize both Check print as well as Remittance
advice. Let’s do the setup to display the data on customized layouts.
As part of the setup we need to
1. Develop/Customize the template as per the business requirement.
2. Create template definition under existing data definition and attach the created template.
3. Create payment format for the template.
4. Create payment document for bank Account.
5. Create payment process profile.
1. Develop/Customize the template as per the business requirement.
If our requirement is to just add few other fields in the layout we can download the existing rtf
and can customize it.
As we know that Standard Check Format template is going to be called when the standard report
Format payment instructions got submitted, download the rtf which is assigned to the Standard
Check Format template.
Do the same for Remittance advice too.
Or we wan develop the rtf from the scratch if we required to do lot of customization.
2. Create a template definition under existing data definition and attach the created
template
Navigation: XML Publisher Administrator-->Templates-->Create Template
We need to create custom template under existing data definition Oracle Payments Funds
Disbursement Payment Instruction Extract 1.0
Make sure we have created template under payments Application, as we are going to use it in the
same application.
In this case we have created XX Check Format template.
Do the same for remittance advice too.
3. Create payment format for the template
Create payment format for the created template XX Check format in the above steps.
Navigation:Payables Manager-->Setup-->Payments-->Payment Administrator-->Formats--
>Formats-->Go to task
And create it with the following data.
For check Format:
For Remittance:
Select Disbursement Remittance Advice and click on create.
4. Create payment document for bank Account
We need to create Payment document which controls the check number with which number the
number has to start.
We need to find which bank account the business uses.
Navigation:Payables Manager-->Setup-->Payment-->Bank Accounts
Query for Bank Account Name and then click on Manage Payment Documents.
And click on create. Create the document with the following details
5. Create payment process profile
Create payment process profile and assign payment document to it.
Navigation:Payments Manager-->Setup-->Payment-->Payment Administrator-->Codes--
>Payment Process Profiles-->Go to Task-->Create
Under Usage Rules Tab
Under Payment Instruction Format Tab
Under reporting tab
We have done with the setup.
Now create invoices for suppliers and make the payments while doing the payment selects the
custom profile and custom payment document which we have created earlier. By doing so it
picks the custom template, format which assigned to this profile and displays the data on the
custom layouts.

More Related Content

What's hot

COGS Account Generator Workflow Customization
COGS Account Generator Workflow CustomizationCOGS Account Generator Workflow Customization
COGS Account Generator Workflow Customization
Edi Yanto
 
Oracle apps order-management
Oracle apps order-managementOracle apps order-management
Oracle apps order-management
swedin
 

What's hot (20)

Oracle Applications - R12 Approvals Management Engine - AME Training
Oracle Applications - R12 Approvals Management Engine - AME TrainingOracle Applications - R12 Approvals Management Engine - AME Training
Oracle Applications - R12 Approvals Management Engine - AME Training
 
Check printingxmlp r12
Check printingxmlp r12Check printingxmlp r12
Check printingxmlp r12
 
R12.2.4 india localization setup
R12.2.4 india localization setupR12.2.4 india localization setup
R12.2.4 india localization setup
 
Oracle R12 Apps - Purchasing Module Setup Steps
Oracle R12 Apps - Purchasing Module Setup Steps Oracle R12 Apps - Purchasing Module Setup Steps
Oracle R12 Apps - Purchasing Module Setup Steps
 
Infolets and OTBI Deep link Actionable Reports - Configuration Work Book
Infolets and OTBI Deep link Actionable Reports - Configuration Work Book Infolets and OTBI Deep link Actionable Reports - Configuration Work Book
Infolets and OTBI Deep link Actionable Reports - Configuration Work Book
 
Oracle EBS R 12 Core hr user manual
Oracle EBS R 12 Core hr user manualOracle EBS R 12 Core hr user manual
Oracle EBS R 12 Core hr user manual
 
Customizing Oracle EBS OA Framework
Customizing Oracle EBS OA FrameworkCustomizing Oracle EBS OA Framework
Customizing Oracle EBS OA Framework
 
Oracle Payable Complete Business flows
Oracle Payable Complete Business flowsOracle Payable Complete Business flows
Oracle Payable Complete Business flows
 
Payroll process in oracle hrms
Payroll process in oracle hrmsPayroll process in oracle hrms
Payroll process in oracle hrms
 
Oracle forms personalization
Oracle forms personalizationOracle forms personalization
Oracle forms personalization
 
Oracle R12 Order Management - Back to Back (B2B) Order Flow:
Oracle R12 Order Management - Back to Back (B2B) Order Flow:Oracle R12 Order Management - Back to Back (B2B) Order Flow:
Oracle R12 Order Management - Back to Back (B2B) Order Flow:
 
Oracle Payables R12 ivas
Oracle Payables R12 ivasOracle Payables R12 ivas
Oracle Payables R12 ivas
 
COGS Account Generator Workflow Customization
COGS Account Generator Workflow CustomizationCOGS Account Generator Workflow Customization
COGS Account Generator Workflow Customization
 
Oaf personalization examples
Oaf personalization examplesOaf personalization examples
Oaf personalization examples
 
How to configure LCM After receiving
How to configure LCM After receivingHow to configure LCM After receiving
How to configure LCM After receiving
 
32 payroll setup_part_32_(skylark_group_pvt_ltd)
32 payroll setup_part_32_(skylark_group_pvt_ltd)32 payroll setup_part_32_(skylark_group_pvt_ltd)
32 payroll setup_part_32_(skylark_group_pvt_ltd)
 
Oracle Fusion Cloud HCM Payroll Query
Oracle Fusion Cloud HCM Payroll QueryOracle Fusion Cloud HCM Payroll Query
Oracle Fusion Cloud HCM Payroll Query
 
Oracle apps order-management
Oracle apps order-managementOracle apps order-management
Oracle apps order-management
 
P2P Cycle -Oracle Apps
P2P Cycle -Oracle AppsP2P Cycle -Oracle Apps
P2P Cycle -Oracle Apps
 
Oracle R12 Apps - Order Management Tables & Descriptions
Oracle R12 Apps - Order Management Tables & DescriptionsOracle R12 Apps - Order Management Tables & Descriptions
Oracle R12 Apps - Order Management Tables & Descriptions
 

Viewers also liked

User acceptance testing your r12 upgrade
User acceptance testing your r12 upgradeUser acceptance testing your r12 upgrade
User acceptance testing your r12 upgrade
InSync Conference
 
Unit 4 ap payment
Unit 4 ap paymentUnit 4 ap payment
Unit 4 ap payment
nzee66
 
20894109 te040-i procurement-test-script-on-oracle-iprocurement
20894109 te040-i procurement-test-script-on-oracle-iprocurement20894109 te040-i procurement-test-script-on-oracle-iprocurement
20894109 te040-i procurement-test-script-on-oracle-iprocurement
Pietro Prestia
 
Oracle Fusion Payments
Oracle Fusion Payments Oracle Fusion Payments
Oracle Fusion Payments
Berry Clemens
 
Oracle Fusion Financials Overview
Oracle Fusion Financials OverviewOracle Fusion Financials Overview
Oracle Fusion Financials Overview
Berry Clemens
 
Oracle Applications R12 Architecture
Oracle Applications R12 ArchitectureOracle Applications R12 Architecture
Oracle Applications R12 Architecture
Viveka Solutions
 

Viewers also liked (18)

Ap test script
Ap test scriptAp test script
Ap test script
 
User acceptance testing your r12 upgrade
User acceptance testing your r12 upgradeUser acceptance testing your r12 upgrade
User acceptance testing your r12 upgrade
 
Testing scripts
Testing scriptsTesting scripts
Testing scripts
 
Test case, test sets and test scripts
Test case, test sets and test scriptsTest case, test sets and test scripts
Test case, test sets and test scripts
 
Fusion payment
Fusion paymentFusion payment
Fusion payment
 
Unit 4 ap payment
Unit 4 ap paymentUnit 4 ap payment
Unit 4 ap payment
 
20894109 te040-i procurement-test-script-on-oracle-iprocurement
20894109 te040-i procurement-test-script-on-oracle-iprocurement20894109 te040-i procurement-test-script-on-oracle-iprocurement
20894109 te040-i procurement-test-script-on-oracle-iprocurement
 
Oracle Fusion Payments
Oracle Fusion Payments Oracle Fusion Payments
Oracle Fusion Payments
 
Oracle receivables
Oracle receivablesOracle receivables
Oracle receivables
 
Purchasing 11i.5.10 Training
Purchasing 11i.5.10 TrainingPurchasing 11i.5.10 Training
Purchasing 11i.5.10 Training
 
Oracle Fusion functional setup manager
Oracle Fusion functional setup managerOracle Fusion functional setup manager
Oracle Fusion functional setup manager
 
Oracle Fusion Financials Overview
Oracle Fusion Financials OverviewOracle Fusion Financials Overview
Oracle Fusion Financials Overview
 
Oracle R12 EBS Performance Tuning
Oracle R12 EBS Performance TuningOracle R12 EBS Performance Tuning
Oracle R12 EBS Performance Tuning
 
Accounts payable instructor_guide (1)
Accounts payable instructor_guide (1)Accounts payable instructor_guide (1)
Accounts payable instructor_guide (1)
 
Oracle Applications R12 Architecture
Oracle Applications R12 ArchitectureOracle Applications R12 Architecture
Oracle Applications R12 Architecture
 
R12 AP New Features
R12 AP New FeaturesR12 AP New Features
R12 AP New Features
 
Oracle Fusion Applications Accounts Payables
Oracle Fusion Applications Accounts PayablesOracle Fusion Applications Accounts Payables
Oracle Fusion Applications Accounts Payables
 
Best Practices for Testing in salesforce.com
Best Practices for Testing in salesforce.comBest Practices for Testing in salesforce.com
Best Practices for Testing in salesforce.com
 

Similar to Check printing in_r12

Ach payment configuration
Ach payment configurationAch payment configuration
Ach payment configuration
SURESH BABU MUCHINTHALA
 
Quick books prototype
Quick books prototypeQuick books prototype
Quick books prototype
stephys91
 

Similar to Check printing in_r12 (20)

FDMEE script examples
FDMEE script examplesFDMEE script examples
FDMEE script examples
 
FDMEE script examples
FDMEE script examplesFDMEE script examples
FDMEE script examples
 
SAP SD Training in Chennai
SAP SD Training in Chennai SAP SD Training in Chennai
SAP SD Training in Chennai
 
R12 MOAC AND PAYABLES
R12 MOAC AND PAYABLESR12 MOAC AND PAYABLES
R12 MOAC AND PAYABLES
 
Central Finance Configuration.pdf
Central Finance Configuration.pdfCentral Finance Configuration.pdf
Central Finance Configuration.pdf
 
Dora ppt2(fico)
Dora ppt2(fico)Dora ppt2(fico)
Dora ppt2(fico)
 
Ad basic tech_workshop
Ad basic tech_workshopAd basic tech_workshop
Ad basic tech_workshop
 
Payment create a ppr for multiple legal entities (eft)
Payment create a ppr for multiple legal entities (eft)Payment create a ppr for multiple legal entities (eft)
Payment create a ppr for multiple legal entities (eft)
 
Affiliate Management Platform
Affiliate Management  Platform Affiliate Management  Platform
Affiliate Management Platform
 
Vendor Master Training Provides by Metaphor Consulting
Vendor Master Training Provides by Metaphor ConsultingVendor Master Training Provides by Metaphor Consulting
Vendor Master Training Provides by Metaphor Consulting
 
Salesforce crm projects
Salesforce crm projects Salesforce crm projects
Salesforce crm projects
 
SAP FICO Interview questions
SAP FICO Interview questionsSAP FICO Interview questions
SAP FICO Interview questions
 
Bank Master Data, House bank, APP and DMEE.docx
Bank Master Data, House bank, APP and DMEE.docxBank Master Data, House bank, APP and DMEE.docx
Bank Master Data, House bank, APP and DMEE.docx
 
UAE FTA Vat declaration - config guide
UAE FTA Vat declaration - config guideUAE FTA Vat declaration - config guide
UAE FTA Vat declaration - config guide
 
Ach payment configuration
Ach payment configurationAch payment configuration
Ach payment configuration
 
SAP QA.pptx
SAP QA.pptxSAP QA.pptx
SAP QA.pptx
 
SAP SD Copy Controls
SAP SD Copy ControlsSAP SD Copy Controls
SAP SD Copy Controls
 
Quick books prototype
Quick books prototypeQuick books prototype
Quick books prototype
 
Quick books prototype
Quick books prototypeQuick books prototype
Quick books prototype
 
Cheque management software
Cheque management softwareCheque management software
Cheque management software
 

Recently uploaded

Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 

Recently uploaded (20)

The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 

Check printing in_r12

  • 1. Step-By –Step Process for Check Printing in Oracle R12 Overview of Check Print Report Check Print Report (Format Payment Instructions) Program used display the check details which we issue to the suppliers and the invoice details of the suppliers. This program will be called when we create invoices for the suppliers and when make the payments against these invoices. The standard check print report displays the check information at the top and the invoice details just below the Check information. Along this program Standard remittance advice program also called. It displays the invoice details for a particular Check, when we have given limited number of invoices to be displayed in the check print report. This Learning deals how to customize these two report layouts and how to derive the additional data in R12. How to run the Standard Program To run this report we need to have invoices created for suppliers. Then submit the request to generate checks and as well as to display the check information. Create Invoices: Navigation: Payables Manager-->Invoice-->Entry-->Invoice Batches Create one invoice batch and click on invoices.
  • 2. Enter the required information as below. And click on distributions And enter the required information as below. Save the record and validate it by clicking on actions.
  • 3. Once it is got validated, submit the request to generate checks to make payments. Navigate to: Payables Manager-->Payments-->Entry-->Payments Manager Search for the Payment process request template which we have for Payment method ‘Check’. if it doesn’t exist create one click on Submit Single Request.
  • 4. Then you can check the status of the program from SRS Window. This program builds the payments. Once the program builds the payments you can start making payments. This will be visible under pending actions. Then select the list of suppliers and invoices created for them to whom we want to make payments. And click on go. The system submits the standard program Format payment instruction as well as separate Remittance Advice programs. You can check the status and output from SRS window.
  • 5. It first formats the both templates Check format and remittance advice and populates the base table IBY_TRXN_DOCUMENTS. We can have a look at the xml tags generated for this data in the column document of the table IBY_TRXN_DOCUMENTS. How the program works? While submitting the request we need to select the appropriate Payment process profile and Payment document. As we aware that we have template format assigned to this Payment process profile. So when we submit the request the program creates the xml tags for the data, it generates and displays it on the template which is assigned to the format template. Common customizations to the check Print report We normally get the requirement to customize the standard check print report to, 1. Derive/extract the data which is not achieved from standard functionality. 2. To display the data on layout as per the business requirement Changes required to the code: 1. If we require to fetch the additional information of the supplier to whom we are issuing the check. To derive the additional data we do not require to customize the existing rather we need to add the code to the seeded pl/sql package which has provided by oracle Changes required to the Layout: 1. Many a times, business needs to display the check information with different formats, like
  • 6. displaying the logo and displaying the additional details of payee. 2. Controlling the stub (invoice details) when the number of these invoices exceeds certain limits. For example displaying the entire stub details in separate program when the total number of invoices exceeds certain limit. To display the data on customized layout we need to additional setup. Customizing the code As it is a java concurrent program, it calls the seeded pl/sql package to generate the xml tags for the data that we are going to display. In addition it also calls one more package IBY_FD_EXTRACT_EXT_PUB which we use to add the code to get the additional data in the form of xml tags. As we are aware that we have the data for check print report at various levels (Master and child levels), we have the seeded code IBY_FD_EXTRACT_EXT_PUB to derive the data at all these levels. 1. Assume, we need to find the payee site alternate name for a particular payment As, it is for a particular payment we need to add the code to the function which has the input payment id as a parameter. Get the code for the package IBY_FD_EXTRACT_EXT_PUB and add the code to the function Get_Pmt_Ext_Agg which accepts the payment id as a parameter. Refer the below code to derive the Payee site alternate name. CREATE OR REPLACE PACKAGE BODY IBY_FD_EXTRACT_EXT_PUB AS FUNCTION Get_Pmt_Ext_Agg (p_payment_id IN NUMBER) RETURN XMLTYPE IS l_alt_name varchar2(100); BEGIN SELECT XMLConcat ( XMLElement ("Extend", XMLElement ("Name", 'PAYEE_SITE_ALT_NAME'), XMLElement ("Value", payee_site_alternate_name))) INTO l_alt_name From IBY_PAYMENTS_all where payment_id = p_payment_id;
  • 7. RETURN l_alt_name; END Get_Pmt_Ext_Agg; Save the code and compile it, it creates the xml tags Name and Value under the group Extend. And this gets created at payment id level. Customizing the Layout We need to customize the existing layout as per the business requirement. But you can’t replace the existing template (rtf) with the customized rtf. To display the data in customized rtf we need to do few setups. Even after doing so, we can have the existing functionality (displaying the data in seeded template) remains same; if we want we can display the data in seeded template at any time. Required Setup Assume the requirement where we need to customize both Check print as well as Remittance advice. Let’s do the setup to display the data on customized layouts. As part of the setup we need to 1. Develop/Customize the template as per the business requirement. 2. Create template definition under existing data definition and attach the created template. 3. Create payment format for the template. 4. Create payment document for bank Account. 5. Create payment process profile. 1. Develop/Customize the template as per the business requirement. If our requirement is to just add few other fields in the layout we can download the existing rtf and can customize it. As we know that Standard Check Format template is going to be called when the standard report Format payment instructions got submitted, download the rtf which is assigned to the Standard Check Format template. Do the same for Remittance advice too. Or we wan develop the rtf from the scratch if we required to do lot of customization. 2. Create a template definition under existing data definition and attach the created template Navigation: XML Publisher Administrator-->Templates-->Create Template We need to create custom template under existing data definition Oracle Payments Funds
  • 8. Disbursement Payment Instruction Extract 1.0 Make sure we have created template under payments Application, as we are going to use it in the same application. In this case we have created XX Check Format template. Do the same for remittance advice too. 3. Create payment format for the template Create payment format for the created template XX Check format in the above steps. Navigation:Payables Manager-->Setup-->Payments-->Payment Administrator-->Formats-- >Formats-->Go to task And create it with the following data. For check Format:
  • 10. Select Disbursement Remittance Advice and click on create. 4. Create payment document for bank Account We need to create Payment document which controls the check number with which number the number has to start.
  • 11. We need to find which bank account the business uses. Navigation:Payables Manager-->Setup-->Payment-->Bank Accounts Query for Bank Account Name and then click on Manage Payment Documents. And click on create. Create the document with the following details 5. Create payment process profile Create payment process profile and assign payment document to it. Navigation:Payments Manager-->Setup-->Payment-->Payment Administrator-->Codes-- >Payment Process Profiles-->Go to Task-->Create
  • 12. Under Usage Rules Tab Under Payment Instruction Format Tab
  • 13. Under reporting tab We have done with the setup. Now create invoices for suppliers and make the payments while doing the payment selects the custom profile and custom payment document which we have created earlier. By doing so it picks the custom template, format which assigned to this profile and displays the data on the custom layouts.