+ Write Article

Oracle Apps Technical Examples, Tutorials and Articles

Published by
Introduction

Oracle Applications R12 Trading Community Architecture Tables

Background

What is TCA?
Oracle Trading Community Architecture (TCA) is a data model that allows you to manage complex information about the parties, or customers.
Trading ...
Read More Read More
Published by
Code sql:
-- Function and procedure implementations
  FUNCTION To_Get_Account_Desc  (I_LEDGER_ID IN NUMBER,
                                 I_SEGMENT3  IN VARCHAR2,
                                 I_SEGMENT4  IN VARCHAR2,
                                 I_SEGMENT5  IN VARCHAR2)
...
Read More Read More
Published by
Introduction to Oracle Application (OA) Framework

OA Framework is a J2EE (Enterprise Edition) based application development platform to develop HTML based Oracle EBS applications. OA Framework is designed around the simple Model-View-Controller (MVC) architecture design pattern.The MVC ...
Read More Read More 2 Comments
Published by
Introduction

Use the Below Query to get the Vendor Details.

The code

Use Below Parameters:

1. Give the Vendor Number From and To(Optional)
2. Vendor Name(Optional)

Code sql:
SELECT  
PO.SEGMENT1 VENDOR_NUMBER,
...
Read More Read More
Published by
Introduction

This article is about the changes which have been done to existing General Ledger tables in Release R12 as compared to 11i.

GL_BALANCES

Added quarter_to_date_dr_beq, quarter_to_date_cr_beq, project_to_date_dr_beq and project_to_date_cr_beq ...
Read More Read More 4 Comments
Published by
Introduction

This query helps to get concurrent program details of to which responsibility attached and request group information. Thought it would be helpful ..

Pass Concurrent Program Name as parameter

SQL Code:
Code sql:
 SELECT frt.responsibility_name,
...
Read More Read More 1 Comment
Published by
Introduction

Query helps to find desired concurrent request set information .

Pass concurrent request set name as parameter

SQL Code:
Code sql:
 SELECT frt.responsibility_name, frg.request_group_name,
    frgu.request_unit_type,frgu.request_unit_id,
...
Read More Read More
Published by
Introduction

This article list the key tables in workflow and the uploaded code give a way to release a stuck workflow.

Key-Tables

WF_ACTIVITIES table stores the definition of an activity. Activities can be processes, notifications, functions or folders. ...
Read More Read More
Published by
Introduction

The following query helps to identify the Trace file path location for a particular Concurrent Request

Pass the request id as parameter

SQL Code:
Code sql:
 SELECT
    req.request_id
    ,req.logfile_node_name node
...
Read More Read More 4 Comments
Published by
Here is the code to identify Unposted Journals in General Ledger, these journals are from gl_interface

Code sql:
SELECT          user_je_source_name,
                  accounting_date, COUNT(accounting_date),
                  SUM(accounted_dr), SUM(accounted_cr)
FROM   gl_interface
...
Read More Read More

Page 1 of 4 1 2 3 4