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

Personalization how to restrict transaction type list of values
Personalization how to restrict transaction type list of valuesPersonalization how to restrict transaction type list of values
Personalization how to restrict transaction type list of valuesAhmed Elshayeb
 
Oracle Forms Creation-List of Values (LOV)
Oracle Forms Creation-List of Values (LOV)Oracle Forms Creation-List of Values (LOV)
Oracle Forms Creation-List of Values (LOV)Sekhar Byna
 
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:Boopathy CS
 
Personalization Validate Po Quantity With PR
Personalization Validate Po Quantity With PRPersonalization Validate Po Quantity With PR
Personalization Validate Po Quantity With PRAhmed Elshayeb
 
Oracle EBS R12 Sales order personalization
Oracle EBS R12 Sales order personalizationOracle EBS R12 Sales order personalization
Oracle EBS R12 Sales order personalizationAhmed Elshayeb
 
Validation type 'special' in value sets
Validation type 'special' in value setsValidation type 'special' in value sets
Validation type 'special' in value setsFeras Ahmad
 
Oracle R12 inventory Table name details with description
Oracle R12 inventory Table name details with descriptionOracle R12 inventory Table name details with description
Oracle R12 inventory Table name details with descriptionBoopathy CS
 
Oracle Inventory Complete Implementation Setups.
Oracle Inventory Complete Implementation Setups.Oracle Inventory Complete Implementation Setups.
Oracle Inventory Complete Implementation Setups.Muhammad Mansoor Ali
 
Oracle Purchasing Internal Requisition
Oracle Purchasing Internal RequisitionOracle Purchasing Internal Requisition
Oracle Purchasing Internal RequisitionAhmed Elshayeb
 
Oracle Order Management (Assign freight cost on shipping transaction)
Oracle Order Management (Assign freight cost on shipping transaction)Oracle Order Management (Assign freight cost on shipping transaction)
Oracle Order Management (Assign freight cost on shipping transaction)Ahmed Elshayeb
 
How to Close Period in Oracle Apps Inventory
How to Close Period in Oracle Apps Inventory How to Close Period in Oracle Apps Inventory
How to Close Period in Oracle Apps Inventory Bizinsight Consulting Inc
 
Restrict user from use account aliases incompatible with transaction action
Restrict user from use account aliases incompatible with transaction actionRestrict user from use account aliases incompatible with transaction action
Restrict user from use account aliases incompatible with transaction actionAhmed Elshayeb
 
Oracle Personalization How To Restricting users from assigning items to diffe...
Oracle Personalization How To Restricting users from assigning items to diffe...Oracle Personalization How To Restricting users from assigning items to diffe...
Oracle Personalization How To Restricting users from assigning items to diffe...Ahmed Elshayeb
 
Oracle Forms : Query Triggers
Oracle Forms : Query TriggersOracle Forms : Query Triggers
Oracle Forms : Query TriggersSekhar Byna
 
105322956 advance-pricing-total-oracle-apps
105322956 advance-pricing-total-oracle-apps105322956 advance-pricing-total-oracle-apps
105322956 advance-pricing-total-oracle-appsShivakumar Karajagi
 
Oracle R12 – Multiple Organization Setup Steps
Oracle R12 – Multiple Organization Setup StepsOracle R12 – Multiple Organization Setup Steps
Oracle R12 – Multiple Organization Setup StepsBoopathy CS
 
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
 
Personalizations for control deliver to organizations in Purchase Requisition...
Personalizations for control deliver to organizations in Purchase Requisition...Personalizations for control deliver to organizations in Purchase Requisition...
Personalizations for control deliver to organizations in Purchase Requisition...Ahmed Elshayeb
 

What's hot (20)

Personalization how to restrict transaction type list of values
Personalization how to restrict transaction type list of valuesPersonalization how to restrict transaction type list of values
Personalization how to restrict transaction type list of values
 
Oracle Forms Creation-List of Values (LOV)
Oracle Forms Creation-List of Values (LOV)Oracle Forms Creation-List of Values (LOV)
Oracle Forms Creation-List of Values (LOV)
 
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:
 
Personalization Validate Po Quantity With PR
Personalization Validate Po Quantity With PRPersonalization Validate Po Quantity With PR
Personalization Validate Po Quantity With PR
 
Oracle EBS R12 Sales order personalization
Oracle EBS R12 Sales order personalizationOracle EBS R12 Sales order personalization
Oracle EBS R12 Sales order personalization
 
Validation type 'special' in value sets
Validation type 'special' in value setsValidation type 'special' in value sets
Validation type 'special' in value sets
 
Oracle R12 inventory Table name details with description
Oracle R12 inventory Table name details with descriptionOracle R12 inventory Table name details with description
Oracle R12 inventory Table name details with description
 
Move order types
Move order typesMove order types
Move order types
 
Oracle Inventory Complete Implementation Setups.
Oracle Inventory Complete Implementation Setups.Oracle Inventory Complete Implementation Setups.
Oracle Inventory Complete Implementation Setups.
 
Oracle Purchasing Internal Requisition
Oracle Purchasing Internal RequisitionOracle Purchasing Internal Requisition
Oracle Purchasing Internal Requisition
 
Oracle R12 Purchasing setup
Oracle R12 Purchasing setupOracle R12 Purchasing setup
Oracle R12 Purchasing setup
 
Oracle Order Management (Assign freight cost on shipping transaction)
Oracle Order Management (Assign freight cost on shipping transaction)Oracle Order Management (Assign freight cost on shipping transaction)
Oracle Order Management (Assign freight cost on shipping transaction)
 
How to Close Period in Oracle Apps Inventory
How to Close Period in Oracle Apps Inventory How to Close Period in Oracle Apps Inventory
How to Close Period in Oracle Apps Inventory
 
Restrict user from use account aliases incompatible with transaction action
Restrict user from use account aliases incompatible with transaction actionRestrict user from use account aliases incompatible with transaction action
Restrict user from use account aliases incompatible with transaction action
 
Oracle Personalization How To Restricting users from assigning items to diffe...
Oracle Personalization How To Restricting users from assigning items to diffe...Oracle Personalization How To Restricting users from assigning items to diffe...
Oracle Personalization How To Restricting users from assigning items to diffe...
 
Oracle Forms : Query Triggers
Oracle Forms : Query TriggersOracle Forms : Query Triggers
Oracle Forms : Query Triggers
 
105322956 advance-pricing-total-oracle-apps
105322956 advance-pricing-total-oracle-apps105322956 advance-pricing-total-oracle-apps
105322956 advance-pricing-total-oracle-apps
 
Oracle R12 – Multiple Organization Setup Steps
Oracle R12 – Multiple Organization Setup StepsOracle R12 – Multiple Organization Setup Steps
Oracle R12 – Multiple Organization Setup Steps
 
Oracle R12 Landed Cost Management (lcm)
Oracle R12 Landed Cost Management (lcm)Oracle R12 Landed Cost Management (lcm)
Oracle R12 Landed Cost Management (lcm)
 
Personalizations for control deliver to organizations in Purchase Requisition...
Personalizations for control deliver to organizations in Purchase Requisition...Personalizations for control deliver to organizations in Purchase Requisition...
Personalizations for control deliver to organizations in Purchase Requisition...
 

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

Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAndikSusilo4
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Next-generation AAM aircraft unveiled by Supernal, S-A2
Next-generation AAM aircraft unveiled by Supernal, S-A2Next-generation AAM aircraft unveiled by Supernal, S-A2
Next-generation AAM aircraft unveiled by Supernal, S-A2Hyundai Motor Group
 

Recently uploaded (20)

Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & Application
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Next-generation AAM aircraft unveiled by Supernal, S-A2
Next-generation AAM aircraft unveiled by Supernal, S-A2Next-generation AAM aircraft unveiled by Supernal, S-A2
Next-generation AAM aircraft unveiled by Supernal, S-A2
 

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.