FNDLOAD

  FNDLOAD is an Oracle utility that allows for the transfer of a wide range of Oracle Foundation (FND) data from one instance to the other. The loader reads a configuration file (LCT) to determine what data to access. It works by downloading the data in the source instance into a text file (LDT file)…

Read article

USER EXIT IN REPORT – ORACLE APPS

  FND SRWINIT: FND SRWINIT sets your profile option values and allows Oracle AOL user exits to detect that they have been called by a Oracle Reports program.[Before Report trigger, P_CONC_REQUEST_ID lexical parameter]. We should always call FND SRWINIT from the Before Report Trigger SRW.USER_EXIT(‘FND SRWINIT’); FND SRWEXIT: FND SRWEXIT ensures that all the memory allocated…

Read article

XML Publisher Report– Oracle Apps

  XML Publisher patch has to be installed in your machine before developing xml publisher Reports. Please check the blog post for installing the XML publisher desktop patch: http://oracleapps4u.blogspot.com/2011/04/installing-oracle-bi-publisher-xml.html Steps for Developing XML Publisher Reports  Create a RDF Report and register it as Concurrent Program of Format type “XML”  Build a Data Definition & XML…

Read article

SQL STATEMENTS

  SQL is divided into the following :- Data Definition Language (DDL) Data Manipulation Language (DML) Data Retrieval Language (DRL) Transaction Control Language (TCL) Data Control Language (DCL) DDL – Create, Alter, Drop, Truncate, Rename DML – Insert, Update, Delete DRL – Select TCL – Commit, Rollback, Savepoint DCL – Grant, Revoke   DRL COMMANDS CREATE TABLE Syntax: Create table <table_name> (col1 datatype1, col2 datatype2 …coln datatypen); Create table XXSTP_EMP_DETAILS…

Read article