Entries by Oracle ERP Apps Guide

, , ,

How to Get GL Code Combination Description

Script 1:(Works in Both 11i & R12) SELECT gcc.segment1 ||’.’ ||gcc.segment2 ||’.’ ||gcc.segment3 ACCOUNT, A1.DESCRIPTION ||’-‘ ||A2.DESCRIPTION ||’-‘ || A3.DESCRIPTION DECS FROM fnd_flex_values_vl A1, fnd_flex_values_vl A2, fnd_flex_values_vl A3, gl_code_combinations gcc WHERE a1.flex_value       =gcc.segment1 AND a1.FLEX_VALUE_SET_ID IN (SELECT FLEX_VALUE_SET_ID FROM fnd_id_flex_segments WHERE application_id       = 101 AND id_flex_code       […]

, , , ,

Oracle Back to Back Order in Order Management

Back Orders ·         The Oracle “term” backorder is a “status” on the order line or delivery line indicating that you have tried to release an order for picking in your warehouse, but that the pick release was UNSUCCESSFUL because there was no available inventory.(Backorder can be partial or complete). The Oracle term backorder does NOT mean that you […]

, , , , , ,

How to Stop/Block Work Flow Mailer Send Mail from the Cloned Instance

YOur Work Flow mailer is triggering Mail often when you clone your Instance and you are unable to test the New stuff using work Flow Mailer Here is the solution for the Work flow mailer to stop sending older mails in the Test Instance UPDATE WF_NOTIFICATIONS SET STATUS = ‘CLOSED’ where status =’OPEN’; UPDATE WF_NOTIFICATIONS SET MAIL_STATUS = ‘SENT’ where […]