cancel
Showing results for 
Search instead for 
Did you mean: 

Identifing Released Networks

Former Member
0 Kudos

Hi,

i am new to PS Module. I got an object in PS Module.

In that I have to identify networks, which have status released(REL), without the status Technical Complete (TECO) or Closed(CLSD).

Please tell me the name of the table where can i find the Network, it's Status and activities of that network.

Thanks & Regards

Rahul

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Rahul,

You will not find all that information gathered in a unique table. You must check:

AFKO order header data

AUFPL networknumber,

AUFK order master data

AFVC activity master data

JEST network and activity status via object number where I0002 is status REL, I0045 status TECO and I0046 status CLSD

TJ02T status name and desctiption for each status ID.

Hope this helps

Regards

Martina

Former Member
0 Kudos

Hi Martina,

Thank you very much.

In the Table JEST i am unable to find any status like REL ,TECO or I0002 ,I0045.

Whether there is any table that maintains thes statuses.

Thanks and Regards

Rahul

Former Member
0 Kudos

If you want to use a program and check the status of networks you can use the folowing code:

This is for checking the status of WBS but you can do the same for the network.

-


b_result = b_false.

CALL FUNCTION 'STATUS_CHECK'

EXPORTING

objnr = prps-objnr

status = 'I0002'

EXCEPTIONS

object_not_found = 1

status_not_active = 2.

IF sy-subrc <> 0.

b_result = b_true.

ENDIF.

-


Regards

Jose Marin

Former Member
0 Kudos

Hi,

Pass the OBJNR into JEST of the object-WBSE/Network Activity,you will get the Status No like I0002 etc.

Pass this Status no into TJ02T,you will get the text of that status no like Rel.

Muzamil