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

Ame how to diagnose issues with the default approver list in purchasing when ...
Ame how to diagnose issues with the default approver list in purchasing when ...Ame how to diagnose issues with the default approver list in purchasing when ...
Ame how to diagnose issues with the default approver list in purchasing when ...Abdul Rahman Fouad Thabit
 
Elshayeb Expense Subinventory And Items Scenario
Elshayeb Expense Subinventory And Items ScenarioElshayeb Expense Subinventory And Items Scenario
Elshayeb Expense Subinventory And Items ScenarioAhmed Elshayeb
 
PO Position Hierarchy in R12
PO Position Hierarchy in R12PO Position Hierarchy in R12
PO Position Hierarchy in R12parinay jain
 
Oracle Financials R12 - GL STEP 3 - Journal Controls
 Oracle Financials R12 - GL STEP 3 - Journal Controls Oracle Financials R12 - GL STEP 3 - Journal Controls
Oracle Financials R12 - GL STEP 3 - Journal ControlsMohammed Raouf
 
Inventory receiving processes for serial controlled items
Inventory receiving processes for serial controlled itemsInventory receiving processes for serial controlled items
Inventory receiving processes for serial controlled itemsAvishek Roychoudhuri
 
Uploading Data Using Oracle Web ADI
Uploading Data Using Oracle Web ADIUploading Data Using Oracle Web ADI
Uploading Data Using Oracle Web ADIRapidValue
 
Oracle R12 Landed Cost Management (lcm)
Oracle R12 Landed Cost Management (lcm)Oracle R12 Landed Cost Management (lcm)
Oracle R12 Landed Cost Management (lcm)Spiro (Stuart) Patsos
 
Oracle Time and Labor (OTL) Setup for Project
Oracle Time and Labor (OTL) Setup for ProjectOracle Time and Labor (OTL) Setup for Project
Oracle Time and Labor (OTL) Setup for Projectiavinashpatel
 
Oracle applications sla r12 SLA- demos
Oracle applications sla r12   SLA- demosOracle applications sla r12   SLA- demos
Oracle applications sla r12 SLA- demosAli Ibrahim
 
Drop Ship Sales Order Across Operating Units
Drop Ship Sales Order Across Operating UnitsDrop Ship Sales Order Across Operating Units
Drop Ship Sales Order Across Operating UnitsBizinsight Consulting Inc
 
R12 Intercompany Flow
R12 Intercompany FlowR12 Intercompany Flow
R12 Intercompany Flowravisagaram
 
Oracle EBS R12 Sales order personalization
Oracle EBS R12 Sales order personalizationOracle EBS R12 Sales order personalization
Oracle EBS R12 Sales order personalizationAhmed Elshayeb
 
Locator control in oracle inventory
Locator control in oracle inventoryLocator control in oracle inventory
Locator control in oracle inventorysheshito
 
Pick pack and ship confirm process in oracle apps
Pick pack and ship confirm process in oracle appsPick pack and ship confirm process in oracle apps
Pick pack and ship confirm process in oracle appsshravan kumar chelika
 
Encumbrance accounting in oracle ebs r12
Encumbrance accounting in oracle ebs r12Encumbrance accounting in oracle ebs r12
Encumbrance accounting in oracle ebs r12Sam Elrashedy
 
AME Requisition Approval Heirarchy
AME Requisition Approval Heirarchy AME Requisition Approval Heirarchy
AME Requisition Approval Heirarchy Mohammad Younus
 
Oracle Web Adi For upload item master
Oracle Web Adi For upload item masterOracle Web Adi For upload item master
Oracle Web Adi For upload item masterAhmed Elshayeb
 
Oracle Receivables ivas
Oracle Receivables ivasOracle Receivables ivas
Oracle Receivables ivasAli Ibrahim
 
Oracle Concurrent Program Setup document
Oracle Concurrent Program Setup  documentOracle Concurrent Program Setup  document
Oracle Concurrent Program Setup documentvenkatesh gurusamy
 

What's hot (20)

Ame how to diagnose issues with the default approver list in purchasing when ...
Ame how to diagnose issues with the default approver list in purchasing when ...Ame how to diagnose issues with the default approver list in purchasing when ...
Ame how to diagnose issues with the default approver list in purchasing when ...
 
Elshayeb Expense Subinventory And Items Scenario
Elshayeb Expense Subinventory And Items ScenarioElshayeb Expense Subinventory And Items Scenario
Elshayeb Expense Subinventory And Items Scenario
 
PO Position Hierarchy in R12
PO Position Hierarchy in R12PO Position Hierarchy in R12
PO Position Hierarchy in R12
 
Oracle Financials R12 - GL STEP 3 - Journal Controls
 Oracle Financials R12 - GL STEP 3 - Journal Controls Oracle Financials R12 - GL STEP 3 - Journal Controls
Oracle Financials R12 - GL STEP 3 - Journal Controls
 
Inventory receiving processes for serial controlled items
Inventory receiving processes for serial controlled itemsInventory receiving processes for serial controlled items
Inventory receiving processes for serial controlled items
 
Uploading Data Using Oracle Web ADI
Uploading Data Using Oracle Web ADIUploading Data Using Oracle Web ADI
Uploading Data Using Oracle Web ADI
 
Oracle R12 Landed Cost Management (lcm)
Oracle R12 Landed Cost Management (lcm)Oracle R12 Landed Cost Management (lcm)
Oracle R12 Landed Cost Management (lcm)
 
Oracle Time and Labor (OTL) Setup for Project
Oracle Time and Labor (OTL) Setup for ProjectOracle Time and Labor (OTL) Setup for Project
Oracle Time and Labor (OTL) Setup for Project
 
Oracle applications sla r12 SLA- demos
Oracle applications sla r12   SLA- demosOracle applications sla r12   SLA- demos
Oracle applications sla r12 SLA- demos
 
Drop Ship Sales Order Across Operating Units
Drop Ship Sales Order Across Operating UnitsDrop Ship Sales Order Across Operating Units
Drop Ship Sales Order Across Operating Units
 
R12 Intercompany Flow
R12 Intercompany FlowR12 Intercompany Flow
R12 Intercompany Flow
 
Oracle EBS R12 Sales order personalization
Oracle EBS R12 Sales order personalizationOracle EBS R12 Sales order personalization
Oracle EBS R12 Sales order personalization
 
Locator control in oracle inventory
Locator control in oracle inventoryLocator control in oracle inventory
Locator control in oracle inventory
 
Pick pack and ship confirm process in oracle apps
Pick pack and ship confirm process in oracle appsPick pack and ship confirm process in oracle apps
Pick pack and ship confirm process in oracle apps
 
Encumbrance accounting in oracle ebs r12
Encumbrance accounting in oracle ebs r12Encumbrance accounting in oracle ebs r12
Encumbrance accounting in oracle ebs r12
 
AME Requisition Approval Heirarchy
AME Requisition Approval Heirarchy AME Requisition Approval Heirarchy
AME Requisition Approval Heirarchy
 
Oracle Web Adi For upload item master
Oracle Web Adi For upload item masterOracle Web Adi For upload item master
Oracle Web Adi For upload item master
 
Oracle Receivables ivas
Oracle Receivables ivasOracle Receivables ivas
Oracle Receivables ivas
 
Oracle R12 iProcurement Reference Guide
Oracle R12 iProcurement Reference GuideOracle R12 iProcurement Reference Guide
Oracle R12 iProcurement Reference Guide
 
Oracle Concurrent Program Setup document
Oracle Concurrent Program Setup  documentOracle Concurrent Program Setup  document
Oracle Concurrent Program Setup document
 

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 upgradeInSync Conference
 
Oracle Payable Complete Business flows
Oracle Payable Complete Business flowsOracle Payable Complete Business flows
Oracle Payable Complete Business flowsAdil Arshad
 
Unit 4 ap payment
Unit 4 ap paymentUnit 4 ap payment
Unit 4 ap paymentnzee66
 
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-iprocurementPietro Prestia
 
Oracle Fusion Payments
Oracle Fusion Payments Oracle Fusion Payments
Oracle Fusion Payments Berry Clemens
 
Oracle Fusion functional setup manager
Oracle Fusion functional setup managerOracle Fusion functional setup manager
Oracle Fusion functional setup managerBerry Clemens
 
Oracle Fusion Financials Overview
Oracle Fusion Financials OverviewOracle Fusion Financials Overview
Oracle Fusion Financials OverviewBerry Clemens
 
Oracle R12 EBS Performance Tuning
Oracle R12 EBS Performance TuningOracle R12 EBS Performance Tuning
Oracle R12 EBS Performance TuningScott Jenner
 
Accounts payable instructor_guide (1)
Accounts payable instructor_guide (1)Accounts payable instructor_guide (1)
Accounts payable instructor_guide (1)Beverley Baker-Harris
 
Oracle Applications R12 Architecture
Oracle Applications R12 ArchitectureOracle Applications R12 Architecture
Oracle Applications R12 ArchitectureViveka Solutions
 
Oracle Payables R12 ivas
Oracle Payables R12 ivasOracle Payables R12 ivas
Oracle Payables R12 ivasAli Ibrahim
 
Oracle Fusion Applications Accounts Payables
Oracle Fusion Applications Accounts PayablesOracle Fusion Applications Accounts Payables
Oracle Fusion Applications Accounts PayablesBerry Clemens
 

Viewers also liked (20)

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
 
Oracle Payable Complete Business flows
Oracle Payable Complete Business flowsOracle Payable Complete Business flows
Oracle Payable Complete Business flows
 
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 Payables R12 ivas
Oracle Payables R12 ivasOracle Payables R12 ivas
Oracle Payables R12 ivas
 
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

FDMEE script examples
FDMEE script examplesFDMEE script examples
FDMEE script examplesAmit Sharma
 
FDMEE script examples
FDMEE script examplesFDMEE script examples
FDMEE script examplesAmit Soni
 
Central Finance Configuration.pdf
Central Finance Configuration.pdfCentral Finance Configuration.pdf
Central Finance Configuration.pdfchandramohan431817
 
Ad basic tech_workshop
Ad basic tech_workshopAd basic tech_workshop
Ad basic tech_workshopmanisherp084
 
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)Kotesh Kumar
 
Affiliate Management Platform
Affiliate Management  Platform Affiliate Management  Platform
Affiliate Management Platform Sudhi Ranjan Das
 
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 ConsultingMetaphor Consulting
 
SAP FICO Interview questions
SAP FICO Interview questionsSAP FICO Interview questions
SAP FICO Interview questionsIT LearnMore
 
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.docxsilviakatsarska
 
UAE FTA Vat declaration - config guide
UAE FTA Vat declaration - config guideUAE FTA Vat declaration - config guide
UAE FTA Vat declaration - config guideDhruv Singhvi
 
Quick books prototype
Quick books prototypeQuick books prototype
Quick books prototypestephys91
 
Quick books prototype
Quick books prototypeQuick books prototype
Quick books prototypestephys91
 
Cheque management software
Cheque management softwareCheque management software
Cheque management softwareSankalp
 

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

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.pdfUK Journal
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
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...Enterprise Knowledge
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
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 productivityPrincipled Technologies
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
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.pdfsudhanshuwaghmare1
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
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 2024Rafal Los
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
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 WorkerThousandEyes
 
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?Igalia
 

Recently uploaded (20)

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
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
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...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
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
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
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
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
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
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
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?
 

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.