cancel
Showing results for 
Search instead for 
Did you mean: 

RSCMSIM ::: Message 404: (Not Found)

ganimede_dignan
Contributor
0 Kudos

Hi,

during import of content repository, already exported with RSCMSEXL, RSCMSIM ends with this message:

Message 200: (OK)

Message 404: (Not Found)

Is it OK? What is the problem?

Regards.

Accepted Solutions (1)

Accepted Solutions (1)

ganimede_dignan
Contributor
0 Kudos

The export file is 1,3 GB file size.

ganimede_dignan
Contributor
0 Kudos

In the export phase with RSCMSEXL there are errors such as:

Message 404 for category ZCSMIPROD: Export completed in 939 sec (Not Found)

1 messages regarding categories

Message 404 for document (ZCSMIPROD,6a5821532178892de10000000a822866): EE

Message 404 for document (ZCSMIPROD,454af553556a9218e10000000a822866): EE

Message 404 for document (ZCSMIPROD,9c630954bd8ba725e10000000a822866): EE

Message 404 for document (ZCSMIPROD,6d91b353a1b20e4fe10000000a822866): EE

Message 404 for document (ZCSMIPROD,fb5821532178892de10000000a822866): EE

Message 404 for document (ZCSMIPROD,091e1e5384c24a2de10000000a822866): FetchCompEx EE

Message 404 for document (ZCSMIPROD,da76235232a06027e10000000a822866): EE

Message 404 for document (ZCSMIPROD,d956ff5305050751e10000000a822866): EE

Message 404 for document (ZCSMIPROD,5cf20954e3c18d37e10000000a822866): EE

Message 404 for document (ZCSMIPROD,0d010d54b534e86be10000000a822866): EE

Message 404 for document (ZCSMIPROD,ecceea53a1305b78e10000000a822866): EE

11 messages regarding documents

Message 603: (SAPKPROTP Warning: Nonfatal errors occured, checklog tables)

ganimede_dignan
Contributor
0 Kudos

I've just re-try the export excluding missing id from file list and now it end well.

But when I try to import it on test system I receive the message:

Message 404 for category ZCAT: Import completed in 141 sec (Not Found)

Message 404 for category ZCAT: Import completed in 141 sec (Not Found)

Message no. CMS_TR009

Diagnosis

The following message was received when processing category ZCAT:
404
Import completed in 141 sec (Not Found)

Have you got any idea?

Regards.

ganimede_dignan
Contributor
0 Kudos

Into OACT category ZCAT is magerd with right content

ganimede_dignan
Contributor
0 Kudos

No idea?

Former Member
0 Kudos

Hi Ganimede,

I had problem to export with program RSCMSEX and the error similar like you. Could you show me the step how you did this "I've just re-try the export excluding missing id from file list"

Thanks.

Answers (1)

Answers (1)

mario_bisonti2
Participant
0 Kudos

Hallo.

I have the same problem.

Did you solve it?

In my enironment:

In TST system : ZCAT - ZTST repository

In PRD system : ZCAT - ZPRD repository
I exported repository category ZCAT - ZPRD from the ECC PRD system

I tried to import in  ZTST repository from ECC TST system by the file exported on the above steps

Thanks

Mario

ganimede_dignan
Contributor
0 Kudos

Ya! Solved.... with a custom report

mario_bisonti2
Participant
0 Kudos

Ok..thanks a lot

Is it possible that you send me custom reports example ?

Bye.

Mario

ganimede_dignan
Contributor
0 Kudos

Hi,

I hope this help you.

Bye.

*&---------------------------------------------------------------------*

*& Report  Z_I065101_MIGRATE

*&

*&---------------------------------------------------------------------*

*&

*&

*&---------------------------------------------------------------------*

REPORT  z_i065101_migrate.

PARAMETERS:

p_repdst TYPE  sdokstca-stor_rep OBLIGATORY,

p_repsrc TYPE  sdokstca-stor_rep OBLIGATORY.

TYPES: BEGIN OF t_doclist,

         line(32) TYPE c,

       END OF t_doclist.

DATA: doclist   TYPE STANDARD TABLE OF t_doclist,

      doclist2   TYPE STANDARD TABLE OF t_doclist,

      doclist3   TYPE STANDARD TABLE OF t_doclist,

      wa_doclist   TYPE t_doclist.

CONSTANTS: timeout TYPE i VALUE 86400. "One day in seconds

*Get the list of the documents from source

CALL FUNCTION 'SCMS_DOC_IDLIST'

  EXPORTING

    stor_cat         = ' '

    crep_id          = p_repsrc

    timeout          = timeout     "(Time out value)

  TABLES

    doclist          = doclist

  EXCEPTIONS

    error_config     = 1

    bad_storage_type = 2

    OTHERS           = 3.

* Delete The unwanted entries if any

SORT doclist STABLE.

DELETE ADJACENT DUPLICATES FROM doclist.

*Get the list of the documents from destination

CALL FUNCTION 'SCMS_DOC_IDLIST'

  EXPORTING

    stor_cat         = ' '

    crep_id          = p_repdst

    timeout          = timeout     "(Time out value)

  TABLES

    doclist          = doclist2

  EXCEPTIONS

    error_config     = 1

    bad_storage_type = 2

    OTHERS           = 3.

IF sy-subrc = 0 .

  LOOP AT doclist INTO wa_doclist .

    READ TABLE doclist2 WITH KEY line = wa_doclist-line TRANSPORTING NO FIELDS.

    IF sy-subrc NE 0 .

      APPEND wa_doclist TO doclist3.

    ENDIF.

  ENDLOOP.

ELSE.

  doclist3[] = doclist[].

ENDIF.

CLEAR wa_doclist.

*Loop at the document and move them.

LOOP AT doclist3 INTO wa_doclist.

  CALL FUNCTION 'SCMS_DOC_COPY'

    EXPORTING

*   SRC_MANDT                   = SY-MANDT

     src_stor_cat               =  ' '

     src_crep_id                =   p_repsrc

     src_doc_id                 =  wa_doclist-line

*   SRC_PHIO_ID                 =

*   SRC_SIGNATURE               = 'X'

*   DST_MANDT                   = SY-MANDT

*   DST_STOR_CAT                = ' '

     dst_crep_id                  = p_repdst

     dst_doc_id                   = wa_doclist-line

*   DST_PHIO_ID                 =

*   DST_DOC_PROT                = 'rud'

*   SECURITY                    = ' '

*   OVERWRITE                   = ' '

* IMPORTING

*   DOC_ID_OUT                  =

* TABLES

*   MOD_COMPINFO                =

   EXCEPTIONS

     bad_storage_type            = 1

     bad_request                 = 2

     unauthorized                = 3

     not_found                   = 4

     forbidden                   = 5

     conflict                    = 6

     internal_server_error       = 7

     error_http                  = 8

     error_signature             = 9

     error_config                = 10

     error_format                = 11

     error_parameter             = 12

     error                       = 13

     blocked_by_policy           = 14

     OTHERS                      = 15.

  IF sy-subrc = 0.

    TRANSLATE wa_doclist-line  TO UPPER CASE.

    WRITE 😕 'Document copied Successfully', wa_doclist-line .

  ELSE.

    TRANSLATE wa_doclist-line  TO UPPER CASE.

    WRITE 😕 'Document copy is not successful' , wa_doclist-line .

  ENDIF.

  COMMIT WORK.

ENDLOOP.

* If the control reaches here all the documents would have got copied and thus We can delete the entries

mario_bisonti2
Participant
0 Kudos

Thanks a lot for your help!

I note strange character on line:


doclist3[] = doclist[].

perhaps could it be a copy/paste problem?

Thanks a lot!

Besty regards.

Mario

ganimede_dignan
Contributor
0 Kudos

See the attachment