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

Similar Messages

  • Table name input. and output i need  all rows and columns  using procedures

    hi,
    question: table name input. and output i need all rows and columns by using procedures.
    thanks,
    To All

    An example of using DBMS_SQL package to execute dynamic SQL (in this case to generate CSV data in a file)...
    As sys user:
    CREATE OR REPLACE DIRECTORY TEST_DIR AS '\tmp\myfiles'
    GRANT READ, WRITE ON DIRECTORY TEST_DIR TO myuser
    /As myuser:
    CREATE OR REPLACE PROCEDURE run_query(p_sql IN VARCHAR2
                                         ,p_dir IN VARCHAR2
                                         ,p_header_file IN VARCHAR2
                                         ,p_data_file IN VARCHAR2 := NULL) IS
      v_finaltxt  VARCHAR2(4000);
      v_v_val     VARCHAR2(4000);
      v_n_val     NUMBER;
      v_d_val     DATE;
      v_ret       NUMBER;
      c           NUMBER;
      d           NUMBER;
      col_cnt     INTEGER;
      f           BOOLEAN;
      rec_tab     DBMS_SQL.DESC_TAB;
      col_num     NUMBER;
      v_fh        UTL_FILE.FILE_TYPE;
      v_samefile  BOOLEAN := (NVL(p_data_file,p_header_file) = p_header_file);
    BEGIN
      c := DBMS_SQL.OPEN_CURSOR;
      DBMS_SQL.PARSE(c, p_sql, DBMS_SQL.NATIVE);
      d := DBMS_SQL.EXECUTE(c);
      DBMS_SQL.DESCRIBE_COLUMNS(c, col_cnt, rec_tab);
      FOR j in 1..col_cnt
      LOOP
        CASE rec_tab(j).col_type
          WHEN 1 THEN DBMS_SQL.DEFINE_COLUMN(c,j,v_v_val,2000);
          WHEN 2 THEN DBMS_SQL.DEFINE_COLUMN(c,j,v_n_val);
          WHEN 12 THEN DBMS_SQL.DEFINE_COLUMN(c,j,v_d_val);
        ELSE
          DBMS_SQL.DEFINE_COLUMN(c,j,v_v_val,2000);
        END CASE;
      END LOOP;
      -- This part outputs the HEADER
      v_fh := UTL_FILE.FOPEN(upper(p_dir),p_header_file,'w',32767);
      FOR j in 1..col_cnt
      LOOP
        v_finaltxt := ltrim(v_finaltxt||','||lower(rec_tab(j).col_name),',');
      END LOOP;
      --  DBMS_OUTPUT.PUT_LINE(v_finaltxt);
      UTL_FILE.PUT_LINE(v_fh, v_finaltxt);
      IF NOT v_samefile THEN
        UTL_FILE.FCLOSE(v_fh);
      END IF;
      -- This part outputs the DATA
      IF NOT v_samefile THEN
        v_fh := UTL_FILE.FOPEN(upper(p_dir),p_data_file,'w',32767);
      END IF;
      LOOP
        v_ret := DBMS_SQL.FETCH_ROWS(c);
        EXIT WHEN v_ret = 0;
        v_finaltxt := NULL;
        FOR j in 1..col_cnt
        LOOP
          CASE rec_tab(j).col_type
            WHEN 1 THEN DBMS_SQL.COLUMN_VALUE(c,j,v_v_val);
                        v_finaltxt := ltrim(v_finaltxt||',"'||v_v_val||'"',',');
            WHEN 2 THEN DBMS_SQL.COLUMN_VALUE(c,j,v_n_val);
                        v_finaltxt := ltrim(v_finaltxt||','||v_n_val,',');
            WHEN 12 THEN DBMS_SQL.COLUMN_VALUE(c,j,v_d_val);
                        v_finaltxt := ltrim(v_finaltxt||','||to_char(v_d_val,'DD/MM/YYYY HH24:MI:SS'),',');
          ELSE
            v_finaltxt := ltrim(v_finaltxt||',"'||v_v_val||'"',',');
          END CASE;
        END LOOP;
      --  DBMS_OUTPUT.PUT_LINE(v_finaltxt);
        UTL_FILE.PUT_LINE(v_fh, v_finaltxt);
      END LOOP;
      UTL_FILE.FCLOSE(v_fh);
      DBMS_SQL.CLOSE_CURSOR(c);
    END;This allows for the header row and the data to be written to seperate files if required.
    e.g.
    SQL> exec run_query('select * from emp','TEST_DIR','output.txt');
    PL/SQL procedure successfully completed.Output.txt file contains:
    empno,ename,job,mgr,hiredate,sal,comm,deptno
    7369,"SMITH","CLERK",7902,17/12/1980 00:00:00,800,,20
    7499,"ALLEN","SALESMAN",7698,20/02/1981 00:00:00,1600,300,30
    7521,"WARD","SALESMAN",7698,22/02/1981 00:00:00,1250,500,30
    7566,"JONES","MANAGER",7839,02/04/1981 00:00:00,2975,,20
    7654,"MARTIN","SALESMAN",7698,28/09/1981 00:00:00,1250,1400,30
    7698,"BLAKE","MANAGER",7839,01/05/1981 00:00:00,2850,,30
    7782,"CLARK","MANAGER",7839,09/06/1981 00:00:00,2450,,10
    7788,"SCOTT","ANALYST",7566,19/04/1987 00:00:00,3000,,20
    7839,"KING","PRESIDENT",,17/11/1981 00:00:00,5000,,10
    7844,"TURNER","SALESMAN",7698,08/09/1981 00:00:00,1500,0,30
    7876,"ADAMS","CLERK",7788,23/05/1987 00:00:00,1100,,20
    7900,"JAMES","CLERK",7698,03/12/1981 00:00:00,950,,30
    7902,"FORD","ANALYST",7566,03/12/1981 00:00:00,3000,,20
    7934,"MILLER","CLERK",7782,23/01/1982 00:00:00,1300,,10The procedure allows for the header and data to go to seperate files if required. Just specifying the "header" filename will put the header and data in the one file.
    Adapt to output different datatypes and styles are required.

  • Base table name for fields from Material Master

    Hi All,
    I want base table name which holds all possible values of following column:
    1)Material Master : X-plant matl status from tab -basic data 1
    2)Material Master: X-distr.chain status from tab -sales org 1
    for example: Base table for Prod.hierarchy is T179/T179T.
    Many thanks to all
    Yogesh

    Thanks Mahesh but I know its value available in MARA table for eery material. But i want to know where all possible distinct values are stored?... In other word, when we click on button which is next to this field and from that list we normally select value and then assign to above fields. Where this list is stored for
    X-plant matl status
    X-distr.chain status

  • Base tables for aggragates and Multiproviders

    Is  RSDICMULTIIOBJ the base table for Multiproviders?
    What is the base table for Aggragates and units?

    Multiproviders
    RSDCUBEMULTI 
    RSDICMULTIIOBJ
    Aggregates
    RSDDAGGREF
    RSDDAGGRT
    RSDDCVERREPAGGR
    RSDDAGGR    
    RSDDAGGRCOMP
    RSDDAGGRDIR 
    RSDDAGGRDIR_M

  • Difference between with table name with * and without *

    Hi..
    I had seen some of the standard abap that the table name had *, like *ekpo. What is the meaning? What is the difference between with * and without * ? 
    Thanks and Regards,
    Rishika

    Hi rishika,
    1. This is actually a facility provided in abap syntax.
    2. It is usually checked while saving a record.
    3. For eg.
    If we have one variable
    EKKO
    and another *EKKO
    (They both are same only, with same structure)
    (but two different variables)
    4. The functional meaning, for usage purpose,
    of *EKKO is OLDEKKO.
    5. While saving the transaction,
    the data is saved only if there is any change
    in the values.
    IF EKKO <> *EKKO.
    *--- SAVE
    ELSE.
    MESSAGE 'NO DATA CHANGED'
    ENDIF.
    6. We can aswell use any other variale
    eg. oldekko
    oekko
    myekko
    etc,
    7. But for business meaning,
    R/3 has the facility for *
    1. we can use almost everywhere.
    2. just copy paste
    report abc.
    TABLES : T001.
    TABLES : *T001.
    DATA : ITAB LIKE EKKO.
    DATA : *ITAB LIKE EKKO.
    DATA : NUM TYPE I.
    DATA : *NUM TYPE I.
    regards,
    amit m.

  • Findout the table name,date and time

    Hi friends,
    In a database i create a table, but i forgot the table name. I know the date. How can i find out the table in database?

    select object_name, created, status
    from all_objects
    where object_type = 'TABLE'
    and owner = <user_name_who_created_the_table>
    order by created desc;
    Hope this helps.
    Raman

  • Hi, when trimming a project through project manager I get blue lines and the video is missing. I'm using PP CC 2014. Why is this?

    I have tried through Project manager to save a "Trimmed Project" but when I open up the trimmed project some video is missing or is the wrong video and on the timeline these missing videos have a diagonal blue line. Any idea on why this is happening would be greatly appreciated.

    Is this a Mac?  If so what version of OSX?

  • Require details or list of seeded reports and import programs in fusion HCM

    Hello All,
    Kindly provide me the list of seeded reports and Import programs available in Oracle Fusion HCM .
    Regards,
    S Rao

    Please raise a SR

  • Table Names for "Payroll Interface Tables"

    How can I find out the exact table used in "Payroll Interface Tables" section?
    Some of them are Configuration, Field Definition,Definition, Group etc.
    We had a consultant who configured the tables but now we want to move the entire "Payroll interface tables"configuration to an UAT environment and the DBA's want the exact table names so they can move/copy/export the tables.
    We are on version 9.1
    Thanks.

    The Payroll Interface PeopleBook has a section called "Cloning a Payroll Interface Definition" and it lists most of the records that contain the interface definitions. Unfortunately, the cloning process is for cloning an existing definition to a new system id within the same environment, not for migrating to a different environment. You will need to include some additional tables. In HCM 8.9, we used the following in datamover:
    SXPORT PI_SYSTEM_TBL         WHERE PI_SYSTEM_ID='XXX';
    EXPORT PI_SYSTEM_STAT        WHERE PI_SYSTEM_ID='XXX';
    EXPORT PI_SYSTEM_LANG        WHERE PI_SYSTEM_ID='XXX';
    EXPORT PI_PS_RECORD          WHERE PI_SYSTEM_ID='XXX';
    EXPORT PI_PSREC_FLD          WHERE PI_SYSTEM_ID='XXX';
    EXPORT PI_PS_REC_LANG        WHERE PI_SYSTEM_ID='XXX';
    EXPORT PI_INSTANCE_TBL       WHERE PI_SYSTEM_ID='XXX';
    EXPORT PI_INST_VALUE         WHERE PI_SYSTEM_ID='XXX';
    EXPORT PI_INSTANC_LANG       WHERE PI_SYSTEM_ID='XXX';
    EXPORT PI_PROCESS_TBL        WHERE PI_PROCESS_ID >= '800000';
    EXPORT PI_PROCESS_VAL        WHERE PI_PROCESS_ID >= '800000';
    EXPORT PI_PROC_TB_LANG       WHERE PI_PROCESS_ID >= '800000';
    EXPORT PI_PROC_VA_LANG       WHERE PI_PROCESS_ID >= '800000';
    EXPORT PI_FIELD_TBL          WHERE PI_SYSTEM_ID='XXX';
    EXPORT PI_FIELD_XLAT         WHERE PI_SYSTEM_ID='XXX';
    EXPORT PI_FIELD_LANG         WHERE PI_SYSTEM_ID='XXX';
    EXPORT PI_GROUP_TBL          WHERE PI_SYSTEM_ID='XXX';
    EXPORT PI_GROUP_LANG         WHERE PI_SYSTEM_ID='XXX';
    EXPORT PI_DEFN_FILE          WHERE PI_FILE_ID='XXX';
    EXPORT PI_DEFN_RECORD        WHERE PI_FILE_ID='XXX';
    EXPORT PI_DEFN_R_LANG        WHERE PI_FILE_ID='XXX';
    EXPORT PI_DEFN_FIELD         WHERE PI_FILE_ID='XXX';
    EXPORT PI_DEFN_F_LANG        WHERE PI_FILE_ID='XXX';
    EXPORT PI_CONFIG_TBL         WHERE PI_SYSTEM_ID='XXX';
    EXPORT PI_CONFIG_FILE        WHERE PI_CONFIG_ID IN ('YYY','ZZZ');
    EXPORT PI_CONFIG_LANG        WHERE PI_CONFIG_ID IN ('YYY','ZZZ');
    EXPORT FILE_HANDLE_LNG       WHERE FILE_HANDLE IN ('AA','BB');
    EXPORT FILE_HANDLE_TBL       WHERE FILE_HANDLE IN ('AA','BB');If you're on a different release you'll have to review the list to see if anything has changed, and set the literals according to your definitions.
    Regards,
    Bob

  • Project Manager - everything needs re-indexing and conforming again

    I uploaded a project and it is 9 files each between 40gb's and 50gb's to an external Hard Drive and sent it my other editor.
    They are complete projects not trimmed.
    He can open them just fine but the want to re-index and conform....is there anyway around this?
    Here is what he wrote:
    I'll describe what happens first, as it makes the explanations of the failure cases a little more clear.
    PPro generates two potential sidecar files for audio - PEK and CFA files.  The PEK file is simply a quick data pass of the audio data that allows the app to draw waveforms (ie it should be pretty quick) - the CFA files are required if the file source is either too slow to decode the audio in realtime (like some MPEG long GOP, for instance), or if there's a mismatch in the sample rate depth.  The idea is that the conform files will match your sequence's audio bitrate settings so that the app can play & mix audio in realtime.
    How does PPro track these additional files?  Every file that is imported is stamped with XMP, which is how we handle metadata on source files.  XMP creates a unique ID which the app uses as a lookup value when it wants to find the PEK & CFA files that it generated for a file.  So, usually, if you have a project where certain clips constantly reconform, it has something to do with XMP.  Why? Usually it's because XMP can't write to the file.  So, every time you launch PPro and open the same project, the media file has no XMP data, so it tries to generate a new ID, so any old CFA/PEK files have an ID mismatch and the app thinks it needs to generate new ones.
    Typical cases why XMP can't stamp files:
    - the media file is read-only.
    - the media's hard drive is read-only.
    - the file itself is corrupted/malformed, and XMP takes the safe route & decides not to try to write any additional data to the file.  (I've personally witnessed this occur with WAV files captured by a Tascam field recorder.)
    - someone deleted the XMP files by hand (certain media types have it as a sidecar .XMP file instead of embedded).  (Don't laugh - I recently encountered a case where people had instituted a server folder rule to delete all files on a network share that weren't .mpg. )
    A workaround you can try:
    There's a preference setting to turn off injecting XMP into your media.  If that setting is in effect, PPro will not rely on the XMP ID for the CFA/PEK files.
    One other note, if your problem is specific to MPEG files:  it might be that PPro isn't able to index the file properly.  If it can't index, it might be trying to re-index on each launch;  audio conforming always triggers after indexing.   So watch for it constantly indexing - if that's the case, all the XMP stuff I described above has nothing to do with the problem.  It's a side effect of something in the MPEG stream that we're barfing on.  If you do see it constantly re-indexing MPEG files, it would be really helpful to send in a sample so that we can examine the stream.

    Harm and Bill,
    Thank you! Finally I have an answer to this. I work with multiple externals and move files/folders for Premiere projects between them.
    I just adjusted the permissions on my drives and this worked! You guys are wonderful! Thank you! Thank you!
    Elle

  • Edit function removed from SE16N transaction, reports and interface FM

    I give it 3 years before work programs are updated...

    I think the whole story is too long to fit into a 2500 character post..
    The function should have the strictest check which the system has to offer. Which is 01 DEBUG. But in this case checking the object name is not possible, so 02 DEBUG is needed for that in the SE16N include where the function is activated. However, someone debugging another program could submit the SE16N FM from there as well, so you must at least be able to display in the debugger to get anywhere near it in the first place.
    So it checks all three.
    It also means that if the person does not have the authority and wants to use a dark trick to assign authorizations, they will need to go looking for SAP_ALL or possibly a multiple of authorizations to assign to pass all three checks. That is more "noisy", which is also good for finding people with fat fingers.
    > why was it not limiited to CO-tables?
    It does check S_TABU_DIS...?
    AFAIK the popularity of the transaction (much more than just this edit feature) caught SAP by surprise and by the time it's use had exceeded imaginable boundaries... there was little chance of retro-fitting functional restrictions or a component downport to "SAP_BASIS". So authority-checks it was...
    Note that the code field of SE16 is still there, as it has been since ancient times.
    Cheers,
    Julius

  • Project Manager ruins timecode and tape name

    After picture locking a sequence, I tried using Project Manager with the "collect files and copy to new location" option to consolidate for the colorist.
    Unfortunately, the resulting files all lack tape names, and have incorrect timecode.  This is a serious problem, obviously, since the colorist will never be able to relink these clips.  Has anyone else gotten this process working?
    I then tried cleaning the media cache database, and I ran the Project Manager again with the same settings.  This time, it created files with proper tape names, and incorrect timecode.
    This project contains clips from multiple cameras, and the only ones having this problem are from a Sony FS700.

    That's a great idea.
    Importing the sequence into a new PP project brings the accurate timecode and tape names, so it's easy to export all the clips.  But after queueing them up and exporting QuickTimes in AME, the new files all have timecode starting at zero and no tape name!  WTF??
    Here is a screenshot with proof.  You can see file 00001.MTS in Premiere with timecode starting at 46:10:20 and in AME starting at zero.

  • Table name for Customer Account Group and created by Data

    Dear Gurus,
    Kindly le t me know the table name having a list of Customer a/c groups and created by data. if there is no such table thn pls let me know the alternatives for fetching the same data.
    Wishes
    Abhishek

    hI
    Go to Se11 and give table name KNA1 and go to display
    you can able to see the Customer AccountGroup field :KTOKD
    Thanks
    Vasu

  • SAP Portfolio and Project Management: u201CCustomer Connectionu201D

    SAP Portfolio and Project Management: u201CCustomer Connectionu201D
    SAP Portfolio and Project Management is one of the first focus topics of the [Customer Connection initiative|https://service.sap.com/influence].
    The related developments are delivered by SAP Notes and/or by Support Package (SP) only (in case delivery by SAP Note is not possible). Target releases are 5.0 (for all points) and 4.5 (for those points where it is technically possible and reasonable to downport).
    [Composite SAP Note 1631964 |https://service.sap.com/sap/support/notes/1631964]collects and links all SAP Notes released for Customer Connection for SAP Portfolio and Project Management. It also includes a PDF file giving an overview of all released Customer Connection PPM developments as well as a PDF file with details about each released Customer Connection PPM development.
    An overview about all influence channels for customers can be found under [https://service.sap.com/influence|https://service.sap.com/influence].
    Kind regards,
       Florian

    Hi
    Thanks for your Valuable information -Customer connection PPM.
    Regards
    PP

  • Project Manager will not collect all files and Start a Complete New Project

    As editor of several projects consisting of multiple terrabytes of footage, it's very important to me to be able to use the project manager to collect all files and start a new project. However, this is not happening!! After I've completely finished a project I should be able to save a new "trimmed" project in the desired location of choice. When I use this feature with PrPro CS 4.2.1 - I only get a partial trimmed project that when opened asks where are the missing files. I've also tried using the project manager to collect all files and move to a new location. Again, only a part of my project is being moved!!!! Earlier versions of the PpPro had no problems with this function. I've got two systems and both of them are identical in actions. Any help would be greatly appreciated!!!
    BBTv

    How can one do that if each project has thousands of pieces of video, text templates, music scores, photoshop documents, after effect files and so on? The number of different folders per project is almost mind boggling. Any help at all in a quick fix or update or anything would be greatly appreciated. I don't have any problem with my other editing programs and have run earlier versions of PrPro that had no problems with collecting all the files within a project and exporting them to a new location throught project manager either in trimmed or full projects. I really hate to have to start using Final Cut again because of such an easy issue. I know I'm overlooking something and any help would be greatly appreciated.

Maybe you are looking for