To fetch proj.definition and its description

Hai Friends,
From CJ03 i want to fetch project definition and its description. i have WBS and AUC number.how can i fetch this?.
I checked in PROJ table but i could not able to take from WBS or AUC. where can i fetch this?.

hi vennila,
i refered the tables in my ides. I think following information will be of use to u.
try out in the table PRPS
in this table there is a field PSPHI (project)
Regards
Sajid

Similar Messages

  • Fetching master  item name and its  description in  oracle apps .

    Hi all,
    I have to fetch master item name,its description,ordered item name,its description for a sales order .
    Do any one know the table names and link or Query.
    Please help.

    I assume ordered_item_description is same as item description (in 11i)
    Yes - there could be a relationship between customer item and your inventory item.
    You can set it up by going to Inventory > Items > Customer Items > Customer Item Cross References
    Hope this helps,
    Sandeep Gandhi
    Edited by: Sandeep Gandhi, Independent Consultant on Dec 8, 2011 9:39 AM

  • Peoplecode to get dropdownlist box value and its description

    Hi,
    I have assigned a value and its description to dropdownlist box. when try to get the value and description in somewhere, i didn't get the description. i got only the value of the current row in a rowset. but i want to fetch the description which i assigned to the dropdownlist for the corresponding value. Is there any way to get the description?

    Since it is not a XLAT bound to the field, you cannot use the field class properties.
    What is the source of the dropdownlist?
    If it comes from a database record, you could fetch the description from the database using the &Field.Value as input.
    But this would cause a lot of database roundtrips.
    You could store the value and description in a two dimensional component array variable and load this array with the values and descriptions at PostBuild Event.
    This will only fires ones during the component build.
    Suppose the values are "hardcoded", something like this
    /* Create component 2-dim array */
    Component array of array of string &DropdownArray;
    &DropdownArray = CreateArrayRept("", 0);
    &DropdownArray.Push(CreateArray("value1", "descr1");
    &DropdownArray.Push(CreateArray("value2", "descr2");
    &DropdownArray.Push(CreateArray("value3", "descr3");
    After this populate the dropdownlist with values and descriptions from the array.
    For &i = 1 To &DropdownArray.Len
      &Field.AddDropDownItem(&DropdownArray[&i][1], &DropdownArray[&i][2]);
    End-For;
    Whenever you need to fetch the description of the dropdownlist value, first find the value by &Field.Value and then search within the array for the description.
    /*Get value from dropdown */
    &Value = &Field.Value;
    /*Find index for value*/
    &Ind = &DropdownArray.Find(&Value);
    /*Get description (second index in subarray)*/
    &Descr = &DropdownArray [&Ind][2];
    I am writing the code without an environment, so typos could exist
    Hope this helps.

  • Table for view and its description

    Hi,
    Is there any table which can have the view and its description in R/3?
    These views are primarily used in Generic extractor Definition!
    I am preparing a list of the views used in Gneric extraction and for that i need the description of the view in question!
    Raj

    Hi,
    I have nearly 1200 Views .
    It is just not possible to enter each entry of the view and to know the description manually.
    I know that we can find the description in SE11. but if there is a table which can have the viewid along with the description  my job is lot easiler.
    Any ideas?
    Raj

  • Table for TDS sections and its description

    Hi,
    Is there any table where both TDS section and its description is getting stored? If this is possible can we relate the same to Vendor through any link?
    Thanks & Regards,
    Tapan

    HI
    J_1ITDSSEC is the table for TDS section and description.
    TDS sections will be assigned to tax codes, so you can link through tax codes whatever is assigned to a vendor.
    Relation will be -- Vendor-- Taxcode--tDS section.
    Cheers
    Mukta

  • Tables for Defect type and its description while defect recording for a MIC

    Dear Experts,
    Kindly suggest the tables name  in  system by which we can get Defect type and its description that we have used while  performing defect recording for a MIC in system at the time of result reording for an inspection lot.
    Thanks in advance for your inputs ...
    Best regards ,
    Nitishj

    hii,
    Check
    QPAC - Inspection catalog codes for selected sets
    QPAM - Inspection catalog selected sets
    QPMK-CODEQUAL- Defect code grp for rejection at MIC level
    Link above table field name with QAVE for UD code & QAMR for Results recording
    Edited by: Lokesh K on Sep 29, 2010 10:43 AM
    Edited by: Lokesh K on Sep 29, 2010 10:45 AM

  • TABLE FOR DIVISION AND ITS DESCRIPTION

    Dear Mates,
    My client wants to add a Division and its Description to the Z report -Daily Collection Report from Customers.
    Can anybody help out for table name and its fields for Division and Description
    Thanks in anticipation
    Subbu

    Hi,
    I guess your question is about divisions within a Sales Organization. The related tables are listed below:
    TSPAT - organizational unit: Sales Divisions (Text)
    TVTA - Organizational Unit: Sales Area(s)
    TVKOS -Organizational Unit: Divisions per Sales Organization
    Hope you find the information relevant and useful. If so, please close the message.
    Muraleedharan.R

  • How to fetch Junk values and its columns dynamically

    Hello,
    Can anyone help me in writing a procedure/dynamic SQL to fetch the column where the junk values appears and its value. Eg: If emp table contains ID and Name columns, and ID column contains junk values, the result should be the Id column and the junk value/s. It should be dynamic because next time if the other column contains junk values(like $,%...), the query should display the other column too..
    Thanks in advance..

    Can anyone help me in writing a procedure/dynamic SQL to fetch the column where the junk values appears and its value. Eg: If emp table contains ID and Name columns, and ID column contains junk values, the result should be the Id column and the junk value/s. It should be dynamic because next time if the other column contains junk values(like $,%...), the query should display the other column too..1. define "junk" values.
    2. usually it does not matter what values are in ID, because it is used internally by application, to maintain uniqueness or relations, not having any semantical meaning. End users usually should not see IDs, such IDs are generated automatically. There is no need to cleanse them from "junk" values.
    3. If you made a typo, and you are looking for "junk" values in Name column, it is a different story. You can use TRANSLATE to search such values, as already advised, translating all "junk" characters to one "junk" character and searching for the latter.
    select id, name from T where translate(name,'?@#$%^<>','~~~~~~~~~') like '%~%';
    Edited by: Mark Malakanov (user11181920) on Jan 4, 2013 11:40 AM

  • How to get profit center group and its description

    According to three tables(as below), i get profit center group, how to get its description&#65311;
    CEPC  (Profit Center Master Data Table)
    SETLEAF
    SETNODE
    PS:(Referrence to teh link fields in table)
    For Profit centre Group ( SETLEAF-SETNAME )
    Select BSEG-BUKRS / BSEG-PRCTR from BSEG.
    SELECT SINGLE SETNAME INTO WA_SETNAME
    FROM SETLEAF
    WHERE SETCALSS = '0106'
    AND SUBCLASS = BSEG-BUKRS
    AND VALFROM = BSEG-PRCTR
    i can get two records, why?

    Hi,
    I am not sure of the significance of this table...
    But looking at the table structure it is having LINEID as one of the key fields..
    So you can have more than one record for the same combination..
    Thanks,
    Naren

  • List of G/L accounts and its descriptions.

    Hi Experts,
          Kindly tell me where can i find G/L accounts list and their descriptions in SAP.
    Regards,
    Prasath

    Hi,
    Plz try Tcode F.10
    It'll give you complete list of GL accounts of a particular Chart of accounts.
    Thanks,
    - Mahak

  • Batch and its description

    Hi.
    i want to find batch for material and the description for that particular batch.so in which table i get it?
    can anyone help me...

    try to Use FM <b>read_text</b> with following EXports
    text name   : batch name(proper format )
    text Lang   : EN / Hindi /telugu like that
    text Id     : VERM
    text Object : CHARGE
    for more Details check the Tcode <b>BMBC</b>
    Regards
    Prabhu
    Njoy SAP
    Message was edited by: Prabhu Peram

  • List of G/L accounts and its descriptions used in account determination

    Dear Experts,
    I would like to see the descriptions of all the G/L accounts which is there in account determination. Where can i find that? I have checked in FS00, in that we can see one by one, i would like to see all the G/L accounts at the same time.Kindly help me please.
    Regards,
    Prasath

    Hi Priyanka,
      Thanks for your reply. In those table i am not getting the G/L accounts which is there in OBYC and i am not getting description also. Kindly tell me any other solution where can i find the G/L accounts please.
    Regards,
    Prasath

  • 0plant and its description

    Hi All,
    I have an infocube where in 0Plant is a part of dimension. The requriment is I need to show the plant name as well in the query.
    The master data for 0plant is already uploaded and can u please let me know how to show the plant description in the query.
    Thanks & Regards,
    Anjna

    Hi,
    Display 0plant charactericics details( t.code rsd1 ), goto tab Business Explorer , it should have key & text option in display (You can change description & other option also here ). If it selected here key & text go to query disigner & change the option as suggested by exprts.
    Regards,
    Anand Mehrotra.

  • Item and Item description as Levels ?? In Demantra

    I have Item defined as the lowest level and its description also being defined (as level description) in oracle Demantra.
    From the staging table - I bring in item and item description.
    In the Oracle Demantra seeded model - I find that Item has been defined as the lowest level - (has description with the same item code as its reference in staging table). As parent I have another level defined "Item Description" and this has the description as in the staging table.
    Is it required - why is item description defined as another level rather than it should be the description of the item level ?
    Can somebody throw some light on this.
    thx and rgds,
    Pankaj
    Edited by: pankajkum on May 1, 2009 3:09 PM

    Hi Pankaj,
    As Karthi has sighted, whenever we talk about any upper level its a grouping of its child level members. There is always being Many-to-One relationship between the child level members and parent level members.
    Comming to the seeded Demantra data model that Oracle has provided, Item Description is taken as an attribute for item level. Similarly You can see other attributes like "Media Type" and "Platform".
    The purpose of making these attributes as parent levels is to use them in a unique Demantra feature called "Attribute Based Forecasting". As you might have read that Demantra also supports attribute based forecasting, we have to convert these attributes in parent levels and have to set them as item-location combinations in the Forecast Tree definition. The forecast result you will see will be different from what you see when you use the default Forecast Tree definition.
    Hope this answers your query.
    Milind...

  • Grey field for project definition and WBS element

    Dear all,
    I have created a project and WBS element in CJ01. Now I go via CJ02 to the change mode and the project ID and WBS element ID is not greyed out. But I would like that the system shows these key fields as not changeable anymore, only fields like description should be changable. Can you please tell me, which customizing step I missed to get the grey field for project ID/WBS element ID?
    FYI  I do not use a project mask to create the project.
    Thanks for your answer.
    Heidi

    Hi Heidi ,
    I don't think you can grey out the Project Definition and the WBS Element fields after the creation .
    If you want to restrict the users to change the Proj definition and WBS , a better way is through
    Authorization objects and restricting only specified users to change the WBS
    Kish

Maybe you are looking for

  • Reports in Production Server

    Hi SAP Application team would like to get a list of any reports in PROD that have not been run in the last 12 months (or reports that have been run in PROD). Plan to use this to identify reports that we can archive. Is there any method or script to f

  • File download dialog box problem!

    Hi, How do you force file download message box to use specified file name instead of JSP or servlet name. I am using: // code in attachment.jsp <% response.setContentType(mimeType.trim()); response.setHeader("Content-Disposition","attachment;filename

  • Organising iTunes U collection?

    Hi. I just downloaded the MIT Introduction to Algorithms on iTunes U but when I look in my iTunes U section of iTunes the videos are showing up as a separate collection to the notes. I have given them both th exact same metadata in the hope that this

  • Where are my purchased actions

    recently upgraded my PC went to Adobe site downloaded my Elements 11 and none of my Purchased Actions are there anymore !

  • Random Sorting of Songs

    When I sync an album which has a correct tag (in terms of track numbers) the iPod Classic put it in random order For instance I have tracks: 1. Chunga's Revenge 2. Bowling On Charen 3. Good Lobna In the iPod it goes 1. Good Lobna 2. Chunga's Revenge