Home » Page 2

How the histograms are generated in EBS

How the histograms are generated in EBS Oracle product team decides about the column where histograms are needed and those columns are inserted into the table FND_HISTOGRAM_COLS. FND_STATS collects histogram information if a column is listed in FND_HISTOGRAM_COLS. we should not use DBMS_STATS to gather stats in the EBS database as then it will create …

How the histograms are generated in EBS Read More »

How to submit a concurrent program from the backend

Concurrent Programs can be submitted from the backend ie. database using fnd_request.submit_request.We will check in this post the various code on How to submit a concurrent program from the backend The snippet of the API FUNCTION fnd_request.submit_request ( application IN VARCHAR2 DEFAULT NULL, program IN VARCHAR2 DEFAULT NULL, description IN VARCHAR2 DEFAULT NULL, start_time IN …

How to submit a concurrent program from the backend Read More »

How to Create a Minimally Viable Private CA for Jar Signing using OpenSSL

Sometimes it is not possible to buy the expensive HSHSM-based solution for EBS Jar signing. You can use your own private CA for signing the jar files. This post gives an overview of creating private CA using OpenSSL command. One-Time CA Initialization Create CA Directory mkdir ~/ebsJarCAcd ~/ebsJarCA Create CA Directory Structure mkdir certs db …

How to Create a Minimally Viable Private CA for Jar Signing using OpenSSL Read More »

Scroll to Top