Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Equipment current status

former_member719641
Participant
0 Kudos
1,419

I am able to get all status of a particullar Equipment, but how to determine the current status of the equipmen whether it's Active or In Active?

---Anil Kumar

1 ACCEPTED SOLUTION

raymond_giuseppi
Active Contributor
0 Kudos
1,317
  • Outside of an update transaction you can read table JEST
  • Else you can use a FM such as STATUS_READ which will first try to read buffered data if available.

(Don't forget the conversion exit on status format, STATUS_NUMBER_CONVERSION, STATUS_TEXT_CONVERSION)

4 REPLIES 4

Tomas_Buryanek
Active Contributor
0 Kudos
1,317

Hi Anil,

try check table JEST (Individual Object Status) and there field INACT (Indicator: Status Is Inactive).
Is this what you are looking for?

-- Tomas --

0 Kudos
1,317

There are two records in JEST Table for the Equipment and Actual status are INAC & INST. In JEST Table this is showing STATUS is I0099(AVLB) & I0100(INST).

raymond_giuseppi
Active Contributor
0 Kudos
1,318
  • Outside of an update transaction you can read table JEST
  • Else you can use a FM such as STATUS_READ which will first try to read buffered data if available.

(Don't forget the conversion exit on status format, STATUS_NUMBER_CONVERSION, STATUS_TEXT_CONVERSION)

0 Kudos
1,317

I am able to extract the system statust of equipment by using 'BAPI_EQUI_GETSTATUS' which gives me the all status for this equipment. But still the changed system status is not reflecting in JEST table.

By the way, we have resolved my issue.

Thanks to All.