be happy and make others to be happy_ descriptive flexfields

Upload: ganapathiraju-sravani

Post on 02-Jun-2018

228 views

Category:

Documents


0 download

TRANSCRIPT

  • 8/10/2019 Be Happy and Make Others to Be Happy_ Descriptive Flexfields

    1/17

    9/14/2014 be happy and make others to be happy: Descriptive Flexfields

    http://krishnareddyoracleapps.blogspot.in/2012/07/descriptive-flexfields.html 1

    be happy and make others to be happy

    WEDNESDAY, 4 JULY 2012

    Descriptive Flexfields

    Descriptive Flexfields

    In this article, I would like to explain some tricks with context sensitive Descriptive

    Flexfields. To begin with lets consider some scenarios as below.

    Scenario 1. Depending upon the responsibility user has logged into, you wish to either

    show two flexfield segemts or three segments. This is a fairly common requirement.

    Scenario 2. There are two different oracle screens, both based on same table but

    different functionality. Hence the share the same descriptiveflexfields. You wish to use

    notation :block.fieldname in the value set. But this will work in one screen and error in

    another.

    Can't we simply use context sensitive flexfields?

    You certainly can. However, what if you do not want to make your user select the value

    in context field manually? In this case you need to take your design a step further.

    In fact, before you proceed further with this article, you must read this link Basic

    Concepts of Context Sensitive Descriptive Flexfields.

    In case you do not know much about profile options, you must also read link basic

    concepts of Profile Options

    What are the options at hand for solutions to Scenatio 1 and Scenario 2?

    Option 1. Use profile option as the context

    Option 2. Use a system global variable as the context.

    How does this work?

    In case of using profile option, value in Context Reference Field of the descriptive

    flexfield will be the profile option[see picture below].

    Lets say for Responsibility-1 this profile is set to XX, and for Responsibility-2 this profile

    is set to YY, and for a special user this profile is set to value ZZ.

    You can then define three different contexts, as below.

    Context XX

    Uses attribute1 and attribute2, using value sets vs1 and vs2

    Context YY

    Uses attribute 1, using value set vs3

    Context ZZ

    Uses attribute2 with value set vs4 , making this descriptive flexfield segment

    mandatory.

    5

    2012(1141)

    May(238)

    June(281)

    July(568)

    Oracle exception handling

    JOINS WITH PRACTICE

    INSTALLATION OF ERP 11I ONLINUX

    NOTES

    PLSQL-Using the PL/SQL BlockStructure

    Summary of Predefined PL/SQLExceptions

    Overview of Procedures, Functions,and Packages

    OVERVIEW OF TRIGGERS

    Reserved Words

    AUTHID Clause

    Creating a Stored Procedure ThatUses Parameters

    PACKAGES

    PLSQL CODE

    Installation of Oracle ApplicationsR12.1.1 on Lin...

    installation of Oracle BusinessIntelligence Enter...

    Encumbrances can be migrated fromopen Purchase Or...

    Suppliers in TCA - A dive into Vendor

    Tables in R1...

    Oracle FNDLOAD Script Examples

    Profile Options Hierarchy

    Multi Org R12

    Descriptive Flexfields

    MO_GLOBAL-Dive into R12 Multi OrgDesign

    Customization of Reports in OracleApps

    XML Publisher Concurrent Program -XMLP

    Concurrent manager in Oracle Apps

    Technical Interview Questions inOracle Apps

    FND Debug Log - Debugging OracleApps code

    ORACLE APPS BLOG ARCHIVE

    0 More Next Blog Create Blog Sign

    http://www.blogger.com/http://www.blogger.com/http://www.blogger.com/home#createhttps://www.blogger.com/next-blog?navBar=true&blogID=6398109836467832375
  • 8/10/2019 Be Happy and Make Others to Be Happy_ Descriptive Flexfields

    2/17

    9/14/2014 be happy and make others to be happy: Descriptive Flexfields

    http://krishnareddyoracleapps.blogspot.in/2012/07/descriptive-flexfields.html 2

    Depending upon which responsibility user logs into, and also depending upon which

    user logs into the screen, they will see different flexfield segments popping up.

    Ah, what if same user in a single responsibility has access to different screens

    that share same DFF?

    In this scenario, you can design your descriptive flexfield on a System variable context.

    Hence your context will be :SYSTEM.CURRENT_FORM. Depending upon which formthe user has navigated to, they will see different segments.

    Note: Use Examine utility to find out the Current Form Name

    Sounds good, but what are the pitfalls?

    1. :blockname.fieldname convention does not works for OA Framework screens.

    2. There is only one context reference field available per Descriptive Flexfield. If you

    choose to have your DFF context sensitive on a profile option, then you will have to live

    with it forever(ah should I say fusion-when D2K forms are gone). However this limitation

    can be overcome by using fnd_profile.put api, to alter the profile option value at runtime

    for forms session. Effectively you can modify the context[by changing profile option

    value pragmatically], using formspersonalizations.

    How about OA Framework? Do we need these design methodology in OA

    Framework too?

    Not really, because in OA Framework, you can use personalizations to decide which

    Context + Attribute combination must be displayed. Personalizations can be performed

    at responsibility level to get the desired result as discussed in example above.

    =================

    An article on Context Sensitive Descriptive Flexfields, for beginners that follow

    http://getappstraining.blogspot.com

    Key Flexfields Basics

    Migration program in Apps. Migrate

    Customers

    Install tools for Oracle Apps

    Development

    Lookup Types and Lookup codes inOracle Apps

    How to Implement Function Securityfor Orders and ...

    Open Interfaces in APPS EBS - Best

    Practices

    Creating Customer Address in TCA -Step by Step

    Future of TCA - Fusion & Release 12

    PLSQL

    PL/SQL Triggers

    PL/SQL Procedures and Packages

    ALL TABLES IN ORACLE APPS 11i &R12

    Oracle Applications R12 Architecture

    API to Get the Cost of an Item

    Item Import

    Order To Cash Flow

    Profile Options

    Oracle Apps Queries & LDT Files

    APPS FAQS11

    APPS FAQS12

    APPS AR FAQS

    APPS INV,PO FAQS

    APPS AR FAQS1

    Collections

    Interfaces and Conversions

    API-OE ORDER CONVERSIONUSING API

    API-QP PRICE LISTING USING API

    INTERFACES AND CONVERSION

    OF ALL MODULES BASICS

    ORACLE PROCEDURES AND

    FUNCTIONS,PROCEDURES,CURSORS...

    FINALLY CLOSE IN ORACLE APPS

    PO RECEIPT USING INTERFACES

    MTL ONHAND QUANTITY USING

    INTERFACE

    UOM CONVERSION

    GL CROSS VALIDATION RULE

    AR TRANSACTION TYPES

    QA CHECK LIST

    GL CODE COMBINATION

    OKC PROCESSING DEFINITIONS

    HR CREATE NEW PROFILE

    ITEM CONVERSION

    HZ(TCA) TABLES IN ORACLEReceiables

  • 8/10/2019 Be Happy and Make Others to Be Happy_ Descriptive Flexfields

    3/17

    9/14/2014 be happy and make others to be happy: Descriptive Flexfields

    http://krishnareddyoracleapps.blogspot.in/2012/07/descriptive-flexfields.html 3

    A training article on Context Sensitive Descriptive flexfields.

    IMPORTANT:- You must read Basics Flexfield article. This article is an extension to the

    work that we did for a simple flexfields.

    First some basic Question and answers, and then we will do screenshots detailing how

    flexfields are configured.

    Question: I want these Flex fields to appear in screen only when certain conditions are

    met. Is it possible?

    Answer: Yes, you can. Lets take an Example. You have a "Bank Branch" screen where

    you enter the Bank names and their branches . There is a field named Branch Type in

    that screen. You wish to show & capture following new fields:-

    a. Banks Country of Origin Field ( regardless of bank branch type, we must show this

    new field). As we configured in earlier training chapter.

    b. If user entered a value of SWIFT in Branch type, then display a new DFF segment

    "SWIFT Partner field".

    c. If Branch type CHIPS is selected by the user, then display a DFF segment "Chip

    ID" field.

    In Order to do this, we will follow the below steps(screenshots will follow) :-

    1. Navigate to the DFF Registration screen in Oracle Apps and query on TableAP_BANK_BRANCES. Now click on Reference Field, and ensure that

    BANK_BRANCH_TYPE field can be used as a context switch. In our case we add this

    field as a reference field.

    2. Navigate to DFF Segments screen and query on the Title of the Bank Branch and

    Unfreeze the Flexfield and add segments as in screenshot below. Register the

    BANK_BRANCH_TYPE field as a reference item.

    3. Create the contexts for each possible value of Bank Branch Type field(for which you

    want conditional display of fields)....

    Hmmmm not clear yet, see the the screenshots and you will surely understand......

    Find out the table name for Bank Branch screen, this will enable us to find the DFF that

    is available for Bank Branch

    The Bank Branch can have one of the following values.

    SRW PACKAGE in Oracle Reports

    KEY Tables IN Oracle Inventory (INV)

    Overview of Procure to Pay(P2PCycle)

    Steps to Create Report in OracleReport Builder 10...

    API-to Create User,Reset Passwordand Responsibuli...

    API to Load Values into Value Sets

    API'S WITH EXAMPLES

    Important AP Tables

    Key FND Tables in Oracle Application

    GL Tables

    Understanding the Workflow Definition(Set up) Tab...

    Multi-Org or multiple organizationaccess (MOAC) i...

    Order to Cash (O2C) Cycle, R12Financials

    Data Migration vs. Data conversion

    Oracle Application:Data Model

    Custom.pll in Oracle Application

    Oracle Projects Migration/ Data

    Conversion

    AR Invoice Interface

    Supplier Conversion in R12

    GL Budget Interface

    ABOUT INTERFACES

    AP invoice interface

    Interfaces in Oracle Application: AnIntroduction

    Number Formatting in XML Publisher

    XDOLoader Utility to upload XMLTemplates

    Format Customization in OraclePayments using Exte...

    Advantages of using the XMLPublisher Report

    Steps to create a XML PublisherReport

    CONCSUB Utility: Run yourConcurrent Program from ...

    SQL,NORMAL FORMS,SETOPERATORS..ETC

    Invoking SQL*Loader

    SQL Loader Basics

    Registering SQL*Loader as aConcurrent Program

    SQL LOADER ENVIRONMENT

    Bind & Lexical Parameters in Reports

    USER EXITS IN REPORTS

    ORACLE REPORTS

    R12 E-Business Suite SuppliersQuery - SQL to join...

  • 8/10/2019 Be Happy and Make Others to Be Happy_ Descriptive Flexfields

    4/17

    9/14/2014 be happy and make others to be happy: Descriptive Flexfields

    http://krishnareddyoracleapps.blogspot.in/2012/07/descriptive-flexfields.html 4

    Given that our DFF will be sensitive to what we enter in Bank Branch, we must find out

    name of the field(not the display name). This can be done by using examine as shown

    We can see that internal name of the Branch Type is "BANK_BRANCH_TYPE". We

    need to ensure that a DFF can be made sensitive to the value in

    BANK_BRANCH_TYPE

    Lets navigate to DFF registration screen, and using the table name, we query DFF for

    AP_BANK_BRANCHES.

    Alternately you can query using DFF title too.

    TRACK AND TRACE E-BUSSINESSSUITFOR LOGS,PROCESS I...

    EBS Bursting

    ERP Overview

    DICOVERER

    ADF

    AOL

    VARRAYS

    TRIGGERSInstalling EBS 12.1.1 on Redhat ES

    6.0 x86_64

    BLOCKDIAGRAMS

    Collections-Varrays

    Queries related to Security profile inOracle apps...

    Oracle apps MOAC setup

    What is ERP (Enterprise ResourcePlanning)

    Some frequently used queries fororacle apps devel...

    Find the Org and Organizationmappings

    Wrapping / encrypting PL/SQL code

    submit concurrent request set frombackend

    How to submit a concurrent programfrom backend

    Oracle Apps Application ObjectLibrary SQL scripts...

    Concurrent Program MonitoringScripts

    Oracle Performance Tuning related

    QueriesSome of the important Join conditions

    between Orac...

    Currently running sessions indatabase

    How to set org context in Oracle apps

    R12 and 11i

    How to Send an E-mail from PL/SQL

    Sample PL/SQL Programs

    Script to apply hold viaoe_order_pub.process_orde...

    Book An Order UsingOE_INBOUND_INT.PROCESS_ORDER

    Unreserve An Order Line usingOE_ORDER_PUB.process...

    Sequence of SQL statementprocessed

    Oracle Apps Manufacturing standardcodes and their...

    Oracle Apps production supportqueries while perio...

    Resolving Period Close InventoryPending Transacti...

    Oracle Apps Inventory period closure

  • 8/10/2019 Be Happy and Make Others to Be Happy_ Descriptive Flexfields

    5/17

    9/14/2014 be happy and make others to be happy: Descriptive Flexfields

    http://krishnareddyoracleapps.blogspot.in/2012/07/descriptive-flexfields.html 5

    Now lets add BANK_BRANCH_TYPE as a REFERENCE Field, by clicking on Button

    Reference

    Now we need to define the new fields(segments). This screen is accessed via menu

    /Descriptive/Segments . In this screen, lets make BANK_BRANCH_TYPE as the

    context/reference. This means that DFF will become sensitive to values in Branch Type

    field

    IMPORTANT: If your requirement is not to have any conditiional logic, then no need for

    all the "Reference Field" blaaa. All you need to do is to add your segment to Global

    Data Elements

    monitoring sc...

    Split An Order LineOE_ORDER_PUB.process_order

    API...

    Reserve an Order Line usingOE_ORDER_PUB.process_o...

    Release Hold In A Sales Order usingOE_ORDER_PUB.p...

    Delete An Order using

    OE_ORDER_PUB.process_order

    A...Delete An Order Line

    OE_ORDER_PUB

    Create An Order With One Line using

    OE_ORDER_PUB.p...

    Cancel An Existing Order using

    OE_ORDER_PUB.proces...

    Cancel An Existing Order Line usingOE_ORDER_PUB

    Apply Hold to a Sales Order usingOE_ORDER_PUB.pro...

    Add A New Line To An Existing Orderusing OE_ORDER...

    Create an RMA via Process Order API

    Create An Order via Order Import ForA Simple ATO ...

    Update Order Header Details UsingProcess_Order AP...

    Book An Order Using Process_OrderApi

    Oracle Apps Cancel PO API Training

    Oracle Apps Change PO API Training

    Create Requisitions Using Requisition

    Import - Tra...

    Sample SQL Queries

    Oracle Apps Order Management (OM)Process Order AP...

    Oracle Apps DBA training material

    Interface error tables in Oracle Apps

    Script to Report Stored Code

    Script to Recompile Invalid Objects

    Script to List Trigger Code

    Script to Report Type Methods

    Script to Report REF Columns in theDatabase

    Script to Report Database TypesScript to Report Collection Types

    Script to Generate DDL for Synonyms

    Script to Report Database Locks

    Script ro Report Current Internal Locks

    Script to Report Datafile ArchiveStatus

    Script to Report System PrivilegesGranted to User...

    Script for Hot UNIX Backup

    Report all invalid objects in a database

  • 8/10/2019 Be Happy and Make Others to Be Happy_ Descriptive Flexfields

    6/17

    9/14/2014 be happy and make others to be happy: Descriptive Flexfields

    http://krishnareddyoracleapps.blogspot.in/2012/07/descriptive-flexfields.html 6

    How to find whether MULTI_ORG isenabled for the a...

    Oracle Function to convert number towords:

    Some Useful SQL Scripts

    Create a Primary key column on atable

    Print Oracle Table Definitions

    Useful SQL Script to generateCountries

    How to Send an E-mail from PL/SQL

    Book An Order Using

    OE_INBOUND_INT.PROCESS_ORDER

    Update An Existing Order Line usingOE_ORDER_PUB.p...

    Unreserve An Order Line using

    OE_ORDER_PUB.process...

    Split An Order Line

    OE_ORDER_PUB.process_orderAPI...

    Release Hold In A Sales Order using

    OE_ORDER_PUB.p...

    Delete An Order usingOE_ORDER_PUB.process_orderA...

    Cancel An Existing Order Line usingOE_ORDER_PUB

    Apply Hold to a Sales Order usingOE_ORDER_PUB.pro...

    Add A New Line To An Existing Orderusing OE_ORDER...

    SQL-EXAMPLES

    Oracle apps technical interviewquestions

    FNDLOAD

    APPS-Finace Tables of 11i

    Accounting-for-oracle-receivables-11i

    Autoinvoice-interface-tables -11i

    GL-Questions

    AR Interview Questions

    Oracle apps technical interviewquestions

    Customer Interface TablesDescriptions and Validat...

    PROCEDURES, FUNCTIONS AND

    PACKAGES

    SUBQUERIES

    Glimpses of E-Business Suite 12.2:WebLogic Server...

    6 Good Tips to Increase YourCommunication Skills

    How To Handle The Interview Stress

    6 Air Purifying House Plants

    Quote

    13 Common interview questions forfreshers

  • 8/10/2019 Be Happy and Make Others to Be Happy_ Descriptive Flexfields

    7/17

    9/14/2014 be happy and make others to be happy: Descriptive Flexfields

    http://krishnareddyoracleapps.blogspot.in/2012/07/descriptive-flexfields.html 7

    Posted by Krishnareddy at 03:54

    Labels: ERP INFO

    When the user selects Type=SWIFT, we see the relevant SWIFT field appear in

    Flexfield window

    When user selects Type=CHIPS, we see CHIP Id field appearing in Flexfield window.

    Here we now see that value entered in DFF field gets stored in the database column,

    Recommend this on Google

    No comments:

    Post a Comment

    Exception Handling

    Introduction to PL/SQL

    Advantages of PL/SQL

    PL/SQL Variables

    PL/SQL Constants

    PL/SQL Records

    Conditional Statements in PL/SQL

    Iterative Statements in PL/SQL

    What are Cursors?

    Explicit Cursors

    Stored Procedures

    PL/SQL Functions

    Parameters in Procedure andFunctions

    What is a Trigger?

    PL/SQL BEGIN

    Oracle PL/SQL

    Oracle Supplied Packages

    EXEC[UTE] (SQL*Plus command)

    DESC[RIBE] (SQL*Plus command)

    ALL_OBJECTS

    USER_SOURCE

    USER_OBJECTS

    DBA_OBJECTS

    Operators, comments, delimiters

    IF Statement

    Using TABLE variable Methods

    Declaring RECORD variables

    PL/SQL Looping Statements

    Cursor FOR Loops

    PL/SQL Where current of

    EXPLAIN PLAN Statement

    PL/SQL SELECT Statement

    Oracle Naming Conventions

    Important sites

    Purchase Order tables

    Technical components of OraclePurchasing

    GL Tables, AP Tables,HZ TABLES,

    AR TABLES AND FLOW...

    Trading Community Architecture(TCA) 101

    R12 Oracle Application Footprint

    AP Suppliers in R12

    API: Customer API -Create a Location

    Find out which concurrent programattached to whic...

    To compile all the objects in given

    schema

    Query to get the Number of Seconds

    or Minutes or H...

    http://www.blogger.com/share-post.g?blogID=6398109836467832375&postID=8724607957924323861&target=pinteresthttp://www.blogger.com/share-post.g?blogID=6398109836467832375&postID=8724607957924323861&target=facebookhttp://www.blogger.com/share-post.g?blogID=6398109836467832375&postID=8724607957924323861&target=twitterhttp://www.blogger.com/share-post.g?blogID=6398109836467832375&postID=8724607957924323861&target=bloghttp://www.blogger.com/share-post.g?blogID=6398109836467832375&postID=8724607957924323861&target=emailhttp://krishnareddyoracleapps.blogspot.in/2012/07/descriptive-flexfields.html
  • 8/10/2019 Be Happy and Make Others to Be Happy_ Descriptive Flexfields

    8/17

  • 8/10/2019 Be Happy and Make Others to Be Happy_ Descriptive Flexfields

    9/17

    9/14/2014 be happy and make others to be happy: Descriptive Flexfields

    http://krishnareddyoracleapps.blogspot.in/2012/07/descriptive-flexfields.html 9

    WHAR IS INFORMATICA ?

    CLIENT CENTER

    services-behind-scene

    try-u-r-hand-on-admin-console

    difference-between-7.1-and-8.6

    steps-to-install-informatica-power 8.6

    Informatica Experienced InterviewQuestions - Part...

    Informatica Experienced InterviewQuestions part...

    Informatica Experienced InterviewQuestions- Part4...

    Unit Testing

    Integration-Testing

    UAT (User Acceptence Testing)

    Informatica-Power-Center-Testing

    Debugger

    Constraint-Based Loading

    Target Load Plan

    Mapping-Parameters-Variables

    Mapplets

    Partitioning

    Working-with-links

    Schedulers

    Working-with-tasks-part-1

    Working-with-tasks-part-2

    Indirect-Method of -loading-flat-files

    SCD-type-1(Slowly ChangingDimensions)

    SCD 2 (Complete)

    SCD Type 3

    Incremental Aggregation

    Mapping Templates Overview

    Grid Processing

    Workflow Variables Overview

    TRANSFORMATIONS PART-1 ININFORMATICA

    TRANSFORMATIONS PART-2 ININFORMATICA

    Introduction to Data warehousing

    Data Warehouse Architecture

    Data Warehouse Schemas

    Dimensional Modeling

    Data modeling

    Data mining

    Difference Between OLTP Vs. OLAP

    Difference between Datamarts andData warehouse

    Staging Area

    PMCMD COMMANDS

    Performance Tuning Overview

  • 8/10/2019 Be Happy and Make Others to Be Happy_ Descriptive Flexfields

    10/17

    9/14/2014 be happy and make others to be happy: Descriptive Flexfields

    http://krishnareddyoracleapps.blogspot.in/2012/07/descriptive-flexfields.html 10

    IDENTIFICATION OFBOTTLENECKS

    Optimizing the Bottlenecks

    PERFORMANCE TUNING OFLOOKUP TRANSFORMATIONS

    PUSH DOWN OPTIMISATION

    Interfaces

    XMLPUBLISHER--Template Based onParameter

    IMPLIMENTATION

    queries

    SCRIPTS1

    White Paper on Oracle Apps MigrationProject

    Migrating Custom Forms--4.5 to 6i

    QP_CUSTOM--OE_MSG_PUB

    Terminating Concurrent programsessions

    Sql Query for Operating unit,Chart of

    Accoutns,Seg...

    Changing Oracle Applications LOGOCopying Files using PLSQL

    All About SQL Loader-1

    Concurrent Programs BusinessEvents

    AIM Documents

    Sending mails from

    PLSQL..UTL_SMTP

    Descriptive Flex Fields in CustomForms

    TKPROF-PeformanceTunning(Example1,2,3)-4

    FORMSCUSTOMIZATION

    AOL-Multiple oraganizations Accesscontrol(MOAC)-R...

    RETCODE & ERRBUFF

    Attachment Functionality in OracleApplications

    Special Validation type Valuesets

    Useful Information about LOG & OUTFiles

    FND LOAD Examples

    INTERFACES PART2

    P2P(Procur to Pay cycle)_ALL, _TL, _VL, _V,_F,_VL,_A,_AVN

    objects

    QUERY FOR FINDING REQUESTGROUP

    What is ERP? What will ERP fix in mybusiness?

    Some Of Frequently Asked Questionsin Interviews

    Interview Questions

    CUSTOMER INTERFACE USINGSQL LOADER

  • 8/10/2019 Be Happy and Make Others to Be Happy_ Descriptive Flexfields

    11/17

    9/14/2014 be happy and make others to be happy: Descriptive Flexfields

    http://krishnareddyoracleapps.blogspot.in/2012/07/descriptive-flexfields.html 11

    REF Cursors in Oracle PLSQL - AnOverview with Exa...

    Chart of Accounts Implementation inOracle Apps R1...

    What is ship_to_org_id andship_from_org_id in Ora...

    Uploading Images using sql * loader

    Important Queries

    Codd Rules (Edgar F.Codd)

    Normalization and De-normalization

    Edgar Frank Codd and his Rules

    ETL testing Fundamentals

    Creating a Custom Application inOracle Applicatio...

    Oracle E-Business R12 - Configuringthe Custom Top...

    Queries Related to ConcurrentRequests in 11i Appl...

    Interview Questions For TechnicalConsultant

    Oracle EBS R12 Purchasing,

    Inventory, Order Manage...

    Email From Oracle PL/SQL(UTL_SMTP)

    PO to AP to Fixed Assets

    Purchase Order Detail Query

    SQL Loader with XML DATA

    Export and Import Data from XMLSchema Database

    XML SEQUENCE SQL Function

    Informatica Interview Questions

    Informatica Questions1

    FACT Table,Dimenction Table

    Some Software Testing InterviewQuestions

    Oracle Process

    Customer API

    AR RECEIPT API

    Oracle apps PLSQL interview

    questions - 1

    Oracle apps PLSQL interviewquestions - 2

    Oracle Apps Interview Questions - 3

    Oracle apps Interview questions - 4SQL Interview Questions

    Oracle Apps Interview questions - 6

    Oracle apps Interview questions - 7

    Frequently Asked Questions in Oracle

    Apps Order Ma...

    FAQs on Oracle Alerts

    Oracle Apps Order ManagementFAQs

    Oracle Apps Purchasing FAQs

    Oracle Apps Inventory FAQs

  • 8/10/2019 Be Happy and Make Others to Be Happy_ Descriptive Flexfields

    12/17

    9/14/2014 be happy and make others to be happy: Descriptive Flexfields

    http://krishnareddyoracleapps.blogspot.in/2012/07/descriptive-flexfields.html 12

    FAQs on COGS in Oracle Apps

    How to impress Interviewer inInterview?

    Oracle Apps DBA Interview Questions

    Oracle Apps AR Interview Questions

    How to prepare for an oracle appsinterview

    How to negotiate offers for the BigCompanies?

    Download The Entire World of OracleApps

    Oracle apps interview questions and

    answers

    Useful oracle apps queries/ scripts/

    codes/ tips

    Sample Oracle Apps Requirement

    How to get Login Passwords forapplication & Data ...

    How to add System administratorresponsibility fro...

    Useful queries/code/scripts in OracleApps Order M...

    Find the Org and Organizationmappings

    Some frequently used queries fororacle apps devel...

    Wrapping / encrypting PL/SQL code

    How to submit / launch a concurrentrequest set fr...

    How to submit a concurrent programfrom pl sql

    Oracle Apps Application ObjectLibrary SQL scripts...

    Script to initialize the context of

    profiles,find ...

    Concurrent Program MonitoringScripts

    Oracle Performance Tuning relatedQueries

    Some of the important Join conditionsbetween Orac...

    Currently running sessions indatabase

    Some frequently used queries for

    oracle apps devel...

    How to set org context in Oracle apps

    R12 and 11i

    How to Send an E-mail from PL/SQL

    Oracle Apps DBA training material

    Oracle Apps production supportqueries while perio...

    Oracle Apps Inventory ManagementScripts

    Sample PL/SQL Programs

    Script To Apply Hold ViaOe_order_pub.Process_orde...

    Book An Order UsingOE_INBOUND_INT.PROCESS_OR

  • 8/10/2019 Be Happy and Make Others to Be Happy_ Descriptive Flexfields

    13/17

    9/14/2014 be happy and make others to be happy: Descriptive Flexfields

    http://krishnareddyoracleapps.blogspot.in/2012/07/descriptive-flexfields.html 13

    DER

    Update An Existing Order Line usingOE_ORDER_PUB.p...

    Unreserve An Order Line usingOE_ORDER_PUB.process...

    Split An Order LineOE_ORDER_PUB.process_orderAPI...

    Reserve an Order Line using

    OE_ORDER_PUB.process_o...

    Release Hold In A Sales Order usingOE_ORDER_PUB.p...

    Delete An Order usingOE_ORDER_PUB.process_order

    A...

    Delete An Order Line

    OE_ORDER_PUB

    Create An Order With One Line usingOE_ORDER_PUB.p...

    Cancel An Existing Order usingOE_ORDER_PUB.proces...

    Cancel An Existing Order Line usingOE_ORDER_PUB

    Apply Hold to a Sales Order usingOE_ORDER_PUB.pro...

    Add A New Line To An Existing Orderusing OE_ORDER...

    Create an RMA via Process Order API

    Create An Order via Order Import ForA Simple ATO ...

    Update Order Header Details UsingProcess_Order AP...

    Book An Order Using Process_OrderApi

    Oracle Apps Cancel PO API Training

    Oracle Apps Change PO API Training

    Create Requisitions Using RequisitionImport - Tra...

    Sample SQL Queries

    Oracle Apps Order Management (OM)Process Order AP...

    Oracle E-Business Suite (EBS)Architecture

    MD-50-and-MD-70-documents-oracle-application-devel...

    oracle-ebs-r12-inventory-and-purchasing-fundamenta...

    oracle-ebs-r12-inventory-and-purchasing-fundamenta...

    oracle-ebs-r12-inventory-and-purchasing-fundamenta...

    oracle-ebs-r12-inventory-and-order-management-fund...

    mapping-om-addresses-to-shipping-locations,bulk co...

    Oracle vs Sybase

    Interfaces and Conversions in OracleApplications

    Sequence of SQL statement

  • 8/10/2019 Be Happy and Make Others to Be Happy_ Descriptive Flexfields

    14/17

    9/14/2014 be happy and make others to be happy: Descriptive Flexfields

    http://krishnareddyoracleapps.blogspot.in/2012/07/descriptive-flexfields.html 14

    processed

    SRW.SET_attributes

    oracle-apps-account-receivable-tables

    Process Flows

    What is ERP (Enterprise ResourcePlanning)

    SCM Glossary

    Inventory Glossary

    Important Links

    Wait for request in Oracle Apps

    Queries related to Security profile inOracle apps...

    Oracle Apps R12 New FeaturesOnline training - Shi...

    Interface error tables in Oracle Apps

    XML Publisher training with example

    Oracle BI publisher training with OA

    Frame work

    Oracle R12.1 New Feature - CascadeHeader Changes ...

    Oracle R12.1 New Feature - DelayedScheduling

    Stop specific user from log in toapplication

    Process Order API in OrderManagement

    Extract trace file in oracle apps

    Oracle Applications Key Flex Field(KFF) list

    Oracle Apps Data Migration Strategy

    Oracle Apps DBA Interview Questions

    Oracle apps 4 beginners

    Working with FNDLOAD in OracleApps Introduction t...

    Comparison between XML Publisherand Oracle Report...

    Selecting multiple values in value setin Custom F...

    Oracle Apps Financials period closuremonitoring s...

    Oracle Function to convert number towords

    Oracle Apps Inventory period closuremonitoring sc...

    Oracle Apps Order Management (OM)Process Order AP...

    Creating a Custom Application inOracle Apps

    Sample FNDLOAD Scripts for AOLObjects

    Oracle Apps Engineering ChangeOrder (ECO) Materia...

    How to submit a concurrent programfrom pl sql

    Naming convention of oracle apps DBobjects

    USEFULL SITES

  • 8/10/2019 Be Happy and Make Others to Be Happy_ Descriptive Flexfields

    15/17

    9/14/2014 be happy and make others to be happy: Descriptive Flexfields

    http://krishnareddyoracleapps.blogspot.in/2012/07/descriptive-flexfields.html 15

    XML Publisher-report-from-rdf

    XML Publisher File Structure

    xml-publisher-using-a-data-template-and-xdodtexe

    Groups

    Report Parameters

    example-of-anchor

    about-report-anchoring

    Creating Parameters for ReportCharacter Mode Report

    creating-data-model-for-a-report

    about-data-model-columns

    about-data-links

    report-layout-types

    introduction-to-oracle-reports

    Layout Model-Multi-layout-reports

    report-builder-concepts

    oracle-report-releases

    oracle-reports-layout-components-and-types-of-layo...

    registering-a-report-in-oracle-applications

    set-default-printer-and-report-copies-for-an-user-...

    srw-set_attributes

    srw-set_maxrow

    srw-run_report

    srw-reference

    srw-program_abort

    srw-message

    srw-get_page_num

    srw-geterr_run

    srw-do_sql

    srw-do_sql_failure

    oracle-applications-postscript-printing-setup

    ii-printers-and-print-drivers-overview

    extract-trace-file-in-oracle-apps

    downloads-are-available-on-the-following-topics

    FLASHBACK,PURGE,DELETE,DROP

    ,TRUNCATE WITH Example...

    Flashback

    order management tables and itsdetails

    Order Management Drop Shipment,Functional Setup a...

    Total Credit related to a customer sql query

    Acoounts Receivables (AR) TablesInformation.

    Locks on oracle database & Oracleapplications Pro...

  • 8/10/2019 Be Happy and Make Others to Be Happy_ Descriptive Flexfields

    16/17

    9/14/2014 be happy and make others to be happy: Descriptive Flexfields

    http://krishnareddyoracleapps.blogspot.in/2012/07/descriptive-flexfields.html 16

    What are System Options andImportance?

    Production to DevelopmentRefresh/Clone Parameter ...

    Submitting Concurrent Request UsingFND_CONCURRENT...

    Descriptive Flexfields Overview andthe SQL to fin...

    Steps for Creating New Operating Unitin a multi o...

    Orcle apps architecture,apps tables

    GL_INTERFACE

    PO_INTERFACE

    OUTBOUND_INTERFACE

    August(16)

    September(33)

    November(3)

    December(2)

    2013(43)

    02C(5)

    AP(5)

    API(10)

    Apps-11i(17)

    AR(7)

    ARCHITECTURE OF ERP-EBS(2)

    Collections(2)

    Dataware House(10)

    DISCOVEER(1)

    EBS(20)

    ERP(22)

    ERP INFO(36)

    ETL Informatica Testing(5)

    FAQS(94)

    FND LOAD(2)

    FNDLOAD(4)

    GL(7)

    INFO(7)

    INFORMATICA(33)

    Interfaces(71)

    Interview Questions(18)KIRAN(24)

    KRISHNAVENI(15)

    NEW(30)

    OAF(2)

    Oracel Apps(38)

    ORACLE(22)

    Oracle PLSQL Exceptions(6)

    P2P(3)

    PL/SQL TUTORIAL(38)

    PLSQL(55)

    LABELS

  • 8/10/2019 Be Happy and Make Others to Be Happy_ Descriptive Flexfields

    17/17

    FISH

    Picture Window template. Template images by urbancow. Powered by Blogger.