While working with oracle HRMS module I have came across many tabels like fnd_user, per_all_people_f etc...but I could not understand what are custom and seeded tables in oracle. Can you please tell me the difference between seeded and custom tables in oracle apps alongwith examples? Thanks in advance :)
Difference between custom and seeded tables in oracle apps
1.2k Views Asked by Baidarvi Roy At
1
There are 1 best solutions below
Related Questions in PLSQLDEVELOPER
- linux command for invalid month format replace
- Please, my Oracle EBS query when creating a custom report still contains duplicate data,
- KUP-04026: field too long or datatype error
- Stored procedure - PostgreSQL Query
- Migrating data from source data into new relation?
- Can't create any function in Oracle SQL Developer
- PL/SQL script to search for a particular string in data from the entire database
- FIndout the column name and the column value who is having different value
- Updating a table which stores queries which requires user inputs
- How to write a function which returns associative array and call the function in Oracle PLSQL?
- Generating an alphabetic sequence with number in oracle
- error "\" in tabular model/Analysis service
- fire a trigger when on of my table column change
- Script PLSQL developer run in python jupyter notebook
- How to code for getting user input in PLSQL?
Related Questions in ORACLE-EBS
- Data conversion issue in Oracle database
- Please, my Oracle EBS query when creating a custom report still contains duplicate data,
- How to optimize my query to reduce execution time
- How to control dimensions(Width and Length) of an image within a BIP report specifically when generating an output in Excel format (oracle EBS R12)
- How to generate URL of Oracle EBS concurrent program generated file (like .pdf) from API?
- Query to extract seeded/custom reports from Oracle EBS
- Problem with Oracle EBS concurrent program calling mailx
- Oracle Form giving error when trying to insert data into table
- why oracle apps home page not showing submenus for responsibility in oracle apps after migration
- Oracle EBS installation in windows operating system
- Getting a "UserID not exists" error when using jtf_rs_resource_pub.create_resource API to import an employee as a salesperson in Oracle EBS
- How to connect Oracle EBS remote database using ODBC driver?
- When report was downloaded from the Oracle ebs Excel report.While I am trying to open it was generating an error
- Is there any easy way to test the feature High availability in open source JS7?
- Oracle EBS 12.1.3 Concurrent Job issue after 19C migration
Related Questions in ORACLE-APPS
- Oracle Apps View: ALL_TAB_COLUMNS; columns: LOW_VALUE and HIGH_VALUE
- Display additional Column in the SQL query
- why oracle apps home page not showing submenus for responsibility in oracle apps after migration
- Getting a "UserID not exists" error when using jtf_rs_resource_pub.create_resource API to import an employee as a salesperson in Oracle EBS
- Oracle APPS R12- AP Invoice Struck in re-validation
- Call procedure of Oracle apps by C# not working
- Total sum not working inside the for-each-group tag in BI Publisher when using Group Left
- How can a PL/SQL procedure tell if it is being run from a concurrent program?
- Oracle Apex change Checksum Error to 404 Page Not Found
- Difference between custom and seeded tables in oracle apps
- Oracle Applications - Next Step Attribute
- joining hr_organization_information and mtl_parameters in Oracle apps
- Trying to set a field as mandatory on Oracle Applications R12
- How to resolve this ORA-01722: invalid number error in SQL *Loader based concurrent program?
- Profile creation and how user opt "yes" or "no"
Related Questions in ORACLE-SQL-DATA-MODELER
- Oracle SQL Developer Data Modeler previous versions
- How to set Auto increment Integer in Oracle Data Modeler
- How can I find true date for my table on oracle sql
- ce_cashflow table alternate in oracle fusion cloud
- How can i open a model in Oracle Data Modeler without the .dmd file
- Issue in Multiple value selected in parameter
- Why did primal keys auto-generate for some of my entities when I converted my entity model to a relational model?
- Where to set Maximum Id of Primary Key in Oracle SQL Developer?
- Financial formulation in Crystal Reports
- Is there a table in Oracle Ebs that keeps the change log of the iban information?
- extracting json tag value available within xml
- Change order of name column in oracle
- Tables in Data Modeler's Browser, not showing in Oracle Connection
- Oracle Reverse Engineer ERD for Mac
- Oracle Data Modeler Scripts Stopped Working
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Seeded tables are tables that contains initial data provided by the system. As an example the users table should contain at least an administrator for Oracle HRMS to be usable.
All the tables found in the documentation here would be seeded tables.
User-defined tables would be the opposite, any table that wasn't initially defined by the system but by users with enough privileges.