Routing upload error in LSMw

hi,
i am trying to upload data for routing( CA01) using direct input program RCPTRA02
I am getting error:
C\ 045                                                    
   You cannot edit the task list object with activity type
i  have serached forum but couldnt find satisfying solution.
if any body has any ideas, suggestions are welcome.

it appers this is not a lsmw problem, but it isnt really a data error.
with the same data i am able to crEATE A ROUTING MANUALLY OR BY RECORDING.
however i have a massive data to be laoded and wanted to get the perfromnace benefits from the Direcvt input.
i guess this is the proble with direct input program originally designed to create a routing.
input sturucters alsio dont have all the required fileds.
i am looking at oss notes.

Similar Messages

  • Article upload error during LSMW

    Hi,
       When we are uploading articles through LSMW,some times system is not taking the information of RP type and availability check.
    Following is the error message.
      In Logisistics-DC asking for manual entry of RP Type
      In Logistics store- asking for manual entry of avilability check.
    plz suggest me what might be the reasons for this kind of error message.

    Hi Gurus,
    Has any body cracked this.I am getting same problem

  • Routing Upload - error for insp char

    Hi Guru's,
    I am uploading routing data through 'BAPI_ROUTING_CREATE', in test run data is going correct. But in Porgram it is throwing error message
    ' Inspection Char can not be uniquely assigned to one operation'.
    Except this data related to Routing, Operations, Component Allocation is going correct.
    I am passing sequence_no, operation_id,activity, insp_char, valid_from, master_insp_char,pmaster, modus,char_description,sampling_procedure, samplingunit, sampling_qty.
    error message " you can not uniquely assign insp_char to a single operation."
    With Regards,
    Pravin

    since you are saying that it works from SE37 and not in the program i would guess that some of the values passed (which requires to be in the internal format) are not in the right format. when generally used from se37 system would automatically convert them to internal format.
    for example sequence_no is of type PLNFOLGE (data element) which has got a alpha conversion.
    to convert the values to the right format, double click on the dataelement to get into domain and in definition tab of domain you could see a field called convers. routine. if it has got any value (ALPHA) double click on the value and take the FM name (CONVERSION_EXIT_ALPHA_INPUT in the case of sequence number) using this FM convert the value from external format to internal format.
    for example to convert sequence number from external format to internal format you hve to have a function call like below.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
      EXPORTING
        input         = sequence_no
    IMPORTING
       OUTPUT        = sequence_no .
    like wise inspect all the variables involved and find whether there is any alpha conversion for any fieldand carry out the necessary conversion before passin it to the BAPI
    Regards
    Raja

  • Data upload error in LSMW

    Hi All,
           I am uploading the data for 0169 (Savings Plans infotype).When i am trying to upload the data via LSMW , i am getting the error as " Beneficiary 1/01 not allowed" but for the same employee if i directly enter the details via PA30,i can able to enter the beneficiary details . Can you provide me the solution for making it upload in the data by means of LSMW.
    Thanks
    Yogesh

    Hi
    It seems that there is a problem in your file structure. Make sure the fields are in the right place with the right delimiters. Which method in LSMW you are using to upload? Is it through BAPI, IDOCs, Recordings?
    Reward Points, if helpful.

  • Vendor Master Upload error in LSMW

    Dear Forum members
    While Uploading Vendor Master data through LSMW
    i completed all steps upto read data upto this step i am not facing any issue after converting data   system display converted data  in display converted data it is showing some error in sort key in text file i mentioned sortkey 002 but system display 201..ie instead of 002 system diplay 201
    finally i run batch input session it is showing error in batch input session bacuse of sort key
    is there any possibility to change sort key 002 in lsmw for all master records at a same time because i can't change manually i have thousands of vendors
    Any one Have idea about this issue Plz give me a solution
    Thanks in Advance
    Regards
    Srikanth

    Hi ,
    First of all if i am not wrong then your vendors are not created rite .
    So if you want to keep the sort key as 002 then i LSMW in field mapping you can keep the sort key as constant 002 .
    The error that you are facing might be due to field lenght , i guess at the time of selection of file you would not have selecte the TAB DELIMITED selection so due to filed lenght the field might have ovelapped .
    So to sum up in the input file you can remove the column for sort key and in field mapping put the sort key as constant .
    Hope this helps .
    Regards ,
    Dev

  • "No valid material component found" when Routing upload using LSMW RCPTRA02

    I want to upload routings through LSMW RCPTRA02 incluing routing headers, sequences, operations and component allocations. But systems appears error CM 101 "No valid material component found" . Does anybody occurs the same error before?
    The materials truly exists in BOM component.
    Sincerely thanks,
    Alina

    Hi,
    What is the status of the BOM? There should not be any problem if the material BOM exists.
    Regards,
    Krishnendu.

  • Error in uploading file in lsmw

    while uploading file in lsmw I am getting an error as
    'File 'C:\cust_errors.txt'does not exist or is currently locked.'
    at the bottom of the screen.
    How to overcome this problem?

    Hi,
    Check if the file is being edited .
    save it and close it.
    Then try to upload from the step "Specify files".
    Regards,
    Hari Kiran

  • Error in LSMW during MM Uploading

    Hi Guys,
    Material Master upload by using LSMW with Batch Input Recording.
    After completion of Last Step at the time of uploading system will not select any view but its showing error like  'Select least one view'
    But at the time of recording am selection following view Basic Data1 & 2, Purchasing, MRP 1,2,3 &4 , Work Scheduling, Forecasting, Accounting 1&2, Costing1& 2.
    The above said view am maintain X Mark in Field Maping rule as constant.
    Kindly give the Soln,
    Regards,
    S.Babusingh

    You might need to redo the recording all over again, BDC has plentty of scenario for screen selection to go wrong, so can't really tell what cause your problem based on your desc.  I have been stop using BDC to uplaod material since 5 years ago, I always use Direct input in LSMW and it works much better. I recomend you try the Direct input method instead of BDC if still getting problem.

  • How to get the index of the error record when uploaded using standard LSMW

    Hi Experts,
    When uploading data using lsmw standard batch input method which creates an error session if any errors,how can we able to find the index of the error record
    eg: If 3rd record in input file is incorrect then error session is getting created with the error and index as 1.But I want to know that 3rd record in my input file is incorrect.
    Please help me out.

    Srinivas,
    In global data, i've written like this.
    TYPES: BEGIN OF TYPE_ERROR,
                 INDEX TYPE I,
                 END OF TYPE_ERROR.
    DATA: GT_ERROR TYPE TABLE OF TYPE_ERROR,
               GS_ERROR TYPE TYPE_ERROR,
               GV_TOTAL_COUNT TYPE I, GV_INDEX TYPE I,
               GV_STRING TYPE STRING,
              GV_FILE TYPE STRING VALUE '/usr/sap/interfaces/LSMW/Asseterror
    In Begin of transaction,
    GV_TOTAL_COUNT = GV_TOTAL_COUNT + 1.
    In End of processing,
    OPEN DATASET GV_FILE FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    IF SY-SUBRC = 0.
    CLEAR GS_ERROR.
    LOOP AT GT_ERROR INTO GS_ERROR.
    CONCATENATE 'INDEX OF THE ERROR RECORD IS:' GS_ERROR INTO GV_STRING.
    TRANSFER GV_STRING TO GV_FILE.
    CLEAR: GV_STRING, GS_ERROR.
    ENDLOOP.
    ENDIF.
    How and where will I be assigning error count and append it to the internal table.
    Please help me out.

  • Routing Upload - CA01

    Hi All,
    I was trying to upload the Routing Information using the LSMW by std program. But its saying this error.
    Error :   Group cannot be determined for material 000000000000000077 plant 1070.
    Can anybody guide how to overcome this error.
    Thanks
    Ravi

    Hi All,
    Maintanining the same material. I am able to create a records via Transaction code CA01.
    Please guide the solution.
    Thanks
    Ravi

  • Error in lsmw for t-code QP01

    Hi Experts,
    Iam uploading data through LSMW for QP01 but in the second last step that is create batch input session its giving me this error "No profile with entry tool for task list / / / in session QP01" can anyone help to get rid of this error. pls reply ASAP.
    Thanks in advance.
    Abhishek Pandey.

    Hi,
       Check below link, it may be useful.
    Re: QM_LSMW BY RECORDING METHOD FOR QP01
    Thanks,
    Asit Purbey.

  • Error in LSMW : Enter a Valid Value

    Dear All,
    I am Creating a LSMW for MM01 Transaction using Direct Batch Input Method
    I got an error in LSMW while I start uploading saying "Enter a Valid Value" .
    I am selecting 14 Views in a single LSMW.
    Basic Data1 / Data2 , Purchasing , Foreign Trade : Import Data, MRP1,2,3 , General Plant 1/2 , Accounting 1 & 2 , Costing 1 & 2.
    Can anybody tell me why I am getting that error.
    Thanks in Advance.
    Tulasi

    Perform theses steps
    - In LSMW read and convert only one entry from file
    - go to SM35 -> select your session with that one entry
    - select process , option process/foreground
    - choose process
    You will have that batch input run in the foreground, so you can see all the values entered to certain input fields and all the actions which take place in that screens. This way you should see which step excatly creates the error.
    Regards
    Marcin

  • BDC for Routing upload - CA01

    Dear all,
    I developed a BDC a program for uploading the routing with multiple line item but it gives some error.
    If anybody have any program on that pls provide?
    Routing BDC - CA01

    HI
    try out this link-------
    Re: PP - Routing Upload
    regards
    Prashant

  • Which method is easiest for uploading data using LSMW?

    which method is easiest for uploading data using LSMW (Direct method or batch input method) bcs I am facing lot of problem using batch input method while recording.Even  I cannot use direct method using standard program.can anyone tell me some other easiest way for uploading MM01.?

    I personally used the direct input way 6 years ago and it was a little bit of a struggle cause I was very new to SAP at the time.  But it worked out to be ok in the end.  You just have to keep messing with it till the errors are clear and then you can upload for real.  The test mode is a nice touch, you can get rid of all of the errors before actually uploading the data.
    Regards,
    Rich Heilman

  • Editing is terminated message when running batch input error using lsmw

    Any Idea why would I get the info message like
    "Editing is terminated message when running batch input error using lsmw"
    please suggest where to look at.
    Thanks,
    Edited by: mark_yellow mark on Jul 1, 2008 3:27 AM

    Hi Mark,
    Welcome.
    This is lsmw batch input error.while  uploading the G/L accounts using the Batch Input process (program name RFBISA00) in LSMW.this error mainly generates...
    Fix the error using logs.
    thanks
    karthik

Maybe you are looking for

  • Is it possible to restore from a G4 Powerbook to a new MacPro

    I wish to upgrade to a MacPro or new MacBook. The hard drive on my PowerBook G4 packed up a while ago. After replacing the hard drive I was able to add the whole system to the new Powerbook hard drive from an external hard drive I'd backed the origin

  • Given some xml and an xsd, how to remove extra stuff in the xml.

    Hi. I have a question. I am trying to use the various XML libraries to parse/validate an xml file given an XSD schema. I want to remove the extra stuff in the xml to output a new xml. The problem is as I validate or parse the SAXParseException it pro

  • I chose to boot to os9 now cant go back to osx

    i recently purchased a used g3 ibook with osx tiger installed. i was cleaning up the files and chose the boot option to os9. it is so slow and has useless network program that boggin it down. is there a way i can go back to osx with out a cd?

  • My iphone 4S will not sync with my PC - it has in the past but now won't

    My iphone 4S will not sync to my PC - it has done in the past and now no devices show up when I plug it in.? Please help.... my itunes is up to date and I have restarted my computer.

  • Camera App opens but does not work.

    I can open the camera App but the screen only displays the close shutter. I can hear the screen react when I press the camera icon at the bottom of the shutter screen but nothing happens. I can go to the "Camera Roll" from the shutter screen and back