Best Of
Re: Reclaiming OS disk space after truncating partitions. Has a step-by-step process been created?
It all doesn't matter if the actual size of the file on the file system is reduced, that way freeing up space in the disk, no matter if that is an ASM disk or a regular file system disk. We may not know all details of how files are spread across disks on your site, but free space = free space.
If that free space is in disks you don't want to use anymore … that's an issue indeed.
Re: Why are all projects not listed within My Activities
Many Thanks Roger … problem solved!
Re: How to amend the existing line in PO via interface
Hi,
SELECT user_id FROM fnd_user WHERE user_name = 'YOUR_USER_NAME';
SELECT responsibility_id, application_id
FROM fnd_responsibility
WHERE responsibility_key = 'YOUR_RESP_KEY';
BEGIN
--(replace with actual IDs)
FND_GLOBAL.APPS_INITIALIZE (user_id => 1234,
resp_id => 51234,
resp_appl_id => 20003);
END;
Regards,
Sadeesh
Re: What is the project Data flow from PO to AP
Hi,
The tables involved are
Requisition header
PO_REQUISITION_LINES_ALL
PO_HEADERS_ALL
PO_LINES_ALL
PO_DISTRIBUTIONS_ALL
RCV_SHIPMENT_HEADERS
RCV_SHIPMENT_LINES
RCV_TRANSACTIONS
AP_INVOICES_ALL
AP_INVOICE_LINES_ALL
AP_INVOICE_DISTRIBUTIONS_ALL
AP_INVOICE_LINES_ALL / _DISTRIBUTIONS
AP_CHECKS_ALL / AP_PAYMENT_HISTORY_ALL
XLA_AE_HEADERS / XLA_AE_LINES
Regards,
Sadeesh
Re: Unable to view Attachments for Blanket Releases during Approvals
Hi
Starting 12.2.10 Release,
by applying Patch 35755664:R12.PO.D delivering POXWPA1B.pls 120.141.12020000.132
and
setting profile option "PO : Attachments to display in Notifications Header = PURCHASING"
***For more details, please check : Attachments Link Does Not Work For Blanket Release Approval Notifications, the Link Opens Attachments That Are Not Attached to the Blanket Release (Doc ID 2982568.1)
Releases approval notification Header area will have a link to the Attachments .
Blanket Releases will NOT have the "View Document Attachments" link in the references section of the notification.
Ref
Are Attachments Available For Blanket Release Notifications? (Doc ID 2857062.1)
Thanks
Nirmal Kumar N
Re: Unable to view Attachments for Blanket Releases during Approvals
Hi -
Understand
No. As per standard application code, that : notifications include Attachments : is not possible.
You may review : Are Attachments Available For Blanket Release Notifications? (Doc ID 2857062.1)
regards
Ananth
Re: Regarding Security Alert CVE-2025-61882 Patch for Oracle E-Business Suite
The Security Alert Advisor states affected products as versions 12.2.3 till 12.2.14
Re: Regarding Security Alert CVE-2025-61882 Patch for Oracle E-Business Suite
Have applied on Sandbox EBS, no issues found on 12.2.11.
Re: Projects related Historical Invoices Data Conversion in Receivables
Hello,
2a, scenario where the invoices are paid in real life but the total billing amount on the project is needed.
Enter billing events for the invoiced and PAID amounts.
Generate invoices, approve and release.
Option 1: Run PRC Interface Invoices to Receivables - the stand alone job, NOT the streamline. This will put the invoices in the AR invoice interface. Use sql to delete them from the interface since you don't want them in Receivables. Use sql to update the pa draft invoices table to set the transfer status code to A and the ra invoice number to -123. Status code A is needed so that Projects won't keep trying to interface the invoices. Train the users that -123 as an invoice number means that the invoices are converted ones. Projects now has the total previously billed and AR has no clutter.
Option 2: Run the streamline to interface the invoices to Receivables and tie back to Projects. Enter one large credit memo in Receivables and use it to zero out the invoices, or use Adjustments to zero them out. Projects and AR both have the total invoicing, and AR has the credits/adjustments to indicate they had been paid.
Which option you choose may depend on volume. If there are only 6 invoices, option 2 is nice and clean. If you had hundreds of invoices, such as converting into Oracle from a legacy system, option 1 is faster.
2b, scenario where the invoice is UNPAID. After processing the fully paid invoices as described above, enter billing events for the unpaid amounts. Generate invoices, approve, and release. If you are using manual invoice numbering, give the invoices the same number they had in the legacy system. If you are using automatic invoice numbering, add a comment on the invoice to indicate the original invoice number, or include the original invoice number in the event description; the point is to be able to match from one system to the other. Run the streamline to Receivables and tie back to Projects. The invoice amounts are now in Projects and in AR, and you can use the AR Invoice button on the Projects Invoice Review form to jump from the projects invoice to the receivables one.
Re: Could you please help me write sql query to get these details for oracle customers?
Hi
When you need Bank and Credit Card, what exactly you want ?
Because credit card and bank are attached to a customer as well as site level
You can use the following sql (Please modify it as per your requirement and do not consider it as final )
SELECT cust.account_number,cust.account_name,p.cust_account_id,
p.ACCT_SITE_USE_ID, u.instrument_type instrument_type,
c.masked_cc_number ,
decode(i.card_issuer_code, NULL, ccunk.meaning, i.card_issuer_name) account_type,
u.instrument_id ,
NVL(c.chname,hzcc.party_name) account_holder,
c.card_issuer_code card_code,
u.instrument_payment_use_id instr_assignment_id
FROM fnd_lookup_values_vl ccunk,
iby_creditcard c,
iby_creditcard_issuers_vl i,
iby_external_payers_all p,
iby_pmt_instr_uses_all u,
hz_parties hzcc,
hz_cust_accounts cust,
hz_party_site_uses psu,
hz_party_sites hps,
hz_locations loc,
fnd_territories_vl terr
WHERE p.cust_account_id = cust.cust_account_id
AND p.party_id = cust.party_id
AND u.ext_pmt_party_id = p.ext_payer_id
AND u.instrument_type = 'CREDITCARD'
AND u.payment_flow = 'FUNDS_CAPTURE'
AND nvl(TRUNC(u.start_date), sysdate - 1) <= TRUNC(sysdate)
AND nvl(TRUNC(u.end_date), sysdate + 10) >= TRUNC(sysdate)
AND u.instrument_id = c.instrid(+)
AND nvl(c.inactive_date, sysdate + 10) > sysdate
AND c.card_issuer_code = i.card_issuer_code(+)
AND c.card_owner_id = hzcc.party_id(+)
AND c.addressid = psu.party_site_use_id(+)
AND psu.party_site_id = hps.party_site_id(+)
AND hps.location_id = loc.location_id(+)
AND loc.country = terr.territory_code(+)
AND ccunk.lookup_type = 'IBY_CARD_TYPES'
AND ccunk.lookup_code = 'UNKNOWN';
Best Regards
Bharat
****If my response assisted you on this matter, please feel free to click on the Correct Answer and/or helpful button, in order to assist community and its users. ***



