In T-Code IE03 Equipment status is displaying this status isin which table

Hi,
In T-Code IE03 Equipment status is displaying,  this status is in which table we can find.  ( I mean this status is  in which tables storing).
My requirement is Equipment related report is there,  this report is displaying now all equipments irrespective of status,   enhancement for that report is which equipment status is having Deletiong flag 'DLFL' it should not display in report output.
I have to check the status to incorporate the logic for that,   I need the tables where it is storing.  In EQUI and EQUZ tables deletion flag field is there but this field is not set which equipment is having deletion flag in IE03 displaying status 'DLFL'.
Please let me know where I can get the status.
Regards,
Ganesh

Hello
1. Goto table EQUI with equipment number. Get OBJNR.
2. Goto table JEST with OBJNR. Get JEST-STAT (may be any records)
3. Goto table TJ02T with ISTAT = JEST-STAT.
You will have all status for particular equipment number.

Similar Messages

  • Available Stock status (MM) - which table should I take and what are the fields ??

    Kindly Suggest Me !!!
    Report that outputs stock, grouped by Material type and Plant. The output shows Material no, Storage location, unit of measure and description in addition to group table using ALV.
    Thanks in adv.
    Bunty ( New to SAP )

    Hello Bunty
    When you run the report put in current month in date fields, then when you are in the report you can add the different fields you need.
    At the top there is a button called 'Switch Drilldown', this enables you to view by Material Type etc. Fourth from the right is another button that looks like the standard variant button, here you can add or remove different figures for valuing the stock.
    Don't forget that this report views periods so you can use average stock etc by changing the month.  Also make sure that any stock reports you are using reconcile with each other.
    Michael

  • 11G ADF java datacontrol and displaying new records in ADF table

    Hi,
    In 11g I have a java class which return a list of objects and I made a data control on it. I displayed this in a ADF Table based on a ADF tree binding.
    When I fire the create operation on this java data control I see in the tree binding that the new entry is created and even the table has the correct
    rowcount but the new records are not displayed in the adf table. I added PPR but this not work.
    Empty new classes are displayed when they are added before the page is loaded.
    the only difference between a class created by ADF and initial by the adf datacontrol is that mAtrrHintsMap hashmap of DCdataRow is null and the other has 2 entries
    What can it be in 10.1.3 it works
    here my test data
    public class Data {
    private String lovLabel;
    private String lovValue;
    public Data() {
    public Data(String lovLabel, String lovValue) {
    super();
    this.lovLabel = lovLabel;
    this.lovValue = lovValue;
    public void setLovLabel(String lovLabel) {
    this.lovLabel = lovLabel;
    public String getLovLabel() {
    return lovLabel;
    public void setLovValue(String lovValue) {
    this.lovValue = lovValue;
    public String getLovValue() {
    return lovValue;
    here the data control class
    public class LovData {
    public LovData() {
    public List<Data> getLovData() {
    List<Data> data = new ArrayList<Data>(4);
    data.add(new Data ("One","1"));
    data.add(new Data ("Two","2"));
    data.add(new Data ("Three","3"));
    data.add(new Data ());
    return data;
    here is the pagedef
    <executables>
    <methodIterator id="getLovDataIter" Binds="getLovData.result"
    DataControl="LovData" RangeSize="25"
    BeanClass="nl.whitehorses.model.Data"/>
    </executables>
    <bindings>
    <methodAction id="getLovData" InstanceName="LovData.dataProvider"
    DataControl="LovData" RequiresUpdateModel="true"
    Action="invokeMethod" MethodName="getLovData"
    IsViewObjectMethod="false"
    ReturnName="LovData.methodResults.getLovData_LovData_dataProvider_getLovData_result">
    </methodAction>
    <tree IterBinding="getLovDataIter" id="Data">
    <nodeDefinition DefName="nl.whitehorses.model.Data">
    <AttrNames>
    <Item Value="lovLabel"/>
    <Item Value="lovValue"/>
    </AttrNames>
    </nodeDefinition>
    </tree>
    <action IterBinding="getLovDataIter" id="Create" RequiresUpdateModel="true"
    Action="createRow"/>
    </bindings>
    </pageDefinition>
    here is the adf page
    <af:panelCollection inlineStyle="width:309px; height:168px;" id="pc2">
    <f:facet name="menus"/>
    <f:facet name="toolbar">
    <af:toolbar>
    <af:commandToolbarButton actionListener="#{bindings.Create.execute}"
    text="Create"
    disabled="#{!bindings.Create.enabled}"
    partialTriggers="table1 ::pc1:table2"/>
    </af:toolbar>
    </f:facet>
    <f:facet name="statusbar"/>
    <af:table value="#{bindings.Data.collectionModel}" var="row"
    rows="#{bindings.Data.rangeSize}"
    emptyText="#{bindings.Data.viewable ? 'No rows yet.' : 'Access Denied.'}"
    fetchSize="#{bindings.Data.rangeSize}" id="table1"
    binding="#{UserPreferences.table1}">
    <af:column sortProperty="lovLabel" sortable="false"
    headerText="#{data.lovLabel}">
    <af:outputText value="#{row.lovLabel}"/>
    </af:column>
    <af:column sortProperty="lovValue" sortable="false"
    headerText="#{bindings.Data.hints.lovValue.label}">
    <af:outputText value="#{row.lovValue}"/>
    </af:column>
    </af:table>
    </af:panelCollection>
    and here some backing bean code
    DCBindingContainer bc = (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
    FacesCtrlHierBinding treeData = (FacesCtrlHierBinding)bc.getControlBinding("Data");
    Row[] rows = treeData.getAllRowsInRange();
    System.out.println("tree 1_1 "+rows.length+" "+table1.getRowCount());
    treeData.refreshControl();
    System.out.println("tree 1_2 "+rows.length+" "+table1.getRowCount());
    AdfFacesContext.getCurrentInstance().addPartialTarget(table1) ;
    hope this helps
    thanks Edwin

    What if you place the create button in the same panelGroup as the table?
    I did a quick try and it seemed to work fine for me.
    jspx code:
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=windows-1252"/>
      <f:view>
        <af:document>
          <af:messages/>
          <af:form>
            <af:panelGroupLayout>
              <af:commandButton actionListener="#{bindings.Create.execute}"
                                text="Create"
                                disabled="#{!bindings.Create.enabled}"
                                partialTriggers="table1"/>
              <af:table value="#{bindings.lovData.collectionModel}" var="row"
                        rows="#{bindings.lovData.rangeSize}"
                        emptyText="#{bindings.lovData.viewable ? 'No rows yet.' : 'Access Denied.'}"
                        fetchSize="#{bindings.lovData.rangeSize}" id="table1">
                <af:column sortProperty="lovLabel" sortable="false"
                           headerText="#{bindings.lovData.hints.lovLabel.label}">
                  <af:outputText value="#{row.lovLabel}"/>
                </af:column>
                <af:column sortProperty="lovValue" sortable="false"
                           headerText="#{bindings.lovData.hints.lovValue.label}">
                  <af:outputText value="#{row.lovValue}"/>
                </af:column>
              </af:table>
            </af:panelGroupLayout>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>

  • In transaction code BBP_PD the status of the workitem is not updating showi

    Hi Gurus,
    We have implemented N-Step BADI BBP_WFL_APPROV_BADI For Approvals Levels in SRM.
    Work flow is triggering correctly and workitem is sent at all the levels. But in transaction code BBP_PD the status of the workitem is not updating showing the error message "NO WORKITEM FOUND" also status is not updating in BBP_PD.
    Please reply with your suggestions.
    Thanks in advance.
    Madhukar

    Hi
    Thanks for your reply.
    We are getting "No workitem found" status in BBP_PD transaction. But all approval process is happening perfectly and when we check status through "Status Monitor " through web it is updating correct status.
    Status is updating in BBP_PD .Status of main workflow is displaying correctly and approval levels and corresponding approver names are displaying correctly, but only the status and time of approval is missing.
    can you suggest something on this issue.
    Workflow Item:                                                                               
    Workitem-ID        000002009126                                                                               
    Task                      WS90000040                                                                               
    Text                       Shopping Cart Approval N-Step 185522 (BADI)                                                                               
    Status                    STARTED                                                                               
    Statustext              In Process                                                                               
    Date                      09/24/2008                                                                               
    Time                     08:18:09                                                                               
    Node ID            Agent                    User                         State        Workitem       Created at                   
    0040000000      Kotesh APP       APP_KOTESH          No workitem found                                                  
    0040000002                                                                    No workitem found                                                  
    0040000001      shiva APP         APP_SHIVA               No workitem found                                                  
    0040000004                                                                    No workitem found                                                  
    0040000003     shiva APP         APP_SHIVA               No workitem found                                                  
    0040000006                                                                   No workitem found                                                  
    0040000005      SM1                 NNA_FA_SM_1         No workitem found                                                  
    0040000008                                                                   No workitem found                                                                               
    Regards
    Madhu

  • History of Equipment Status

    Hi  Experts,
    I have a requirement where I need to display the equipment status/statuses active on a date other than current date. I know that table JCDS stores the value of changed status but there is nothing about the statuses which are active and not changed on that date.
    Can anyone please let me know if there is any standard report available in SAP which shows equipment's past equipment statuses or if you can help me in getting the logic to get this.
    Thanks..

    Hi  Experts,
    I have a requirement where I need to display the equipment status/statuses active on a date other than current date. I know that table JCDS stores the value of changed status but there is nothing about the statuses which are active and not changed on that date.
    Can anyone please let me know if there is any standard report available in SAP which shows equipment's past active equipment statuses or if you can help me in getting the logic to get this.
    Thanks..

  • Equipment status table field...

    Hi,
    Does anyone know in which table is stored the equipment status field (Display lines for system status ITOBATTR-STTXT ). The field that tells you if the equipment is installed or available or flagged for deletion..
    I will really appreciate any comments.. thanks in advance.
    JV

    Hi
    http://www.sapfans.com/forums/viewtopic.php?t=199800&highlight=equipment+staus
    Goto EQUI Get the value from OBJNR based on EQUNR
    Now goto Jest table ,use OBJNR and you get many status.
    Either you can use JEST Table or FM STATUS_READ
    You can see all system status in Transaction BS23
    or
    Please check these tables.
    TJ02
    TJ02T
    TJ30
    TJ30T
    JEST
    <b>Reward ff usefull</b>

  • Test web service published returns Error code: InternalError, Http status code: 500

    Further invastigating ther error mentioned here: 
    https://social.msdn.microsoft.com/Forums/azure/en-US/14afa50f-287d-4158-852a-c9532f9f30eb/test-published-web-service-experiment-error-with-status-code-400?forum=MachineLearning
    I have made an even simpler experiment with two python scirpt modules. The experiment again runs fine in Azure ML Studio but fails in the web service test with the error
    Error code: InternalError, Http status code: 500, Request id: 53eef674-190a-4f63-bdc6-a072a45a9c72, Timestamp: Fri, 24 Apr 2015 09:30:37 GMT
    The experiment consists only of two python script modules. The code of the first module:
    import numpy as np
    import pandas as pd
    def azureml_main(dataframe1 = None, dataframe2 = None):
        dataframe1.loc[1] = ["U5000","resB",np.nan]
        dataframe1.loc[2] = ["U5000","resC",2]
        dataframe1.loc[3] = ["U5000","resD",2]
        dataframe1.loc[4] = ["U5000","resE",np.nan]
        dataframe1.loc[5] = ["U6000","resA",np.nan]
        dataframe1.loc[6] = ["U6000","resB",1]
        dataframe1.loc[7] = ["U6000","resC",2]
        dataframe1.loc[8] = ["U6000","resD",np.nan]
        dataframe1.loc[9] = ["U6000","resE",1]
        dataframe1['hasRated'] = pd.Series(1, index=dataframe1.index).astype(bool)
        df_new = pd.DataFrame()
        df_new = pd.DataFrame(dataframe1[["restaurant","rating","hasRated"]])
        return df_new,
    The code of the second module that takes as input the result of the first module:
    def azureml_main(dataframe1 = None, dataframe2 = None):
    return dataframe1,
    A url of a screenshot taken from the experiment.
    http://i.imgur.com/4nrbneA.png
    Please respond. Again I am using a free workspace of Azure ML Studio.
    Thank you very much

    Thank you for your quick reply.
    I hope you will be able to resolve this issue soon.
    asavvopoulos

  • Error code: InternalError, Http status code: 500 while testing an experiment

    Creating a very simple experiment with just a Dataset, followed by a simple regresion using an Execute
    R Task , I get an internal server error while testing the published experiment
    Hitting run everything goes smooth and I can see all data,but when i hit 'test' from the web services dashboard
    right after publishing,I get this:
    Error code: InternalError, Http status code: 500, Request id: d87e2d01-16ef-4ac9-8a5d-a58d41aab2d4, Timestamp: Tue,
    03 Mar 2015 12:19:55 GMT
    How can I handle this ?
    Thank you in advance.

    Hi Shreyas!
    Are you familiar with the tryCatch() function in R? in your error condition, you can return the error message a bit more cleanly as shown in the following code snippet. FYI one common error we see is R scripts that are not able to handle a single-row input
    or with mismatched data types.
    tryCatch({
    # Do what you want in here
    maml.mapOutputPort("data.set");
    }, error = function(e) {
    data.set = data.frame(errormsg = conditionMessage(e))
    print(conditionMessage(e));
    maml.mapOutputPort("data.set");

  • ME21N - in which table saved the release status for specific release code ?

    and for the specific po number.

    Hi
    You will find all Release codes in T16FS
    Release procedures are used in condition tables to control whether the condition types for these condition tables have to be read during pricing condition determination or not.
    If the condition table status is released then only the condition types will be read during pricing determination. If the status is not released, then they can be used for information purposes or for simulation of pricing.
    The release status is controlled by processing status too, which can be seen in condition record creation screen.
    So in crux, the processing status with Release status help in simulation of pricing, blockign the condition records from being read during pricing etc.
    For more information an F1 help on the following path will give you some more information.
    SPROSD-BF-PRICING-DEFINE PROCESSING STATUS----Here read the documentation meant for this link. You will get some more clarity on this.
    <b>Reward points</b>
    Regards

  • Update superior equipment status based on sub equipment status

    Dear friends,
    I have a scenario for calibration process for  which there are two equipments .One sub equipment and the other superior equipment. Calibration process is done for sub equipment and I have given usage decision as rejected based on which sub equipment staus gets updated as NPRT(PRT not ready for use). Now the client requirement is as that the superior equipment also get the status NPRT since they are linked through superior/sub equipment relation. Kindly suggest some solutions.
    best regds
    Arun

    Dear friends ,
    I have observed that if a sub equipment is assigned to a superior equipment ,the equipment status of sub equipment does not get updated when calibration process is run.(NPRT status does not get updated if an equipment is installed to a superior eqpt when usage decision is made for not accepted). So there is no possiblity of updating the superior equipment status. Hence kindly ignore my query.
    best regds
    Arun

  • Invalid Code (Customer Equipment Card - State)

    Hi ,
          I am facing problem when i am creating a delivery for a particular customer "Invalid Code[Customer Equipment Card - State] Message 173-36".But when i create delivery for some other customer which state is same it will not give error.
    Regards

    Dear Sandeep,
    This issue mihgt be a DB corruption issue. I would recommend you to please login a message with SAP regarding this issue.
    There could be another reason for this that the SBO_SP_Transactionnotifcation could have been modified. If so, please reset the sbo_sp_transactionnotification to the original code. For more information on sbo_sp_transactionnotification, please have a look at the following link :
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e991e2b9-0901-0010-0395-ef5268b00aaf]
    Hope it helps.
    Regards
    Arshdeep

  • What is excatly the fastpath of function codes in pf-status

    Hi friends,
    I would like to know what is excatly the fastpath of function codes in pf-status. I thought
    at first that I can choose a letter and in my program press Alt+letter and the function code
    will be executed but it did not work for me.
    Please help me.
    Regards,
    Udi.

    Hi aRs,
    Thank you for answering me.
    Is the fastpath is also for buttons or only for menus?
    Regards,
    Udi.

  • IE03 system status

    I would like to which table stores the system status information for an equipment.
    Thanks.

    Hi,
    Please check these tables.
    TJ02
    TJ02T
    TJ30
    TJ30T
    JEST
    JCDS
    Regards,
    KK

  • Html emails are not displaying. they just show the code. text emails don't display at all. what's up?

    suddenly today my email won't display properly. html emails just display the actual html code instead of a graphic display. Text emails just show a blank page. I have changed the View setting to show messages as original html, simple html and plain text. None of the settings restores things. All these emails were viewable properly yesterday.
    Anyone got any ideas as to what's up?

    sounds like your index and the data are out of synch. Often the result of anti virus activity either blocking the update of the index or quarantining the whole inbox so there is no mail left to display.
    Right click the folder, select properties and then the repair button.

  • Need to get rid of flicker in between image displays--the PC in which LabVIEW 8.2 is installed is routing images via LaVIEW code & 'extended desktop' to typical visual projector and between each image display is a flicker--that we need to remove

    Need to get rid of flicker in between image displays--the PC on which LabVIEW 8.2 is installed is routing images via LabVIEW code & 'extended desktop' to a typical visual projector and between each image display is a flicker--that we need to remove
    Attachments:
    Get JPEG Files in the folder.vi ‏13 KB
    Display image on the screen.vi ‏34 KB
    Create image file path.vi ‏12 KB

    In response to below------Thank you Lynn-----Yes, there is a main panel--I will attach----and if you have any further suggestions please let me know--Thanks again
    How are you running this program? Is there a top level vi which calls the ones you posted? The Display image on screen.vi will display two images in succession, but according to the note on the block diagram the second image is blank. It seems as though this would intentionally create a flicker.
    The sequence structure is unnecessary. Dataflow will determine the order of execution. The only exception is the time delay in the third frame. Since it has no data dependency, a single frame sequence may be useful to assure that the delay occurs before the picture is updated. A simple state machine might be a more versatile architecture for what you may be trying to do.
    It is not necessary to write the FR.PanelBounds property immediately after reading it, nor is it necessary to read it a second time in the second frame. Just wire from the first read.
    Lynn
    Attachments:
    Main Front Panel with Rendv Final Nov 6 with pause.vi ‏755 KB

Maybe you are looking for