cancel
Showing results for 
Search instead for 
Did you mean: 

C folder error when Creating new RFX

anand_sagarsethi
Contributor
0 Kudos

Hi everyone,

We are implementing PPS scenario in SRM 7 Ehp1 and we are facing a strange problem when we go on creating a New RFX. After selecting the type of RFX, I get a dump on the portal screen as

http://xyzabc*:portno/sap/bc/webdynpro/sapsrm/wda_l_fpm_oif

Error in connection to cFolder system

Error in connection to cFolder system

Function: /SAPPSSRM/CREATE_COLLAB of program /SAPPSSRM/SAPLEXT_RFX_PROCESS

Function: /SAPPSSRM/META_CREATE_COLLAB of program /SAPPSSRM/SAPLEXT_RFX_PROCESS

Method: /SAPPSSRM/IF_TECHBID_CFOLDER~CREATE_BI of program /SAPPSSRM/CL_TECHBID_CFOLDER==CP

Method: CREATE_RFQ_ADV_INSTANCE of program /SAPSRM/CL_PDO_BO_RFQ_ADV=====CP

Method: CREATE_NEW_INSTANCE of program /SAPSRM/CL_PDO_FACTORY_RFQ====CP

Method: CONSTRUCTOR of program /SAPSRM/CL_CH_WD_BOM_RFQ======CP

Method: /SAPSRM/IF_CH_WD_MAP_FACTORY~CREATE_RFQ_MAPPER of program /SAPSRM/CL_CH_WD_MAP_FACTORY==CP

http://xyzabc*:portno/sap/bc/webdynpro/sapsrm/wda_l_fpm_oif

But when i check in st22 to check if dump has come. But no dump is there. I request you to let me know about solving this error and also please post some links where I can get the configuration document of c folders with SRM 7 EHP1.

Thanks

Anand

Edited by: Anand Sagar Sethi on Jan 7, 2012 6:42 AM

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member22425
Active Participant
0 Kudos

Hello Anand,

Kindly refer to the below link to do C-Folder Settings for SAP SRM.

http://help.sap.com/saphelp_srm70/helpdata/en/43/143d2e25fc2be8e10000000a1553f7/content.htm

Kindly cross check your configurations as per this link and then try to reproduce the error.

Best Regards,

Rahul.

Former Member
0 Kudos

Hi Anand/Rastogi,

I am also having the same error message . How did you resolve it.

Rastogi:

I have followed the same settings that was given in the HELP link given by you.

Pls guide me how to solve the same.

I could able to Logon to C-Folders using SICF and test service. But when i am logiing as buyer and try to create RFX it is showing me the above error.

Abdul Raheem

former_member22425
Active Participant
0 Kudos

Hello Abdul,

Check for the below pointers to troubleshoot your issue here after you are done with the configurations as per the help link.

-->If the cfolder is installed on the same SRM server then you need to maintain the c folder service "cfx_rfc_ui" with "required with logon data", default setup is standard logon.

--> Ensure that your RFC user's and the fucntional users has the appropriate roles assigned.

SAP_CFX_COMP_CREATOR & SAP_CFX_USER.

--> Also ensure that the system landscape definition is correctly maintained with regards to the c-folders.

Best Regards,

Rahul

Former Member
0 Kudos

Hi Rahul,

using the URL defined for cfolder, i could able to logon to C-folders , but when i am trying to create RFX i am getting this error.

I have double check the settings again and when i debug the program it is terminating at this function module CFX_API_COLLABORATION_CREATE' DESTINATION which is throwing error message 98 connection to Cfolder error.

RFC destination is picking right.

IF /sapsrm/cl_sw_sourcing_1=>two_envelope_is_active( ) EQ abap_true OR

/sapsrm/cl_sw_sourcing_1=>simultaneous_logon_is_active( ) EQ abap_true.

  • Get destination

CALL FUNCTION 'CONTROL_RECORD_GET_DESTINATION'

IMPORTING

rfc_destination = lv_destination

TABLES

control_record = control_record

EXCEPTIONS

not_found = 1

OTHERS = 2.

IF sy-subrc = 0.

CALL FUNCTION 'CFX_API_COLLABORATION_CREATE' DESTINATION lv_destination

EXPORTING

i_name = iv_collab_name

IMPORTING

es_fault = ls_cfx_fault

e_faultstring = lv_cfx_faultstring

e_collaboration_id = lv_collaboration_id

e_public_area_id = lv_public_area_id

e_root_folder_id = lv_root_folder_id

EXCEPTIONS

SYSTEM_FAILURE = 1

COMMUNICATION_FAILURE = 2.

lv_message_no = 098.

IF sy-subrc <> 0.

MESSAGE ID /sappssrm/if_tendering_const=>gc_msgid_teb

TYPE /sappssrm/if_tendering_const=>GC_MSG_ABORT

NUMBER lv_message_no.

endif.

ENDIF.

e_faultstring = lv_cfx_faultstring.

e_collaboration_id = lv_collaboration_id.

e_public_area_id = lv_public_area_id.

e_root_folder_id = lv_root_folder_id.

endif.

Abdul Raheem