Classic Scenario_Tolerances error for GR posting in SRM

Hi,
I am getting error "quantity too high"  and "System status is INCM is active" when i try to post goods receipt in SRM. we are on SRM5 and under classic scenario. For the shopping cart, i posted PO with 10% over tolerances,which is configured already and system allowed to create PO with over delivery tolerance.
Where as when i try to post GR against this PO, i am getting this error. i think SRM checks against PO while posting GR for any tolerances.
Here is example: SC qty is 100, PO qty is 110 (10% over delivery tol is setup) ,in GR i am confirming against PO qty 110 ,i am getting error.
All my tolerances were setup in ECC only. I haven't set up any tolerances in SRM and in org structure.
Appreciate any inputs.
thanks
Krish
Edited by: Krishna on Feb 3, 2009 9:03 PM
Edited by: Krishna on Feb 3, 2009 10:41 PM

Hi ,
Same as backend we need to maitain tolerence in SRM also there is attribute TOG
where we have to maintain the values.
for Maitaining the Tol key goto T.code BBPCTOL
you can maintain the limits here
Hope thiswill help you
Best Regards
Edited by: CK on Feb 4, 2009 8:52 AM

Similar Messages

  • WRX Error-For consumables posting with Acc Assignment K

    We are doing a GR for consumables posting with account assignment category K (Cost centre).  However, while trying to post the document, system issues a message that "Account determination for WRX cannot be determined". 
    Why this error is coming for consumables posting for a cost centre ?  Is it standard or am I missing any configuration ?

    Hi,
    When you are booking a Consumption to a Cost Center at the time of GR, the entry whihc is passed is
    Consupmtion A/c Dr
    GR/IR Account Cr.
    At the time of IR, the entry will be
    GR/IR Account Dr.
    Vendor A/c Cr.
    So you will have to do the settings for the WRX for GR/IR account in OBYC.
    Regards,
    Amit
    Edited by: amit kulkarni on Dec 2, 2009 5:19 PM

  • Goods delivery error for transfer posting

    I have created a P.O for transfer posting for a material from Plant 2000 to plant 3000.where in my account assignment I have mentioed the WBS element.
    created the delivery document---VL10B and outbound delivery VL01N.
    during PGI, system gives error that no WBS element has been assigned.I went to item level and in financial posting TAB page I could not locate the same WBS number in the filed, which is not editable too.the movement type is 641.
    Please advcie what other things to check.
    Zinni

    Check your delivery type which  copy control and  how this value is passing.I think through some routine it is populated.Check the routine in VOFM transaction.

  • Idoc error for transfer posting

    hi i am working on idoc type WMMBID02.when i am doing stock transfer i.e. transaction MB1B trough idoc i am getting as
    Deficit of BA Unrestr. prev. 1,096 EA : 100536 PRDC RG01 9ANNA19002
    Message no. M7021
    but when i check the stock for the material in MMBE it has a lot of stock quantity.
    i.e. in MMBE the unrestricted stock is 200,000 and when i am transfering 1,096 stock it is giving me the error and i am able to the mb1b manually in the system.
    anyone please suggest.

    The error is saying Deficit of BA Unrestr. prev. 1,096 EA : 100536 PRDC RG01 9ANNA19002
    BA stands for batch
    Unrestr for stock status unrestricted
    prev  for previous period.
    In other words you do not have 1096 EA  in previous period for your material 100536 in plant PRDC with batch number 9ANNA19002
    maybe your posting date is wrong and it should be a date of the current period.
    maybe your batch number is wrong.
    maybe the quantity is too high.
    In MCHB table you should see the previous period stock in field CVMLA

  • Classic Wizard Error for Planning through Workspace

    Hi!
    I have registered Planning through Shared Services but I get a "Please verify that the application has been registered through Shared Services..." error message when I try to access the Classic Administration through Workspace. I am working with 9.3.1.
    I can create AND register an app by going to http://server:8300/HyperionPlanning/AppWizard.jsp....but then if I try to provision the app or log into the app (by goign to http://server:8300/HyperionPlanning/LogOn.jsp?) I get an "apllication XXX is invalid. Please see log for details" and as usual the log says nothing useful.
    Any ideas?
    Thanks so much!
    I have had a few tech consultants look at it and they have suggested uninstalling Planning for the 3rd time and reinstalling...If there is any magic I can do to fix it, I would prefer to do that instead of uninstalling

    Are you able to open / access the application via the Workspace 'Application' Menu?
    Also you should have configured Planning to be available through the same HTTP server that workspace uses. So instead of connecting to Planning directly to the JVM port (8300) you would go through the same HTTP address you use for workspace (19000).
    It is important to note you should not be accessing workspace through the direct JVM port (45000) but instead through the HTTP server. The default HTTP server port used by Hyperion is 19000.
    So you would access workspace at:
    http://<server>:19000/workspace
    And Planning should be available at:
    http://<server>:19000/HyperionPlanning
    If you cannot access planning through the proxied HTTP server address then that is more than likely the issue you are having as Workspace needs to connect to planning through the HTTP server and not directly to the JVM port.
    Let me know if you have any other questions.

  • "Internal server Error" for file post request

    client side
    package example.fc;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import javax.microedition.io.Connector;
    import javax.microedition.io.HttpConnection;
    import javax.microedition.io.file.FileConnection;
    import javax.microedition.lcdui.Alert;
    import javax.microedition.lcdui.Display;
    import javax.microedition.midlet.*;
    * @author  Sudipa
    * @version
    public class UploadMidlet extends MIDlet {
        String type;
        String url;
        String agent;
        String encodedData;
        HttpConnection conn;
        String boundary;
        Display display;
        public UploadMidlet()
            type=new String("image/png");
            url= new String("http://localhost:8086/test/Upload2.jsp");
            boundary = /*"---------------------------"+*/"--" + Long.toString(System.currentTimeMillis(), 16);
        public byte[] getData(String filename)
        { byte[] b=null;
        try{
          System.out.println("file://"+filename);
            FileConnection fc = (FileConnection)Connector.open("file://"+filename); 
             if(!fc.exists()) {
               Alert alert=new Alert("File do not exist");
               alert.setTimeout(Alert.FOREVER);
              display.setCurrent(alert);
             InputStream is = fc.openInputStream();
             b= new byte[(int)fc.fileSize()];
             int length = is.read(b, 0, (int)fc.fileSize());
             System.out.println
                ("Content of "+filename + ": "+ new String(b, 0, length));
          } catch (Exception e) {
             Alert alert=new Alert(e.getMessage());
               alert.setTimeout(Alert.FOREVER);
              display.setCurrent(alert);
          finally{
              return b;
    //          Enumeration filelist = fc.list("*", true);
        public void startApp() {
            String filename=new String(/*"C:/WTK25/appdb/DefaultColorPhone/filesystem"+*/"/root1/photos/_suite_8.png");
            display=Display.getDisplay(this);
            try {
                 encodedData=new String(getData(filename));
                 conn = (HttpConnection) Connector.open( url,Connector.READ_WRITE );
                conn.setRequestMethod( HttpConnection.POST );
    //          conn.setRequestProperty( "User-Agent", agent );
                conn.setRequestProperty( "Content-Type", type );
                conn.setRequestProperty( "Content-Length",new Integer(encodedData.length()).toString());
                OutputStream os = conn.openOutputStream();         
                System.out.println("success");
                String HeaderStr=boundary+new String(" Content-Disposition: form-data; name=\"uname\" fsdgfs ")+boundary+new String(" Content-Disposition: form-data; name=\"upfile\"; filename=\""+filename+"\" Content-Type: image/png");
                String FooterStr=new String(" ")+boundary+new String("--")+new String("\r\n");
                System.out.println((HeaderStr+""+ encodedData.trim()+FooterStr).getBytes());
                os.write((HeaderStr+""+ encodedData+FooterStr).getBytes());
                os.close();
                int rc = conn.getResponseCode();
            } catch (IOException ex) {
               Alert alert=new Alert(ex.getMessage());
               alert.setTimeout(Alert.FOREVER);
              display.setCurrent(alert);
        public void pauseApp() {
        public void destroyApp(boolean unconditional) {
    }server side
    <%@page import="java.io.File,java.io.IOException,java.lang.String,java.util.Iterator,java.util.List,javax.servlet.ServletException,javax.servlet.http.HttpServlet,javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,org.apache.commons.fileupload.DiskFileUpload,org.apache.commons.fileupload.FileItem,org.apache.commons.fileupload.FileItemFactory,org.apache.commons.fileupload.FileUpload,org.apache.commons.fileupload.FileUploadException,smpp.*"%>
    <%@page pageEncoding="UTF-8"%>
    <%
    //byte[] reqStr=new byte[request.getContentLength()];
    //request.getInputStream().read(reqStr);
    //out.write(new String(reqStr));
    String httpstr;
    smpp.CommonFunction com;
    try{
    com=new CommonFunction();
    FileUpload fup=new FileUpload();
    boolean isMultipart = FileUpload.isMultipartContent(request);
    // Create a new file upload handler
    DiskFileUpload upload = new DiskFileUpload();
    // Parse the request
    List /* FileItem */ items = upload.parseRequest(request);
    Iterator iter = items.iterator();
    while (iter.hasNext()) {
    FileItem item = (FileItem) iter.next();
    out.write(item.getName());
    if (item.isFormField()) {
    else
    File cfile=new File(item.getName());
    File tosave=new File(getServletContext().getRealPath("/WEB-INF/Upload"),cfile.getName());
    item.write(tosave);
    if (tosave.length()>0)
    {httpstr=new String(tosave.getAbsolutePath()+"========,-09====="+com.readFile(tosave.getAbsolutePath())+"\n\n"+"request");
    reqStr=new byte[request.getContentLength()];
    request.getInputStream().read(reqStr);
    out.write(httpstr+new String(reqStr));
    }catch(Exception e){System.out.println(e);}
    %>

    This may be because your browser is caching the page. You might have had an error previously, fixed it but the browser still loads the old page first untill you explicitly tell it to refresh.

  • PO is not generated for completed SC in SRM.70 classic scenario.

    Hi,
    I am working on SRM 7.0 - Classic scenario.
    When a shopping cart is complete in terms of price, vendor (assigned) and other required data, item stays in transfer process. even we are adding items from catalog.
    If a SC is incomplete a PR document is created in backend without a problem but when a complete SC is oredered, the status of shopping cart remains item in transfer process. I can see in table BBP_PDBEI, backend object type (BE_OBJECT_TYPE) is correctly selected as BUS2012 and the document number of PO is also correctly selected.
    This is the case even for the SC ordered using catalog materials.
    I have checked following configuration and it seems to be ok.
    1. 'Define objects in backend system's
    2. Number ranges definition in SRM and ECC
    3. Document type attribute -BSA in PPOMA_BBP
    Configuraiton wise everything seems to be, I tried to manually transfer the SC using FM BBP_REQREQ_TRANSFER but it does not change the status of SC it remains I1111
    RZ20 does not show any error for the SC with status I1111.
    Is there any sepcial FM to push the SC in SRM 7.0?
    Any help/tips would be highly appreciated. Thanks in advance.
    Thanks,
    Ravi

    learnt that PO number has generated in SRM and the same PO number not exist in ECC.
    check SM58 , rz20 log or Application monitor for the shopping cart.
    or monitor shopping cart click the icon follow on document and errror message must throw in 1 minutes.
    let us see .
    1. what is the settings in define backend OBJECTS
    2. check all basic data in the shopping cart - especially org data
    3. run bbp_check_consistancy report for your id?
    4. every user has the same issue?
    SEE THE RICHARDO technique
    http://wiki.sdn.sap.com/wiki/display/SRM/ShoppingCartStatusI1111-+Resubmit
    Muthu
    Report BBP_ALERT_SB_NOTTRANSFERED is available to change the status of the shopping cart item from I1111 to 'Error in transmission' (I1112) and later on, it is possible to retransfer this shopping cart from Application Monitor/Monitor Shopping Cart transactions.
    1480994  How to process a shopping cart with status I1111
    Edited by: Muthuraman Govindasamy on Jul 16, 2010 11:31 PM

  • Error while running a query-Input for variable 'Posting Period is invalid

    Hi All,
    NOTE: This error is only cropping up when I input 12 in the posting period variable selection. If I put in any other value from 1-11 I am not getting any errors. Any ideas why this might be happening?
    I am getting the following error when I try and run a query - "Input for variable 'Posting Period (Single entry, mandatory)' is invalid" - On further clicking on this error the message displayed is as follows -
    Diagnosis
    Variable Posting Period (Single Value Entry, Mandatory) is used as a lower limit (X) and an upper limit () in an interval selection. This limit has the value #.
    System Response
    Procedure
    Enter a different value for variable Posting Period (Single Value Entry, Mandatory). If the value of the other limit is determined by another variable, you can change its value also.
    Procedure for System Administration

    OK.
    Well, if the variable is not used in any interval selection, then I would say "something happened to it".
    I would make a copy of the query and run it to check if I get the same problem with period 12.
       -> If not, something is wrong in the original query (you can proceed as below, if changes to original are permitted).
    If so, then try removing the variable completely from the query and hardcode restriction to 12.
       -> If problem still persists, I would have to do some thinking.
    If problem is gone, then add the variable again. Check.
       -> If problem is back, then the variable "is sick". Only quick thing to do, is to build an identical variable and use that one.
    If problem also happens with the new variable, then it's time to share this experience with someone else and consider raising an OSS.
    Good luck!
    Jacob
    P.S: what fisc year variant are you using?
    Edited by: Jacob Jansen on Jan 25, 2010 8:36 PM

  • Error that "specify a value for variable posting period (single value entry

    hi
    My query is running testing fine in RSECADMIN under some username..but when i try and open it using analyzer (under same username) it gives me error that "specify a value for variable posting period (single value entry, mandatry)" it does'nt even asks to enter variable values and gives this error message.
    However the same query appears to be working fine under different username.
    plz advise.

    Hi Abhinav,
    Just do one thing compare the Roles of two different users for which Query is getting executed and not.
    Check the Object S_RFC.
    Compare the Objects detail for Both the Users.
    Please Assign points if useful.
    Regards,
    Rajdeep.

  • CS5 - Text format for classic text error

    will now have to re-edit every part.
    Clearly you can get around this by other formats but fact is if you have a document that has negative spacing dont open it in CS5 cause you
    This may have been in recent update.
    Flash now resets them when you open the file to 0, if you notice or not.
    when you have negative (-20) set in spacing, usually used when you have margins.
    Classic Text Error
    Flash CS5

    Here's a workaround.
    FixTextIndent is a class with static methods that
    provides a workaround for the Flash CS5 text formatting
    bug.  The Flash CS5 IDE will not remember the text
    indent setting for either static or dynamic text fields.
    We can set the indent in Actionscript for dynamic fields,
    so to use this class, convert your fields to dynamic,
    then set the left margin.
    When you call FixTextIndent methods, they will set
    the indent to the negative of the left margin.
    Gary Weinfurther, 12/17/2010
    package com.keysoft.util
        import flash.display.DisplayObject;
        import flash.display.DisplayObjectContainer;
        import flash.text.TextField;
        import flash.text.TextFormat;
        public class FixTextIndent
             Fixes the line indent of all dynamic text fields
             in a given display object container so that
             the indent is the negative of their left margin.
            public static function FixContainer(container:DisplayObjectContainer):void
                for(var i:int = container.numChildren - 1; i >= 0; --i)
                    var obj:DisplayObject = container.getChildAt(i);
                    if (obj is TextField)
                        FixTextField(obj as TextField);
             Fixes the line indent of a dynamic text field
             to the negative of its left margin
            public static function FixTextField(tf:TextField):void
                var format:TextFormat = tf.getTextFormat();
                if (format.leftMargin != null && format.leftMargin > 0)
                    format.indent = -(format.leftMargin as Number);
                    tf.setTextFormat(format);

  • Error occurred during post handling RS_AFTER_IMPORT for UPDR L

    Hi friends,
    I need your help for 2 issues related to transport
    I am getting error while transporting the request from BW DEV to BW QAS..Please help me regarding this issue..
    1.)Error occurred during post handling RS_AFTER_IMPORT for UPDR L
           The errors affect the following components:
          BW-WHM (Warehouse Management)
    2.)Start of the after-import method RS_UPDR_AFTER_IMPORT for object type(s) UPDR (Activation Mode)
           Error when activating update rule
           IC=0CRM_PROD IS=0PR_IL_PROREF_ATTR error when checking update rules.
    Friends these are the two issues im facing while doing the transports._i have checked the update rules in the BW DEV it is working fine._please give some solutions to overcome this issues.
    Thanks
    Gnana Baskar

    Hi Gnana,
    Since u r telling tht the update rules are working fine in the Dev system, request u to perform some checks:
    1. The Update rule needs to be in active version.
    2. The InfoObjects used in the target InfoProvider should be present in the QA system/attached to the request in which u r transporting the changed Update Rule.
    3. Manually add objects, if needed all the Before/After objects in the new request and reactivate the Update rule, if it asks for a request give this new request number.
    4. Compare the data model in Dev and QA system and try finding the disconnect between them.
    Hope this helps.
    Regards,
    Kunal Gandhi

  • Error occured while posting the job schedule for JDBCAdapter

    Hi Experts,
    In Application Log in Path: "/usr/sap/<SID>/DVExxxx/j2ee/cluster/server1/log", I see the error:
    #/Applications/ExchangeInfrastructure/AdapterFramework/Services/Util
    ##com.sap.aii.af.service.scheduler.SchedulerManagerImpl.postJobScheduleOthers(String, int)
    #J2EE_GUEST#0##n/a##f7956e1f6b4711e0b851001e0b5d3ac8#SAPEngine_Application_Thread[impl:3]_23##0#0
    #Error#1#com.sap.aii.af.service.scheduler.SchedulerManagerImpl#Plain
    ###error occured while posting the job schedule for JDBCAdapter_9f0584b1bcb33b94b67ada456233bcb8 with 2#
    Frequently are created Lock's and I need remove them in Visual Admin.
    Any idea about this error?
    Tks in advance.

    Hi,
    After applying the SP 23 Patch Level 08, LOCK JDBC problems stopped.
    But now when a network error or database error, the JDBC Sender Communication channels that were open to connection, are blocked.
    Even following the instructions in [SAP Note 1083488 - XI FTP_JDBC sender channel stop polling indefinitely (04_04S)|https://websmp230.sap-ag.de/sap(bD1wdCZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1083488] the problem continues.
    I've already set the parameter "taskTimeout" and selected the option "Disconnect from Database After Each Message Processing" but not resolved.
    Any ideas?
    Thanks in advance.

  • FM error while saving posting for FB60

    Dear all,
    i have implemented FM in ecc 6 ver ,while doing FB60 i got the below error.
    FM account assignment SPML/DUMMY cannot be posted in posting ledger 9A
    Message no. FMBS123
    Diagnosis
    The budget structure settings do not allow posting to the FM account assignment  SPML/DUMMY. The check of the budget structure ended with the return code 4.
    The system recognizes the following return codes for the check of posting addresses:
    u2022     Return code 1:
    The check of posting addresses is switched on. However the FM account assignment SPML/DUMMY  is missing in the budget structure. Insert this account assignment in the budget structure for the posting ledger 9A.
    u2022     Return code 2:
    The check of posting addresses is switched off, but the validation of posting addresses does not allow posting on this address.  Check the implementation of the Business Add-In (BAdI) Validate Budget and Posting Addresses in BS.
    u2022     Return code 3:
    The FM account assignment SPML/DUMMY leads to a conflict when you define a grouping key within the context of the budget structure. Check the implementation of the Business Add-In (BAdI) Define Grouping Key.
    u2022     Return code 4:
    The derivation strategy used for deriving the budget address from the posting address derives an invalid budget address. You can use the program for displaying of budget structure settings to find out which derivation strategy is used. Check the Derivation Strategy for BudgetAddresses in Customizing. This error may also be caused by inconsistent customizing of active FM account assignment elements in BCS and FM. This can be checked in IMG activity Activate Account Assignment Elements in Budget Control System.
    System Response
    Processing stops.
    Procedure
    Check the budget structure settings according to the given return code.

    Hi,
    Two things:
    a) FMDERIVE is relevant for both former and BCS models. It's a strategy which derives FM objects (not address) for postings of the document which have to be assigned to FM (basically, most of FI and LO documents).
    b) Strategy for derivation of budget address is something different. Here, you can tell the system where you want your budget to be checked. For example, the posting goes to fund centre X (either by direct entry or via derivation strategy put in FMDERIVE), but the budget to be checked is on fund centre Y. This functionality could be also achieved with AVC controlling objects, but since you work with budget structure, it's more natural to do it there. If your posting and budget entries are on the same level, then you basically don't need the budget address derivation strategy at all.
    Regards,
    Eli

  • Transport  Error occurred during post-handling RS_AFTER_IMPORT for ISCS L

    Hi,
       We are moving cube 0IC_C03 of material stocks/movements
    from Dev to Quality and we are facing problem while transporting the Transfer Structure 2lis_03_BF. Other  two TS moved successfully.
    The transporting is failing with the below error:
       “Errors occurred during post-handling RS_AFTER_IMPORT for ISCS L"
      We tried moving couple of times , still it was failing with the same error and even we tried to activate in Quality with the activate program .It say " there is no Transfer structure to activate.".
    BW system is  3.1 c with service pack 18.
    Your help greatly appreciated
    Thanks,
    Sudharani

    Hi there,
    Have you checked that DataSource is activated and replicated in your R3 Quality system? Check in BW for your source system if 2LIS_03_BF is there.
    Hope this helps,
    Regards,
    Carlos

  • PI setting for transferring Contract from SRM to ECC - Classic scenario

    Dear Experts
    SRM 702
    ECC 6.0 EHP6
    SRM - Classic scenario
    Need to understand PI setting for transferring Contract from SRM to ECC, as currently document Central Contract document getting created in SRM, but it is not getting transfer to ECC
    No XML message getting triggered in ECC systm as well
    can you help me in this
    if any additional information needed, pls revert
    Regards
    Prashant K

    Fully approve and release the contract. It will trigger the XML Message.
    Go to https://websmp203.sap-ag.de/~form/handler?_APP=00200682500000002672&_EVENT=DISPLAY&_SCENARIO=01100035870000000122&_HIER_… and download the configuration guide & check the PI setting and required Software Components in PI.

Maybe you are looking for

  • Query not returning correct number of records

    Hi Guys, Can someone please tell me why this query is not retrieving the correct number of records. I have a table with six users FIRST_NAME          LAST_NAME David               Robert Martin               Fisher Henry               Robert King Edm

  • Problem in accessing BW Report

    Hi All, I need to show BW Reports in EP 7.0 I have created a system, it's alias and BW iviews and the reports are being shown properly. However, when I have created another user and given the role Reports to the user, then while accessing the reports

  • DIR no. not showing after creation of DIR from Easy DMS

    Dear Friends, I could able to create DIR from Easy DMS. But I could not able to see DIR no. after creation, so that I do not document created or not ? If created what is the no. I need to open thru search or other way. Is it standard functionality. C

  • EK01 AND EK02

    hi friends, Can any one explain about actual cost (EK01) and caliculated cost (EK02). where we can use these condition types EK01 and EK02.  In which scenario we can use EK01 and which scenario we can use EK02.          Explain about Actual cost and

  • After upgrade makepkg aborts. How to debug it ?

    Hi, After 6 months of operation I decided to upgrade whole system (pacman -Syu). All went OK, but after upgrade I started to have issues with building my packages: running makepkg on some packages start to give me "==>Aborting" without any error code