Getting an error "the Application does not exist"  in FR

user got the message to shows there is a searching error: the application doesn’t exist member
in HFM while pulling FR report

Hi Folks,
              I am still noty able to get to create a customer.Following fields is being sent:
  <?xml version="1.0" encoding="UTF-8" ?>
<ns0:BAPI_CUSTOMER_CREATEFROMDATA1 xmlns:ns0="urn:sap-com:document:sap:rfc:functions">
<PI_COPYREFERENCE>
  <SALESORG></SALESORG>
  <DISTR_CHAN></DISTR_CHAN>
  <DIVISION></DIVISION>
  <REF_CUSTMR></REF_CUSTMR>
  </PI_COPYREFERENCE>
<PI_PERSONALDATA>
  <TITLE_P></TITLE_P>
  <FIRSTNAME></FIRSTNAME>
  <LASTNAME></LASTNAME>
  <MIDDLENAME></MIDDLENAME>
  <SECONDNAME></SECONDNAME>
  <CITY></CITY>
  <DISTRICT></DISTRICT>
  <POSTL_COD1></POSTL_COD1>
  <POSTL_COD2></POSTL_COD2>
  <PO_BOX></PO_BOX>
  <PO_BOX_CIT></PO_BOX_CIT>
  <STREET></STREET>
  <HOUSE_NO></HOUSE_NO>
  <BUILDING></BUILDING>
  <FLOOR></FLOOR>
  <ROOM_NO></ROOM_NO>
  <COUNTRY></COUNTRY>
  <COUNTRYISO></COUNTRYISO>
  <REGION></REGION>
  <TEL1_NUMBR></TEL1_NUMBR>
  <TEL1_EXT></TEL1_EXT>
  <FAX_NUMBER></FAX_NUMBER>
  <FAX_EXTENS></FAX_EXTENS>
  <E_MAIL></E_MAIL>
  <LANGU_P></LANGU_P>
  <CURRENCY></CURRENCY>
  <ONLY_CHANGE_COMADDRESS></ONLY_CHANGE_COMADDRESS>
  </PI_PERSONALDATA>
  </ns0:BAPI_CUSTOMER_CREATEFROMDATA1>
I have done the following:
(1) Previously I was using a DIALOG user in the usid/pwd section of the receiver RFC adaptor,now I have created a communication user.
(2) The data present in the above instance is being successfully inserted when testing thru the test tool in SAP 6 backend
Do I have to do anything additonal?
Regards,
Premjit

Similar Messages

  • Error: The user does not exist or is not unique - when setting permission programmatically

    Hi,
    I am custom Sequential workflow in which I am breaking the permission and setting permission to list item.
    I have used the below code for setting Permission:
    SPRoleDefinition oSPRoleDefinition = oSPWeb.RoleDefinitions["RoleName"];
    //Grant permission to Manager
    SPRoleAssignment oSPRoleAssignmentManager = new SPRoleAssignment(strManagerLanID, strManagerEmail, "", "");
    oSPRoleAssignmentManager.RoleDefinitionBindings.Add(oSPRoleDefinition);
    CurrentListItem.RoleAssignments.Add(oSPRoleAssignmentManager);
    I am getting the error as :
    Error: The user does not exist or is not unique.
    How to fix this?
    Thanks

    I think you misunderstood the solution proposed by frederic, what he is suggesting is that the error doesn't come from your code but from the user account
    have you tried with another account ? (maybe the one you are using to log to your environment)
    With this information, it will help us to know if the problem comes from your code or from the user account
    Best regards, Christopher.
    Blog |
    Mail
    Please remember to click "Mark As Answer" if a post solves your problem or
    "Vote As Helpful" if it was useful.
    Why mark as answer?

  • ICF SERVICE NODE FOR THE APPLICATION DOES NOT EXIST.

    Hi All:
    i am getting the following error when trying to execute my applications in abap webdynpro.
    The following error text was processed in the system BIS : WebDynpro Exception: ICF service node for application  does not exist
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: RAISE of program CX_WD_GENERAL=================CP
    Method: HANDLE_REQUEST of program CL_WDR_UCF====================CP
    Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_WDR_MAIN_TASK==============CP
    Method: EXECUTE_REQUEST of program CL_HTTP_SERVER================CP
    Function: HTTP_DISPATCH_REQUEST of program SAPLHTTP_RUNTIME
    Module: %_HTTP_START of program SAPMHTTP
    can anybody help me out.
    relevant answers will be awarded...
    Regards:
    Arun

    Hi,
    see the information on ICF service nodes <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/43/e86de5008b4d9ae10000000a155369/frameset.htm">here</a> and also take a look at SAP notes 517484 and 1009930 and 1008689
    Regards, Heidi
    For information on creating services (if they are not created automatically), see <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/78/9852aec06b11d4ad310000e83539c3/frameset.htm">here</a>
    Message was edited by:
            Heidi von Geisau

  • MIGO Goods Receipt error- The customer does not exist in KNA1

    Hello all MM Gurus!!!
    I am a SD consultant trying to wear other caps as well. Basically, I was trying to do a GR, using MIGO with ref to a PO ( of type NB, the standard one).
    After selecting all the line items ( OK ) by confirming the details populated from the PO, I did a Check and when it said everything is OK I tried to Post the GR.
    Then it says " The Customer does not exist in KNA1". It does not say which one.
    Can any one help me out?.
    Thanks in advance.
    JDoe

    Manish,
    Thanks for your reply.
    >
    Manish Kumar Agarwal wrote:
    > Please give the complete details of PO.
    > What is the account assignment category in to po and the PO is for external procurement or internal and what is the item category u r using in PO.
    The account assignment category is M and in the PO, the Item category field is not maintained, which in turn means "Standard".

  • Tutorial - Create a blog reader Store app (C++) - Error:The name does not exist in the namespace!

    I'm trying to create my first store app based on msdn's sample.
    Link to the sample:
    https://msdn.microsoft.com/pl-PL/library/windows/apps/hh465045.aspx
    I have problem doing last step (number 3) of part 3.
    In code below in file App.xaml the compiler get the error "The name 'FeedDataSource' does not exist in the namespace 'using:SimpleBlogReader'"
    <Application
    x:Class="SimpleBlogReader.App"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:SimpleBlogReader">
    <Application.Resources>
    <local:FeedDataSource x:Key="feedDataSource"/>
    </Application.Resources>
    </Application>
    In the file App.xaml.h I added line #include "FeedData.h", and FeedData.h  looks like:
    //feeddata.h
    #pragma once
    #include "pch.h"
    namespace SimpleBlogReader
    namespace WFC = Windows::Foundation::Collections;
    namespace WF = Windows::Foundation;
    namespace WUIXD = Windows::UI::Xaml::Documents;
    namespace WWS = Windows::Web::Syndication;
    /// <summary>
    /// A FeedDataSource represents a collection of FeedData objects
    /// and provides the methods to retrieve the stores URLs and download
    /// the source data from which FeedData and FeedItem objects are constructed.
    /// This class is instantiated at startup by this declaration in the
    /// ResourceDictionary in app.xaml: <local:FeedDataSource x:Key="feedDataSource" />
    /// </summary>
    [Windows::UI::Xaml::Data::Bindable]
    public ref class FeedDataSource sealed
    private:
    Platform::Collections::Vector<FeedData^>^ m_feeds;
    FeedData^ GetFeedData(Platform::String^ feedUri, WWS::SyndicationFeed^ feed);
    void DeleteBadFeedHandler(Windows::UI::Popups::UICommand^ command);
    public:
    FeedDataSource();
    property Windows::Foundation::Collections::IObservableVector<FeedData^>^ Feeds
    Windows::Foundation::Collections::IObservableVector<FeedData^>^ get()
    return this->m_feeds;
    property Platform::String^ CurrentFeedUri;
    void InitDataSource();
    void RetrieveFeedAndInitData(Platform::String^ url, WWS::SyndicationClient^ client);
    How to solve this problem?

    You're testing this too early. You haven't yet finished writing code that your current code depends on. Feeddata.cpp won't build, so you can't use the data object that hasn't yet been created.
    In particular, feeddata.cpp doesn't build since it has many references to items which get added in later steps.
    For example, TextHelper is added in part 5 and App::RemoveFeed is added in part 10.
    You'll need to either wait until you've implemented those before you test or comment out the calls to the unimplemented features until they're done. TextHelper looks like it adds quite a bit and you're almost there, but you can probably get away with commenting
    out the calls to RemoveFeed and GetTitlesFromUri for now.

  • Upload file via document Manager in taskflow: error the file does not exist

    Hi,
    I have a page that include document manager. I am able to upload file to UCM server via one user signon. Then I created a new user in UCM. With this new user, whenever I try to upload a file, the file name that I entered keeps getting blanked out when I click 'Upload'. The I will get an error that
    'Error: A value is required:
    The file you are trying to upload does not exist or is empty
    Select a non-empty file and retry.
    Enter a file name and location'
    Do you have any idea what I missed for setting up this new user?
    Thanks,
    Charunee

    Found that I need to assigned role in WLS to that new user also.
    After that, this issue is resolved.

  • BAPI_GOODSMVT_CREATE Error - The material does not exist or is not activatd

    Scenario is to make a Goods Receipt on a material which is being imported from external sources.
    There is a purchase order created for this already in SAP.
    From MII we are using standard BAPI - BAPI_GOODSMVT_CREATE and passing the fields below:
    GM_Code - 01 since it is a goods receipt
    Psting_date - current date
    Material - material code given by SAP
    Plant - Plant code on which GR takes place.
    Move_type - 101 because it is a GR
    Entry_Qnt - 1
    PO_number - Purchase order which is created in SAP
    When I pass these details to the standard BAPI I get a return message - " The material 10xxxxxxxx does not exist or is not activated"
    Not sure where I am going wrong.
    Any help is highly appreciated.

    Thanks for your reply Vinod...
    Well.. I am calling this BAPI from Netweaver MII and I just see the request and response tags to which I pass the required values to BAPI request fields.
    I am not sure how to call this FM which you are refering to, can you please elobrate a bit or is there any guide I am refer to?

  • SITE_2 The application '/' does not exist IIS error - SharePoint 2013

    During stopping the service Microsoft SharePoint Foundation Web Application on an App server I haven't been able to get it started. When I try to stop it it gets stucked in
    STOPPING and when I try to start it gets stuck in STARTING.
    The problem now is some web applications work and some don't. But having a look at the app server I can see a web site stopped with the name SITE_19818... with no binding at all.
    On the web server I can see all web sites with bindings including the ones that are not loading/working.
    What do I need to:
    1) get the Microsoft SharePoint Foundation Web Application to start on both app and web server now its stuck STARTING :)
    ** I have ran all the powershell stopServerinstance and start commands with no luck.
    I keep getting the error the job timer is already being created etc..
    2) re- bind the websites back on the web server so I can at least get the web sites working
    Thanks in Advance

    Hi Patrick,
    According to your description, my understanding is that "Microsoft SharePoint Foundation Web Application" service got sutck in Starting.
    Please go to the stsadm directory i.e. cd \Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\BIN, then type
    stsadm -o provisionservice -action start -servicetype spwebservice. After that, restart IIS.
    More information, please refer to the links:
    http://social.msdn.microsoft.com/Forums/en-US/80f72e1e-bf39-489b-a64b-af1a09a754d0/unable-to-restart-a-service-in-sharepoint-foundation-2010-from-central-administration?forum=sharepointgeneralprevious
    http://sharepointadminwiki.wordpress.com/2013/04/29/microsoft-sharepoint-foundation-web-application-service-stuck-on-starting/
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Error: the publication does not exist

    I had a publication that I removed from the Local Publications folder but it still shows up in Replication Monitor (with a red 'X'). No jobs exist related to this publication either.
    Everything is working ok, but I can't get rid of this from the Replication monitor.
    Any help would be appreciated.
    Thanks.

    Resurrecting this old thread. In SQL Server 208 R2, I had the same replication Monitor error. So I ran:
    EXEC sp_replmonitorhelppublication  'MyPublisher', 'MyFormerlyPublishedDb'
    For me the above EXEC returned one row, with a NULL publication_id, but with a snapshot_agentname value that still existed in sysjobs.  A SELECT of distribution..MSSnapshot_agents returned no relevant rows, while a SELECT of distribution..MSSnapshot_history
    returned many rows for the snapshot agent's agent_id.
    Due to replication's long history of abysmally inadequate documentation, I had to use sp_helptext to discover that it appears I would need to run the undocumented:
    EXEC sp_MSdrop_snapshot_agent 'MyPublisher','MyPublicationDatabase','MyPublicationName'
    With trepidation I ran this EXEC, and it removed replication monitor's 'Boy who cried "Wolf!"' error.
    Caveat emptor.

  • Why is the link to my form getting this message?  I copied the link right from the page.  An error has occurred. The form does not exist. Please re-enter the web address as the link may be misspelled. [ref: cixTdh4JnkymYgz7awKoQ, BadRequest]

    Why is the link to my form getting this message?  I copied the link right from the page.  An error has occurred. The form does not exist. Please re-enter the web address as the link may be misspelled. [ref: cixTdh4JnkymYgz7awKoQ, BadRequest]

    My form - which was working great - disappeared when I did some editing; here is the message I get now.
    The form does not exist. Please re-enter the web address as the link may be misspelled.
    The link for the form is:
    https://adobeformscentral.com/?f=UqJr%2Aas2RJIHPVA4iGIQ6w
    Please look into the matter and resolve the issue at the earliest.
    Regards,
    Vaibhav Nigam

  • Error at the time of J1IFQ(Sub Contracting) "The Document does not exist."

    Dear All
    At time of Quantity Reconciliation for Sub-Contracting Challan (J1IFQ) i am getting the error " The Document does not exist."
    But 103 & 105 already made without any error.
    Please help me out.
    Chandrashekhar

    Hi,
    Could you please let us know process which you are following for it ?
    I hope it goes like this.
    - Create PO
    - Transfer posting goods to subcontractor
    - Create sub contracting challan
    - Receipt of goods
    - Quantity re concilliation
    - Closing the challan
    If it is with the above process..it should work..
    Thanks and Regards
    Deepak Gupta

  • Here's the error message: An error has occurred.   The form does not exist. Please re-enter the web address as the link may be misspelled.  [ref: VFS3sNB28XnqlIfeTBcHKA, BadRequest]

    I've done this successfully in the past so why am I receiving an error report after placing a new link to a form into my website page and testing the link from my website?  Here's the error message: An error has occurred.   The form does not exist. Please re-enter the web address as the link may be misspelled.  [ref: VFS3sNB28XnqlIfeTBcHKA, BadRequest]

    My form - which was working great - disappeared when I did some editing; here is the message I get now.
    The form does not exist. Please re-enter the web address as the link may be misspelled.
    The link for the form is:
    https://adobeformscentral.com/?f=UqJr%2Aas2RJIHPVA4iGIQ6w
    Please look into the matter and resolve the issue at the earliest.
    Regards,
    Vaibhav Nigam

  • 30:6519:Target application does not exist.

    Hello,
    I want to delete an existing application, but I'm getting the following error "Target application does not exist" and I can't delete neither deploy.
    Do you know what I can do to resolve this issue?
    Regards,
    Rodrigo

    Hello Tod,
    I'm talking about EPMA, version 11.1.1.3.
    I can see the application in EAS and in the Planning Database.
    In the log I'm get the following errors:
    java.util.MissingResourceException: Can't find bundle for base name HspImgs, locale pt_PT
    java.util.MissingResourceException: Can't find bundle for base name HspCustomImgs, locale pt_PT
    java.lang.Exception: APP_NONE_SELECTED
         at HspLogOn.Handle(Unknown Source)
         at HspLogOn.doPost(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    As aditional information this happened after I migrate the application artifcats.
    Your help is much appreciated. I don't know what to do.
    Regards,
    Rodrigo

  • Post Goods Issue - error : Class type does not exist - Message no. VK662

    Hi,
    I am trying to do Post Goods Issue and getting this error: Class type does not exist
    When double click on the error, it shows it is a message no vk662.
    Any help to resolve it is appreciated. Thanks in advance.
    -Sri

    Sri
    There is a problem in batch determination.
    The batch you assigned to the material does not have a class or if it has a class, that class does not exist.
    Display the batch from the delivery item  using MSC3N and go into the Classification tab. You should have a class of class type 22.  See if that class exists in CL03 and its status in basic data tab. Work on these lines and revert.
    Hope this helps.

  • When I tried to run php file I am getting the following error message, "/home/karthick/Desktop/PHP files/third.php could not be opened, because the associated helper application does not exist. Change the association in your preferences." How to fix this?

    When I tried to run php file I am getting the following error message, "/home/karthick/Desktop/PHP files/third.php could not be opened, because the associated helper application does not exist. Change the association in your preferences." How to fix this?

    first, you just asked me to use MS file Explorer to see what the properties were.,..and to ask what happened. Yes - that's on my hard drive. The problem I have is opening word files in a DB that is web enabled.....I've used Firefox browser for that, and everything else , for years...... When I look at the Tools, and options on FireFox., as your support page noted.....NOTHING is listed in the Applications tab....hence my note asking for help. The file I need to open is a Word file out on a web enabled DB. It's not on my hard drive - I have to problems opening docs there - but for that, I don't use Firefox

Maybe you are looking for