Best Of
Duplicate Supplier / Vendor Cleanup FSCM 9.2 Image 43 Tools 8.61
Question, we have identified duplicate suppliers/vendors and inactivated them. We are considering also replacing the name with all X's. Just reaching out to see how others are handling duplicate vendor cleanup for ideas we are not considering.
Re: CVE-2025-61882 is this really REQUIRED to be applied in hotpatch mode [required]
Hi @Anna María,
Thank you for visiting My Oracle Support Community and posting your question here! I want to let you know I have moved your thread to our Install, Upgrade, Clone, Patch - EBS (MOSC) subcategory for those subject matter experts to engage.
If an answer resolves your question, please choose the "YES" on that comment for "Did this answer the question?".
In the meantime, feel free to review the following information to learn more about our Community:
- How to Find and "Follow" Categories - Learn how to Follow Categories of interest
- Setting Up Category Notifications for New Content - Learn how to get notifications on content
- How to Search and Do Advanced Search - Learn how to get to advanced search and filter options
- Visit our MOSC Resource Center
- Browse all our represented Product Categories
- How to Edit Your Community Username - Details are provided to change your default display name, which will allow for a more personalized profile
- How to Ask a Question and View Answers in the My Oracle Support Community - My Oracle Support Community organization details are provided, which can be used to find the product subcategory for your question
- Community Guidelines
- How to be a good Community Citizen
- Not posting Private Information
- How to be a Community Star
Thanks,
Gail
Re: Reclaiming OS disk space after truncating partitions. Has a step-by-step process been created?
You wrote: "…Don't forget to purge the tablespace to remove dropped objects…."
PURGE TABLESPACE tablespace_name [ USER user_name ];
This command removes all objects residing in the specified tablespace that are currently in the recycle bin.?? true??
Good idea. I had forgotten the recycle bin (so easy to forget).
Thank you everyone!!!! Excellent assistance. We are on our way to data removal and cleanup of database structure… simplifying how data is logically and physically stored.
This can be closed.
Re: Reclaiming OS disk space after truncating partitions. Has a step-by-step process been created?
Hello bobcalvin,
and keep in mind that from the database point of view, the free space inside existing datafiles is as useful as free space outside datafiles… So if you free space by truncating / dropping segments, you will have datafiles with a lot of free space and they won't need to grow in size to allocate new extents, and OS free space will remain stable.
(but yes, you wrote «Customer needs at least 1 TB of OS disk space free» so maybe my point "free here or free there, what difference?" might be irrelevant)
Best regards,
Bruno Vroman.
Re: Reclaiming OS disk space after truncating partitions. Has a step-by-step process been created?
Hi
Just to add some things:
Why you want to truncate the old partitions (if they are really unused for write and read) and don't drop them?
Don't forget to purge the tablespace to remove dropped objects.
And don't forget to create new optimizer statistics after the process.
BR
Jörg
Re: Reclaiming OS disk space after truncating partitions. Has a step-by-step process been created?
There's no recycle mechanism in a way of making sure the database doesn't grown, by means of removing partitions on any regular basis, as the "rest" of the database will make sure the database grows. Unless you now have a massive chunk of your database stored in partitions you never ever use.
To me it looks like IF the partitions are created incorrectly, technically there's only one solution: remove these partitions and create new type of partitions. This is huge, obviously, but I don't see how else you can improve from that situation. After that, you can build a recycle mechanism on those partitions and depending on the size of data in there, it may improve things.
But, as you state: there's no new data inserted into the old partitions, yes, probably. But, is there data READ from the old partitions ? If so, that'll be the reason you can't delete, and that may the reason why you can't remove any partition. You then have to switch to remove records, in "old" partitions, but these becomes even more difficult, chance on error very high, and the gain ? … I don't know.
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


