be happy and make others to be happy_ oracle ebs r12 purchasing, inventory, order management queries

Upload: ganapathiraju-sravani

Post on 10-Oct-2015

168 views

Category:

Documents


1 download

DESCRIPTION

e Happy and Make Others to Be Happy_ Oracle EBS R12 Purchasing, Inventory, Order Management Queries

TRANSCRIPT

  • 5/20/2018 Be Happy and Make Others to Be Happy_ Oracle EBS R12 Purchasing, Inventory, Order Ma...

    http:///reader/full/be-happy-and-make-others-to-be-happy-oracle-ebs-r12-purchasin

    9/14/2014 be happy and make others to be happy: Oracle EBS R12 Purchasing, Inventory, Order Management Queries

    http://krishnareddyoracleapps.blogspot.in/2012/07/oracle-ebs-r12-purchasing-inventory.html

    be happy and make others to be happy

    WEDNESDAY, 18 JULY 2012

    Oracle EBS R12 Purchasing, Inventory, Order Management Queries

    To Find Duplicate Item Category Code

    SELECT category_set_name, category_concat_segments, COUNT (*)

    FROM mtl_category_set_valid_cats_v

    WHERE (category_set_id = 1)

    GROUP BY category_set_name, category_concat_segments

    HAVING COUNT (*) > 1

    ORDER BY category_concat_segments

    Get Number Of canceled requisition

    SELECT a.AUTHORIZATION_STATUS,(a.ORG_ID),(SELECT distinct

    hr.per_all_people_f.first_name|| || hr.per_all_people_f.middle_names|| ||

    hr.per_all_people_f.last_name Employee Name

    FROM hr.per_all_people_f

    where hr.per_all_people_f.PERSON_ID in

    (select employee_id from fnd_user fu where fu.user_id = a.CREATED_BY))

    CREATED_BY,count(SEGMENT1 )

    FROM

    po_requisition_headers_all a

    WHERE

    a.creation_date BETWEEN TO_DATE(01/01/2007, DD/MM/YYYY)

    and TO_DATE(30/05/2007, DD/MM/YYYY)

    and a.AUTHORIZATION_STATUS = CANCELLED

    group by a.AUTHORIZATION_STATUS,a.ORG_ID,a.CREATED_BY

    Number of line processed in Order Management

    SELECT COUNT (line_id) Order Line Processed

    FROM oe_order_lines_all

    WHERE creation_date BETWEEN TO_DATE (:Fdate, DD/MM/YYYY)

    AND TO_DATE (:tdate, DD/MM/YYYY)

    AND flow_status_code = CLOSED;

    To Check Item Catogry For Inventory master (No Of Segments May Varry)

    SELECT ood.organization_name,

    segment1|| -|| segment2|| -|| segment3 catgoryFROM org_organization_definitions ood,

    mtl_categories_vl mcv,

    mtl_category_sets mcs

    WHERE mcs.structure_id = mcv.structure_id

    ORDER BY ood.organization_name

    Check Locators for inventory Inventory Org Wise(Number of segment may varry)

    SELECT mil.segment1 loc_seg1, mil.segment11 loc_seg11, mil.segment2 loc_seg2,

    mil.segment3 loc_seg3, mil.segment4 loc_seg4, mil.segment5 loc_seg5,

    mil.segment6 loc_seg6,ood.ORGANIZATION_NAME,mil.SUBINVENTORY_CODE

    FROM mtl_item_locations mil,org_organization_definitions ood

    where mil.ORGANIZATION_ID = ood.ORGANIZATION_ID

    Oracle EBS R12 Purchasing, Inventory, Order Management Queries

    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

    http://www.blogger.com/https://www.blogger.com/next-blog?navBar=true&blogID=6398109836467832375http://www.blogger.com/http://www.blogger.com/http://www.blogger.com/home#createhttps://www.blogger.com/next-blog?navBar=true&blogID=6398109836467832375
  • 5/20/2018 Be Happy and Make Others to Be Happy_ Oracle EBS R12 Purchasing, Inventory, Order Ma...

    http:///reader/full/be-happy-and-make-others-to-be-happy-oracle-ebs-r12-purchasin

    9/14/2014 be happy and make others to be happy: Oracle EBS R12 Purchasing, Inventory, Order Management Queries

    http://krishnareddyoracleapps.blogspot.in/2012/07/oracle-ebs-r12-purchasing-inventory.html

    Display All Subinventories Setup

    select msi.secondary_inventory_name, MSI.SECONDARY_INVENTORY_NAME Subinventory,

    MSI.DESCRIPTION Description,

    MSI.DISABLE_DATE Disable Date, msi.PICKING_ORDER Picking Order,

    gcc1.concatenated_segments Material Account,

    gcc2.concatenated_segments Material Overhead Account,

    gcc3.concatenated_segments Resource Account,

    gcc4.concatenated_segments Overhead Account,

    gcc5.concatenated_segments Outside Processing Account,

    gcc6.concatenated_segments Expense Account,

    gcc7.concatenated_segments Encumbrance Account,

    msi.material_overhead_account,

    msi.resource_account,

    msi.overhead_account,

    msi.outside_processing_account,

    msi.expense_account,

    msi.encumbrance_account

    from mtl_secondary_inventories msi,

    gl_code_combinations_kfv gcc1,

    gl_code_combinations_kfv gcc2,

    gl_code_combinations_kfv gcc3,

    gl_code_combinations_kfv gcc4,

    gl_code_combinations_kfv gcc5,gl_code_combinations_kfv gcc6,

    gl_code_combinations_kfv gcc7

    where msi.material_account = gcc1.CODE_COMBINATION_ID(+)

    and msi.material_overhead_account = gcc2.CODE_COMBINATION_ID(+)

    and msi.resource_account = gcc3.CODE_COMBINATION_ID(+)

    and msi.overhead_account = gcc4.CODE_COMBINATION_ID(+)

    and msi.outside_processing_account = gcc5.CODE_COMBINATION_ID(+)

    and msi.expense_account = gcc6.CODE_COMBINATION_ID(+)

    and msi.encumbrance_account = gcc7.CODE_COMBINATION_ID(+)

    order by msi.secondary_inventory_name

    To Select Unit Of measure exist in ebusiness suite

    select uom_code,unit_of_measure

    from mtl_units_of_measure

    Query to find out Customer Master Information. Customer Name, Account Number,

    Adress etc.

    select

    p.PARTY_NAME,ca.ACCOUNT_NUMBER,loc.address1,loc.address2,loc.address3,loc.city,loc.post

    al_code,

    loc.country,ca.CUST_ACCOUNT_ID

    from apps.ra_customer_trx_all I,

    apps.hz_cust_accounts CA,

    apps.hz_parties P,

    apps.hz_locations Loc,

    apps.hz_cust_site_uses_all CSU,

    apps.hz_cust_acct_sites_all CAS,

    apps.hz_party_sites PS

    where I.COMPLETE_FLAG =Y

    and I.bill_TO_CUSTOMER_ID= CA.CUST_ACCOUNT_ID

    and ca.PARTY_ID=p.PARTY_ID

    and I.bill_to_site_use_id=csu.site_use_id

    and csu.CUST_ACCT_SITE_ID=cas.CUST_ACCT_SITE_ID

    and cas.PARTY_SITE_ID=ps.party_site_id

    and ps.location_id=loc.LOCATION_ID

    Query to find on Hand Quantity

    select sum(transaction_quantity) from MTL_ONHAND_QUANTITIES

    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 - BestPractices

    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 USINGINTERFACE

    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 ORACLE

    Receiables

  • 5/20/2018 Be Happy and Make Others to Be Happy_ Oracle EBS R12 Purchasing, Inventory, Order Ma...

    http:///reader/full/be-happy-and-make-others-to-be-happy-oracle-ebs-r12-purchasin

    9/14/2014 be happy and make others to be happy: Oracle EBS R12 Purchasing, Inventory, Order Management Queries

    http://krishnareddyoracleapps.blogspot.in/2012/07/oracle-ebs-r12-purchasing-inventory.html

    where inventory_item_id=9

    and organization_id=188

    Qunatity on order, Expected Deliver

    select sum(ordered_quantity),a.SCHEDULE_SHIP_DATE

    from oe_order_lines_all a

    where inventory_item_id=10

    and ship_from_org_id=188

    group by a.SCHEDULE_SHIP_DATE

    Query to find Item Code, Item Description Oracle Item Master Query

    select item, description from mtl_system_items_b

    where inventory_item_id=&your_item

    and organization_id=&organization_id) item

    Query to Find out On Hand Quantity of specific Item Oracle inventory

    select sum(transaction_quantity) from mtl_onhand_quantity_details

    where inventory_item_id=&your_item

    and organization_id=&organization_id

    Qty On Order,

    Expected deivery date(select sum(ordered_quantity),

    scheduled_ship_date from oe_order_lines_all

    where inventory_item_id=&your_item

    and ship_from_org_id=&organization_id

    group by scheduled_ship_date) order_info

    Total Received Qty

    select sum(transaction_quantity) from mtl_material_transactions

    inventory_item_id=&your_item

    and organization_id=&organization_id

    and transaction_quantity>0)

    Total received Qty in 9 months

    select sum(transaction_quantity) from mtl_material_transactions

    inventory_item_id=&your_item

    and organization_id=&organization_id

    and transaction_quantity>0

    and transaction_date between trunc(sysdate) and trunc(sysdate-270))

    Total issued quantity in 9 months

    select sum(transaction_quantity) from mtl_material_transactions

    inventory_item_id=&your_item

    and organization_id=&organization_id

    and transaction_quantity

  • 5/20/2018 Be Happy and Make Others to Be Happy_ Oracle EBS R12 Purchasing, Inventory, Order Ma...

    http:///reader/full/be-happy-and-make-others-to-be-happy-oracle-ebs-r12-purchasin

    9/14/2014 be happy and make others to be happy: Oracle EBS R12 Purchasing, Inventory, Order Management Queries

    http://krishnareddyoracleapps.blogspot.in/2012/07/oracle-ebs-r12-purchasing-inventory.html

    Newer Post Older PostHome

    Subscribe to: Post Comments (Atom)

    Posted by Krishnareddy at 06:24

    Another Query to Get Onhand Qty With Oranization ID, Item Code, Quantity

    SELECT organization_id,

    (SELECT ( msib.segment1|| -|| msib.segment2|| -|| msib.segment3|| -|| msib.segment4)

    FROM mtl_system_items_b msib

    WHERE msib.inventory_item_id = moq.inventory_item_id

    AND msib.organization_id = moq.organization_id) Item Code,

    (SELECT description

    FROM mtl_system_items_b msib

    WHERE msib.inventory_item_id =

    moq.inventory_item_id

    AND msib.organization_id = moq.organization_id)

    item Description,

    SUM (moq.transaction_quantity) onhandqty

    FROM mtl_onhand_quantities moq

    GROUP BY moq.organization_id, (moq.inventory_item_id)

    Recommend this on Google

    Enter your comment...

    Comment as: Google Accou

    Publish

    Preview

    1 comment:

    Oracle Techinical &functional 18 September 2012 06:21

    Reply

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

    EBS Bursting

    ERP Overview

    DICOVERER

    ADF

    AOL

    VARRAYS

    TRIGGERS

    Installing EBS 12.1.1 on Redhat ES6.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 Using

    OE_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

    http://krishnareddyoracleapps.blogspot.com/2012/07/oracle-ebs-r12-purchasing-inventory.html?showComment=1347974505314#c3877346805593140612http://www.blogger.com/share-post.g?blogID=6398109836467832375&postID=7206768241969596801&target=pinteresthttp://www.blogger.com/share-post.g?blogID=6398109836467832375&postID=7206768241969596801&target=facebookhttp://www.blogger.com/share-post.g?blogID=6398109836467832375&postID=7206768241969596801&target=twitterhttp://www.blogger.com/share-post.g?blogID=6398109836467832375&postID=7206768241969596801&target=bloghttp://www.blogger.com/share-post.g?blogID=6398109836467832375&postID=7206768241969596801&target=emailhttp://krishnareddyoracleapps.blogspot.in/2012/07/oracle-ebs-r12-purchasing-inventory.html
  • 5/20/2018 Be Happy and Make Others to Be Happy_ Oracle EBS R12 Purchasing, Inventory, Order Ma...

    http:///reader/full/be-happy-and-make-others-to-be-happy-oracle-ebs-r12-purchasin

    9/14/2014 be happy and make others to be happy: Oracle EBS R12 Purchasing, Inventory, Order Management Queries

    http://krishnareddyoracleapps.blogspot.in/2012/07/oracle-ebs-r12-purchasing-inventory.html

    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 Ordeusing OE_ORDER...

    Create an RMA via Process Order AP

    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 QueriesOracle 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 Types

    Script to Report Collection Types

    Script to Generate DDL for Synonyms

    Script to Report Database Locks

    Script ro Report Current Internal Lock

    Script to Report Datafile ArchiveStatus

    Script to Report System PrivilegesGranted to User...

    Script for Hot UNIX Backup

    Report all invalid objects in a databas

  • 5/20/2018 Be Happy and Make Others to Be Happy_ Oracle EBS R12 Purchasing, Inventory, Order Ma...

    http:///reader/full/be-happy-and-make-others-to-be-happy-oracle-ebs-r12-purchasin

    9/14/2014 be happy and make others to be happy: Oracle EBS R12 Purchasing, Inventory, Order Management Queries

    http://krishnareddyoracleapps.blogspot.in/2012/07/oracle-ebs-r12-purchasing-inventory.html

    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 Ordeusing OE_ORDER...

    SQL-EXAMPLES

    Oracle apps technical interviewquestions

    FNDLOAD

    APPS-Finace Tables of 11i

    Accounting-for-oracle-receivables-11

    Autoinvoice-interface-tables -11i

    GL-Questions

    AR Interview Questions

    Oracle apps technical interviewquestions

    Customer Interface TablesDescriptions and Validat...

    PROCEDURES, FUNCTIONS ANDPACKAGES

    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

  • 5/20/2018 Be Happy and Make Others to Be Happy_ Oracle EBS R12 Purchasing, Inventory, Order Ma...

    http:///reader/full/be-happy-and-make-others-to-be-happy-oracle-ebs-r12-purchasin

    9/14/2014 be happy and make others to be happy: Oracle EBS R12 Purchasing, Inventory, Order Management Queries

    http://krishnareddyoracleapps.blogspot.in/2012/07/oracle-ebs-r12-purchasing-inventory.html

    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 Locatio

    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...

  • 5/20/2018 Be Happy and Make Others to Be Happy_ Oracle EBS R12 Purchasing, Inventory, Order Ma...

    http:///reader/full/be-happy-and-make-others-to-be-happy-oracle-ebs-r12-purchasin

    9/14/2014 be happy and make others to be happy: Oracle EBS R12 Purchasing, Inventory, Order Management Queries

    http://krishnareddyoracleapps.blogspot.in/2012/07/oracle-ebs-r12-purchasing-inventory.html

    Operating Unit name based on theOperating Unit ID...

    INV On-hand Quatity of one ParticulaItem in whol...

    INV On-hand Quatity of one ParticulaItem in whol...

    Retrieves all PO transaction quantities

    SQL Statement to get the 2nd highestsalaried/ nth...

    CHECK CONSTRAINTS ONSYSDATE IN ORACLE

    sql

    Oracle Data types

    Division of SQL

    Group by , Having ,Order by

    Built In Function in Oracle

    SQL QUERIES (1-173) WITH ANS

    Set Operators

    Sub Queries Or Nested Queries

    Constraints

    Joins

    VIEWS

    Sequences

    Clusters

    Partitions

    CURSORS

    TRIGGER

    PROCEDURES

    FUNCTIONS

    EXCEPTION HANDLING

    materialized view

    Explain Plan,Plan Table

    SQL*LOADER

    Oracle Query Tuning

    What Are Regular Expressions?

    Introduction to Shell Scripting

    Why do we Use Shell Scripting

    Basic Commands Part1

    basic-commands-part2

    zipping-files

    Pattern-Searching

    Pattern-Matching

    Control-Structures

    Sample-Unix-Shell-Scripts

    shell-scripts in real time

    shell-scripts-for-beginners

    What Are Regular Expressions?

    FTP,Process a File line by line

    Informatica version Upgrade Process

    ETL-LIFE CYCLE

  • 5/20/2018 Be Happy and Make Others to Be Happy_ Oracle EBS R12 Purchasing, Inventory, Order Ma...

    http:///reader/full/be-happy-and-make-others-to-be-happy-oracle-ebs-r12-purchasin

    9/14/2014 be happy and make others to be happy: Oracle EBS R12 Purchasing, Inventory, Order Management Queries

    http://krishnareddyoracleapps.blogspot.in/2012/07/oracle-ebs-r12-purchasing-inventory.html

    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

  • 5/20/2018 Be Happy and Make Others to Be Happy_ Oracle EBS R12 Purchasing, Inventory, Order Ma...

    http:///reader/full/be-happy-and-make-others-to-be-happy-oracle-ebs-r12-purchasin

    9/14/2014 be happy and make others to be happy: Oracle EBS R12 Purchasing, Inventory, Order Management Queries

    http://krishnareddyoracleapps.blogspot.in/2012/07/oracle-ebs-r12-purchasing-inventory.html

    IDENTIFICATION OFBOTTLENECKS

    Optimizing the Bottlenecks

    PERFORMANCE TUNING OFLOOKUP TRANSFORMATIONS

    PUSH DOWN OPTIMISATION

    Interfaces

    XMLPUBLISHER--Template Based oParameter

    IMPLIMENTATION

    queries

    SCRIPTS1

    White Paper on Oracle Apps MigratioProject

    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 LOGO

    Copying 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,_AVNobjects

    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

  • 5/20/2018 Be Happy and Make Others to Be Happy_ Oracle EBS R12 Purchasing, Inventory, Order Ma...

    http:///reader/full/be-happy-and-make-others-to-be-happy-oracle-ebs-r12-purchasin

    9/14/2014 be happy and make others to be happy: Oracle EBS R12 Purchasing, Inventory, Order Management Queries

    http://krishnareddyoracleapps.blogspot.in/2012/07/oracle-ebs-r12-purchasing-inventory.html

    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 - 4

    SQL 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

  • 5/20/2018 Be Happy and Make Others to Be Happy_ Oracle EBS R12 Purchasing, Inventory, Order Ma...

    http:///reader/full/be-happy-and-make-others-to-be-happy-oracle-ebs-r12-purchasin

    9/14/2014 be happy and make others to be happy: Oracle EBS R12 Purchasing, Inventory, Order Management Queries

    http://krishnareddyoracleapps.blogspot.in/2012/07/oracle-ebs-r12-purchasing-inventory.html

    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 ofprofiles,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

  • 5/20/2018 Be Happy and Make Others to Be Happy_ Oracle EBS R12 Purchasing, Inventory, Order Ma...

    http:///reader/full/be-happy-and-make-others-to-be-happy-oracle-ebs-r12-purchasin

    9/14/2014 be happy and make others to be happy: Oracle EBS R12 Purchasing, Inventory, Order Management Queries

    http://krishnareddyoracleapps.blogspot.in/2012/07/oracle-ebs-r12-purchasing-inventory.html

    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 Ordeusing OE_ORDER...

    Create an RMA via Process Order AP

    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 (OMProcess Order AP...

    Oracle E-Business Suite (EBS)Architecture

    MD-50-and-MD-70-documents-oracleapplication-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

  • 5/20/2018 Be Happy and Make Others to Be Happy_ Oracle EBS R12 Purchasing, Inventory, Order Ma...

    http:///reader/full/be-happy-and-make-others-to-be-happy-oracle-ebs-r12-purchasin

    9/14/2014 be happy and make others to be happy: Oracle EBS R12 Purchasing, Inventory, Order Management Queries

    http://krishnareddyoracleapps.blogspot.in/2012/07/oracle-ebs-r12-purchasing-inventory.html

    processed

    SRW.SET_attributes

    oracle-apps-account-receivable-tables

    Process Flows

    What is ERP (Enterprise ResourcePlanning)

    SCM Glossary

    Inventory Glossary

    Important LinksWait 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 (OMProcess 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

  • 5/20/2018 Be Happy and Make Others to Be Happy_ Oracle EBS R12 Purchasing, Inventory, Order Ma...

    http:///reader/full/be-happy-and-make-others-to-be-happy-oracle-ebs-r12-purchasin

    9/14/2014 be happy and make others to be happy: Oracle EBS R12 Purchasing, Inventory, Order Management Queries

    http://krishnareddyoracleapps.blogspot.in/2012/07/oracle-ebs-r12-purchasing-inventory.html

    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 Report

    Character 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-printingsetup

    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...

  • 5/20/2018 Be Happy and Make Others to Be Happy_ Oracle EBS R12 Purchasing, Inventory, Order Ma...

    http:///reader/full/be-happy-and-make-others-to-be-happy-oracle-ebs-r12-purchasin

    9/14/2014 be happy and make others to be happy: Oracle EBS R12 Purchasing, Inventory, Order Management Queries

    http://krishnareddyoracleapps.blogspot.in/2012/07/oracle-ebs-r12-purchasing-inventory.html

    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 Unin 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

  • 5/20/2018 Be Happy and Make Others to Be Happy_ Oracle EBS R12 Purchasing, Inventory, Order Ma...

    http:///reader/full/be-happy-and-make-others-to-be-happy-oracle-ebs-r12-purchasin

    FISH

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