cancel
Showing results for 
Search instead for 
Did you mean: 

Transaction SWO1 questions...

Former Member
0 Kudos

Hi,

In SWO1 transaction, under methods node, I see couple of them as pink and couple of them as white ? What does the difference of colour signify ? Also what does it mean when the Green light is the accompanying the method ?

Regards,

Rajesh

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

hi rajesh,

always we can take it as granted that

GREEN------- BAPI ( remote enabled function modules )

PINK RED -


these r methods that r not porocessed successfully or we can say that these r stopped due to some errors ( abrupt termination)

WHITE -


normal methods other than bapi , used with in our bussiness process

varma_narayana
Active Contributor
0 Kudos

hi

Methods in Pink red are the Methods implemented thru an interface.

Methods in White are the Methods Define in the Business Object itself.

Methods with Green light means they are BAPI methods that points to a Remote Function Module (API Methods).

REWARD IF HELPFUL.

Former Member
0 Kudos

Rajesh,

The methods in red are methods which have been inherited from the interface of the BOR object. (In case of delegation, you will find that all methods of the parent object are in red)

The methods in white are those which have been defined in the current BOR object.

A green icon next to the method indicates that it is an API method which has been released. (In other words it is a BAPI, go to into the code of the method and you will find only a call to a BAPI).

Regards,

Srihari

Former Member
0 Kudos

Hi,

Check this code that displays the ICON..These flags are available in the table SWOTDV..

  • Write Objecttype state

IF NOT BASEDAT-OBSOLETE IS INITIAL.

  • State 'obsolete'

WRITE: ICON_BREAKPOINT AS ICON NO-GAP, SPACE NO-GAP.

ELSEIF BASEDAT-MODELONLY = SWOB_REL_STATE_MODEL.

  • State 'model'

WRITE: SYM_DOCUMENT AS SYMBOL NO-GAP, SPACE NO-GAP.

ELSEIF BASEDAT-MODELONLY = SWOB_REL_STATE_RELEASED.

  • State 'released'

WRITE: SYM_CHECK_MARK AS SYMBOL NO-GAP, SPACE NO-GAP.

ENDIF.

Thanks

Naren