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

Similar Messages

  • How does system status influence the crm transactions?

    Dear CRM Experts,
    Can you please clarify the use of system status in the crm transactions?how it's control or influence the crm transactions.can we link  the R/3 and CRM transactions using system or user status?how user status & system status are linked?
    Please provideme the solution for  the above mention points.
    Warm regards,
    Ronnit

    hi
    Using status management, you can find out about the processing status of a business transaction, and change individual statuses. Each status informs you at header and item level that a specific status has occurred (for example, quotation has been released), and specifies which step may be executed next (for example, release is allowed).
    *user status*
    A status set by the user to complement the system status for a given status object.
    You can use only a user status belonging to a status profile (defined in Customizing) and assigned to the relevant status object.
    User statuses enable you to extend the control of business processes managed by the system status. You can set and delete user statuses manually when carrying out business transactions.
    *System Status*
    A status the SAP System sets internally as a part of general status management.
    This status tells the user that a certain business transaction was performed for an object.
    moreover using user status is customised,you can mainatian your own user uset status and control the system response as decided by the system status
    for this you can make your status profile which when you atach to your transaction can be used in particular transaction*
    *Status Profile*
    A profile used to control user statuses.
    A status profile is created by the user in general status management.
    In a status profile you can:
    Define the sequence in which user statuses can be activated*
    Define initial statuses*
    Allow or prohibit certain business transactions*
    *more about system status*
    Each marketing project goes through various system statuses, one of which is always set:
    ·        Created
    ·        Released
    ·        Finished or Rejected
    ·        Locked
    ·        In Process
    ·        Approved
    *System Status Overview*
    *Created (CRTE)*
    Use
    In the Created status, you structure the marketing project and enter plan values and dates.
    Features
    This system status is the initial status for new marketing projects. The status is set automatically when you create a new marketing project.
    The status does not allow you to:
    ·        Transfer to ERP
    ·        Transfer the target group to the channel
    *Released (REL)*
    *Use*
    Structuring is complete and the marketing project is released for the operative execution of the marketing activities.
    Prerequisites
    The marketing project has the Created status.
    Features
    In the Released status, you can create new, lower-level marketing projects and change the hierarchy. The Released status is passed on automatically to lower-level marketing projects.
    *Finished (FINI)*
    Use
    This status identifies a finished/completed marketing project. A marketing project with the Finished status can no longer be changed.
    Prerequisites
    The marketing project has the Released status.
    Features
    Lower-level marketing projects belonging to the same marketing project are also finished automatically. This does not apply to lower-level marketing projects that have the Finished or Rejected status.
    You can revoke the Finished status. The system then automatically revokes the status for all upper-level marketing projects in the relevant marketing project. For this, it is prerequisite that none of the marketing projects on a higher level to the relevant marketing project are finished or rejected.
    more details you can see in
    http://help.sap.com/saphelp_crm50/helpdata/en/81/1ba63a28195840e10000000a11402f/frameset.htm
    http://help.sap.com/saphelp_crm50/helpdata/en/c5/e4aed5453d11d189430000e829fbbd/frameset.htm
    check out table JEST and TBOJ!,for system status and object relationship,along with user status.
    guess i have cleared your doubt
    best regards
    ashish

  • 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

  • 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

  • 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

  • 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

  • Changing the System status for previous transactions

    Hello,
    Could some body help me with this ?
    I have a User status profile with user status ABC which triggers system status Inprocess. This is applicable for all the new transactions for which we set the status ABC which works fine. But we have some previous transactions  ( Prior to this config ) with status ABC , but system status is not Inprocess.
    How can we change the system statuses for all these transactions? do we have a report for this?
    Best Regards,

    Hi,
      You can use 'STATUS_CHANGE_INTERN' FM to change the system status. Pass Object number and status ID as inputs to the Function Module.
    Regards,
    Lakshmi.Y

  • How to find the Project and wbs Element System Status

    Hi all,
      How to find the Project and wbs Element System Status.
      We can find the system status in the CJ20n transaction but I want the table and field name where it is stored.
    Regards
    Raghavendra

    Hi,
    try table <b>jest</b> with key = prps-objnr
    Andreas

  • 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

  • PM Order System Status

    Hi Experts,
    When i am creating any maintenance PM Order the System status is Blank.May i know how can i resolve this. Initially during the creation of Order it should come CRTD but nothing is coming in System status field.
    Regards,
    Kavvya

    Hi All,
    If you activate the user-exit STATTEXT (INCLUDE ZXBS1U01), this problem occurs.
    To solve the problem, you have to add the following code in user-exit;
    system_status_line_exp = system_status_line.
    user_status_line_exp     = user_status_line.
    copy import parameters to export paramaters with this piece of code,
    otherwise, in standard transactions, Status of objects  vanished (all of MM,PM,PP,QM.. modules!!)
    Mehmet Ali

  • System status and configuration tab in equipment master.

    Hi,
    Will some one expalin following points.
    1.Can we add / modify system status in configuration.-if yes path for the same.
    2.Is system status  linked to user status-if yes path for the same.If no on whhich basic system status is changed .
    3.What is use of configuration data tab in equipment master.Is this required for creating work order,notification ,task list etc.Is their any link between equipment master and material master.
    Thanks & Regards
    Vinay

    Vinay,
       1. Yes you can add modify system status using transaction BS22. However these are system delivered functionality and its not advisable to change these.
      2.Its the other way around. User status can be linked to system status through the configuration for user status.Double lick on the user status definition to reach the system status dependencies editor in transaction OIBS.
    3. Equipment master and material master can be linked either through serial number functionality (Material number + serial number =  Equipment number) or through the "Construct" field(Structure tab)  in the equipment master. The configuration data tab is used to link equipment master to a pre-existing variant of material. [Sap Help|http://help.sap.com/erp2005_ehp_04_sp/helpdata/en/01/d5454a4ab311d189740000e8322d00/frameset.htm]
    Regards
    Narasimhan

  • System status INCM is active

    Hi all, I am working in SRM 4.0 and when I try to do a confirmation, the system throws this message:
    System status INCM is active
    Transaction CO Through-postings from FI has been locked 
    I check all periods in FI, CO and MM and all are OK.
    What can be happened?
    Thanks in advance
    Rosa

    Sorry! the problem was solved, there is a period in CO that have problems and it was locked....
    Sorry about this
    ROsa

  • Change client after changing system status

    first we registered our system as develop. after that we have to change its status to productive. on service.sap.com we changed the system status to productive. in transaction USMM we changed the system type to production. as far as i concern also we had to change the mandat status to productive.how can we do it? can you help me with the documentation or to write how to do it.
    thanks in advance

    Hi Andrey,
    You can change the client status to "Production" in SCC4. Is this what you mean?
    Gary

  • Changing system status depending on user status

    Hello All,
    What I need to do is, when the user sets the user status to, let's say, "Finished", I have to detect it and change the system status to "Concluded".
    Does anybody have any idea about how could I manage this situation?
    Thanks in advance.

    If you set the system status from within the transaction online, the solution by Richard is indeed correct. However, if you change a user stauts using an action, you have to perform two actions: set the user status (FM CRM_STATUS_CHANGE_EXTERN) and set the system status (FM CRM_STATUS_CHANGE_INTERN) as well.
    In this case, you also must check if you have to set this status only on header level, or also on item level, but a good developer can help you out on this one.
    Hope this helps you.

Maybe you are looking for