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

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

  • 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

  • Staffing status within organisational structure - adding options (fields)

    Hello
    within the organisational structure (PPOME) on a position, on the basic data tab there is a drop down table marked STAFFING STATUS.  Could you please tell me if there is a way to add to this list to seperate the position into various assignments and statuses.
    thank you
    Emma

    Hi Emma,
    These staffing status values of positions reside in the "value range" part of  domain "HRPOSSTAT".
    In order to add new values, you need an access key to repair this object.
    Repair activities are not advised so please think twice before carrying out the activity.
    P.S. To check Domain value range, go to SE11, select "Domain", write HRPOSSTAT, change -You'll need the access key right at this point-, Value range tab, add new values .
    Regards,
    Dilek

Maybe you are looking for

  • Lun Size best practice for UC apps and VMWare?

    Hi, We have UCS manager v2.1 with FI 6248 direct FC attached to NetApp with plenty of storage. Per following doc, Lun size for UC apps should be 500GB - 1.5TB and 4 to 8 VMs per Lun. http://docwiki.cisco.com/wiki/UC_Virtualization_Storage_System_Desi

  • Problem in Using Log4J with Weblogic 9.2

    I am using Weblogic 9.2 and Log4j. By using Admin console I set the Severity Level to WARNING and inside my java code is given below: Logger logger = Log4jLoggingHelper.getLog4jServerLogger(); if (logger.isEnabledFor(Priority.DEBUG)){ logger.debug("D

  • The attempt to read data from the server failed

    Today I was looking into an error with several IMAP accounts in Apple Mail: +The attempt to read data from the server "<<servername.tld>>" failed.+ At first I thought this was an Apple Mail problem, as the accounts in question seemed to work just fin

  • Help..i can't open a webpage with my laptop

    I hooked the aiport to my desktop via an ethernet line and now I can't get my laptop to open a webpage. It is receiving a great signal from the airport but will not allow internet explorer to open a page. I contacted the the wireless company and they

  • Error code 214

    Error code 214 keeps coming up when i try to download adobe CC, what does that mean???