Table for aggregate status

Hi Experts,
Which table has aggregate status and data?
Early answer is appreciated..
Thanks in Advance,
Vijaya

Hi
Tables in BW,
Aggregate -RSDDAGGRDIR.
Routines - RSAABAP
Update rules - RSUPD*
Transfer Structures - RSTSRULES*
Also take look,
RSDDAGGL
RSDDAGGLF
RSDDAGGRDIR
RSDDAGGRDIR_M
Hope it may be helpful to you
Many thanks
Kiran

Similar Messages

  • Tables for Opportunity "Status" and "Reason"

    Hi,
    Can someone help me in finding the tables for determining "Status" and "Reason" for an opportunity along with the relvant text descriptions?
    Regards,
    Sandeep

    Hi Sandeep,
    Status-  code in field stat of CRM_JEST table
                    OBJNR = guid opportunity
                    INACT = SPACE
            Text of status in TJ30T with your status profile
    Reason-  code in field code of CRMD_SRV_SUBJECT with   
               guid_ref equal to guid_set( of crmd_link with objtype_set = 29 )
            Text of reason in QPCT
    I hope this way help you.
    Regards.
    Manuel

  • Table for user status field in CJ20n transaction project defination

    HI ALL,
    what is table for user status field in CJ20n transaction project defination creation. This field is in Basic Data tab.
    Thanks.

    Hi,
    Check following tables for Usre status:
    TJ30 - User status
    TJ30T - Texts for user status
    TJ20 - Status profile
    JEST - Object status
    JSTO- WBS status profile.
    Check this code:
    REPORT zps_get_userstatus .
    PARAMETERS: p_posid LIKE prps-posid.
    *-- Constants
    CONSTANTS: gc_yes(1)     TYPE c                 VALUE 'X',
               gc_no(1)      TYPE c                 VALUE ' '.
    *-- Variables
    DATA: l_objnr LIKE prps-objnr.
    *-- Internal tables
    DATA: BEGIN OF lit_jest OCCURS 0,
           objnr LIKE jest-objnr,
           stat  LIKE jest-stat,
         END OF lit_jest.
    DATA: BEGIN OF lit_jsto OCCURS 0,
           objnr LIKE jsto-objnr,
           stsma LIKE jsto-stsma,
          END OF lit_jsto.
    DATA: BEGIN OF lit_status OCCURS 0,       "Combination of JEST & JSTO
              objnr LIKE jest-objnr,
              stsma LIKE jsto-stsma,
              stat  LIKE jest-stat,
            END OF lit_status.
    DATA: BEGIN OF lit_usrsta OCCURS 0,       "Uer status for all wbs
             objnr LIKE jest-objnr,
             stsma LIKE jsto-stsma,
             stat  LIKE tj30t-estat,
             txt04 LIKE tj30t-txt04,
           END OF lit_usrsta.
    DATA: BEGIN OF lit_usrtxt OCCURS 0,       "User Status text - TJ30T
            stsma LIKE tj30t-stsma,
            stat  LIKE tj30t-estat,
            txt04 LIKE tj30t-txt04,
          END OF lit_usrtxt.
    * get WBS object number
    SELECT SINGLE
         objnr FROM prps
               INTO l_objnr
               WHERE posid = p_posid.
    * get WBS active status from table JEST
    SELECT
          objnr
          stat
               FROM jest INTO TABLE lit_jest
               WHERE objnr =  l_objnr AND
                     inact <> gc_yes.
    * get WBS status profile from table JSTO
    SELECT
          objnr
          stsma FROM jsto
                INTO TABLE lit_jsto
                WHERE objnr =  l_objnr.
    * combine JEST and JSTO table for user status
    LOOP AT lit_jest.
      IF lit_jest-stat CP 'E++++'.
        READ TABLE lit_jsto WITH KEY
                            objnr = l_objnr.
        IF sy-subrc = 0.
          lit_status-objnr = lit_jest-objnr.
          lit_status-stsma = lit_jsto-stsma.
          lit_status-stat  = lit_jest-stat.
          APPEND lit_status.
        ENDIF.
      ENDIF.
      CLEAR: lit_jsto, lit_status.
    ENDLOOP.
    *  get text for user status
    SELECT DISTINCT
             stsma
             estat
             txt04 FROM tj30t
                   INTO TABLE lit_usrtxt
                   FOR ALL ENTRIES IN lit_status
                   WHERE stsma = lit_status-stsma AND
                         estat = lit_status-stat  AND
                         spras = sy-langu.
    Let me know if you have any question.
    Regards,
    RS

  • Table for filed status

    Hi
    what is the table for field status. I want to down load data for all the company code field sttus setting in the client. In which table i can get all the fields setting for the field status.
    CHEERS

    Hello,
    Your question is not clear.
    There are number of field statuses in company codes.
    You can see the field status groups details in table T004F
    If you can elaborate your requirement, I can give you more details.
    Regards,
    Ravi

  • Table  for User Status Profile

    hi
    Please tell anybody what is the table for User Status Profile in Sales Orders? where it will stores?
    Regards
    Rajendra

    Hi,
    Use table JEST
    Here you will have to enter the object number as an input field
    Get object number from table VBAK or VBAP based on whether the status profile is attached at sales order header or at sales order item.
    Status which is active will start with letter E and the status inactive flag will be blank.
    Regards
    Ravi

  • Field and Table for PGI status updation

    Hi All,
    I want to know in which field and table the PGI status will get updated.
    i.e. once we do the PGI for a delivery in which table will this PGI status gets updated.
    Thanks in advance for help.
    Harini

    Hi Harini,
    In Table VBUK you 3 different status related fields for  sales documents.
    Over all status field name GBSTK ( here it gives the total status of praticular sales document) here you see options
    A  Not yet processed      ( This means its complete open)
    B  Partially processed     ( This means the sales doc is partially processed)
    C  Completely processed  ( This means the sales doc is completly processed)
    Delivery status  and over all delivery status field name LFSTK and LFGSK respectively, these 2 fields will be same always ( here it gives the total status of praticular sales document) here you see options
    A  Not yet processed      ( This means its completly  open)
    B  Partially processed     ( This means the delivery doc is partially processed)
    C  Completely processed  ( This means the delivery doc is completly processed)
    So overall status can be  different then delivery or overall delivery status.
    If sales document has 100 quantity for 1 material, if delivery is done for 50 quantity.
    Then over all status field name GBSTK will be B  Partially processed and delivery and overall delivery will be C  Completely processed  .
    Regards
    vK

  • Table for WBS status change with date

    Hi,
    Please assist me with a table name which should have WBS status with date on which statis was changed.
    Thanks,
    Manish.

    Hi
    You can use program (SE38) RBSVCDOC to track these changes. Else go manually in CJ20N to track these status changes.
    Use JCDS and JEST table for any other reporting on it.
    *Kindly mark your thread once your query is resolved.*
    Regards
    Saurabh

  • Table for IO status in DBM order

    Hi All,
    I need to come out with the IO tracking report for IO in DBM order (status is open for IO header or IO split). Appreciate if anyone could assist me to provide the table name for IO status.
    Thanks

    Hi
    Please check the tables...
    VBUK - for Header status
    VBUP - Item status.
    Thanks,
    Ravi

  • Table for staffing status

    Hi all,
    Can you tell what table is for <b>staffing status</b>. I can c this in transaction <b>PPOME</b> but couldnt find table for this.
    Just I am trying to find status of possition. is there any function module for this?
    Thanks
    Shiva

    Hi
    Every staff Position (employee) status is stored in Infotype <b>PA0000
    in STAT2 field only.</b>
    Reward points for useful Answers
    Regards
    Anji

  • Table for position status in sales order?

    Hi veryone,
    I would be veru grateful if someone could help me to find a table in which I can find the status of a certain position in a sales order.
    Thanks in advance and best regards.
    Ben

    Hi
    Please check the tables...
    VBUK - for Header status
    VBUP - Item status.
    Thanks,
    Ravi

  • Table for Inventory Status for Serialized materials

    Hello,
    Can anyone please provide the table name for finding out inventory status (i.e. unrestricted, Quality Inspection, Blocked) for serial numbers. I am trying to find out, in which inventory status does a particular serial# belonging to a particular material# is in?

    Hello Azz:
    Regarding the serial number status, you have to check the combination of three different tables:                                                                               
    EQUI - Equipment master data. In this table make note of the field 'Object number' (OBJNR), which is the primary key for:                                                                               
    JEST - Individual Object Status. This table contains the technical expression of the status in field 'Object status' (STAT), which is the primary key for:                                                                               
    TJ02 - System status. In this table you can find the texts for the system status in the fields TXT04 and TXT30.
    Then, here you have some other tables which you might also need:
    EQBS - Serial Number Stock Segment.
    SER01 - Document Header for Serial Numbers for Delivery.                                                                               
    SER02 - Document Header for Serial Nos for Maint.Contract (SD Order). 
    SER03 - Document Header for Serial Numbers for Goods Movements.                                                                               
    SER04 - Document Header for Serial Numbers for Inspection Lot.                                                                               
    SER05 - Document Header for Serial Numbers for PP Order.                                                                               
    SER06 - Document Header for Serial Numbers for Handling Unit-Content. 
    SER07 - Document Header for Serial Numbers in Physical Inventory.                                                                               
    SER08 - Document Header for Purchase Order Item Serial Numbers. 
    I hope this helps!
    Esther.

  • Table for system status

    Hi,
    Does anyone know in which table, does the CRM register the status (and the previous status history) for a service order at header leavel. (in the r/3 system it's the vbuk table).
    Thanks in advance.
    Hugo.

    Hi,
    check table CRM_JEST with the service order's GUID.
    Regards
    Wolfgang

  • Table for system status for an order

    Hi Gurus,
    we are displaying a report in which list of orders we are displaying in that system status also we need to dispaly for that the logic we have used is take OBJNR from AUFK by passing AUFNR and get all the active status for that AUFNR by passing AUFNR in to JEST by setting the inactive status is equal to space and then by comparing those system status with table TJ02 and we are taking the system status codes from that table. But my requirement is to display the user status in the order how we will get in order screen? In JCDS table am getting the entries based on date and time but unwanted status also it is showing. tell me is there any way to get the exact order how we will get in the order screen.
    Thanks in advance.
    Regards
    Satish

    Hi,
    Its client requirement. we need to show list of orders in a alv report for a particular selection. There for each and every order we are displaying the system status but it is not coming in proper sequence as compared with the order screen system status.
    Please do the needful.
    Regards
    satish

  • SQL table for Package Status history

    Anyone know which SQL table stores the history for non-scheduled packages? I know tblScheduleHistory stores scheduled jobs but can't locate the history seen using "Package Status". This is for 5.0 SP2

    Please try tblDTSlog table

  • Standard tables used for Aggregates

    Could anyone please help give me a list of all the STANDARD TABLE which are associated with AGGREGATES in BIW 3.x.

    Hi,
    RSDDAGGR                       Status of the active aggregates in the Infocube
    RSDDAGGRCOMP                   Description of the aggregates
    RSDDAGGRDIR                    Directory of the aggregates
    RSDDAGGRDIR_M                  Directory of the aggregates
    RSDDAGGREF                     Aggregates, useable InfoObjects
    RSDDAGGRENQUEQUE               Table to define lock argument
    RSDDAGGRMODSTATE               Status of change run for aggregates
    RSDDAGGRT                      Aggregate texts
    RSDDCVERREPAGGR                Aggregates that should be refilled after c
    RSDDSTATAGGR                   Statistics data BW for aggregate selection
    RSDDSTATAGGRDEF                Statistics data OLAP: Navigation step / ag
    RSDMESC_AGGR_IND               Aggregated Data: Indexes
    RSDMESC_AGGR_VAL               Aggregated Data: Values for Indexes
    RSDPAGGR                       Index of Dummy Aggregate from InfoCubes wi
    RSICAGGR                       Aggregation management of the IC for the M
    RSICAGGR2                      Aggregation administration for aggregates
    Thanks,
    -VIjay

Maybe you are looking for

  • Error in CASE statement used in Reports query

    My query has lots of selection criteria. I'm trying to use CASE for that. This is a part of my query with parameters: AND ad.location IN (CASE &p_location WHEN 1 THEN (SELECT TRIM(code_nbr) FROM code_detail WHERE code_nbr like 'LC%') WHEN 2 THEN -- t

  • UNIX Executable Files - Additional Info Needed About Zipped Files

    I've tried to go through all of the questions posted so far but each link leads me back to the same three or four discussions.  I have downloaded zipped folders of sound samples.  When they are unzipped the files all have an extra space added just af

  • What week is what?

    How do you know what is a week 37? 38? 40? I would assume it is part of the serial number. Thanks for any help.

  • Unable to change the default mail address

    I'm not able to change my default email address in my profile. Currently I have one email listed. When I add 1-2 other emails and then wants to change which one to use as default it removes the newly added addresses. I have tried just adding one, I h

  • Ipad screen not automatically tune.

    Hi, Not sure if anyone is having the same problem as me.... My ipad screen is not automatically tune to portrait or landscape position whichever way i am holding. Sometimes, it works, sometimes it doesn't. For sure the orientation unlocked button is