cancel
Showing results for 
Search instead for 
Did you mean: 

Error while checking in and storing

Former Member
0 Kudos

hi Experts

i am facing error while saving the DIR

ERROR WHILE CHECKING IN AND STORING

PLEASE provide me any solutions.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Please check the below links.

26 253 - Reason for this error - Product Lifecycle Management - SCN Wiki

http://scn.sap.com/thread/1606470

Please search in SDN  before posting.

Rgds,

Nayeem.

Former Member
0 Kudos

i have searched 100 times and then posted.

i have tried all the seniors.

if you know clear steps to resolve the problem then only reply.

Former Member
0 Kudos

Dear,

Please set the break point as mentioned, You will get the exact reason why you getting this error and revert which will be helpful for us to sort out your issue.

Check your content server settings OAC0.

26 253 - Reason for this error - Product Lifecycle Management - SCN Wiki

Reason

To get more information why this error is raised you can set a breakpoint in the function module 'SCMS_HTTP_CREATE_FILES' at the below marked coding line

 *       first component - create
         call function 'SCMS_HTTP_CREATE'
              exporting
                   mandt                 = mandt
                   crep_id               = crep_id
                   doc_id                = <doc_id>
                   comp_id               = comps-compid
                   mimetype              = comps-mimetype
                   length                = size
                   signature             = signature
                   doc_prot              = doc_prot
                   overwrite             = overwrite
                   vscan_profile         = vscan_profile
              importing
                   doc_id_out            = <doc_id>
              tables
                   data                  = data
              exceptions
                   bad_request           = 1
                   unauthorized          = 2
                   forbidden             = 3
                   conflict              = 5
                   internal_server_error = 6
                   error_http            = 7
                   error_url             = 8
                   error_signature       = 9
                   blocked_by_policy     = 10
                   others                = 11.
       else.
*       not first component - update
         call function 'SCMS_HTTP_UPDATE'
              exporting
                   mandt                 = mandt
                   crep_id               = crep_id
                   doc_id                = <doc_id>
                   comp_id               = comps-compid
                   mimetype              = comps-mimetype
                   length                = size
                   signature             = 'X'
                   text_mode             = ' '
                   vscan_profile         = vscan_profile
              tables
                   data                  = data
              exceptions
                   bad_request           = 1
                   unauthorized          = 2
                   not_found             = 4
                   conflict              = 5
                   internal_server_error = 6
                   error_http            = 7
                   error_url             = 8
                   error_signature       = 9
                   blocked_by_policy     = 10
                   others                = 11.
       endif.
     endif.
     if sy-subrc <> 0. <<< set breakpoint here!!
       sy_msg_save.

The triggered function module 'SCMS_HTTP_CREATE' (checkin a new file) or 'SCMS_HTTP_UPDATE' (re-checkin an original after editing) is filled with the content repository ID (crep_id) and the Document ID (doc_id) first. By checking the parameter 'sy-subrc' after coming back from one of these modules, you can see which exceptions is triggered.

Former Member
0 Kudos

Content server setting is done certificate, test connection all are working fine