cancel
Showing results for 
Search instead for 
Did you mean: 

fatal error (in cfolder)

former_member214272
Contributor
0 Kudos

Hi

guys

I am facing problem in c folder (sap plm)

When we use status managment option in home page of c folder error come

Trace

<b>A fatal error occurred</b>; 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.

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

plz help for solving the error

<i><b>full points will be reward if problem gets sovle.</b></i>

thnax

sunil jawalkar

suniljawalkar@hotmail.com

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Check note 555285 https://service.sap.com/notes

and implement corrections instructions 0000456742

regards

Yasar

Answers (0)