Error while Activating Inventory record in WM

Hi All,
I am getting an error while activating Inventory record using LI02N ,The Inventory record has been created using LICC Cycle Inventory at Quant Level.The error detrails are as below:
Message Text:
Function code cannot be selected
Technical Data
Message type__________ A (Cancel)
Message class_________ BL (Application Log)
Message number________ 001
Message variable 1____ Function code cannot be selected
Message variable 2____ 
Message variable 3____ 
Message variable 4____ 
Message Attributes
Level of detail_______ 
Problem class_________ 4 (Additional information)
Sort criterion________ 
Number________________         
Thanks you all in Advance.
Regards,
NVK                                                                               

I am encountering a similar error whils tryng to create or display WM Physical Inventory documents.
Tx: LX16 - Error Message no. BL001: u201CWarehouse number WH1 does not exist (check your entry)u201D
Tx: LI01N and LI03N u2013 Error Message no. L4001: u201CWarehouse number WH1 does not exist (check your entry)u201D
Errors when trying to create or display PIs, but can run reports on u201CWH1u201D and configuration looks ok?
I cannot find anthing n SAP OSS for WM.
Any assistance would be appreciated.

Similar Messages

  • Error while activating update rule in Inventory

    I was working with migration of datasource 2LIS_03_BF from 3.x to 7.0 in MM module.
    Recieved an error while activating update rule  0RT_C17 2LIS_03_BF in Inventory module.
    When I checked the routine ,it shows the following error.
    Errror:E:The Dictionary structure or table "/BI0/PMAT_SALES" is either not active or does not exist.
    I am not usre how to resolve this.
    Kindly reply asap.

    1. Activate the master data infoobject for 0MAT_SALES at info object level of RSA1
    2. Replicate and Activate the data source once again by using the program > SE38 : RS_TRANSTRU_ACTIVATE_ALL
    3. Then try to migrate you datasource and activate you update rules.
    it may help you
    Regards.
    Rambabu

  • Error while Activating DSO Data

    Hello
    I am having a problem, I am getting an Error while activating DSO Data, Data is loaded in DSO succefully but can not be activated with this error
    "Activation of M records from DataStore object 0FIAR_O03 terminated"
    Thanks

    Hi,
    The activation would have failed due to varies reasons..
    It would be a short dump,check in ST22.
    check the job log in SM37 for better understanding of the issue.
    Have you loaded the respective master data?
    if it is a transaction data load,then the SID is checked at the time of activation and not during loading.
    So if the master data is not loaded then the activation would fail.
    It can also be due to the system performance at that moment.
    Even if the data volume is huge ,there are chances of the activation failing..
    Try repeating the activation once again.it might succeed..
    Else check the logs to understand the actual issue.

  • Error while activating DSO

    Hi,
            I am getting an error while activating the DSO. I am able to load the data but this occurs when I try to activate the data. I get the follwing error message
    "Value "09020751987.44 " from characteristic 0REF_DOC_NO contains an error at position 15
    Message no. BRAIN290
    Diagnosis
    Characters that have a hexadecimal display between HEX00 and HEX1F are not permitted in characteristic values. The character at position 15 is one of these characters. The value is therefore not permitted.
    Note that these characters cannot be displayed and are therefore displayed as '#'. The actual character '#' has the hexadecimal display HEX23.
    Procedure
    Check the origin of the characteristic value. If possible, change the characteristic value in the source.
    Incorrect source text in update routines and transfer routines can also cause this problem."
    Any thoughts how I should correct/

    Hi Tanu,
    this is an error in the data loaded. If you have used PSA, then try searching for the packet containing this record using the change log table, by request id. (This step is to precisely find the position of the record in PSA).
    Now delete the request from the DSO and correct the data in PSA. The issue could be a tab or a space in the reference document feild and then save the data. Reconstruct this packet from PSA and then try activating.
    Subsequently let the data team/ user know about the correction in the source system as well, in order to avoid any future failures.
    This should correct the issue.
    regards,
    Naveen.A

  • ERROR while activating the Business Content of Sales Cube 0SD_C03

    Hi,
    iam facing an error, iam getting the  error while activating the Business Content sales info cube and Inventory info cube with the collection option DATA FLOW BEFORE. In my system the service pack was 14, what shall be the approach. Here iam getting the error like some 0DB--  objects are not available in the D version. if u have any solution for this please share with use also.
    Please treat this as an urgent, because we are unable to proceed with the further Business Content Activation.
    Thanks,
    Prabhakar.

    Hi Raj,
    I have searched for those objects in the BI content for activating those objects, but those objects are not available in the BI content.
    In general while activating the info cube if any object is in inactive means we will activate the object seperatly and we will activate the info cube it will resolve the issue. but here those 0DB-- objects are not available in the BI content.
    While activating the sales and inventory info cube it was throughing the short dump, In the short dump it is showing these message.
    ASSIGN_LENGTH_0 " "
    SAPLSNR3 or "LSNR3F01"
    LOCAL_BUFFER
    please treat this as urgent.
    Thanks
    Prabhakar.

  • Invalid character error while activating data in DSO.

    Hi Experts,
    We are facing an issue with presence of invalid characters in data from source. This throws SID generation error while activating data in DSO. Long text of error shows like this:
    "Value " ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ" (HEX 000D0120012001200120012001200120012001200120012001) of characteristic  contains an error at position 1"
    Also we've tried adding the character " Ġ " in TCode RSKC, but it then shows as a rectangle box which I'm not able to copy manually(looks like a blank space or something of that sort).
    We've tried implementing routine to remove special characters while loading data, but still it fails. Due to huge amounts of data, its practically unfeasible to check each record manually.
    Any useful suggestions will be acknowledged.
    regards,
    anoop

    Hi,
      We are using following code for the same purpose. U can use it at infoobject level mapping. This code will check value of each character in the data coming, whether it is in RSKC, if it is a allowed one then it will be passed as it is. Otherwise it will replace that character by space.
        data: l_d_length like sy-index,
                 l_d_char type c,
                 l_d_index type sy-index,
              l  oopx like sy-tabix.
        data : xinfobj(30) type c value 'RABC'.    -> this is ur infoobject name
        clear : result.
        call function 'CONVERSION_EXIT_ALPHA_INPUT'
          exporting
            input  = tran_strucutre-XYZ     -> object name in ur structure
          importing
            output = result.
        l_d_length = strlen( result ).
        do l_d_length times.
          l_d_index = sy-index - 1.
          l_d_char = result+l_d_index(1).
          call function 'RSKC_CHAVL_OF_IOBJ_CHECK'
            exporting
              i_chavl                 = l_d_char
              i_iobjnm                = xinfobj
        I_S_COB_PRO             =
        I_T_COB_PRO_CMP         =
           exceptions
             chavl_not_allowed       = 1
             others                  = 2
          if sy-subrc <> 0.
            result+l_d_index(1) = ' '.
          endif.
        enddo.
    Regards;
    Jitendra

  • Error while activating a routine  "no object list"

    hi
    I am getting a error while activating a routine Rv50c601
    "There is no object list for INCLUDEs"  Please suggest on the error and resoulution
    regards
    Nishant

    Try running program RV80HGEN.
    Regards,
    Naiimesh Patel

  • Error while creating a record in a custom infotype

    hi to all experts,
    I have created a infotype with 3 screens . But one of the screen im getting this error while saving a record .The Required screen change cannot be made.

    Im defining using the table pa9005 not the structure p9005
    (is it the same)
    Please help me ....
    Edited by: mohammed  abdul hai on Sep 18, 2009 8:20 AM

  • Error while activating transformation  ----   Message no. RSTRAN510

    Hi,
    while I am Extrating Data From Flat File I encountered this Error.
    I am working on <b>ECC 6.0 , BI 7.0.</b>
    I am trying this one in IDES, it is newly installed server.
    For Flat File Extraction I follwed the Steps
    1) I created Data source -
    let us assume I have created a Flat File with 3 fields
    SNO SNAME MARKS
    File is located in workstation
    Data source created successfull , I have checked in preview.
    2) I have created 2 key Figures, 1 characteristic
    3) I have created Infocube
    <b>here I have some doubt</b>
    while I am creating Infocube, the look and Feel is very different to 3.XX
    when i try to create in 3.XX , we can see the Tabs for Kef figs,chars,Time chars and we assign chars to Dimenstions.
    when i am creating Infocube in BI 7.0 , I don't Find such a Tabs and how I am assign the chars to Dimension
    I created Like this
    select
    Info Area -
    > create Info cube   -
    given name of the cube and create (F5).
    the Info cube window displayed on the Right side
    Then I did like this
    select
    key Figures -
    > Info object Direct Input   
    Then I inserted my two key figures SNO,MARKS
    --- continue (F5)
    Dimension 1 -
    >  Info object Direct Input    
    I inserted the 1 char  SNAME
    --- continue (F5)
    Then I saved the Info cube
    Info cube saved successfull and activated successfull
    <b>Is it Right way For create InfoCube ?</b>
    4) I created Transfomation for the Data source
    Data source -
    > create Transfomation
    I have given
    Object Type  : InfoCube
    Name           :YSTU    - i selected which I already created.
    It automaticall taken these parameters
    Obejct Type     : DataSource
    Data source     : YSTU
    source system :PC_FILE
    create Transformation (Enter)
    I got the Error
    <b>Cannot generate proposal</b>
    <b>Message no. RSTRAN017</b>
    Then I try to activate, I got the Error.
    <b>Error while activating transformation</b>
    <b>Message no. RSTRAN510</b>
    Before I post this , I had searched in Previous SDN post for this Error , But I can't understand the solution.
    I have lot of doubts like <b>Basis Guy need to install any Patch</b> or
    I did mistake any where.
    Help me to Find the solution...
    sure you can get the points
    Thanks
    prasanna

    Thank You so much Voodi, yes you are Right , I am not concentrated on Mapping, Now Transformation is activated.
    and i created Info Package too for the Data source , created successfully.
    I am struck on Final step  <b>creating DTP</b>
    when I am creating DTP
    Data Transfer Proc  : here I need to give the Dtp name ex: YDTP
    DTP Type               : Standard (Can be sheduled)
    Target of DTP
    <b>Object Type</b>       : Info cube
    <b>Name </b>               : YSTU  (This is my Cube Name)
    Source of DTP
    <b>Object Type</b>     : Data source  (It automatically Taken)
    <b>Data source</b>     : This is Disabled
    <b>Source system</b>:  This is Disabled
    continue (Enter)
    I got the message ?
    <b>Specify Name of source</b>
    and courser is in <b>Data Transfer Proc </b>
    Thanks
    prasanna

  • Error while activating Transformations

    Hi gurus,
    Iam facing a problem while activating Transformations.
    Its a flat filre loading consisting of 4 objects , 3 are standard and one is customised key figure ZPLN_VAL  Data type is Amount, currency is fixed INR.
    But iam getting following errors while activating transformations.
    1,RULE(target ZPLN_VAL, Group;01 standard group); Conversion type missing.
    2.RULE7 (Target field:ZPLN_VAL) Field planned value must be assigned to an Infoobject.
    3.RULE(TARGET FIELD ZPLN_VAL) NO SOURCE UNIT ASSIGNED.
    Regards
    Amar.

    Hi,
    Map it with required Unit filed from your Source .
    Mayank

  • Error while Activating / running Bex queries/reports

    Hello
    I have following ERRORs while activating / running BEx reports/queries.
    1. While Activating BEx reports, I keel getting following ERRORS
    Object directory entry R3TR ELEM E341OIR6G715GUMGN0MRXP3MA does not exist
    Error when activating element BX7FOOKQB4588RROCBTC2YVZN
    BEx transport request 'BIDK901352' is not available or not suitable
    2. While running the BEx report/query in Bex Analyzer, I'm getting ERROR in entering the parameters, its NOT allowing / giving me option to select the parameters, for example for 0COSTCENTER, it is NOT displaying list costcenters to select before I can RUN that particular report.
    3. How can I trouble shoot ERRORs related to BEx and Portal connectivity.
    4. How would I setup the Variants for a Bex query/report ? Are these Variants for per user basis / per report basis. Can I have each variant for particular users OR all users must select their own variant each time when they RUN the report ? 
    Thanks, Sorry I have asked multiple questions, in jst one thread.
    BI

    Goto SE03 -->Search for Objects in Requests/Tasks  option , select the object type and execute it will give all the transports it has collected before ..
    Also you can use transport connection in RSA1 and select the query and find out all the objects in query locked by what request etc ..
    Thanks,
    Ravi

  • Error while activating transformation

    Hi Experts,
    I need to activate a transformation between a cube and DSO.
    But I am getting an error message while activating the Transformation the messages are as followed.
    1. Error when writing routines
       Message Number. RSAA561
    2. Error while activating transformation
        Message Number. RSTRAN510
    3. Error activating transformation.
       Message number. RSO404
    I have checked the transformation and each field is mapped to correct field and there are no routines its just 1:1 mapping can any body tell how to check the error on basis of Message Number as there is no other information available when we are displaying the error.
    Regards
    Shubh Karan

    Might be a problem with the time conversion routines. delete the transformationa nd try again.
    Good luck,
    vijay

  • Error While activating 0Material(BI7)

    Dear Gurus,
                     I am trying to Activate 0Material Infoobject after deleting a Navigation attribute(Classification characteristics) ,the system throws a error " Error while activating Type Info object".And when i navigated to the Detailed error message it says " error : Internal Activation(info object) - error while converting master data tables .Can anyone help me out with this.
    manythanks
    arun

    Dear gurus,
                     We posted the error message to SAP and they have replied " while we deleted the attributes from the Info object(0material) it broke the D-Version of the Object and so to Transport the Info object from another Working system to the Problem(Dev)system ,Install and then activate".
    1). Does it mean we can install them object in PRODUCTION Server and then transport to the Development.???
    2). Now i tried installing 0Material in RSORBCT in Produciton,but gets a message "Cant make any changes in the repository-changes in this client prohibited".  Guys could u help us with this??
    manythanks
    arun

  • Error while activating Infocube

    Following error while activating after creating new Infocube:
    No active nametab exists for /BIC/DDPCW14DFD1     
    Termination due to inconsistencies     
    Table /BIC/DDPCW14DFD1 (Statements could not be generated)     
    Enhancement category for table missing     
    The cube is being made as a exact copy of an existing activated and correctly working cube.
    Can anyone shed some light on this?
    ======================================
    MORE detailed error:
    RED- Error
    GREEN-Fine
    YELLOW-Warning
    RED     Error/warning in dict. activator, detailed log  --> Detail     
    GREEN     Activate table /BIC/DDPCW14DFD1     
    YELLO     Enhancement category for table missing     
    YELLO     Enhancement category for include or subtype missing     
    GREEN     A table called /BIC/DDPCW14DFD1 exists in the database     
    RED     No active nametab exists for /BIC/DDPCW14DFD1     
    RED     Termination due to inconsistencies     
    RED     Table /BIC/DDPCW14DFD1 (Statements could not be generated)     
    GREEN     Error number in DD_DECIDE (9)     
    YELLO     Flag: 'Incorrect enhancement category' could not be updated     
    GREEN     Table /BIC/DDPCW14DFD1 was not activated     
    GREEN     Activate table /BIC/DDPCW14DFD2     
    YELLO     Enhancement category for table missing     
    YELLO     Enhancement category for include or subtype missing     
    GREEN     Table /BIC/DDPCW14DFD2 must be created in the database     
    =============
    Thanks,
    Mohnish

    Can i know in which environment are you working? BW 3.5 OR BI 7?

  • Error while activating Transformation CO_OM_WBS_3

    Hi everybody,
    i get the following error message while activating the transformation for  CO_OM_WBS_3 in Dev
    Error while activating transformation
    Message no. RSTRAN510
    Error when writing routines
    i checked the routine for co_om_wbs_3 the syntex was correct.
    i have checked in forum am not getting clear picture  please guide me and
    sap component version : SAP EHP 1 for SAP NetWeaver 7.0
    SAP_BW    7010006    SAPKW70106
    BI_CONT    704   0006  SAPK-70406INBICONT
    Regards,
    Sunder

    Dear anand,
    thankyou
    Regards,
    sunder
    Edited by: sundersham on Mar 28, 2010 12:34 PM

Maybe you are looking for

  • Imix rating still not working

    Win XP, itunes 7.0.1, brand new dell c521 with latest drivers, obviously clean install. Italian itunes store. Same issue as with previous pc: imix rating screwed up. If I rate an imix 5 stars, it turns out to be 1. Anything from 4 stars to 1 gives a

  • FIM Set membership not evaluating

    Hi In the FIM Portal, we use a number of sets and MPRS to run workflows and previously have had no problems. We're having a difficulty with a particular set of "Requests" where we want to run a workflow if a Request is denied to email a 3rd party.  

  • PCA Retractor-Do we have Standard? Or do we need some customization

    Hi, We are planning to do PCA retraction.I am an ABAPER and novice to BW . Pls share your experiences and recommendations. Rgds Praveen

  • SCOM 2007 server decommission

    Hi All, We have built new scom 2012 server so we have to uninstall all SCOM 2007 components . Please help me how to remove the SCOM 2007 RMS, MS , Reporting service and DB and DW. Also please tel me what are things i need to do before uninstallation

  • Events on textFrames

    Hello, Is it possible to watch for events on textFrames? I put an addEventListenerToObject on a textFrame but no responses. Any Ideas? Michel