Best Of
Re: UK Announcement Statutory Neonatal Care Leave&Pay: Release ETA and Support Team Readiness
Hello,
Patch was released:
https://community.oracle.com/mosc/discussion/4591443/uk-announcement-statutory-neonatal-care-pay-and-leave-changes-april-2025-patch-was-released/p1?new=1
Thanks,
Lucian
Re: I can't log into my cloud account
For account issues you need to work with Oracle support directly. Best to call in using one of the contact numbers
Thanks
Re: Steps to enable Third Party Payment in AP R12
Hi User_K7JYN,
I've moved your question out of the "Getting Started" category and into the Payables and Cash Management - EBS (MOSC) subcategory within the E-Business Suite forums. That should improve the visibility of your question to the EBS subject matter experts.
For future postings, please review this article, which explains how our discussion boards are organized:
How to Find the Correct Category in Which to Post
Thanks, and welcome to the community!
Jennifer B
My Oracle Support Community Administrator
Re: Request for Oracle ECC Infrastructure Sizing and Cost Estimation
Thank you Nirmal and Mikhail
What about ECC Database(ECC schema)? It should be on seperate server or it can be in the same EBS server. For ECC Application server I understand that it is reconmonded to use seperate VM
We have plan to use OCI for seperate ECC server. We are struging to decide size of DB should be allocate for ECC DB.
Re: Setting up Roth 401k After Tax for EE contribution only
Heh, yes that is actually why we are re-doing all our setups! We will now have the SECURE 2.0 deduction categories on all our plans. Thanks!!
Re: Setting up Roth 401k After Tax for EE contribution only
Just wanted to note that if you are re-doing all your setups, we would highly recommend using the SECURE 2.0 deduction categories when creating your 401(k) and Roth 401(k) deductions as these contain the latest updates including support for SECURE Act 2.0, Sections 603, 604 and 109. Sections 109 and 604 are already in effect, and the transition period for Section 603, ends Dec 31st of this year. See My Oracle Support Document 2988557.1 - Payroll Application Updates to Accommodate Sections 603 and 604 Requirements of SECURE Act 2.0 for Release 12.1 and 12.2 E-Business Suite US Payroll Customers for details if you have not already.
Re: BSSV database operation
Hello,
I am not sure about data recovery, but your developer may use the samples from the document I provided earlier.
Thank you!
Best regards,
Cezar
Re: BSSV database operation
Hello,
From your description is not clear what you want to test, but I believe you want to directly connect from BSSV to the database.
There is a table I/O sample in the "E1: BSSV: DB Operation - Closing the Database Connections for Internal and Published BSSVs (Doc ID 1485967.1)" document.
Thank you!
Best regards,
Cezar
Re: Archiving Media Object files from FTP location
Hi Omkar
Column GDTXKY (Object Key) on the Media Objects table, F00165, contains the document number associated with the attachment and coupled with GDOBNM (Object Name) and GDMOSEQN (Seq No) provides a unique key.
GDOBNM identifies the form the attachment is available on, e.g. "GT4311" for purchase orders
GDTXKY is a concatenation of the company, document type, document number and suffix, e.g. "00010|OP|1234|001"
GDMOSEQN is just a numeric value, e.g. 1, 2, 3, etc
You can use SQL to split out the GDTXKY value into it's separate parts. For example the following works over an Oracle 19c database:
select gdobnm as Object_Name
, gdtxky as Object_Key
, substr(gdtxky, 1, 5) as company
, substr(gdtxky, 7, 2) as Doc_Type
, to_number(substr(gdtxky, 10, instr(gdtxky, '|', 10)-10), '99999999') as Doc_No
, substr(gdtxky, instr(gdtxky, '|', 10)+1, 3) as Suffix
, gdmoseqn as Sequence
, case gdgtmotype
when 0 then '0 (Text)'
when 1 then '1 (Image)'
when 2 then '2 (OLE)'
when 3 then '3 (Shortcut)'
when 4 then '4 (Vendor)'
when 5 then '5 (URL)'
else to_char(gdgtmotype)
end as Media_Type
, gdgtitnm as Description
, gdgtfilenm as File_Name_or_Link
, gduser as User_ID
, to_char(to_date(to_char(gdupmj+1900000), 'YYYYDDD'), 'DD/MM/YYYY') as Date_Added
, gdtday as Time_Added
from proddta.f00165
where (gdtxky like '%86456%' or gdtxky like '%107849%' or gdtxky like '%86546%')
and gdgtmotype <> '0';
Hope it helps
Jonathan




