SLG1 Error

Hi,
I am getting the error in SLG1 for Outbound Delivery document 173352 in PSC.
So i checked PPF actions for this Outbound Delivery which is successfully done.
Also all documents & warehouse activities are completed in both ECC & EWM system.
So why i am gettin g the below error in SLG1:
Error-  There is no action merging available for action definition Z_SCWM/CKECK_SN.
Immediate Actions Only: Condition Is Not Evaluated.
Regards,
Rock

Hi Rock,
It seems to be a problem with the customized Serial number check according to Z_SCWM/CKECK_SN. Please check the Serial number customizing. Also concerning the Immediate Actions Only: Condition Is Not Evaluated you may not trouble yourself, it will continue to pop-up time and again but will not negatively influence your processes.
All the Best,
Claudiu Maxim

Similar Messages

  • SLG1 error while creating Business Partner

    Hi,
    Im currently working on SRM 7.0 and keep receiving the following errors in SLG1. Can you kindly advise what might be the root cause for the below errors so ican fix the issue and ensure the same error doesnt pop up going further?
    Error type 1:
    Error: Error while Creating Business Partner (BP) Module: BUPA_CREATE_FROM_DATA Vendor: XXXXX
    The region 00 is not defined for country DE
    Error type 2:
    Error: Error while Creating Business Partner (BP) Module: BUPA_CREATE_FROM_DATA Vendor: XXXXXX
    The transport zone ZOC0000001 is not defined for country YY
    Error type 3:
    Error:Error while Creating Business Partner (BP) Module: BUPA_CREATE_FROM_DATA Vendor: XXXXXX
    Email address "whatever email" is invalid
    Appreciate your feedback
    Akshay

    Hello Akshay,
    Resolution for Isuue 1:
    SAP Web Application Server -> General Settings -> Set Countries -> Insert Regions or Define Country Codes
    Region for country DE is not maintained in SPRO or bad data.
    Resolution for Issue 2:
    SAP Web Application Server - Application Server - Basis Services - Address Management - Maintain Transport Zones
    Maintain the transport zones in SRM.
    Resolution for Issue 3:
    email address should be a valid address. SRM checks the format e.g. xx @ yy . zzz
    I believe error could be due to incorrect data.
    Hope this solves.
    Ashutosh

  • SLG1 errors during load of DNL_CUST_CNDALL

    Hi,
    In our system, when loading DNL_CUST_CNDALL, the SLG1 shows the following errors.
    1. There are no entries for certain tables(around 30 different tables) and so these tables cannot be deleted.
    2. Some Fields of table are not referenced in access CRM PR UTXC.
    3. Creating names of generated objects failed
    4. Customizing error: Field PRED_HEADER_GUID is not defined in application CRM.
    I have checked the Long Texts and the Notes wherever possible. But they were not of a great help. Most of these are /SAPCND/GENERATION errors.
    Has anyone faced these kind of problems? Any inputs on how to solve these?
    Thanks,
    Rashmi.

    Hi
    I also had a lot of problems when downloading DNL_CUST_DNALL to CRM. Hopefully, this will help anyone else having similar issues.
    For PRED_HEADER_GUID issue try note 766711.
    In CRM 5.0 some conditions are already created in CRM as a local source, therefore when attempting to download from R/3, it fails. Please follow instructions from note 1003793 to delete the necessary conditions in CRM prior to download.
    Cheers
    Rhianna

  • Capture SLG1 error message

    Hi,
    I want to download to excel all the error log messages which I get in SLG1 when I do mass article data upload for MM42 using BAPI.
    Could someone tell me how to get message in SLG1 in the calling program so as to download only the text in excel.
    Thanks in advance.

    hi try functions like that
    sample comes here:
    TYPE-POOLS: icon.
    Tabellen
    DATA:
    gt_log_handle       TYPE bal_t_logh,
    gt_lognumber        TYPE bal_t_logn,
    gt_msg_handle       TYPE bal_t_msgh,
    gt_log_header       TYPE balhdr_t,
    gt_log_filter       TYPE bal_s_lfil,           "Filter gesamt
    gt_log_filter_obj   TYPE bal_s_lfil-object,    "Objekt
    gt_log_filter_sub   TYPE bal_s_lfil-subobject, "Unterobjekt
    gt_log_filter_extn  TYPE bal_s_lfil-extnumber, "Ext.Identifikation
    gt_log_filter_user  TYPE bal_s_lfil-aluser,    "User
    gt_log_filter_prcl  TYPE bal_s_lfil-probclass, "Protokollklasse
    gt_log_filter_dttm  TYPE bal_s_lfil-date_time, "Datum/Zeit von-bis
    gt_log_filter_alprog TYPE bal_s_lfil-alprog.   "Programmname
    Strukturen
    DATA:
    gs_log_header       TYPE LINE OF balhdr_t,
    gs_log_handle       TYPE LINE OF bal_t_logh,
    gs_lognumber        TYPE LINE OF bal_t_logn,
    gs_msg_ret          TYPE bal_s_msg,
    gs_msg_handle       TYPE LINE OF bal_t_msgh,
    gs_balloghndl       TYPE balloghndl,
    gs_log_filter_obj   TYPE LINE OF bal_s_lfil-object,    "Objekt
    gs_log_filter_sub   TYPE LINE OF bal_s_lfil-subobject, "Unterobjekt
    gs_log_filter_extn  TYPE LINE OF bal_s_lfil-extnumber, "Ext.Ident.
    gs_log_filter_user  TYPE LINE OF bal_s_lfil-aluser,    "User
    gs_log_filter_prcl  TYPE LINE OF bal_s_lfil-probclass, "Protokollklasse
    gs_log_filter_dttm  TYPE bal_s_lfil-date_time,  "Datum/Zeit
    gs_log_filter_alprog TYPE LINE OF bal_s_lfil-alprog. "Programmname
    Arbeitsfelder
    DATA:
    gs_txt_msg              TYPE c,
    gs_msg_text(90)         TYPE c,
    gv_do_not_load_messages TYPE boolean,
    gv_tabix                TYPE sy-tabix,
    gs_marav                TYPE marav.
    Abgrenzungen                                                         *
    SELECTION-SCREEN BEGIN OF BLOCK 1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS: s_object  FOR gs_log_filter_obj,   "Objekt
                    s_subobj  FOR gs_log_filter_sub,   "SubObjekt
                    s_extnum  FOR gs_log_filter_extn,  "Ext.Ident.
                    s_aluser  FOR gs_log_filter_user,  "Benutzer
                    s_prcl    FOR gs_log_filter_prcl,  "Protokollklasse
                    s_alprog FOR gs_log_filter_alprog.  "Programmname
    PARAMETERS:     p_err     DEFAULT 'X' RADIOBUTTON GROUP r1,
                    p_all                 RADIOBUTTON GROUP r1.
    SELECTION-SCREEN END OF BLOCK 1.
    SELECTION-SCREEN BEGIN OF BLOCK 2 WITH FRAME TITLE text-002.
    PARAMETERS: p_datev  TYPE sy-datum DEFAULT sy-datum,
                p_timev  TYPE sy-uzeit DEFAULT '000000',
                p_dateb  TYPE sy-datum DEFAULT sy-datum,
                p_timeb  TYPE sy-uzeit DEFAULT '235959'.
    SELECTION-SCREEN END OF BLOCK 2.
    Initialisierung                                                      *
    INITIALIZATION.
    Objektname
      gs_log_filter_obj-low     = 'ZPP_MSG'.
      gs_log_filter_obj-option  = 'EQ'.
      gs_log_filter_obj-sign    = 'I'.
      APPEND gs_log_filter_obj TO s_object.
    Sub-Objekt
      gs_log_filter_sub-low     = 'EDOK2ERP_STAMM'.
      gs_log_filter_sub-option  = 'EQ'.
      gs_log_filter_sub-sign    = 'I'.
      APPEND gs_log_filter_sub TO s_subobj.
    Benutzer
      gs_log_filter_user-low    = sy-uname.
      gs_log_filter_user-option = 'EQ'.
      gs_log_filter_user-sign   = 'I'.
      APPEND gs_log_filter_user TO s_aluser.
    Datenselektion                                                       *
    START-OF-SELECTION.
    Selektionstabellen übergeben
      gt_log_filter-object[]     = s_object[].  "Objekt
      gt_log_filter-subobject[]  = s_subobj[].  "SubObjekt
      gt_log_filter-extnumber[]  = s_extnum[].  "Ext.Ident.
      gt_log_filter-aluser[]     = s_aluser[].  "Benutzer
      gt_log_filter-probclass[]  = s_prcl[].    "Protokollklasse
      gt_log_filter-alprog[]     = s_alprog[].  "Programmname
    Datum
      gt_log_filter-date_time-date_from = p_datev.
      gt_log_filter-date_time-time_from = p_timev.
      gt_log_filter-date_time-date_to   = p_dateb.
      gt_log_filter-date_time-time_to   = p_timeb.
    Log's suchen
      CALL FUNCTION 'BAL_DB_SEARCH'
        EXPORTING
          i_s_log_filter     = gt_log_filter
        IMPORTING
          e_t_log_header     = gt_log_header
        EXCEPTIONS
          log_not_found      = 1
          no_filter_criteria = 2
          OTHERS             = 3.
      IF sy-subrc <> 0.
        STOP.
      ENDIF.
    Log's in den Hauptspeicher laden
      CALL FUNCTION 'BAL_DB_LOAD'
           EXPORTING
                i_t_log_header     = gt_log_header
                i_t_log_handle     = gt_log_handle
                i_t_lognumber      = gt_lognumber
                i_do_not_load_messages = gv_do_not_load_messages
              I_DO_NOT_LOAD_MESSAGES = 'X'
           IMPORTING
                e_t_log_handle     = gt_log_handle
                e_t_msg_handle     = gt_msg_handle
           EXCEPTIONS
                no_logs_specified  = 1
                log_not_found      = 2
                log_already_loaded = 3
                OTHERS             = 4.
      IF sy-subrc <> 0.
        STOP.
      ENDIF.
      LOOP AT gt_log_header INTO gs_log_header.
        IF p_err <> space.
          CHECK gs_log_header-msg_cnt_a > 0 OR
                gs_log_header-msg_cnt_e > 0.
        ELSEIF p_all <> space.
          CHECK gs_log_header-msg_cnt_a > 0 OR
                gs_log_header-msg_cnt_e > 0 OR
                gs_log_header-msg_cnt_w > 0 OR
                gs_log_header-msg_cnt_i > 0 OR
                gs_log_header-msg_cnt_s > 0.
        ENDIF.
    Meldungen zum Log lesen
        LOOP AT gt_msg_handle INTO gs_msg_handle.
          CHECK gs_msg_handle(22) EQ gs_log_header-log_handle.
          CALL FUNCTION 'BAL_LOG_MSG_READ'
            EXPORTING
              i_s_msg_handle                 = gs_msg_handle
          i_s_msg_handle                 = gs_balmsghndl
              i_langu                        = sy-langu
            IMPORTING
              e_s_msg                        = gs_msg_ret
          E_EXISTS_ON_DB                 = 'X'
          E_TXT_MSGTY                    =
          E_TXT_MSGID                    =
          E_TXT_DETLEVEL                 =
          E_TXT_PROBCLASS                =
              e_txt_msg                      = gs_txt_msg
          E_WARNING_TEXT_NOT_FOUND       =
            EXCEPTIONS
              log_not_found                  = 1
              msg_not_found                  = 2
              OTHERS                         = 3.
    Meldungstext aufbereiten
          IF sy-subrc EQ 0.
            CLEAR: gs_msg_text.
            CALL FUNCTION 'BAL_DSP_TXT_MSG_READ'
              EXPORTING
                i_langu        = sy-langu
                i_msgid        = gs_msg_ret-msgid
                i_msgno        = gs_msg_ret-msgno
                i_msgv1        = gs_msg_ret-msgv1
                i_msgv2        = gs_msg_ret-msgv2
                i_msgv3        = gs_msg_ret-msgv3
                i_msgv4        = gs_msg_ret-msgv4
              IMPORTING
                e_message_text = gs_msg_text.
            WRITE: /     gs_log_header-extnumber(18),
                      21 gs_log_header-aldate,
                      33 gs_log_header-altime,
                      42 gs_log_header-probclass,
                      50 gs_log_header-aluser,
                      64 gs_log_header-alprog(25),
                      89 gs_msg_ret-msgid,
                      91 gs_msg_ret-msgno,
                      99 gs_msg_text.
          ENDIF.
        ENDLOOP.
      ENDLOOP.
    Log's wieder freigeben
      LOOP AT gt_log_handle INTO gs_log_handle.
        gs_balloghndl = gs_log_handle.
        CALL FUNCTION 'BAL_LOG_REFRESH'
          EXPORTING
            i_log_handle  = gs_balloghndl
          EXCEPTIONS
            log_not_found = 1
            OTHERS        = 2.
        IF sy-subrc <> 0.
        ENDIF.
      ENDLOOP.

  • E-REc: Error in Candidate Data Overview

    Hi All,
    When we try to  open the external candidate 'print preview' - Data overview for Candidate is not opening.
    we are getting this error only for one candidate in production, rest for all the candidates - data overview is opening fine.
    Error is: Error when generating the form for the data overview.
    We have checked in SLG1 error are
    Table row is larger than 176 cm
    The error occurred in program CL_HRRCF_M_DATAOVERVIEW=======CM007 line 92.
    Could you please advice.
    Regards
    BTM

    Hello BTM,
    as Antje described there is a technical restriction on the maximum length of a field in a SMARTFORM and can't be directly changed. But your issue is not unique. At some time it is found in nearly every eRecruiting system.
    The most common case is that a candidate copied his cover letter from MS Word into the eRecruiting application. In some cases layout information and other special characters are transformed into line  breaks which causes the text to get very very long. More rarely you find candidates which actually have the urge to write a lot of pages for their cover letter or their work experience. The result is the same in both cases when the system tries to create the SMARTFORM the field exceeds the technical restrictions and you get the generation error.
    My standard solution for this is to put a function into my data overviews to truncate texts which have the possibility to have this problem (cover letter, work experience description, education description, other qualifications). I truncate after a defined number of characters or a number of line breaks whatever comes first. I set the values as system parameters / values in a table of delivery type A so a system admin can change them quickly if necessary. Of course you could try to distribute the text to several fields but so far none of my customers thought this was necessary.
    Kind Regards
    Roman       

  • SRM local Purchase Order output error

    Hi Folks,
    Please can somebody suggest any hints for the following error. Our SRM local Purchase Orders that are either emailed, faxed or printed are suddenly showing the error message 'Incorrectly processed' on the output log. The same error is also shown in the systems log at tcode slg1:
    "Error  Error when sending to  
    Error  Error in address output (name not filled).  
    Error  Action could not be successfully executed "
    Any help at this stage would be welcome!
    Ciao.
    Mikey.

    Hi Mike,
    There may be many reason for this error.Once output of PO fails,you get error of this form.
    See if anyone has changed anything in smartform/PDF which you are trying to output as PO.This may happen because of that changes.
    Check with basis if they have changed any setting SCOT transaction.
    Check the vendor master which you are using is having commucation details like E-Mail or Fax or print option set against it.
    Cheers,Nishant

  • Error: No address found for partner function type Ship-To Address

    Hi All,
    I am working in SRM 5.0(patch level1) and for PDP scenario
    When I am creating service PR in R/3 with two header items and each header item has only one below line item (service item), then it transfer in SRM properly. But if I am maintaning more than one below line item for each header item it does not transfer in SRM. In SLG1 error is coming as "No address found for partner function type Ship-To Address".
    Please suggest some solution.
    Thanx in advance
    Soma

    Hi Moon
    Please check this note
    1166211 - Delivery address from Vendor not transferred - Ext. Req.
    or do you maintain ADDR_SHIPT maintained in PPOMA_BBP
    regards
    Muthu

  • Internal error after editing a correspondent letter in E-Recruiting

    Hello,
    Running E-Recruiting 6.0 SP10
    As a recruiter whenever I try to prievew a correspondent letter I modified (note, I have no problems editing the letter) using the correspondent letter editor, I recieve an "Internal Error".  Additionally, the following SLG1 error is created:
    Form or text 472FCB84F86804EDE10000000A321A does not exist
    Prior to editing the letter I am able to preview it using the display link just fine.  E-Recruiting should allow me to edit a letter and preview it prior to sending it to a candidate, yet at present it does not.
    Any idea what this could be?
    Thanks, Ryan
    Edited by: Ryan Hubbell on Mar 17, 2008 11:04 PM
    Edited by: Ryan Hubbell on Mar 17, 2008 11:08 PM

    Hello Ryan,
    with release 600 SAP e-recruiting offers 2 different implementations for changing correspondences / invitations. The classical solution uses a web editor. Therefore the complete smartform is rendered and then put in a web editor. As this solution lead to some problems in the printing channel, sap developed another concept of changing. The new solution uses a text edit to change a text block you can assign to the smartform as changable area and only this can be changed ensuring the formating of the smartform is still fine.
    You have to decide which of these 2 options you want to use. You either use the old or the new solution for all correspondences and invitations.
    The solutions differ in the following configuration points:
    - old: T77S0 RECFA INDCO is blank
    - new: T77S0 RECFA INDCO is X
    - old: document category for simple correspondence 1, for invitation 2
    - new: document category for simple correspondence 3, for invitation 4
    (category for confirmation is always 5, there is no other option no matter which concept you use)
    - old: Assign changable letter sections to forms not available
    - new: Assign changable letter sections to forms not available
    - old: reference for SF interface simpl. corr. HRRCF_CS_APPLICANT, invitation HRRCF_CS_APPL_INVITATION
    - new: reference for SF interface simpl. corr. HRRCF_CS_IT_APPLICANT, invitation HRRCF_CS_IT_APPL_INVITATION
    (basically the smartform interfaces differ in the parameter THEAD which is needed for the new but not for the old correspondence change concept)
    Please check if your configuration is consistend for the concept you chose for your project. If not try adjust configuration and check if the error disappears.
    If the error is still existing please give another reply.
    Best Regards
    Roman Weise

  • Third Party Order/STO

    Hi Gurus,
                  I have a nice scenario here in my project. We are working in project system and plant and maintenance modules in ECC 6.0. The PS netwrok order is created with either of the options-network or third party. Now the scenario for third party is like this- The project wants the vendor to send the the material to directly to the project site and they mention project site address in the network order. Once they release the order- reqs are generated with item category as third party. We are working in extended classic scenario SRM 5.0. so reqs are to be tranfered to SRM and create PO further. My problem is these reqs are getting failed in SRM. These gives an error in SRM in SLG1- "ordering party does not exist".
    Note that in network order they don't specify vendor but they only choose option third party and enter the address of the project site. How can I resolve this problem?
    2. We are making material tranfers from one plant to another using stock transport order and the plants are assigned to one company only. within the company they are doing tranfer beacuse the plant sites are at different locations. Now for stock trannsport order they create plant as vendor in ECC using XK01 and assing supplying plant to this vendor. Then they create a work order in PM using iw01. In this work order they add componets and assign the this plant which is created as vendor to this componet in the field fixed vendor. Reqs are generated thru this work order but gets failed in SRM. SLG1 error i don't exactly remember now, but it gives an error related to the vendor..Please let me know how do I work for this scenario?
    Thanks and Regards
    Kapil

    Hi
    <b>Please go through the links, which will help you -></b>
    Contract Source of Supply Not Populating in SC
    Contract: "Ordering Part could not be determined"
    Re: Help MM-SUS!
    Re: SUS - PO XML message error
    Re: SRM Contract Catalog - Creation
    Re: Creating an Invoice from XI doesn't work
    SUS Purchase order
    Transfer PO from EBP to SUS (one client)
    Do let me know.
    Regards
    - Atul

  • How to - E-Recruiting ALE-integration step-by-step (EhP4)

    Hi everyone,
    Can anyone tell me the step-by-step guideline to perform the ALE initial run from SAP HCM to E-Recruiting using transaction PFAL (RHALEINI)??
    We are implementing E-Recruiting stand-alone constellation: separate ECC instance integrated with E-Rec via ALE/RFC, enhancement package 4.
    We've done some try-outs in the new version, but we lack the certainty that we've done things right.
    Please do not refer to note 997181 since it does not explain the details on how to run the initial load. It explains adequately how to set-up the config and very basically how to run PFAL on page 2 (scen. I2-A) and page 4 (up to rel. 6.03)... But it's not sufficient in my opinion... We've done exactly the same...
    So what I'm interested in is the right sequence of runs and the selection screen values.
    We also have quite a few SLG1 errors which are unclear. Some suggest as if the processing occurs simultaneously (parallel) and blocks the asynchronous processes... Is there a certain number we should enter in the field "number of objects per process"? It's defaulted on 200...
    Can anyone shed some light on the best-practice how to run this transaction?
    Many thanks in advance!
    Miroslav.

    Hi Medic,
    hope u r doing good.
    Can u pls chk dese links by Roman,They speak alot on HR_ALE_ER issues.
    Re: E-Recruitment Technical Structure ( Attn: Roman Weise)
    Re: ALE data transfer from E-recruitment to HCM
    Re: E-Recruiting-  ALE is working for OM data, but not for internal employees
    Re: ALE setting DEV / PROD
    Re: ALE Linkage error in E Recruitment
    Re: E Recruit 603 - ALE
    Re: ALE from HR to E-Recruiting on EhP4
    Regards
    Rohit.S

  • Local PO not replicated to Backend.

    Hi SRM Gurus,
    We are in SRM 7 ECC 6 Ehp 4 PPS. Ext Classic.
    Create PO from the RFx Response.  Local PO is created in held status. 
    BBP_PD shows bunch of errors/ warnings:
    Term of payment does not exist in target system
    Incoterm in document is not the incoterm in supplier/bidder master
    You are not allowed to enter a tax jurisdiction code for country US.
    SLG1 errors:
    No instance of object type PurchaseOrder has been created. External reference:
    Back-End Message:E002(MEPO) : "PO header data still faulty"
    Back-End Message:E049(06) : "Enter a vendor"
    Back-End Message:W005(W5) : "Please enter items first"
    Now the questions:
    1.   SRM 7.0 ECC 6 Ehp 4 PPS activated Ext. Classic -  Local PO created from RFx response goes to held status.
          Does the backend replication happen through eSOA.  If yes?  What service i have to configure in SOAManager both ends.
    2.   Is it possible to by-pass ECS scenario using ZBBP_EXTLOCALPO_BADI for PO creation alone in the Backend system?
    3.   When you create PO from RFx response, how will the ACC Assignment handled  if i use By-Pass Badi.
           Will the PO if at all created in the ECC will it be in held status.
    Why we want to by-pass ECS for PO alone is we have a Release Order to be done in Backend from this PO.
    Number Ranges, Document Types are configured correctly.
    In PPOMA, i have configured DP_PROC_TY as ECPO and PO (SRM) do i need to give Trans Type of ECC too.
    I also have configured BSA referring ECC ECPO and PO defined.
    Kindly go thro all these information and kindly share your thoughts.
    Highly appreciated.
    With warm regards,
    Freemind.

    Hello,
    this is strange, because in ECS the local PO gets an ID, and this ID is used during the transfer to R/3.
    Debug BBP_PD_PO_TRANSFER_EXEC once again to see where this ID is cleared.
    To you have activated the BADI BBP_ECS_PO_OUT_BADI to transfer data to R/3 ?
    Be carefull, some BADI need to populate all export parameters/tables (E_*) otherwise the inbound data is considered as erased.
    Where is the ID disappearing ? in SRM just before calling R/3, or in R/3 ? In that case look at user-exit or BADI is R/3.
    Rgds
    Christophe

  • No valid requester found for user 0013 . BBP_EXTREQ_TRANSFER    Posted: Jan

    Hi,
    We have a PDP scenario where a channel R/3 has the RFCUSER maintained and the link is established with the ECC6.0.
    When we try to send the PR to SRM the message shows the the PR is transferred but gives an error in the SLG1 as
    "No valid requester found for user 0013
    Message no. BBP_BD002"
    The SMQ1 status is ANORETRY
    TYPE : A
    ID : BBP_EXTREQ
    NUMBER : 013
    MESSAGE : Ext. requirement cannot be created, see application log.
    If you have any solution please tell me,.
    i am waiting for reply,
    Thanks in advance.

    Santosh,
    In my recent experience this SLG1 error is usually due to the RFC user being either missing, locked or not having their password set.
    Get your Basis person to check the RFC link relevant to the transfer process in TCode SM59.
    Hope this helps
    Allen Brooks
    SRM BPO
    Sunderland City Council

  • Catalog upload problem..

    Hi
    We are using SRM 4.0 with CCM 1.0.
    Created a CSV file for supplier catalog and uploaded the file in CCM. Data has not loaded because of following errors.
      Error in CSV file: row 2 () 
      Error when uploading CSV file to catalog STAPLES
    My catalog file is as below.
    SAP CATALOG CSV 1.0
    Staples;04;True
    Schema;Staples
    Category;ProductID;Description;BaseUnit;OrderUnit;Price;Currency
    Officesupplies;SO10001;File Folders;Each;Each;5;USD
    Officesupplies;SO10002;Folders;Each;Each;2;USD
    What could be the problem.
    Can any one give some suggestions?
    Thanks
    Jagdish

    Hi Bodo
    I tried with your CSV file and getting below error in Log
    <b>Green</b> Indicator   Uploading catalog WALMART 
    <b>Green</b> Indicator   Name of file that was uploaded: C:\Project\UNSPSC\Walmart_DE.csv 
    <b>Green</b> Indicator   06.02.2006 09:12:40: Starting CSV import for catalog WALMART 
    <b>Red</b> Indicator     Format of CSV file is incorrect; expected format was CATALOG,DATATYPE,COMPONENT,CHARACTERISTIC,SCHEMA,CATEGORY,CONTENT 
    <b>Red</b> Indicator     Error when uploading CSV file (Version 2.0) to catalog WALMART.
    We are having CCM 1.0 with SP SAPK-10007INCCM.
    SRM_SERVER 500 with SP SAPKIBKS05.
    SAP_ABA 640 with SP SAPKA64013.
    Please let me know whether above service packs are OK or do we need to upgrade.
    Vadim
    When I upload CSV which you sent me earlier the log shows all green indicators without any errors in ST22 or SLG1(error log).
    Only below 4 lines appear in the CCM web appln log.
    <b>Green</b>   Uploading catalog WALMART 
    <b>Green</b>   Name of file that was uploaded: C:\Project\UNSPSC\Walmart.csv 
    <b>Green</b>   06.02.2006 09:17:16: Starting CSV import for catalog WALMART 
    <b>Green</b>   06.02.2006 15:17:18: 0001 package(s) were processed 
    But getting error "No default schema found".
    In Log it shows
    The following exception was raised:
    /CCM/CX_OBJECT_NOT_FOUND
    The exception occurred at the following point:
    Program  /CCM/CL_SCHEMA_MANAGER========CP 
    Include  /CCM/CL_SCHEMA_MANAGER========CM01B 
    Line  18 
    I dont understand why it is not getting loaded.
    Please help me to get out of this issue.
    Thanks
    Jagdish

  • /n/tmwflow/cmsconf

    Hi,
    In Transaction '/n/tmwflow/cmsconf' i am only getting two tabs
    1)System Change Option &
    2)Critical Objects.
    I believe it should have someother tab like General Settings,Distribution Routes & Project structure.
    Why its missing here.I am on Solution manager 4 with latest SP's.
    Regards,
    Cherry

    Hi All,
    Any solution for this error,  I am also getting same error
    I have activated Change request management, It refresh successfully, But when i  create New Maintenance Cycle it gives 'Solution Manager and Change Request
    Management are not consistent'.
    SLG1 Error
    1)    Message no. /TMWFLOW/TASKLIST139
    Diagnosis
    The task list could not be created correctly. Other messages are in the Application Log, which you can reach as follows:
    with the 'Messages about Changes' (next to the 'Display/Change...' radio button ) or 'Creation Messages' (next to the 'Create...' radio button) pushbutton, in the Maintenance Cycle and Projects tabs, in the Environment -> Scheduling menu, in the /TMWFLOW/CMSCONF transaction.
    with the transaction SLG1, object /TMWFLOW/CMSCV
    2) Message no. /TMWFLOW/TASKLIST145
    Diagnosis
    The settings in Change Request Management do not correspond to the settings in Solution Manager: The projects of the Change and Transport System (CTS projects) for the Solution Manager project TESTPJ are different.
    System Response
    The system does not allow you to complete the task list.
    Procedure
    Go to the central configuration tool of Change Request Management and synchronize the configuration.
    3) I have checked the application log from /n/tmwflow/charmchk and found no error

  • Candidate Dashboard worklist not working

    Hi All,
    We have implemented EPH4 SP6 and after the implementation unable to see the work items in the worklist in Candiate Dashboard, is there anything we have to point to get the list.
    Any help is appreciated.
    Thanks.

    Hello,
    First point, SLG1 errors. Check and provide us for further inputs.
    REgards,
    Bentow.

Maybe you are looking for

  • Iphone 4 battery draining while in sleep mode

    I have noticed over the past few days that after putting my iphone 4 into *sleep mode* and not using it for several hours that the battery percentage is significantly lower after powering it back up. I first became aware of this after waking up to fi

  • Can date be included in the fact table as a measure?

    Dear All, I have to migrate a database form relational model to dimensional model. It a kind of human resource database. I don't know what MEASURES should I keep in the fact table. There are only dates, like date the employee joined the institution a

  • KM Document iview not working properly...

    Hi, I am in EP6SP2 P4HF8 for Portal and KM. Based on my user requirment, I need to link a document from KM directly to my detail Navigation under my Portal roles. I have done the following. 1) Create a KM Document iview. 2) Gave the KM Document path

  • Chance to win tickets to Chelsea v Spurs on 30th A...

    Hey Everyone-well the footie fans out there anyway! I've got details of a great competition from our BT Life Blog.  Details below-or click here to read the full blog article. Want to watch Chelsea v Spurs live from the stands at Stamford Bridge on 30

  • Export data from iphoto 09 to searchable file

    I have iphoto 09.  I would like to export the titles, locations, times and dates, and comments for the photos in an album to a searchable file.  I can't find a simple way to do this.  Please help