Bw table names required

i require
1>     Table name for new requests loaded in ODS / Functional Module.
2>     Table name for number of packets loaded in each request.
plz help..

RSREQDONE

Similar Messages

  • Table name required to find tax value in each PO items

    Hi Guys,
    Need table name where the Tax percentage or amount is maintained for each po line items.
    I tried in KOMG but it a structure and i cannot able to fetch the values.
    Let me know if more details are required for better requirement identification
    Regards
    palani

    hi
    TAX TABLES
    for excise check table J_1IEXCHDR for header
    J_1IEXCDTL for item excise
    The Table name used to find the Tax Values are
    KOMV: Pricing Communications-Condition Record
    KONV: Conditions (Transaction Data)
    From the above tables you can refer the fields below.
    KAWRT
    KBETR
    Fetch the corresponding records based on the field
    KNTYP
    regards
    kunal

  • GL Table Name Require

    Hi,
    I want to know in which GL table i can get following information.
    GL Code     Document No.     Posting Date     Entry Time     Amount.
    Regards,
    Nilesh Surve.
    Moderator: Please, search before posting

    Hi Nilesh,
    You can not find this information in one single table. Please try the below easiest method to get information:
    Execute transaction SQVI
    Give some name and create
    Pop Up apprears, give titile and in Data Source select, table join
    Press Shift+F1
    Give table name BKPF
    Press Shift+F1 again
    Give table name as SBIS or BSAS depending upon the requirement to get clear item or open items
    Press back butto
    Expand the nodes in left side of screen
    Select the items based on which you want to extract the data from table and select the filed for output which you wnat to see in ouput
    Press execute button.
    Belive me by this time you have already created a SAP quick viewer query and by executing you will have the required data.
    Hope this helps!!!
    Murlidhar Khatri

  • Crm table names required

    Hi
    i want to get all the activities/leads/opportunities id's for particular sales org created in last 6 months
    could u please kindly suggest how can i develop quickviewr query (SA38)and what are the table name that i should use for linking to extract o/p
    As it is an urgent requirement i request you to kindly throw some light on this
    Regards
    Vinay

    hi,
    why dont you use the standard search functionality. Once you get the result then do the change layout and filter out the records.
    For activities you can use the Activity monitor and for Oppurtunities, lead and order toy can use the standard search functionality.
    Hope this helps.
    Regards
    Arun Kumar
    <b>Reward Points if it helps you</b>

  • Reg:Table name require

    Hi ,
    Can you pls tell me what is the table name for open and closed items.

    Please check BSID for Open items  and BSAD for Cleared items.
    Regards,
    Sash

  • Urgent ...Table name Require for appraisal competency

    Hi All,
    can some one help me to sort out this issue.
    how can i know where the appraisal competency information is storing(i mean table names).
    i mean when appraiser enter the competency for his appraise.
    Thanks.
    Edited by: user627525 on Mar 17, 2009 4:35 AM

    Or try this query is you want a rating that gives u a number 0-5 for performance rating. I did this query a while ago. it also gives rating for the last 3-4 years. HR also wanted the rating rounded off. so i included that but i am sure u dont need it
    select distinct peo.person_id
    ,AK.AK_RATING "Final 2005/6"
    ,AK_DATE
    ,AC.AC_RATING "Final 2006/7"
    ,AC.AC_Date
    ,AF_Rating "Final 2007/8"
    ,AF_DATE
    ,nvl(to_char(AG.AG_Rating),'Not Yet Reviewed') "Current Rating 1st 6 mnths"
    ,nvl(to_char(AR.AR_RATING),'Not Yet Reviewed') "Current Rating 2nd 6 mnths"
    ,AG_DATE
    from hr.per_all_people_f peo,
    hr.per_all_assignments_f paa
    ,(SELECT DISTINCT peo.person_id AK_person_id
    ,pr.performance_rating AK_rating
    , pr.review_date AK_date
    FROM apps.per_performance_reviews pr,
    hr.per_all_people_f peo
    WHERE pr.person_id = peo.person_id
    and pr.review_date = (select pr1.review_date
    from apps.per_performance_reviews pr1
    where pr1.person_id = peo.person_id
    and pr1.review_date between '01-May-2006' and '31-Oct-2006' ) )AK
    ,(SELECT DISTINCT peo.person_id AP_person_id
    , case when pr.performance_rating <= 0.5 then '0'
    when pr.performance_rating > 0.5 and pr.performance_rating <= 1.5 then '1'
    when pr.performance_rating > 1.5 and pr.performance_rating <= 2.5 then '2'
    when pr.performance_rating > 2.5 and pr.performance_rating <= 3.5 then '3'
    when pr.performance_rating > 3.5 and pr.performance_rating <= 4.5 then '4'
    when pr.performance_rating > 4.5 and pr.performance_rating <= 5 then '5'
    when pr.performance_rating = 9 then '9'
    end ROUNDED_RATING
    ,pr.review_date AP_date
    FROM apps.per_performance_reviews pr,
    hr.per_all_people_f peo
    WHERE pr.person_id = peo.person_id
    and pr.review_date = (select pr1.review_date
    from apps.per_performance_reviews pr1
    where pr1.person_id = peo.person_id
    and pr1.review_date between '01-May-2006' and '31-Oct-2006' ) )AP
    ,(SELECT DISTINCT peo.person_id AC_person_id
    ,pr.performance_rating AC_rating
    , pr.review_date AC_date
    FROM apps.per_performance_reviews pr,
    hr.per_all_people_f peo
    WHERE pr.person_id = peo.person_id
    and pr.review_date = (select pr1.review_date
    from apps.per_performance_reviews pr1
    where pr1.person_id = peo.person_id
    and pr1.review_date between '01-May-2007' and '31-Oct-2007' ) )AC
    ,(SELECT DISTINCT peo.person_id AA_person_id
    , case when pr.performance_rating <= 0.5 then '0'
    when pr.performance_rating > 0.5 and pr.performance_rating <= 1.5 then '1'
    when pr.performance_rating > 1.5 and pr.performance_rating <= 2.5 then '2'
    when pr.performance_rating > 2.5 and pr.performance_rating <= 3.5 then '3'
    when pr.performance_rating > 3.5 and pr.performance_rating <= 4.5 then '4'
    when pr.performance_rating > 4.5 and pr.performance_rating <= 5 then '5'
    when pr.performance_rating = 9 then '9'
    end ROUNDED_RATING
    , pr.review_date AA_date
    FROM apps.per_performance_reviews pr,
    hr.per_all_people_f peo
    WHERE pr.person_id = peo.person_id
    and pr.review_date = (select pr1.review_date
    from apps.per_performance_reviews pr1
    where pr1.person_id = peo.person_id
    and pr1.review_date between '01-May-2007' and '31-Oct-2007' ) )AA
    ,(SELECT pr.person_id AF_Person_Id,
    pr.performance_rating AF_Rating,
    pr.review_date AF_Date
    FROM apps.per_performance_reviews pr,
    hr.per_all_people_f peo
    WHERE pr.person_id = peo.person_id
    and pr.REVIEW_DATE between '01-May-2008' and '31-Oct-2008' )AF
    ,(SELECT pr.person_id AB_Person_Id
    , case when pr.performance_rating <= 0.5 then '0'
    when pr.performance_rating > 0.5 and pr.performance_rating <= 1.5 then '1'
    when pr.performance_rating > 1.5 and pr.performance_rating <= 2.5 then '2'
    when pr.performance_rating > 2.5 and pr.performance_rating <= 3.5 then '3'
    when pr.performance_rating > 3.5 and pr.performance_rating <= 4.5 then '4'
    when pr.performance_rating > 4.5 and pr.performance_rating <= 5 then '5'
    when pr.performance_rating = 9 then '9'
    end ROUNDED_RATING
    ,pr.review_date AB_Date
    FROM apps.per_performance_reviews pr,
    hr.per_all_people_f peo
    WHERE pr.person_id = peo.person_id
    and pr.REVIEW_DATE between '01-May-2008' and '31-Oct-2008' )AB
    ,(SELECT pr.person_id AG_Person_Id,
    pr.performance_rating AG_Rating,
    pr.review_date AG_Date
    FROM apps.per_performance_reviews pr,
    hr.per_all_people_f peo
    WHERE pr.person_id = peo.person_id
    and pr.REVIEW_DATE between '01-Nov-2008' and '30-Apr-2009' )AG
    ,(SELECT pr.person_id AQ_Person_Id
    , case when pr.performance_rating <= 0.5 then '0'
    when pr.performance_rating > 0.5 and pr.performance_rating <= 1.5 then '1'
    when pr.performance_rating > 1.5 and pr.performance_rating <= 2.5 then '2'
    when pr.performance_rating > 2.5 and pr.performance_rating <= 3.5 then '3'
    when pr.performance_rating > 3.5 and pr.performance_rating <= 4.5 then '4'
    when pr.performance_rating > 4.5 and pr.performance_rating <= 5 then '5'
    when pr.performance_rating = 9 then '9'
    end ROUNDED_RATING
    ,pr.review_date AQ_Date
    FROM apps.per_performance_reviews pr,
    hr.per_all_people_f peo
    WHERE pr.person_id = peo.person_id
    and pr.REVIEW_DATE between '01-Nov-2008' and '30-Apr-2009' )AQ
    ,(SELECT pr.person_id AR_Person_Id,
    nvl(pr.performance_rating,0) AR_Rating,
    pr.review_date AR_Date
    FROM apps.per_performance_reviews pr,
    hr.per_all_people_f peo
    WHERE pr.person_id = peo.person_id
    and pr.REVIEW_DATE between '01-May-2009' and '31-Oct-2009' )AR
    ,(SELECT pr.person_id AU_Person_Id
    , case when pr.performance_rating <= 0.5 then '0'
    when pr.performance_rating > 0.5 and pr.performance_rating <= 1.5 then '1'
    when pr.performance_rating > 1.5 and pr.performance_rating <= 2.5 then '2'
    when pr.performance_rating > 2.5 and pr.performance_rating <= 3.5 then '3'
    when pr.performance_rating > 3.5 and pr.performance_rating <= 4.5 then '4'
    when pr.performance_rating > 4.5 and pr.performance_rating <= 5 then '5'
    when pr.performance_rating = 9 then '9'
    end ROUNDED_RATING
    ,pr.review_date AU_Date
    FROM apps.per_performance_reviews pr,
    hr.per_all_people_f peo
    WHERE pr.person_id = peo.person_id
    and pr.REVIEW_DATE between '01-May-2009' and '31-Oct-2009' )AU
    where peo.person_id = paa.person_id
    and trunc(sysdate) between peo.effective_start_date and peo.effective_end_date
    and trunc(sysdate) between paa.effective_start_date and paa.effective_end_date
    AND peo.CURRENT_EMPLOYEE_FLAG = 'Y'
    AND paa.PRIMARY_FLAG = 'Y'
    AND paa.ORGANIZATION_ID != 1301
    AND peo.EMPLOYEE_NUMBER != '0000001'
    AND peo.BUSINESS_GROUP_ID = '82'
    and AC.AC_person_id(+) = peo.person_id
    AND AF.AF_PERSON_ID(+) = PEO.PERSON_ID
    and AG.AG_PERSON_ID(+) = PEO.PERSON_ID
    and AK.AK_PERSON_ID(+) = peo.person_id
    AND AA.AA_PERSON_ID(+) = PEO.PERSON_ID
    AND AB.AB_PERSON_ID(+) = PEO.PERSON_ID
    and AP.AP_PERSON_ID(+) = PEO.PERSON_ID
    and AR.AR_PERSON_ID(+) = PEO.PERSON_ID
    and AQ.AQ_PERSON_ID(+) = PEO.PERSON_ID
    and AU.AU_PERSON_ID(+) = PEO.PERSON_ID
    order by peo.person_id -- , pr.review_date desc

  • Table names required in BPS

    Hi ,
    Can anybody please tell me the table names from where i can find the following information ?
    Planning folder names
    Planning profile
    Planning layout
    BPS  programs
    FOX functions
    exit function
    I had a look at the UPC_* , UPS_* tables but couldnt identify the above mentioned objects .
    Regards
    Ankush

    Hi,
    These are the tables
    UPC_PROFILE - Planning Profile
    UPB_PS_PROP - folders
    UPP_PARAMT - plng layouts
    UPF_PARGD - Plng functions
    TFDIR - Exit functions
    Regards,
    Bindu

  • Tables name required

    dear Friends
    Please let me know in which tables the following Datas are stored
    1. PO
    2. PR
    3. GR
    4. Invoice
    5. FBL1N
    Sakthi.K

    Hi, here are all the tables U asked for - even more:
    MM-PUR (Purchasing)
    EBAN           Purchase Requisition                            
    EBKN           Purchase Requisition Account Assignment         
    EBUB           Index for Stock Transport Requisitions for Materi
    EINA           Purchasing Info Record: General Data            
    EINE           Purchasing Info Record: Purchasing Organization D
    EIPA           Order Price History: Info Record                
    EKAB           Release Documentation                           
    EKAN           Vendor Address: Purchasing Document             
    EKBE           History per Purchasing Document                 
    EKBEH          Removed PO History Records                      
    EKBZ           History per Purchasing Document: Delivery Costs 
    EKBZH          History per Purchasing Document: Delivery Costs 
    EKEH           Scheduling Agreement Release Documentation      
    EKEK           Header Data for Scheduling Agreement Releases   
    EKES           Vendor Confirmations                            
    EKET           Scheduling Agreement Schedule Lines             
    EKETH          Scheduling Agreement Schedules: History Tables  
    EKKI           Purchasing Condition Index                      
    EKKN           Account Assignment in Purchasing Document
    EKKO           Purchasing Document Header                       
    EKPA           Partner Roles in Purchasing                      
    EKPB           "Material Provided" Item in Purchasing Document  
    EKPO           Purchasing Document Item                         
    EKPV           Shipping-Specific Data on Stock Tfr. for Purch. D
    EKRS           ERS Procedure: Goods (Merchandise) Movements to b
    EKUB           Index for Stock Transport Orders for Material    
    EORD           Purchasing Source List                           
    EQUK           Quota File: Header                               
    EQUP           Quota File: Item                                 
    T024           Purchasing Groups                                
    T024E          Purchasing Organizations                         
    T024W          Valid Purchasing Organizations for Plant         
    T024Z          Purchasing Organizations                         
    T027A          Shipping Instructions, Purchasing                
    T027B          Texts: Shipping Instructions                     
    T027C          Codes for Compliance with Shipping Instructions  
    T027D          Compliance with Shipping Instructions: Texts     
    T069           Certificate Categories                           
    T069Q          Control Data for Source Determination and Checkin
    T069T          Certificate Categories: Text Description         
    T160           SAP Transaction Control, Purchasing              
    T160B          SAP Transaction Control, List Displays, Purchasin
    T160C          SAP Transaction Control for List Displays in CALL
    T160D          Function Authorizations: Purchase Order          
    T160E          Function Authorizations: Purchasing: Descriptions
    T160I          Control of Intrastat Reports                    
    T160J          Text Table for Intrastat Reports                
    T160L          Scope of Purchasing Lists                       
    T160M          Message Control: Purchasing (System Messages)   
    T160O          Description of Scope of List                    
    T160P          Entities Table Routines                         
    T160Q          Scope of List: Buyer's Negotiation Sheet: Routine
    T160R          Routines for Buyer's Negotiation Sheet          
    T160S          Selection Parameters for Purchasing Lists       
    T160T          Description of Selection Parameters             
    T160V          Default Values for Purchasing                   
    T160W          Description for Default Values for Purchasing Ope
    T160X          Scope of List: Buyer's Negotiation Sheet        
    T160Y          Scope of List: Buyer's Negotiation Sheet: Descrip
    T161           Purchasing Document Types                       
    T161A          Linkage of Requisition Doc. Type to Purchasing Do
    T161B          Default Business Transaction Type for Import    
    T161E          Release Codes                                   
    T161F          Release Point Assignment for Purchase Requisition
    T161G          Release Prerequisite, Purchase Requisition      
    T161H          Fields for Release Procedure, Purchase Requisitio
    T161I          Determination of Release Strategy               
    T161M          Fine-Tuned Control: Message Types               
    T161N          Message Determination Schemas: Assignment       
    T161P          Check of Document Type, Document Category, Item C
    T161R          REORG Control, Purchasing                       
    T161S          Release Indicator, Purchase Requisition         
    T161T          Texts for Purchasing Document Types             
    T161U          Texts for Release Indicator                     
    T161V          Shipping-Specific Data for Stock Tfr. for Purch.
    T161W          Order Types for Stock Transfer                  
    T161Z          Additional Checks for Outline Agreements on Reorg
    T162           Field Selection, Purchasing Document            
    T162K          Field Selection, Account Assignment Fields, Purch
    T162T          Description of Field Selection Reference Key    
    T162X          Description of Field Groups from T162/T162K     
    T162Y          Groups: Field Selection                         
    T163           Item Categories in Purchasing Document          
    T163A          Check Item Category/Account Assignment Category 
    T163B          Purchase Order History Categories               
    T163C          Texts for Purchase Order History Categories     
    T163D          Assignment Internal/External Confirmation Categor
    T163E          Confirmation Categories                         
    T163F          Confirmation Categories: Descriptions           
    T163G          Confirmation Control                            
    T163I          Texts for Account Assignment Categories         
    T163K          Account Assignment Categories in Purchasing Docum
    T163KS         Assignment of Tax Indicator to Account Assignment
    T163L          Confirmation Control Keys                       
    T163M          Confirmation Control Keys: Description           
    T163P          Release Creation Profile                         
    T163S          Description for Release Creation Profile         
    T163X          "Zombie" T163X                                   
    T163Y          Texts for Item Categories                        
    T165K          Copying Options: Header Texts                    
    T165P          Copying Options: Item texts                      
    T166A          Supplement Text in Purchasing Document Printouts 
    T166C          Print-Relevant Purchasing Document Changes       
    T166K          Header Texts in Purchasing Document Printouts    
    T166P          Item Texts in Purchasing Document Printouts      
    T166T          Change Texts in Purchasing Document Printouts    
    T166U          Headings in Purchasing Document Printout         
    T167           Number Range Management for Purchasing Master Dat
    T167T          Transaction Description                          
    T168           Screen Control, Purchasing                       
    T168F          Function Codes, Purchasing                       
    T168T          Screen Titles                                    
    T16FB          Release Indicators: Purchasing Document          
    T16FC          Release Codes                                    
    T16FD          Description of Release Codes                     
    T16FE          Descriptions of Release Indicators: Purchasing Do
    T16FG          Release Groups                                   
    T16FH          Descriptions of Release Groups                   
    T16FK          Release Statuses                                 
    T16FS          Release Strategies                               
    MM-IM (Inventory Mmgt):
    CHVW            Table CHVW for Batch Where-Used List            
    CHVW_IDX        Batch Where-Used Index Table for Selection of Da
    IKPF            Header: Physical Inventory Document             
    ISEG            Physical Inventory Document Items               
    MARI            Short document: material movement               
    MIGO_INIT       Control Table for Operation in Transaction MIGO 
    MKPF            Header: Material Document                       
    MKPF_ARIDX      Index table for single doc. access to archive MM
    MMIM_PRED       MM-IM Temporary Data                            
    MMIM_PREDOC_ORG Parked Material Documents, Organizational Data  
    MMIM_REP_PRINT  Print Settings, Reporting MM-IM                 
    MSEG            Document Segment: Material                      
    RESB            Reservation/dependent requirements              
    RKPF            Document Header: Reservation                    
    MM-MR (Incoming Invoices)
    BSIM  Secondary Index, Documents for Material
    K003  Sales Tax, Germany                                       
    RKWA  Consignment Withdrawals                                  
    T066  Screen Selection, Invoice Verification                   
    T066K Window Coordinates, Invoice Verification/Valuation       
    T169  SAP Transaction Control, Invoice Verification/Valuation  
    T169A Posting String for Invoice Verification                  
    T169B Notifiable PO Supplement Types                           
    T169D Invoice Verification: Amount Check                       
    T169E Tolerance Limit Keys                                     
    T169F Transaction-Dependent Defaults: Invoice Verification     
    T169G Tolerance Limits, Invoice Verification                   
    T169K Default Values, Account Maintenance                      
    T169O Account Assignment Block: Fields To Be Excluded from IV  
    T169P Parameters, Invoice Verification                         
    T169R MR Document Reorganization - Document Validity Period    
    T169S Tolerance Limit Keys                                     
    T169T Text Table for Tolerance Limits                          
    T169V Default Values, Invoice Verification                     
    T169W Posting Strings (Values) for SAPMM08R                    
    T169X Transaction Texts: Invoice Verification                  
    MM-MRM    
    RBCO         Document Item, Incoming Invoice, Account Assignment
    RBDIFFKO     Invoice Verification - Conditions                  
    RBDIFFME     Batch Invoice Verification - Quantity Differences  
    RBDRSEG      Batch IV: Invoice Document Items                   
    RBKP         Document Header: Invoice Receipt                   
    RBKPB        Invoice Document Header (Batch Invoice Verification
    RBKP_BLOCKED Logistics Invoice Verification: Blocked Invoices   
    RBSELBEST    Invoice Receipt, Purchasing Documents Selection    
    RBSELERFB    Invoice Receipt, Service Entry Sheet Selection     
    RBSELFRBR    Invoice Receipt, Bills of Lading Selection         
    RBSELLBLN    Invoice Receipt, Bills of Lading Selection         
    RBSELLIFS    Invoice Receipt, Delivery Notes Selection          
    RBSELWERK    Invoice Receipt, Plants Selection                  
    RBTX         Taxes: Incoming Invoice                            
    RBVD         Invoice Document - Aggregation Data                
    RBVDMAT      Invoice Verification - Aggregation Data, Material  
    RBVS         Invoice Verification: Split Invoice Amount         
    RBWS         Withholding Tax Data, Incoming Invoice             
    RBWT         Withholding Tax Data, Incoming Invoice             
    RSEG         Document Item: Incoming Invoice                    
    T003R        Number Ranges RE_BELEG (Logistics Invoice Verificat
    T003S        Document Types for Storing Documents (Log. IV)     
    How to get these? - Call SE16 and Press <F4> and seelect in the Pop-Up
    "SAP Applications" and then browse through "MM" . . .
    Hope this helps - plse reward if helpful.

  • Table names required for workflow definition

    Hi All,
    I need to know which tables stores all the task level information for a given workflow.
    Also alongwith the above query need to know which table stores information of exception and parameter for BOR methods.
    Thanks in advance,
    Imran

    Hi Imran,
    If I understand your query... you need a table that stores information of the workitems.
    See if the table SWWWIHEAD (Header Table for all Work Item Types) helps you.
    Hope this helps!
    Regards,
    Saumya

  • Require  field name , Table name

    Hi All,
    For a Z development i need a field name & table name
    the requirement is for which FG material this SFG is produced.,suppose A is the FG material
    X,Y,Z are the semifinished materials required to produce A ., when going for production for X or Y o Z it should tell for which Fg this is produced
    Please give your input
    Regards
    Anand Srinivasan

    Hi
    Have checked RESB & AUFM tables before but couldnt get the FG link, it is pegged to the next level only
    If you keep on passing the pegged requirements then only the FG link is coming
    at the time of prodn order creation of SFG they want to generate this report
    The backdrop  in this is the same  SFG can be used in many FG
    Regards
    Anand Srinivasan

  • How to identify field names and table names as per the client requirement

    Dear All,
    i am preparing reports for my client of their own requirement, but in sap how can i find the field name, table names like  for eg: doc.no, issue,revision no, revision date, date of issue,date of completion, job card no,identificatin no, part no , accept,inspected,testedby, remarks, issue, process.
    so please tell what is the path to find the field names and table nae

    Hi,
    You can select the field which field name and table you want to know, just press F1 button, one more window will open. There you need to select the technical information icon, then you will get the required field name and its table.
    Regards,
    V. Suresh

  • Table name and field name for requirements.

    Using tcode: MD04 for a material; click on switch to Period Totals
    I do know table name and field name for Plnd ind. reqmts (PBED-PLNMG)
    But I don't know table name and field name for Requirements; it gives the structure tabe
    and name only.  What table name and field name that hold the qty for Requirements column?
    Many thanks in advanced,
    Nghiem

    2 months ago, you asked a very similar question... and Markus gave you a good answer. His 2-months old answer still applies here.
    I recommend that you read it a again at Table name for backorder qty on sales order.
    When you have read his answer, please close both threads.

  • Purchase Order Table's "Field Name required"

    Hi Experts,
    Can anybody tell me specific table names and filed names for "Invoice Quantity" and "Delivery Quantity" for Purchanse Orders?
    Thanks a lot.

    hi
    go to EKBE and  VBRP for GR Goods Receipt quantity and invoiced quantity
    and for Deliver quantity got to LIKP or LIPS
    hope this helps
    regards
    Aakash Banga

  • Require Project Management Base tables names , reports and Interfaces

    Hi Group ,
    This is azamtulla Khan ,I am new to oracle projects and i dont have idea on it.I dont know its shotname also .
    If any body send base tables name , reports and Interfaces for the same it will be grate to me.
    Thanks in Advance.

    Azamtulla,
    I recommend you look at the Applications Documentation (http://www.oracle.com/technology/documentation/applications.html) web site. Just pick your Applications (EBS) version and scroll til you find the Projects Resource Management link. Another option would be to visit the Oracle ETRM web site (http://etrm.oracle.com/pls/etrm/etrm_search.search).
    Hope this helps.
    Craig...
    If a response is helpful or correct, please mark it accordingly

  • How get all table name from database

    hi master
    sir
    how get all table name from database

    The big question is 'why'.
    Selecting from view 'dba_tables' will indeed give the list of all tables in the database, but that includes the dictionary tables and the internal tables, and many others that are probably not of interet to a person who needs to ask this question. Besides, the dba_tables view requires access to a DBA account.
    There are several other views: "user_tables" will list all the tables in this user's schema; and "all_tables" will list all the tables this user can access in some way.
    The above do not, of course, include any information about synonyms, sequences, views, indexes and so on.
    The correct answer and the meaningful answer may be two different things.

Maybe you are looking for