Administration header could not be found

Hi experts,
When I create a follow up task to a service document and save the transaction I take the error popup "Administration header could not be found". If you recommend a solution method I will be very pleased. My system information is below:
BBPCRM     500     0004     SAPKU50004
Thanks.

Hey Ekram..
I believe this is because of incorrect use of COMMIT WORK or CALL FUNCTION BAPI_COMMIT in one of our BADI's.....
BADI might be getting called while you create follow up for business transaction...
Reward points for usefull answer...
Regards,
Anand

Similar Messages

  • Administration header could not be found error in Mobile Apps

    Hi All,
    Our company is using Sybase as the mobile application. Now we have a requirement to stop an opportunity from being saved upon certain condition.
    What I did:
    ~ I implemented ORDER_SAVE, method CHECK_BEFORE_SAVE
    ~ Inside the method, for some condition i do RAISE DO_NOT_SAVE
    Result:
    ~ The web UI is behaving properly, the defined message appeared, and the document is not saved
    ~ However, if the transaction is created from Sybase Side, it prompts error "Administration header could not be found for XXXXXXXXXXXXXXXX" <--GUID
    Any idea why the error message in the Sybase side is prompting some kind of system error instead of my defined error message? in addition to that, the process also jammed in the MI System.
    Best Regards
    Andre Julius

    I have the same problem when I'm doing the partner determination with the badi COM_PARTNER_BADI.
    But I don't known what's happened
    Luiz Schumann

  • "Administration header could not be found" Error POP

    hi
    i m getting the pop up "Administration header could not be found" when i m using the FM CRM_ORDER_MAINTAIN to fill a BP(prospect) in Lead transaction which i have created through a BAPI

    I have the same problem when I'm doing the partner determination with the badi COM_PARTNER_BADI.
    But I don't known what's happened
    Luiz Schumann

  • Error trying to delete CRM trans. Administration header could not be found

    We were trying to delete a few transactions (Leads & Opportunities ) from our system using T code: CRMD_ORDER. but got this error message: "Administration header could not be found XXXXXXXXXXX". I tried using the program CRM_ORDER_DELTE, but got the same error message. I tried BAPI: BAPI_LEAD_DELETEMULTI but got the same error message.
    I applied the Note: 1087462 and then tried to delete these transactions and still got the same error message. Is there any solution to this problem for CRM 5.0?
    Steps for Reconstruction    
    1. Go to T code: CRMD_ORDER
    2. Enter Shift+F5 and enter transaction#: XXXXXXX.
    3. In Menu- select "Business Transaction" & "Display/change".
    4. Once in change mode go back to Menu and select "Business
    Transaction" & "Delete".
    5. Click "Yes" on the pop-up.
    6. The error msg: "Enter Business partner" should appear - Msg#
    CRM_EMAIL320
    7. Hit enter, the error msg: "Administration header could not be found
    XXXXXXXXXX" appears.

    Received response from SAP support partner:
    Please verify first if the issue is caused by badi implementation
    of ORDER_SAVE badi. Please check method prepare and check_before_save.
    Maybe inside your implementation the function crm_order_read is called
    but that is not possible in case of deleting a document as document is
    not available anymore.
    If that doesn't work try this one:
    Please check to see if you have a badi ORDER_SAVE method
    CHANGE_BEFORE_UPDATE. Please deactiviate the ORDER_SAVE Badi and retestthe deletion.
    This is how we resovled our issue - hope this helps someone else:
    Check using T Code: SE80 to look for a BADI implementation which used BADI: ORDER_SAVE:
    SE80-> Package: Z* (look for custom packages) -> Look under enhancements for any BADI Implementations which have used ORDER_SAVE (double click implementation and in the right pane look under Definition name).
    Click 'Change' and deactivate this implementaiton. Now try to delete the CRM transaction. The error msg should not pop up now. Once deletion is completed reactivate this implementation.
    This is just a work around. The problem lies in the code and the code within the implementation should be debugged and fixed so that this error message does not come up again.
    Edited by: Ramesh Nallabelli on Feb 9, 2009 5:18 PM

  • Error:Administration header could not found for support message

    Hi All,
    we are creating the support message in CRMD_ORDER transaction. we are getting an error, "Administration header could not found for support message" while saving. And also it is coming out of the transaction.
    The transaction type is SLFN.
    Please advise.
    Regards
    kumar

    Did you find the solution to this error? I am also getting this error and need to solve the same. Can you please help?

  • Error message: Header Administration could not be found GUID

    Hi,
    I am trying to delete service orders by ABAP-program in SAP CRM ver 5.2.
    I have tested both CRM_ORDER_DELETE and BAPI_BUSPROCESSND_DELETEMULTI. The problem is if the service order is missing the User Status, sometimes (not always!) both these function modules will crash with following message: (without throwing any exception)
    Header Administration could not be found <GUID>
    How can I avoid this situation? In case the system cannot delete a certain service order because of some errors on the service order, I would like to catch it as an exception instead of getting a dump.
    By the way, I even tried to disable all BAdI implementations of ORDER_SAVE but it did not help.
    Thanks and regards

    Hello Steven,
    What exactly is the code in the BADI trying to achieve? May be a code snippet would help us understand the issue better.
    Regards
    Nisha

  • The Web application at could not be found. Verify that you have typed the URL correctly. If the URL should be serving existing content, the system administrator may need to add a new request URL mapping to the intended application

    Hi,
    I have created on windows service to fetch sharepoint list ad update the list items.
    when i run this service in sharepoint server(where the sharepoint site is hosted),it is working fine. If i run the same service in another machine(sharepoint installed in this machine also). it is giving the below error
    The Web application at [URL] could not be found. Verify that you have typed the URL correctly. If the URL should be serving existing content, the system administrator may need to add a new request URL mapping to the intended application.
    Code snippet
    SPSite sharepointSite = null;
                SPWeb rootWeb = null;
                try
                    //SPList current = null, previous = null;
                    string colmId = ConfigurationManager.AppSettings[ID_COLM];
                    List<TaskEntity> list = new List<TaskEntity>();
                    sharepointSite = new SPSite(URL);
                    rootWeb = sharepointSite.OpenWeb();
                    SPList current = rootWeb.Lists[ConfigurationManager.AppSettings[OMEGA_REGISTRATION_LIST]];
                    WriteEventLog("current" + current.Items.Count.ToString());
                catch (Exception ex)
                    ExceptionMethod(ex);
                finally
                    sharepointSite = null;
                    rootWeb = null;
    I have pointed .net framework to 3.5 version and target palform as Any CPU. Please suggest me

    Hi mallela1,
    I also had similar issue couple of months back when I was trying to access a remote URL from a Windows service when the site does not exists in the server where service resides.
    You cannot access a remote url (even though it is SharePoint server and also in same network ) from server object model.
    SPSite can look in the current server only. here what is happening is SPSite will look for this in the current server DB and it is not finding this errror.
    So please dont use ServerObject model for accessing remote sites. You can use Client Object model for the code /requirement you have stated above.
    I wasted lot of time in finding a work around to make to work. It did not. So look for other options.
    Regards,
    Nandini

  • How to solve Error SPSite - The Web application at address could not be found

    Hello,
    I am trying to find out the internal name of a custom SharePoint list columns, for this I have used following code snippet in my
    console application but getting below error. The site I am accessing is a public SharePoint web site. This code is working
    well with my local host site and i am able to get the internal names of any list columns but don't understand why this is failing with
    public SharePoint site
    For avoiding this issue I have done following steps:
    1.Rebuild the application
    2.changed the  platform target as "Any CPU"
    3.Visual studio and this public site is working in my admin account, but still I am getting the error!
    I use visual studio 2010 and SharePoint 2010
    please note the error I am getting
    Error : The Web application at https://public.sp.a5-group.com/ could not be found. Verify that you have typed the URL correctly.
    If the URL should be serving existing content, the system administrator may need to add a new request URL mapping to the intended application
    Code Snippet
    static void Main(string[] args)
    using (SPSite Site = new SPSite("https://public.sp.a5-group.com/"))
    using (SPWeb web = Site.RootWeb)
    SPList splst = web.Lists["ListCard"];
    foreach (var field in splst.Fields)
    bool isHidden = splst.Fields[field.ToString()].Hidden;
    if (!isHidden)
    string internalName = splst.Fields[field.ToString()].InternalName; //This will give you the internal column name.
    Console.WriteLine(internalName);
    Console.ReadLine();

    I thin you need to have sharepoint installed on same computer and URL should be working on this computer.
    If this URL WEB APP is in your IISsite try to create disableloopbackcheck registry which should be help
    When you use the fully qualified domain name (FQDN) or a custom host header to browse a local Web site that is hosted on a computer that is running Microsoft Internet Information Services (IIS) 5.1 or a later version, you may receive an error
    message 
    http://support.microsoft.com/kb/896861

  • CFAJAXPROXY: "The specified CFC proxy could not be found."

    {ColdFusion 8, latest, Windows.}
    The following statement occurs (in an included CFM file):
    <cfajaxproxy cfc="crv2_js" jsclassname="ServerProxy">
    The "crv2_js.cfc" file is indeed located in the same directory.  (If you request it at the same URL, and enter the administrator password, a nice formatted description of the library and its methods dutifully appears, so it is there...)
    But the error is:
    The specified CFC proxy could not be found.
    The path to the CFC must be specified as a full path, or as a relative path from  the current template, without the use of mappings.
    Looking also on the Administrator screen, I confirm that the directory is not mapped.
    Other, <cfinvoke> calls have been used to a sister CFC-library in the same directory without incident.  So I am confident that the message that I am seeing is somehow bogus ... but I do not yet know what sort of "bogosity" it must be.

    Now here is something I didn't expect to see.  When I turned on "extended error information" (or whatchamacallit...) I got this additional information in the displayed log:
    The specified  CFC proxy could not be found.
    The path to the CFC must be  specified as a full path, or as a relative path from the current template,  without the use of mappings.
    The  error occurred in C:\Inetpub\wwwroot\NCPT\CRV2\cr_PrototypeManager.cfm: line  235
                                        <cfgridcolumn
                                         name="DefinitionIsLocked"
    233 :                                     header="Is In Use"
    234 :                                     type="boolean"
    235 :                                     select="no">
    236 :                                                                 
    237 :                                    </cfgrid>
    (Ooh... formatted!  Now ain't that slick!)
    I took the liberty of pasting-in lines 231-232, which the debugging-output did not include.  In fact, here is the entire block of code:
    <cfgrid name="datagrid" pagesize="5" format="html" width="100%" height="200"
    "cfc:proxy.GridSource_ReviewPrototypes({cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{c fgridsortdirection},getPageSize())">
    <cfgridcolumn
       name="ID"               
        header="ID"                
       display="false"    >
    <cfgridcolumn
       name="TemplateName"       
        header="Template Name" >
    <cfgridcolumn
       name="PrototypeClassName"   
       header="Prototype Class" >
    <cfgridcolumn
       name="Description"
       header="Description">
    <cfgridcolumn
       name="Enabled"
       header="Enabled"
       type="boolean">
    <cfgridcolumn
       name="DefinitionIsLocked"
       header="Is In Use"
       type="boolean"
       select="no">
    </cfgrid>
    So...  why on earth would an error like that be showing up at a place like this?  (Removing the "select='no'," on the wild-guess theory that it might be "the odd man out," as-expected had no useful effect.)
    My hypothesis here is that the "failure location" actually has nothing to do with anything:  this is simply the last clause in the CFGrid construct, and the computer is now trying to place a call to this function:
    <cffunction name="GridSource_ReviewPrototypes" access="remote" returntype="any">
      <cfargument name="page"                 required="yes">
      <cfargument name="pageSize"             required="yes">
      <cfargument name="gridsortcolumn"       required="yes">
      <cfargument name="gridsortdirection"    required="yes"> 
        <cfargument name="customPageSize"       required="no"     default="0">
    Uh huh... straight out of a demo.
    I thought I had just-now discovered the problem, as I was writing this, because the "bind" expression had two additional parameters which are not listed in <cfargument> tags.  But, much to my surprise, it didn't fix it.
    To be absolutely complete in my description:
    In an included header-file, we have:  <cfajaxproxy cfc="crv2_js" jsclassname="ServerProxy">
    On this (Windows) host, the file-name of the CFC file is "crcv2_js.cfc" and it is located in the same directory as both the cfm and the included cfm.
    In the <head> portion of the main page, we have (in an in-line <script> tag):    
    var proxy = new ServerProxy();
        proxy.setErrorHandler(showError);
        proxy.setCallbackHandler(handleResult);
    I'm starin' at this thing and starin' at this thing and everything I see is screamin' at me, "bogus!"    'Cept I know it can't be.
    The generated page-source code includes the following, including a bit which I have highlighted in bold face.  I don't know where that bit came from.
    <script type="text/javascript">
    ColdFusion.Ajax.importTag('CFAJAXPROXY');
    </script>
    <script type="text/javascript">
    var _cf_crv2_js=ColdFusion.AjaxProxy.init(
      '/CRV2/crv2_js.cfc','ServerProxy');
    but it does seem plausible since the URL to the site-page (on case-insensitive Windows) is, indeed: 
       http://tlcapps/crv2/cr_PrototypeManager.cfm
    and, again, if I type in  "http://tlcapps/CRV2/crv2_js.cfc" and prove that I do know the proper ColdFusion admin-password, I get a nice pretty-printed description of this library and its methods... including the one I am trying to call.  It does exist.

  • Datasource could not be found

    Been working on this problem for several days now. My CF 7
    server with developer configuration (using the built-in CF server)
    is fine, so I copied my production-ready site to my new CF 8
    production server (using IIS). The problem, now, is that I'm
    getting a "Datasource dimdbcfm could not be found."
    The datasources on the CF 8 server have been set up in the CF
    admin, so that shouldn't be the problem. In fact, if I use the
    built-in CF server as a test (
    http://s355ab5:8301/CFIDE/index.cfm)
    I get the expected page with it's menu form and database-driven
    options. However, the CGI values are missing ... not showing int
    the debug or cfoutputs. For example, remote_user and auth_user is
    blank, but remote_host is good. On the other hand, if I use the IIS
    server (
    http://s355ab5/CFIDE/) it gives
    me the CGI values just fine but the datasource can not be found.
    I've researched the problem across the net, through my books,
    even check with some in-house help and can't figure it out ...
    mostly because I can't find the same problem. I'm thinking it's a
    case where it's either a misunderstood/ambiguous cause or something
    is not right with my IIS or my CF.
    Another potential problem is the location (directory path) of
    the site and/or the IIS settings.
    • I kept the site under the
    \JRun4\servers\KIMprod\cfusion.ear\cfusion.war\CFIDE directory.
    • I didn't bother with the \Inetpub\www\CFIDE
    directory.
    • I reset the default site to the same JRun4 directory.
    • I checked "local path" and the associated
    permissions. Seem OK.
    Other checks done.
    • I checked the Authentication Methods and set to
    "Integrated Windows authentication".
    • I have CF configured as Multiserver.
    • I even tested this with a temporary ODBC connection.
    The test connection was successful.
    • I also added a JRunScripts virtual directory as
    suggested by another web site. (Didn't get created automatically.)
    • Also created sandbox settings. No change.
    Seriously stuck here, and I'm hoping it's a simple problem,
    even though I might hang my head in embarrassment if it is.
    Let me know if you need more info or clarification.

    skylabpictures wrote:
    > ? I have CF configured as Multiserver.
    This means that you can have multiple ColdFusion instances
    running on
    the server and it sounds like you do. One of the main reasons
    to do
    this is so that each instance can have its own separate and
    unique
    configurations such as DSN settings.
    This instance you have running and configured to use the
    built in web
    server and is accessed from the URL
    http://s355ab5:8301/CFIDE/index.cfm'
    has the DSN configured. But the
    built in web server is not a Windows IIS web server and thus
    'Windows
    Integrated Authentication' is meaningless to it and
    cgi.auth_user is
    never going to be populated automatically.
    The instance you have running and configured to the URL
    http://s355ab5/CFIDE/' does not
    have the DSN configured. But this one
    is an IIS web server and thus the 'Windows Integrated
    Authentication'
    means something and your cgi.auth_user is populated as
    desired as long
    as the user is using a Windows browser on a Windows OS client
    connecting
    to the Windows server over a Windows domain network. (Thus
    the 'Windows'
    part of the integrated security.)
    Compare and contrast these too administrator settings,
    especially the
    DSN settings.
    http://s355ab5/cfide/administrator/
    AND
    http://s355ab5:8301/cfide/administrator/
    AND just for fun
    http://s355ab5:80/cfide/administrator/
    Which should be the same as the first one, but may more
    clearly
    distinguish why these are different web sites. Different
    ports means
    different web sites.

  • The Web application could not be found

    Hello,
    I have a machine that has s share point portal .
    I create WCF on the same machine and set it on IIS and the identity of application pool is the administrator of machine 
              PlatformTarget : 64 bit ,  Framework : .net 4.5
    I have added sharepoint.dll as refrenece in WCF project.
    The identity 
    I have a method on the WCF :
              public void Test(string siteCollectionURL)
                    SPSite siteCollection = new SPSite(siteCollectionURL);
    When I call this method , I get the following Error :
             The Web application at http://[servername]:9090/sites/Dhofar could not be found. Verify that you have typed the      URL correctly. If the URL should be serving existing content, the system administrator may
    need to add a new request URL mapping to the intended application.
    Iam sure the url is correct  . So how can I solve it
    ASk

    Hi,
    For a better trouble shooting, I suggest you do as the followings:
    You can recreate a new WCF Service for SharePoint to test whether it works.
    More information about how to create WCF Service for SharePoint:
    http://www.thesharepointblog.net/Lists/Posts/Post.aspx?List=815f255a-d0ef-4258-be2a-28487dc9975c&ID=64
    http://msdn.microsoft.com/en-us/library/ff521584(v=office.14).aspx
    Best regards,
    Zhengyu Guo
    Zhengyu Guo
    TechNet Community Support

  • The web application at [URL] could not be found.

    Hi,
    I am trying to run a simple code like finding all the users in the SharePoint site.
    But I am seeing this error constantly no matter what I do!!
    The Web application at [https://xxxxxx] could not be found. Verify that you have typed the URL correctly. If the URL should be serving existing content, the system administrator may need to add a new request URL mapping to the intended application.
    I've looked into all the answers on the forums but still stuck with this error.
    I am a beginner in SharePoint, and I am really not sure about the AAM and IIS settings that needs to be set inorder to get rid of this error.
    If someone could point me in right direction that targets beginners that would be really helpful.
    Also, I noticed that my IIS is blank on the dev server that I am working on with Visual Studio and SharePoint installed on it. 
    Is this something that is causing this error?
    Thanks

    Note: you need to enter the SharePoint site URL 
    To authenticate:
    f you are connecting to office 365 then use the following code:
    using (srcContext = new ClientContext(txtUrlFrom.Text))
    SecureString passWord = new SecureString();
    foreach (char c in txtPasswordFrom.Text.ToCharArray()) passWord.AppendChar(c);
    srcContext.Credentials = new SharePointOnlineCredentials(txtUserNameFrom.Text, passWord);
    if you are using on premise SharePoint 2013 use this code:
    using (srcContext = new ClientContext(txtUrlFrom.Text))
    NetworkCredential credentials = new NetworkCredential(txtUserNameFrom.Text, txtPasswordFrom.Text);
    Example to retrieve data:
    Web srcWeb = srcContext.Web;
    List srcList = srcWeb.Lists.GetByTitle(srcLibrary);
    ListItemCollection col = srcList.GetItems(new CamlQuery());
    srcContext.Load(srcList.RootFolder);
    srcContext.Load(srcList.RootFolder.Folders);
    srcContext.Load(col);
    srcContext.ExecuteQuery();
    to retrieve users:
    Private void GetData(object obj)
    MyArgs args = obj as MyArgs;
    try
    if (args == null)
    return; // called without parameters or invalid type
    using (ClientContext clientContext = new ClientContext(args.URL))
    // clientContext.AuthenticationMode = ClientAuthenticationMode.;
    NetworkCredential credentials = new NetworkCredential(args.UserName, args.Password, args.Domain);
    clientContext.Credentials = credentials;
    RoleAssignmentCollection roles = clientContext.Web.RoleAssignments;
    ListViewItem lvi;
    ListViewItem.ListViewSubItem lvsi;
    ListViewItem lvigroup;
    ListViewItem.ListViewSubItem lvsigroup;
    clientContext.Load(roles);
    clientContext.ExecuteQuery();
    foreach (RoleAssignment orole in roles)
    clientContext.Load(orole.Member);
    clientContext.ExecuteQuery();
    //name
    //MessageBox.Show(orole.Member.LoginName);
    lvi = new ListViewItem();
    lvi.Text = orole.Member.LoginName;
    lvsi = new ListViewItem.ListViewSubItem();
    lvsi.Text = orole.Member.PrincipalType.ToString();
    lvi.SubItems.Add(lvsi);
    //get the type group or user
    // MessageBox.Show(orole.Member.PrincipalType.ToString());
    if (orole.Member.PrincipalType.ToString() == "SharePointGroup")
    lvigroup = new ListViewItem();
    lvigroup.Text = orole.Member.LoginName;
    // args.GroupsList.Items.Add(lvigroup);
    DoUpdate1(lvigroup);
    Group group = clientContext.Web.SiteGroups.GetById(orole.Member.Id);
    UserCollection collUser = group.Users;
    clientContext.Load(collUser);
    clientContext.ExecuteQuery();
    foreach (User oUser in collUser)
    lvigroup = new ListViewItem();
    lvigroup.Text = "";
    lvsigroup = new ListViewItem.ListViewSubItem();
    lvsigroup.Text = oUser.LoginName;
    lvigroup.SubItems.Add(lvsigroup);
    //args.GroupsList.Items.Add(lvigroup);
    DoUpdate1(lvigroup);
    // MessageBox.Show(oUser.LoginName);
    RoleDefinitionBindingCollection roleDefsbindings = null;
    roleDefsbindings = orole.RoleDefinitionBindings;
    clientContext.Load(roleDefsbindings);
    clientContext.ExecuteQuery();
    //permission level
    lvsi = new ListViewItem.ListViewSubItem();
    string permissionsstr = string.Empty;
    for (int i = 0; i < roleDefsbindings.Count; i++)
    if (i == roleDefsbindings.Count - 1)
    permissionsstr = permissionsstr += roleDefsbindings[i].Name;
    else
    permissionsstr = permissionsstr += roleDefsbindings[i].Name + ", ";
    lvsi.Text = permissionsstr;
    lvi.SubItems.Add(lvsi);
    // args.PermissionsList.Items.Add(lvi);
    DoUpdate2(lvi);
    catch (Exception ex)
    MessageBox.Show(ex.Message);
    finally
    DoUpdate3();
    Kind Regards, John Naguib Technical Consultant/Architect MCITP, MCPD, MCTS, MCT, TOGAF 9 Foundation

  • I have movies in my movie library but i cannot play them or drag them into my ipod.There is an exclamation point next to each of them.Then when i click on it to play it it says the movie cannot be used because the original file could not be found.

    I have movies in my i tunes library but i canot play them or drag them into my i pod.There is an exclamation point each of them.Then when i click on them to play them on my pc it says this movie cannot be used because the original file could not be found.Help?

    Read threads list over on the right under the heading of More Like This
    Allan

  • TF201072: A user or group could not be found

    We are using TFS2010 (for source control only), and until recently
    everyone was using VS2010. Our developers just installed VS2012.
     When you go to "Pending Changes" in Team Explorer, we are seeing
    TF201072: A user or group could not be found. Verify that the
    users and groups used in your work item type definition have been added
    to Team Foundation Server., twice, at the top. We can still check-in code from VS - seems this error is ignored.
    However, we are unable to shelve changes - when you attempt to
    shelve, the same error comes up in a popup, and the shelveset is not
    saved.
    We can shelve using the command prompt (tf shelve), and
    can still shelve using VS2010, so it doesn't seem to be a permission
    issue. Also, the TFS administrator is not seeing the error message, and
    can shelve from VS2012 with no error.
    Any thoughts as to what could be causing VS to error out here? We've tried clearing out the TFS cache, creating a new workspace, and gone over every option we could find in Visual Studio.

    Hi Rudy,
    I'd like to know more details about the reproduce steps, and whether you have upgraded your TFS server. If you don't have permission to access the database, then you can ask TFS administrator to grant you corresponding permissions to access the database
    you're trying to access.
    And you can check whether built-in records were missing in table TFSIntegration..tblsubscription. Refer to the link below for more details:
    http://blogs.msdn.com/b/emmamou/archive/2009/03/13/a-case-study-on-tfs-identity-replication.aspx?wa=wsignin1.0&CommentPosted=true#commentmessage
    Another option is check if the SID of service account is correct. Replace SID if not, you can refer to this
    thread for the steps.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • MIGO-Sales price for material (NL1S ROH1 ) could not be found

    Hi Experts
    When i doing MIGO , i am getting following Error Message .i.e.,
    *Sales price for material (NL1S ROH1 ) could not be found*Message no. M7158
    Diagnosis
    The sales price valuation is active in the valuation area.
    The system could not determine a sales price on the specified posting date for material NL1S ROH1 in unit of entry in plant .
    Sales price conditions may not be defined for the material in plant .
    Procedure
    u2022 If you have a goods receipt for a purchase order or an order, the sales price is taken from the purchase order or the order concerned.
    Check the sales price in the purchase order or the order.
    u2022 if you have goods movements without a reference, you can specify the sales value (sales price including sales tax) manually.
    If the screen does not have the field Sales price, then you have a Customizing error: the sales price valuation was activated in the valuation area, but the field selection of the movement type was not changed accordingly. In this case, contact your system administrator.
    u2022 Check the definition of the sales price.
    Note that for distribution centers, the sales price of the consumer distribution chain maintained in the distribution center's master data is used.
    Proceed
    If you post this movement without the sales value, the movement will be valuated with value zero. This can change the average sales price.
    Please Advice us ...
    Thanks in advance
    Regards
    Rajesh .P

    Hello,
    Please check the following:
    -check with SE16 at table T001K whether you have sales pricing active for your valuation area,does your material belong to a very special material type
    -Check SAP Note 84480 ,109881
    -No sales price exists, no goods movements can be posted for an article subject to value-based inventory management. You must maintain the sales price in all cases.
    Please refer the link below:
    http://help.sap.com/erp2005_ehp_04/helpdata/en/12/085e95470311d1894a0000e8323352/frameset.htm
    hope the information is helpful
    regards

Maybe you are looking for

  • Getting billed for free apps

    WHy is this happening. The app says free but after I get it I get an email sayin I am being charged..

  • How to lock wbs element

    Hi all, I would like to seek your help on how to lock wbs element in a report program. Is there any bapi or function module for that? The requirement is to lock the wbs element when the user process/run that particular WBS. If the user exit to the re

  • Mail checking for messages FOREVER .... (New iPad)

    After upgrading to IOS 6, my mailbox is not receiving any messages.  All I get is the msg saying "checking for mail" and the spinning wheel goes on forever. After it stopped spinning, no emails came in (via my hotmail account) although I can see some

  • OIM-OID connector group lookup recon

    Hi Everyone, I am trying to run group lookup recon using scheduled job OID Connector Group Lookup Reconciliation. I can run the recon sucesssfully if my base DN for OID is set to dc=com in the IT resource. and does not work when it is "dc=example,dc=

  • Export from User exit.

    hi Guru's I am using this is a user exit: DATA: lv_diff TYPE n. lv_diff = TRUNC( wmara-mhdhb - lv_mhdhb ).   EXPORT lv_diff TO MEMORY ID 'ZXXXXX'. and importing in a custom program: DATA: lv_diff TYPE n. IMPORT lv_diff FROM MEMORY ID 'ZXXXXX'. Th sy-