Entries by Oracle ERP Apps Guide

, , ,

Insert BLOB image file in oracle database table

Here we will discuss how to insert BLOB file in the database. For this we will create a table and then a procedure that will be used to insert records in the table. Use following script to create an employee table CREATE TABLE SV_EMP_PHOTO(  ID          NUMBER(3) NOT NULL,  PHOTO_NAME  VARCHAR2(40),  PHOTO_RAW   BLOB,  EMP_NAME   […]

, , , , ,

R12 Sales Order Line Status Flow and Meaning

Below are some of the different statuses of Sales Order Line with brief explanation OM = Order Management Sales order formSE = Shipping Transactions or execution form 1) Entered (OM): Order is saved but not booked 2) Booked (OM): Order is Booked. 3) Awaiting Shipping (OM): Order is booked but lines are not yet picked.Navigating to Shipping Execution, […]

, , , ,

FND Messages in Oracle

Calling messages: Following standard procedure can be called to show predefined oracle applications message through forms or concurrent programs. FND_MESSAGE.CLEAR – Clears the message stack of all the messages. FND_MESSAGE.DEBUG – Immediately displays the string passed to it as input parameter. FND_MESSAGE.ERASE – Clears the oracle Forms status line. FND_MESSAGE.ERROR – Displays an error message […]