cancel
Showing results for 
Search instead for 
Did you mean: 

Error occur when click on status management -C folder

Former Member
0 Kudos

Dear All

when i am clicking on status management tab,it showing

Fatal Error

A fatal error occurred; application stopped; inform your system administrator

Technical Information Technical Information

& if i clicking on technical information it shows below error

Trace

A fatal error occurred; application stopped; inform your system administrator

CL_CFS_P_STATUS===============CM006 33

METHOD get_profile_attributes .

  • Name : CL_CFS_p_STATUS.GET_PROFILE_ATTRIBUTES *

  • Issue : 25.02.2002 - GG - SAP AG *

  • *

  • Purpose : get attributes of a status profile

  • *

  • Changes : *

  • [ Date ] - [ Name ] - [ Action ] *

  • / / - - *

DATA: lt_tj20t TYPE TABLE OF tj20t,

ls_status_prof TYPE cfs_status_prof,

ls_profile_txt TYPE cfs_ts_profile_texts,

ls_tj20 TYPE tj20,

ls_tj30 TYPE tj30,

lf_stsma TYPE j_stsma.

FIELD-SYMBOLS: TYPE tj20t.

  • ---------------------------------------------------------------------

CLEAR rs_profile_attributes.

  • get profile data from "own" tables

CALL METHOD me->get_bsva_keys_for_profile

EXPORTING: i_id = i_id

IMPORTING: e_bsva_profile_key = lf_stsma

e_cfs_status_prof = ls_status_prof.

IF ls_status_prof IS INITIAL.

RAISE EXCEPTION TYPE cx_cfs_fatal_error.

ENDIF.

  • get profile data from BSVA (TJ20, TJ20T)

SELECT SINGLE * FROM tj20 INTO ls_tj20

WHERE stsma = lf_stsma.

IF sy-subrc <> 0.

RAISE EXCEPTION TYPE cx_cfs_fatal_error.

ENDIF.

  • get lang. dependend data

SELECT * FROM tj20t INTO TABLE lt_tj20t

WHERE stsma = lf_stsma.

  • get the initial-status

SELECT SINGLE * FROM tj30 INTO ls_tj30

WHERE stsma = lf_stsma AND

inist = 'X'.

IF sy-subrc = 0.

SELECT SINGLE status_id

INTO rs_profile_attributes-initial_status_id

FROM cfs_status

WHERE bsva_profile_key = ls_tj30-stsma AND

bsva_status_key = ls_tj30-estat.

ENDIF.

  • ---------------------------------------------------------------------

  • Map data

  • ---------------------------------------------------------------------

MOVE-CORRESPONDING ls_status_prof TO rs_profile_attributes.

rs_profile_attributes-id = ls_status_prof-profile_id.

LOOP AT lt_tj20t ASSIGNING .

CLEAR ls_profile_txt.

ls_profile_txt-language = -spras.

ls_profile_txt-text = -txt.

APPEND ls_profile_txt TO rs_profile_attributes-texts.

ENDLOOP.

ENDMETHOD.

Tracefile

Business Server Page (BSP) error

What happened?

Calling the BSP page was terminated due to an error.

SAP Note

The following error text was processed in the system:

Exception CX_CFX_FATAL_ERROR occurred (program: CL_CFX_USER===================CP, include: CL_CFX_USER===================CM01L, line: 26).

Exception Class CX_CFX_FATAL_ERROR

Error Name

Program CL_CFX_USER===================CP

Include CL_CFX_USER===================CM01L

ABAP Class CL_CFX_USER

Method GET

Line 26

Long text -

Error type: Exception

Your SAP Business Server Pages Team

regards

Ravindra

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Closed

Status Management not working with super user role.

Former Member
0 Kudos

Hi

Delete the role of status management

create a new role (you can copy based from standard) and assign to required users

Niranjan

rewards points if useful

ulf_petzel
Advisor
Advisor
0 Kudos

Well,

I'd say you have some corrupt status profile or similar issue. Did you freshly install cFolders?

Which cFolders release are you talking about?

Best is you raise a customer message under component PLM-CFO.

Regards, Ulf.