This is the blog dedicated to Oracle Applications. Here I will be posting information on Oracle Application SCM related topics. Please remember to visit site regularly as it will be updated quite often and do remember to encourage me by posting your valuable comments.
Training
For Online SCM Functional Training Please Contact -
Gmail # rishitechnologies9@gmail.com
Cell # 9071883639
Thursday, May 10, 2012
Issues With Profile Values Retrieving
Hi Friends,
Today i came across one issue.
i have changed the profile value "Concurrent:Report Copies" from 0 to 1 and i am trying to retrieve the profile value by using select fnd_profile.value('CONC_COPIES') from dual; . But still sql query is showing old value as 0.
Solution : Once after updating the profile value, open new toad session to get latest value.
Today i came across one issue.
i have changed the profile value "Concurrent:Report Copies" from 0 to 1 and i am trying to retrieve the profile value by using select fnd_profile.value('CONC_COPIES') from dual; . But still sql query is showing old value as 0.
Solution : Once after updating the profile value, open new toad session to get latest value.
Wednesday, May 9, 2012
How to cancel Scheduled Concurrent Programs
Use below query to cancel scheduled concurrent programs.
UPDATE fnd_concurrent_requests
SET phase_code = 'C', status_code = 'X'
WHERE status_code IN ('Q','I')
AND requested_start_date > SYSDATE
AND hold_flag = 'N';
COMMIT;
UPDATE fnd_concurrent_requests
SET phase_code = 'C', status_code = 'X'
WHERE status_code IN ('Q','I')
AND requested_start_date > SYSDATE
AND hold_flag = 'N';
COMMIT;
Tuesday, April 3, 2012
R12 - Oracle Payables Part - 1
Overview Of payable :
1. Supplier / Creditor Master Creation :
Please refer my earlier post :
http://oracleapps99.blogspot.com/2011/08/r12-supplier-creation-part-1.html
http://oracleapps99.blogspot.com/2011/08/r12-supplier-creation-part-2.html
2. Invoice Creation :
2.1 Setup Defaults:
- Define defaults to speed up data entry.
- Defaults can be overridden at Invoice level if required.
- for Ex : define payment terms, to auto-assign multiple payment schedules and discounts when we enter the invoice using this payment term.
- Define paygroup, to o classify each invoice - Pick one Pay Group and pay all related invoices at one shot.
- Define Distribution Sets, to auto-create multiple invoice lines with pro-rata amounts when we enter the invoice
http://oracleapps99.blogspot.com/2012/03/r12-ap-payment-setups.html
http://oracleapps99.blogspot.com/2012/03/r12-ap-invoice-setup-1.html
2.2. Enter Invoice :
We can enter 9 types of invoice by using invoice entry form.
Type Of Invoices :
Standard
Credit Memo
Debit Memo
Expense Report
Prepayments
Retainage Release
Transportaion Invoice
Withhold Tax
Mixed.
Create Standard Invoice.
Invoices --> Entry --> Invoices
Enter Invoice Header details, like
Operating Unit, Type, Supplier / Trading partner name, Supplier name, Invoice amount Etc.
Click on 2 Lines Tab and enter line details like amount and save.
Click on Distributions Button --> save
come back to like and click on line --. System will calculate the tax based on your tax setup.
Click on All Distributions Button to see the complete distribition information.
Actions --> Validate --> select Validate check box --> Ok.
and also we can see the reason from Holds Tab. we can see all the holds and hold releases information for the invoice.
correct the invoice amount and validate the invoice --> Actions --> Validate --> select Validate check box --> Ok.
Click on View Payments Tab to see the all the payments for the invoice.
Click Scheduled payments Tab to see all scheduled payments. In our example, we created invoice on 04-Apr-2012 and Invoice Due date / Payment dare also 04-Apr-2012. System will calculate the invoice due date based on payment terms and in our case we used payment terms as "LS Terms". Lets a look into payment terms.
Technical part :
select * from AP_INVOICES_ALL where invoice_num = '04-APR-2012_1';
select * from AP_INVOICE_LINES_ALL where invoice_id = 211325;
select * from AP_HOLDS_ALL where invoice_id = 211325;
select amount_remaining, due_date, hold_flag from AP_PAYMENT_SCHEDULES_ALL where invoice_id = 211325;
SELECT distribution_line_number, line_type_lookup_code, amount, po_distribution_id, amount_to_post from AP_INVOICE_DISTRIBUTIONS_ALL where invoice_id = 211325;
Subscribe to:
Posts (Atom)