System status field  table name

Dear all,
I required help from all of you for finding the table  name for system status of equipment
Thanks
Raghav

Hi,
JEST - Individual Object Status
JCDS - Change Documents for System/User Statuses (Table JEST)
TJ02T - System status texts
TJ30T - Texts for User Status
To access jest/jcds use EQUI-OBJNR.
Regards,
Maria João Rocha

Similar Messages

  • No status shown in system status field.

    Hi All,
    In our project structure,  system status field is blank. No status is shown in the filed(like; CRTD,REL, etc..).
    Please suggest how to resolve it.
    Thanks..

    Hi,
    Run program CNSTATUS for any inconsistencies in project statuses.
    Regards,
    Kabir

  • System Status & User Status Fields/Tables for PM Order

    Hi All,
    May I know the PM Order System Status & User Status Field Names & Tables??
    Sundar

    Dear,
    Table- JEST  to get the status of the order &
    Table- TJ02T to get the text for the internal status & TJ30 to get the text of external status.
    regards
    sunil

  • System Status field in QA33 transaction

    Hai Friends,
    In QA33 transaction i am giving date,plant and inspection lot numbers as 89 and i execute.
    i am getting a list. From this list i want to take the last column"System Status".
    Please tell me the table name where i can fetch. In my program i am using QAMR ,QALS tables where i cannot find this field.
    Thanks.............

    Check the Function Module
    STATUS_TEXT_EDIT

  • Field & Table name of tarnsport vendor in migo - Goods reciept

    Can anybody tell the table name and field name of transport vendor in MIGO Goods reciept. If I press the f1 then it shows the table name as GOFRIGHT field name VENDORNAME. but the GOFRIGHT is the structure not he table.
    Atul

    If you are looking ofr Freight Vendor entered in PO, then you can use table KONV & field name is LIFNR where KNUMV(Condition record) is equal to EKPO-KNUMV.
    Hope this clarifies your queries.
    Regards
    Bhavesh Mistry

  • Field & Table Name of ER1 Report

    Dear Experts ,
    I am working on customisation of ER1 report, I wanted to know the field names & table name of the below given data.
    DETAILS OF GOODS OF GOODS MFGD
    1.PRODUCT DESCRIPTION
    2.CETSH
    3.OPENING BALANCE
    4 QTY MFGD
    5.QTY RECVD
    6.CLOSING BALANCE
    7.ON WHICH DUTY IS PAID
    8.OTHERS W/O PAYMENT OF DUTY -FOR EXPORTS
    REMOVAL:
    1.PRODUCT DESCRIPTION
    2.QTY REMOVED
    3.ASSESABLE VALUE
    4.RATE OF DUTY (INCLUDING NOTIFICATION & RELEVANT SERIAL NO.)
    5.TOTAL DUTY PAYABLE
    6.TOTAL DUTY PAID
    DUTY PAYMENT DETAILS
    1.DATE OF PAYMENT
    2.MODE OF PAYMENT
    3.CENVAT
    4.SDE
    5.TOTALDUTY PAID
    Thanks
    DGN

    Got no solution

  • System status text table

    Hi guys,
    I am looking for table where is stored text of system status from sale order. The system status I mean the status of item in status tab where is writen e.g CLSD FNBL MtoO RESA SETC. (CLSD - closed, FNBL - final billing...)
    I know that in table JEST there is ID of the system status, but I can´t find text of these statuses.
    Thanks for any clue.

    The table with text of system status is TJ02T.

  • Standards for creating fields & table names

    Hi All,
    I need to know if there are any SAP standards or standards from clients to be followed in creating new fields, tables & description.
    If there are any such data, please share with me.
    Urgent.
    Regards,
    Pramod

    Hi Pramod,
    mostly we're using a common Term for the field name. The field code is the field name in uppercase using MDM_ as prefix. As you have to replace blanks (a field code does not allow blanks) we use an _ instead. Note: if you want to distinguish between SAP created and custom fields, we recommend using a different prefix! Maybe you can start your Custom field codes with ZMDM or a prefix describing your customer? Currently we cannot enforce this in MDM as the MDM_ prefix is not yet protected. But if you follow our recommendation, it'll ease up your life and of course ours, too, as we can differentiate between SAP and customer fields in OSS messages.
    Edit: regarding descriptions
    If your field is somehow linked with a ERP field, you could reuse the description of ERP for example!
    Cheers
    Michael
    Edited by: Michael Theis on Jul 25, 2008 10:57 AM

  • COOIS system status field doest allow drop down list

    hi,
    In COOIS my user is unable to view the drop down list for SYSTEM STATUS. it doesnot allow to see the drop down list with F4 and drop down click.
    Whome do i refer to?
    Regards,
    Sameer Jalal

    Dear,
    I read mentioned note and there are following text under solution:
    Implement the source code corrections as described in the correction instructions.
    when i click on Correction Instruction 771905
    Note :  0001257156 Order information system: Selection according to sys. status
    Correction: 0120031469 1  0000681041
    but there is no text in correction instruction(0000681041).
    FYI... the SP SAPKH60016 is mention in this note while our system have SP SAPKH60020.
    Regards,
    Sameer Jalal

  • Outbound Delivery - Header (Text field - Table Name)

    Hi All,
    In outbound delivery header - Texts tab i notice that we can maintain some texts. May i know which table i should refer to read the text entered.
    I can read the text type key from the table TTXTD, but i need to read the actual text entered by the user.
    Hope my question is clear, await your inputs.
    Regards,
    Vivek

    HI,
    SAP has already provided a various functions for read the text element. So you no need to get the value from table directly!
    There is some example
    CALL FUNCTION 'READ_TEXT'
           EXPORTING
              CLIENT           = SY-MANDT
              ID               = T_TEXT_ID
              LANGUAGE     = 'E'
              NAME          = T_UNIQUE_ID
              OBJECT          = T_TXTOBJ
         IMPORTING
              HEADER          = HTEXT
         TABLES
              LINES          = T_READ_LINE
         EXCEPTIONS
              ID               = 1
              LANGUAGE                    = 2
              NAME                            = 3
              NOT_FOUND                      = 4
              OBJECT                         = 5
              REFERENCE_CHECK     = 6
              WRONG_ACCESS_TO_ARCHIVE = 7
              OTHERS                  = 8.
    Let me explains as below parameters.
    T_TEXT_ID - Text id: example - '08000123', also is the document no.
    T_UNIQUE_ID - Text unique ID: example - 'ZD01'
    T_TXTOBJ - Text Object: example - VBBK
    That information can find it on relevant of document. In your case, you can fount it on the below path:
    VF01n/VF02n > GoTo -> Header -> Text -> detail (is the push small button, then it will go to the next screen) -> Goto -> Header.
    Return Value tales - THEXT and Table Line - T_Read_line
    You must declare this variable before,
    DATA: BEGIN OF HTEXT OCCURS 50.
            INCLUDE STRUCTURE THEAD.
    DATA  END OF HTEXT.
    DATA: BEGIN OF T_READ_LINE OCCURS 50.
            INCLUDE STRUCTURE TLINE.
    DATA: END OF T_READ_LINE.
    READ TABLE T_READ_LINE INDEX 1. "read the line value
    I hope this can help, so remembers reward the points

  • ARBPL & RUECK field table names

    hi,
         i have to link the confirmation number (RUECK) and workcentre(ARBPL) .pls suggest me the respectieve table so that i can link this two fields.
    Thanks in advance.

    AFRU- RUECK (Order confirmation table)
    From AFRU take AUFPL
    You should connect to AFVC  (operation within an order)
    Look for group no (PLNNR) in AFVC
    and connect to routing table to get the workcenter (ARBPL)
    If necessary your can connect AFVV also
    I guess you know about AFKO and AFPO table to start with
    Regard
    Manikandan .J

  • How to find table name for the fields from Standard Extractor in CRM system

    How to find table name of fields from the standard extractor in CRM system ?
    e.g. We use LBWE TCode in R/3 system to find table name for the field from Extractor VCSCL(e.g.).
    Likewise is there any way to find table name for the fields from Standard extractor like 0CRM_LEAD_I.

    Hi ,
    Please find the link below for understanding BW CRM analysis.
    http://help.sap.com/bp_biv135/html/bw.htm
    activate the CRM DSs by scenario:
    1) Activate the application component hierarchy (tcode RSA9). Changes made to the application component hierarchy in the CRM system can be transferred to the BW using the "Edit Application Component Hierarchy" (SBIW - Postprocessing of DataSources).
    SAP Note 434886 must be implemented in CRM 3.0 before the application component hierarchy is activated.
    2) Activate the Business Content DataSources (tcode RSA5).
    Select/enter the application component and choose Execute (F8).
    To compare the shipped and active versions, choose the 'Select Delta' pushbutton. If there is no active version of the DataSource, it is selected automatically.
    To activate the shipped version, choose the 'Transfer DataSources' pushbutton.
    3) Management of the versions of the BW-Adapter metadata (tcode BWA5). All DataSources are displayed that are managed by the BW Adapter.
    As in transaction RSA5 (Service API Metadata Activation), the 'Select Delta' function can be used to select the inactive DataSources or compare shipped and active versions.
    You can also go directly to the screen for maintaining DataSources that are managed by the BW Adapter.
    The 'Compare Version' function makes a detailed comparison of the shipped and active versions.
    All BW-Adapter metadata is considered when versions are compared:
    Header information (Table SMOXHEAD)
    Mapping information (Table SMOXRELP)
    Global selection conditions (Table SMOXGSEL)
    Attribute key fields (Table SMOXAFLD)
    Hope this helps.
    Regards,
    csm reddy

  • 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

  • Handling unit system status

    Hello Everyone,
    I am looking for system status of handling units.
    In HUMO transaction, under tab-strip <b>Status</b>, we have <b>HU-specific data</b>. In this block, we have <b>System status</b> field, where the status of handling units are maintained.
    I am trying to retrieve the value of this system status field from database table, but it takes me to structure VEKP_TXT under which there is one filed SYS_STATUS.
    Could not find in which table the system status are stored by SAP.
    The possible values of this status field are:
    PHEX
    UNLD
    Anybody having idea where the value of system status field gets stored in database table.
    Thanks in advance.
    Regards,
    Tarun

    Hi TG  ,
    values comes from Domain , So try to get values from domain itself.
    <b>DDUT_DOMVALUES_GET</b>and name is <b>HU_SYSSTATUS</b>--->System status.
    Regards
    Prabhu

  • System status HU Lock

    Hi,
    Could some one explaine about system status HU ?
    I have HU with system status is lock. why is lock ? lock by user or by transaction ?
    Thanks & Regards,
    Saiful arif

    Hi,
    you can check the system status of an HU in transaction humo f.e.: add HU number + execute -> menu: edit - display HU -> go to tab 'status'. Here you can see the status of the HU. If you see status 'LOCK' there, then the HU was locked by someone.
    You can also check the system status of an HU in table HUSSTAT with the object number (you can find this under the status info in humo, when you click on the information button next to the system status field). This object number is always HU + VENUM (the internal HU number filled up to ten characters with zeros). When status I0517 is active, it means that the HU is locked.
    You can check in transaction bs23 what you are allowed to do with an HU that has status "I0517  LOCK Locked" (double click on this line). Here you can see that you are not allowed to do anything with an HU that is locked, just unlocking is allowed.
    In this transaction you can check for all HU statuses what is allowed and not allowed to do with an HU if it has that status.
    You can lock and unlock an HU in transaction HUMO: add HU number + execute -> menu: edit - (un)lock HU.
    Regards,
    Ely

Maybe you are looking for