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

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

  • Remove  Invalid Filing Statuses from Portal for Puerto Rico W-4 (IT210)

    Hi Experts,
    I need to remove Invalid Filing Statuses from Portal for Puerto Rico W-4 , can any one advise , checked in T5UTK can we do changes in this table?
    Thanks
    Sri

    Hi Obulu;
        Yes you have to customize that table, please refer to note 1500596 "New Puerto Rico Marital Status".  If you want additional info about the changes in PR I wrote a blog about it Withholding changes in Puerto Rico
    Hope that helps!
    Best regards,
    Federico.

Maybe you are looking for

  • How can I install google play on my BBZ10? help?

    I trying to play some games but in order for me be able to use them properly I need google play on my devices.. How can I get google play on my BBZ10?? help?

  • Downloading and installing cs5 on a new computer

    bought photoshop cs5 back in 2010 which resided on my laptop but now that i've upgraded computers, i'm trying to download and install it onto my new HP.  using the akamai downloader, it just keeps cycling through the first of the 2 files (so it looks

  • How to hide the unit in the query?

    Hi Gurus, I have three key figures, 1, Stock: Showed as 1000 TON 2, Value: Showed as 100000 USD 3, AVG: Showed as 100 USD/TON, the formula is Value / Stock In the query, the value will display the unit, TON and USD and USD/TON. How can I hide the uni

  • How to update iWork if it is showing you have to purchase again

    OK I was having trouble with with 2011 Mac Mini and iWork I bought on DVD & the preinstalled iWork not updating. Here's how I got it to update in through the app store. Open App Store on your Mac if they don't show as an update in the tab and are not

  • Having trouble updating Website Media Query as desktop version across all platforms/devices in .css

    Hi all, thank you for taking the time to read this. I've been wondering how to update my website to view as a desktop version across al platforms... I am super new at this but have been having great success thanks to everyone in this forum.  I've bee