Error: No valid complaint data was found in this sales area

Hi All,
I am getting below error while delta or request download of customer.
No valid complaint data was found in this sales area
Message no. CRM_SPL_BUPA_FRG0010203
Validation error occurred: Module CRM_BUPA_MAIN_VAL, BDoc type BUPA_MAIN.
Message no. SMW3018
Error case:
ECC-->Customer(Sold to) extended to a sales area and saved.
     CRM-->Business partner gets updated in the CRM properly.
ECC--> Deletion flag for same customer and same sales area is set. (Deletion flag - "Selected sales area").
     CRM-->Business partner gets updated in the CRM properly and is not shown as extended to the sales area via BP t code.
ECC-->Deletion flag is removed for the customer.
     CRM--> BDOC fails to update the Partner and goes in error.
Problem comes when deletion flag is removed in ECC.
Any help would be highly appreciated.
Thanks in advance.
-Ram

Hi Ram,
Hope you have not make any field mandatory in the Complaint tab in the sales area section in the BP.
When you are removing the deletion flag please check if any entry is mandatory in the Complaint tab.
Hope this will be useful
Thanks and Regards
DJ

Similar Messages

  • ISQL*Plus: Internal error (no valid library could be found)

    I install iSQL*PLUS on middle tier (9i AS 1.0.2.1) according to documentation, when I trying to connect I am getting Internal error (no valid library could be found). The TNSNAMES.ORA file is correct.
    Any suggestions will be highly appreciated.

    My first suggestion is to use the HTTP listener on the RDBMS bundle. This is what iSQL*Plus 8.1.7 Beta was built for.
    The HTTP servers on the iAS and Database releases require mods to be compiled differently.
    - CJ

  • MDM_CLNT_EXTR (No data was found)

    Hello,
    We need to extract all Customer Master Data from ERP 2005 using MDM_CLNT_EXTR.
    I encounter with the following error:
    - The job terminates with error message B1 041 (Table MASTER_IDOC_DATA is empty).
    or
    - The job terminates with message MDMXFW 012 (No data was found).
    I have read the 997213 note and the problem is that I have not set the selection restrictions correctly. The note shows the following solution:
    If you want to extract all of the master data without any restrictions, specify a relevant number interval for the master data object (for example, vendor number from 0000000000 to ZZZZZZZZZZ - for all vendors). Note that you have to specify numeric keys with leading zeros.
    The field names that I specify are:
    BEGRU, GFORM, KTOKD, KUNNR, LAND1, LOEVM, NAME1, ORT01, SORT01, SPERR, SPRAS, SPART, VKORG, VTWEG.
    and my questions are:
    - Which of this fields specify the customer number to fill in?
    - Nowadays, If I use LAND1 with ES value, The job terminates with message MDMXFW 012 (No data was found).Should I delete the rest of the fields (BEGRU, GFORM..etc) before to execute?
    - All customer data were previously imported through VC01 transaction. Is it correct? Maybe this transaction doesn't fill the same table that the MDM_CLNT_EXTR transaction execute.
    Any idea will be very helpful
    Thanks a lot
    Marta.

    Hello Marta,
    I just happened to look at your questions, Will try to answer few of them(infact what we did in order to extract Master Data from R/3)
    1)Which of this fields specify the customer number to fill in?
       We used only KUNNR
    2) All customer data were previously imported through VC01 transaction. Is it correct? Maybe this transaction doesn't fill the same table that the MDM_CLNT_EXTR transaction execute.
       Am not sure of VC01, but the best way to initially extract all the data is using MDM_CLNT_EXTR.
    Suggestions:
    1) Try to run the job in background.
    2) Dont rerun the extractor if you have no data, because what we experienced is "Running the same job multiple times threw us MDMXFW 012 (No data was found)
    This is my 2 cent Hopefully this helps.
    -Sharan Alemane

  • Call failed. Error: An unexpected 'PrimitiveValue' node was found when reading from the JSON reader. A 'StartObject' node was expected.

    Hi All,
    I am trying to add a new task to a Tasks list called CATasks. The list was created via Visual Studio “Add > New Item > List” process and not by custom code. The code I am using to add a task is shown below.
    What I have noticed is if I use my code to add a Task to a Task List created by Visual studio “Add > New Item > List” process, I get an error. Error message when adding an item:
    Call failed. Error: An unexpected 'PrimitiveValue' node was found when reading from the JSON reader. A 'StartObject' node was expected.
    But if I create the same list using custom code I don't get an error.
    Am I missing something in my custom code or is this a bug?
    I hope you can help.
    CEStar
    App.js Code:
    function createItem() {
    var call = jQuery.ajax({
    url: _spPageContextInfo.webAbsoluteUrl + "/_api/Web/?$select=Title,CurrentUser/Id&$expand=CurrentUser/Id",
    type: "GET",
    dataType: "json",
    headers: {
    Accept: "application/json;odata=verbose"
    call.done(function (data, textStatus, jqXHR) {
    var userId = data.d.CurrentUser.Id;
    addItem(userId);
    call.fail(function (jqXHR, textStatus, errorThrown) {
    failHandler(jqXHR, textStatus, errorThrown);
    function addItem(userId) {
    var due =
    new Date();
    due.setDate(due.getDate() + 7);
    var call = jQuery.ajax({
    url: _spPageContextInfo.webAbsoluteUrl + "/_api/Web/Lists/getByTitle('CATasks')/Items",
    type: "POST",
    data: JSON.stringify({
    "__metadata": { type:
    "SP.Data.CATasksListItem" },
    Title: "Sample Task",
    AssignedToId: userId,
    DueDate: due
    headers: {
    Accept: "application/json;odata=verbose",
    "Content-Type":
    "application/json;odata=verbose",
    "X-RequestDigest": jQuery("#__REQUESTDIGEST").val()
    call.done(function (data, textStatus, jqXHR) {
    var div = jQuery("#message");
    div.text("Item added");
    call.fail(function (jqXHR, textStatus, errorThrown) {
    failHandler(jqXHR, textStatus, errorThrown);
    function failHandler(jqXHR, textStatus, errorThrown) {
    var response = JSON.parse(jqXHR.responseText);
    var message = response ? response.error.message.value : textStatus;
    alert("Call failed. Error: " + message);
    Create List Custom Code:
    function createList() {
    var call = jQuery.ajax({
    url: _spPageContextInfo.webAbsoluteUrl + "/_api/Web/Lists",
    type: "POST",
    data: JSON.stringify({
    "__metadata": { type:
    "SP.List" },
    BaseTemplate: SP.ListTemplateType.tasks,
    Title: "CATasks"
    headers: {
    Accept: "application/json;odata=verbose",
    "Content-Type":
    "application/json;odata=verbose",
    "X-RequestDigest": jQuery("#__REQUESTDIGEST").val()
    call.done(function (data, textStatus, jqXHR) {
    var message = jQuery("#message");
    message.text("List added");
    call.fail(function (jqXHR, textStatus, errorThrown) {
    var response = JSON.parse(jqXHR.responseText);
    var message = response ? response.error.message.value : textStatus;
    alert("Call failed. Error: " + message);

    Hi,
    I am trying to involve someone familiar with this topic to further look at this issue. There might be some time delay. Appreciate your patience.
    Thanks 
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Patrick Liang
    TechNet Community Support

  • I*sqlplus: Internal error (no valid library could be found)

    Hello
    I have installed Oracle 8.1.7 on Windows NT
    and Oracle 8.1.7 on Sun Sparc Solaris.
    On Windows NT, I have installed i*sqlplus.
    However, when connecting from browser
    in the index file
    I've given a valid username/password of
    a database in Oracle 8.1.7 on Sun Sparc
    and a connect string to the database
    on Oracle 8.1.7 on Sun Sparc.
    This connect string is created using
    Net 8 assistant and this connect string
    is on the Windows NT with Oracle 8.1.7.
    However, instead of connecting I
    am getting the error
    Internal error : (no valid library could be found)
    Can you please help me?
    Thanks

    Cyril,
    Can you connect to the database using the command line version of SQL*Plus? If so, you're using the correct syntax.
    It sounds like iSQL*Plus is not set up correctly. Do you have the necessary 8.1.7 components on the NT machine (Oracle HTTP Server, Net8, SQL*Plus)?
    Review the installation documentation, and/or post more specific information on your set up.
    Alison
    iSQL*Plus Team

  • Cannot install Windows Azure Storage Emulator - 3.0 Error: No available SQL Instance was found

    When trying to install Windows Azure SDK for .NET (VS 2013) - 2.3 from Web Platform Installer 4.6, the install fails because  Windows Azure Storage Emulator - 3.0 (Dependency) does not install successfully.  
    Possibly relevant lines from the install log are:
    CAQuietExec:  Entering CAQuietExec in C:\WINDOWS\Installer\MSI1223.tmp, version 3.6.3303.0
    CAQuietExec:  "C:\Program Files (x86)\Microsoft SDKs\Windows Azure\Storage Emulator\WAStorageEmulator.exe" init -forcecreate -autodetect
    CAQuietExec:  Windows Azure Storage Emulator 3.0.0.0 command line tool
    CAQuietExec:  Error: No available SQL Instance was found.
    CAQuietExec:  Error 0xfffffff6: Command line returned an error.
    CAQuietExec:  Error 0xfffffff6: CAQuietExec Failed
    CustomAction RunInitialize returned actual error code 1603 (note this may not be 100% accurate if translation happened inside sandbox)
    Action ended 11:50:13: InstallFinalize. Return value 3.
    Action ended 11:50:13: INSTALL. Return value 3.
    In terms of SQL Instance, SQL LocalDB is installed and working properly.  SQL Server 2012 is also installed and working properly.

    Hi,
    It is a SDK version issue. I suggest you could remove all azure sdk form your PC and use WPI to install the latest version again.
    If you have any questions, please let me know.
    Regards,
    Will 
    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.

  • No data was found that fulfils the selection criteria in T Code KEAT

    Dear All
    I am running the transaction code KEAT in Production and system is giving message
    "No data was found that fulfils the selection criteria" and there are no values for COPA reconciliation
    If i run the same T code in Quality system shows me the various rows and columns for
    COPA Values SD Values FI Values and PCA values along with DELTA COPA/SD/FI/PCA
    Can any one tell me the reason why i am not able to get this COPA reconciliation in production
    Your help will be highly valuable for me.
    Bilal

    hi
    check for the authorization profile of yours in production

  • Hard Drive upgrade problem (No applicable update data was found) system update v2.53

    go here with full detailed and working steps:
    http://www.problogbooster.com/2014/01/no-applicable-update-data-was-found-ps3.html

    I tired it all , this what worked for me : FIRST turn ps3 in to safe mode:Step 1: With the PS3 on turn off the power by holding the power button on the front of the unit till the power light is red.
    Step 2:
       1. Touch and hold the Power button, you will hear the first beep, meaning the PLAYSTATION 3 is powering on.
       2. Continue to hold the Power button and after about 5 seconds, you will hear a second beep, indicating the video reset.
       3. Continue to hold the Power button and after about another 5 seconds you will hear a third beep and the system will power off.
    Step 3:
       1. Touch and hold the Power button, you will hear the first beep, again for the PS3 to power on.
       2. Continue to hold the Power button and after about 5 seconds, you will hear a second beep for video reset.
       3. Continue to hold the Power button and after about another 5 seconds you will hear a quick double beep.  At that point release the Power button.  If you succeeded in activating Safe Mode, you will see a message on the screen saying, "Connect the controller using a USB cable and then press the PS button."
       4. Connect a USB cable to the controller and the PS3 and press the PS button to enter Safe Mode.
       5. Then you will see the Safe Mode menu.   Next : download ps3 update on playstion website , and put into usb stick: make sure its lile this :  PS3/UPDATE/XXXXXXXX      XXXXXXXXX is the file you downloaded, and ps3 and update need to be caps, after safe mode out usb for controller in first ONLY, do not put usb stick with update in yet, then after in safe mode go restore setting, this will take you back to the page where you need to put your ps3 controller on again, then it will ask you for update, THEN you put usb stick in, and folow on screen. i tired everything, this way it worked for me, safe mode then update, make sure usb is phat32 like always, 

  • Error while creating requirements data in pendulum list indirect sales.

    hi all,
               i am getting the following error while creating requirement data in pendulum list indirect sales. t - code - /BEV4/PLAN
    " ERROR OCCURED WHILE DETERMINING PERIOD IDENTIFIER""
    -- help would be much appreciated..
    thanks in advance
    leo

    var spObj = $().SPCascade({
    destListColTitles: ['Continent','Country','State','City'],
    srcListColInternalNames: ['Continent','Country','State','Title'],
    srcListName: 'CitiesLookupList',
    srcListFilterCAMLQuery: "<Query><Where><Contains>
    <FieldRef Name='Continent'/><Value Type='Text'>America</Value>
    </Contains></Where></Query>"
    spWebURL: 'http://sharepointurl',
    getDataOnly: 'false',
    debug: 'true',
    });

  • DPM console not connecting . Error- Cannot connect to Data Protection Manager. This version of DPM is not supported with Central Console Client (ID : 33345) DPM console not connecting

    I  am having problem connecting the DPM console to ther server. It gives me following error -
    "Cannot connect to Data Protection Manager. This version of DPM is not supported with Central Console Client (ID : 33345)"
    The server is DPM R2 and the same console is working on one other computer.
    Any idea how to solve the problem?
    Thanks   

    Hi
    Please make sure you have both versions of Microsoft Visual C++ 2008 Redistributable installed..
    Also make sure you have .netframework 2 installed. If you look at the dpm logs it should say what is missing.

  • Error--Define 1000/15/99 first as a general sales area!

    Hi All Gurus,
    I have defined sales area,made assignment,combined sales org.,distribution channel and division,made common distribution channel and division but when I goto OVAZ that is sales area assignment to sales doc.type it is giving this error---Define <1000/15/99> first as a general sales area!
    Let me tell u I have used all these transaction OVAO,OVAM,OVAN,OVAZ,VOR1 & VOR2 ....is there any other t/code which resolve the above problem
    Thank & regards
    Umed

    Dear Umed,
    This is a sequence infringement of Customizing activities.
    Once, You created Sales Org and Dist Chnl  in IMG-Settings, i.e.
    SPRO --> IMG --> Enterprise Structure --> Definition --> Sales and Distribution
    --> Define Sales Org
    --> Define Dist. Chnl
    Also, create Division:
    SPRO --> IMG --> Enterprise Structure --> Definition --> Logistics - General --> Define Division
    Once, Enterprise Definition is Done, we make assignment:
    SPRO --> IMG --> Enterprise Structure --> Assignment --> Sales and Distribution
    --> Assign Dist. Chnl to Sales Org
    --> Assign Division to Sales Org
    --> Set Up Sales Area
    and Finally, we Maintain Following settings in sequence:
    OVAO: Define reference S. Org. - assign the same sales org to it, i.e, 1000 to 1000
    OVAM: Define reference D. Chl. - assign Sales Org+Dist channel, i.e. 1000+15 to 15
    OVAN: Define reference Dvn. - assign Sales Org+Division, i.e. 1000+ 99 to 99
    OVAZ - Assign Sales Document Type to permitted sales Area.
    Now, you get the error:
    Define <1000/15/99> first as a general sales area!
    As per my understanding, you must check and maintain Assignment, via:
    OVXK     Assignment: Distr. Channel --> Sales Org
    OVXA     Assignment: Division --> Sales Org
    OVXG     Set Up: Sales Area: Overview
    and then make assignment in OVAZ.
    Please, check the same and update.
    Best Regards,
    Amit

  • Import AOL Communicator mail failed. Error: no valid mbox files were found

    I´m having problems to import (archived) AOL Communicator mail messages into Mac Mail. After choosing File > Mailboxes > Import data from "Other" and then selecting the the folders "LIbrary" > "Application Support" > "AOL Communicator" > "local" > "Archives.sbd", I always get the error message: no valid mbox files were found.
    (Actually the Received and Sent files in the Archives.sbd subfolders are NOT highlighted, even though the Archives.sbd and it´s subfolders (like myaolmail.sbd) are.)
    Mac Mini   Mac OS X (10.4.5)   AOL Communicator for Mac
    Mac Mini   Mac OS X (10.4.5)  

    Hi,
    I am in the same situation (just posted myself!), and am trying this out right now:
    http://www.apple.com/downloads/macosx/internet_utilities/aolserviceassistant.htm l
    Maybe it will work for you?
    Good luck,
    Allyosn

  • PowerBI throwing errors for validated OData data source

    Hi,
    I've been creating OData web services for various operations for months now, and validate the service output using odata.org for all versions of Odata (V1-V4)
    Yet when my co-worker tries to load one of these OData services as a data source, PowerBI throws this error:
    [DataSource.Error] Cannot parse OData response result.  Error: A node of
    type 'StartArray' was read from the JSON reader when trying to read a
    value of a property; however, a 'PrimitiveValue' or 'StartObject' node
    was expected.
    The only OData source that has worked with PowerBI is one in which we turned off all properties that were not Strings.  In other words, as soon as the source has property types like Arrays, Objects or Dates, we get errors with PowerBI.  
    But the data validates with odata.org validator, so I am at a complete loss to understand how to "fix" data which is not broken.
    Is there a guide available somewhere showing what "subset" of OData that PowerBI accepts?  And are there plans to update PowerBI in the future to accept valid OData?
    miles
    Sample Odata that PowerBI chokes on:
      "d": {
        "results": [
            "__metadata": {
              "type": "cnevids_staging.videos",
              "id": "http://slcnpde093:3013/cne/odata/videos('NTBmYjBkODYzNDEwZmMwZGQ4MjQ2ZDIy')",
              "uri": "http://slcnpde093:3013/cne/odata/videos('NTBmYjBkODYzNDEwZmMwZGQ4MjQ2ZDIy')"
            "Id": "NTBmYjBkODYzNDEwZmMwZGQ4MjQ2ZDIy",
            "article_url": "",
            "brand_id": "NTBmYWZlNTg5M2U5ZjNlODZhMDAwMDAx",
            "buy_call_to_action": "",
            "buy_url": "",
            "cloudinary_version": "1367966946",
            "cover_story": false,
            "description": "Glamour March 2013: The Guys From Nashville Play \"Nail Polish or Country Song?\"",
            "do_not_publish": false,
            "duration_in_ms": 137000,
            "encode_version": "",
            "episode_number": 12,
            "index_within_season": 11,
            "index_within_series": 11,
            "monetize": false,
            "music_attribution": "",
            "permaslug": "glamour-march-2013-the-guys-from-nashville-pl",
            "poster_image_version": "1362346875",
            "recency_rank": 0,
            "slug": "glamour-march-2013-the-guys-from-nashville-pl",
            "state": "active",
            "suppress_on_the_scene": false,
            "title": "Glamour March 2013: The Guys From Nashville Play \"Nail Polish or Country Song?\"",
            "trending_index": {
              "__metadata": {
                "type": "cnevids_staging.videos.trend"
              "daily": 0,
              "weekly": 0,
              "monthly": 0,
              "all_time": 0,
              "based_on_count_day": null,
              "yesterday_view_count": 0,
              "bias": 0
            "videographer_unknown": true

    Is this in the context of Q&A, or is this a PQ question?
    Thanks!
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Error:Class java.util.date not found

    i have installed 9iAS on my computer.And i want to develop program on JSP.i tried the url below
    http://eyuksel/servlet/IsItWorking
    and i got "it is working" message.when i try to execute my first jsp file i get the error:
    Errors compiling:d:\ias\apache\apache\htdocs\_pages\\_first.java
    d:\ias\apache\apache\htdocs\_pages\_first.java:55: Class java.util.date not found.
    out.print( new java.util.date() );
    ^
    1 error
    what must i do or how can i install the java classes.
    kind regards...
    null

    Thank you very much.It worked:)
    Java is case-sensitive.
    try
    java.util.Date
    instead of
    java.util.date
    null

  • Help! ERROR : \Java\jdk1.6.0_23 was unexpected at this time.

    hello. guys.
    i tried to install weblogic server (10.3.4) on window7. but when i run it, it says that
    *\Java\jdk1.6.0_23 was unexpected at this time.*
    i installed jdk1.6.0_23 on my pc.
    what's the problem?

    this is my JAVA_HOME
    JAVA_HOME
    C:\Program Files (x86)\Java\jdk1.6.0_23
    in the eclipse console, it says
    \Java\jdk1.6.0_23 was unexpected at this time.
    and the log is
    java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
    at java.net.Socket.connect(Socket.java:529)
    at java.net.Socket.connect(Socket.java:478)
    at java.net.Socket.<init>(Socket.java:375)
    at java.net.Socket.<init>(Socket.java:189)
    at org.eclipse.jdi.internal.connect.SocketTransportService$2.run(SocketTransportService.java:136)
    at java.lang.Thread.run(Thread.java:662)
    and in the startWebLogic.cmd, i found that some tip from web-sites
    original : set SAVE_JAVA_OPTIONS=%JAVA_OPTIONS%
    change : set JAVA_OPTIONS=-Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=1044,server=y,suspend=n %SAVE_JAVA_OPTIONS%
    but even i didn't change cmd file, the error is same.
    please help me....

Maybe you are looking for

  • Extending the Tab Navigator

    Hi, I am trying to do some work in Xcelsius that is dependent on knowing which tab is selected in a tab set.  It does not appear that getting this information is possible with the Tab Set component provided by Xcelsius.  I have started to dig into th

  • Printing Report via page fragment instead of .jspx

    Hi, I am using Jasper reports for printing the report for each selected patient in a table in my software, When I call the printing method from a .jspx button it works, but when i do the same work in a page fragment than my report did not run. Anyone

  • Sorting alerts in SOLMAN Alert Inbox by time of the alert

    Hi Gurus, I have not found any method in Solman for sorting alerts in Alert Inbox on basis of their time. Please help me out by your suggestion Thanks, Pankaj

  • Why do some pics show up in my iMac photo stream as just a dotted line?

    When I click to enlarge, the actual picture shows up.  Other pics show as they should.  From the image notation, it appears that both are originated from my iphone, and I cannot guess why some are different from others.

  • Bash scripting - adding $ to make a variable

    Hi, I'm trying to code the following, which should look like: test(){    if [ ! -z "$PATH" ]; then       echo PATH=$PATH    fi test... but haven't been successful so far in in trying to pass "PATH" as a variable to the function. For instance, just do