Customer Download

Hi
I am downloading a customer to CRM from R/3 with filter setup for that customer & one sales org. as soon as i run the download object customer_main, R3AD_Custome queue in R/3 comes in STOP Status & CUSTOMER_MAIN in CRM is in Running Status since a long time.
How to Proceed ?
The Org Model with appropiate Sales Area Data has been maintained & there are no issues in that.
Regards

Hi Alin,
Thanks for your help .
1. There are no Queues i could find in SMQ2 & there are BDocs in Internediate State.
2. I tried to debug the BDoc & Reprocessed it & it showed the following dump.
An exception occurred that is explained in detail below.
The exception, which is assigned to class 'CX_SY_MOVE_CAST_ERROR', was not
  caught in
procedure "IF_EX_BUPA_CENTR_CI_CHECK~CENTRAL_CI_DATA_CHECK" "(METHOD)", nor was
  it propagated by a RAISING clause.
Since the caller of the procedure could not have anticipated that the
exception would occur, the current program is terminated.
The reason for the exception is:
It was tried to assign a reference to a rereference variable using the
'CAST' operation ('?=' or 'MOVE ?TO').
However, the current content of the source variable does not fit into
the target variable.
source type: "\CLASS=YCL_IM_YG02_BUPACHK"
target type: "\INTERFACE=IF_EX_BUPA_CENTR_CI_CHECK"
Any Help ?
Regards

Similar Messages

  • Parallel Processing in CRM 5.0 for Customer download

    Hi
    I was referring to OSS note 350176 for implementing parallel processing. I wanted to achieve parallel processing for request loads for Customer download.
    Is it possible to achieve it by setting the parameter CRM_MAX_QUEUE_NUMBER_INITIAL in CRMPAROLTP or it can be achieved only through implementing exits?
    Thanks for your help in anticipation.
    Regards
    Karthik

    HI
    Karthik in Parralllel processing first you need to set up diffent filters for diffrent types of data basic or business data, customizing and condition data R3 AC1, R3 AC4, R3 Ac5 separately then start down loading the objects to CRM , remaning objects left over can be bypassed , then set the Satus of down loading Yellow red and Blue depends up on percentage of down load y for more than 100% R for more than 75%, B for less than 50%
    Reward if helpful
    Venkat

  • BADI for customer download

    Could anyone tell me which is the customer download BADI in CRM definition please?
    Regards
    Javier Merino

    Hi,
    during searching for issues regarding CRM enhancement or new tables in CRM with MAS and R/3 i found your messages with note to a special document,
    Please can you send me also the doc 'CRM Object Extensions in CRM 3.0 and upcoming releases' (is it the actual now? we are working with CRM 5.0)
    and maybe you can send me another docs or hints for the following issues:
    - create Z-table in R/3 --> CRM --> MAS and develope an synchronisation in both rights
    - create a Z-tables in CRM --> MAS (Customization text table e.g. for Payment condition) and the transfer of data from CRM to MAS
    - add new field to sales area data (KNVV) in r/3--> CRM --> MAS and also an automytical synch in both rights
    i hope you can help me, because i'm new on CRM and his mysterious synch and bdoc mechanism.
    thanks a lot in advance
    regards
    Michael Handschuh
    CSC Austria

  • Issue with customer download from ECC 5.0 to CRM 5.0

    Dear CRM gurus,
    We are facing very strange problem regarding sales area and sales office in CRM 5.0 test system
    During the download of an ECC 5.0 customer into CRM the BDOC is giving the following error - 'Sales office O 50000617 is not available' and 'Sales office O 50000617 sales group not maintained for sales area O 50000608     10 10'and Validation error occurred: Module CRM_BUPA_MAIN_VAL, BDoc type BUPA_MAIN.
    I just select the BDOC and reprocess it immediately. Now the customer is downloaded into CRM and BDOC turns into green. I am also able to see the sales office and sales area in the downloaded CRM BP.
    The sales office 50000617 is very much there in CRM and is properly assigned to sales area 50000608     10 10. That's why, I should be able to reprocess the struct BDOC successfully.
    But for some reason the sales office is not getting determined first time during the download. This issue is driving me crazy. This only happens with the customers with sales office. If there is no sales office in ECC customer (i.e. the field is empty) then there is no issue. This customer will get downloaded without any error.
    Also the downloaded material doesn't have the sales area data. 
    This issue doesn't happen in our development system. The only difference is, sales org structure in development system is manually created and it is downloaded from ECC in test system.
    Can you please advice me on how to solve this issue?. It is a bit urgent.
    All valuable inputs must be rewarded,
    Regards,
    Raj

    Hi Gun,
    You are the only one responded to my issue. I have allocated some points.
    Yes. I have checked the assignment in CRM organizational model.
    I did download the org. structure from ECC 5.0
    All objects including sales offices are activated for determination and I have verified with green light
    As per your suggestion if the sales area data is not matched between the two systems, then how come the error will not reappear during the bdoc reprocess?
    What is missing during the first time bdoc process? Looks something is missing for validation module?
    Any inputs?
    Thanks,
    Raj

  • Why doesn't my custom download manager get launched by Safari?

    Hi all,
    I'm working on a download manager for Leopard, Snow Leopard and possibly Tiger. It's a single window app that should get launched when the browser downloads a file with a custom extension, similar to the way the Amazon MP3 Downloader works with *.amz files.
    My test app is set up to handle ".mytype" files and gets launched as expected when you double-click a ".mytype" file in the Finder or download one with Firefox.
    Unfortunately, Safari just downloads the file and never launches my app. I can double-click on the file in Safari's Downloads window and it launches my app, but I need it to launch automatically.
    Any hints or advice would be greatly appreciated.
    Thanks,
    Tom
    Code below built with Xcode 3.1.2, target 10.5|Release|i386
    Document type section of Info.plist:
    <key>CFBundleDocumentTypes</key>
    <array>
    <dict>
    <key>CFBundleTypeExtensions</key>
    <array>
    <string>mytype</string>
    </array>
    <key>CFBundleTypeIconFile</key>
    <string>Icon</string>
    <key>CFBundleTypeMIMETypes</key>
    <array>
    <string>application/x-mytype</string>
    </array>
    <key>CFBundleTypeName</key>
    <string>mytype Doc</string>
    <key>CFBundleTypeRole</key>
    <string>Editor</string>
    </dict>
    </array>
    Application delegate functions:
    // this one gets called when downloading in FF, no luck in Safari
    - (void)application:(NSApplication *)sender openFiles:(NSArray *)filenames
    NSLog(@"in application:openFiles");
    [sender replyToOpenOrPrint: NSApplicationDelegateReplySuccess];
    // this one works in FF if I remove application:openFiles above
    // I tried both methods in case it made a difference
    - (BOOL)application:(NSApplication *)theApplication openFile:(NSString *)filename
    NSLog(@"in application:openFile: %@", filename);
    return YES;
    testfile.mytype (served as PHP by apache):
    <?
    header('Content-Disposition: filename="testfile.mytype"');
    header("Content-Type: application/x-mytype");
    $body = "
    sample file contents
    header("Content-Length: " . strlen($body));
    echo $body;
    ?>

    Ray,
    Thanks for the folder monitoring idea. I'd still like to get the original problem solved, but that might be an acceptable workaround.
    The download manager is for a commercial product. All the examples of folder actions that I found involved the user selecting the folder and the script that gets executed. Is this process scriptable by my install program, even if the user has folder actions disabled?
    Another option might be using the WatchPaths option in LaunchAgents and have it launch my program when a new ".mytype" file is detected.
    I'm pretty new to Mac programming (unix background) - what would be the pros and cons of LaunchAgents vs. Folder Actions?
    Also, I know that "~/Downloads" is the standard location to save downloaded files, but what if the user changes it to a different folder in Safari Preferences?
    Regarding the original problem...
    "Open safe files after downloading" is checked in my Safari preferences.
    Since I will be distributing the program I don't want to go mucking about with overriding the built-in list of safe file types.
    Would it make sense to write a Safari plugin to handle the custom file types? The sample plugins that I looked at all deal with the custom types in the context of the browser page (like a movie viewer), but I want to launch an external application to handle the file. Is that possible? Or is watching the Downloads folder for new files a better approach?
    Thanks,
    Tom

  • Specify custom download path for PDF files in Reader 9 ?

    Instead of having Adobe Reader 9 save downloaded PDF files in IE7's temporary internet files folder, I would like to save them in a different folder. Is there a setting to change this (registry or otherwise?)

    That's only temporary storage, in some cases only for the duration
    of that IE session. If you want to save the file to disk so it's
    accessible later, right-click and save target as...
    You can move the TIF folder to wherever you like using (in IE7)
    Internet options > General > (Browsing history) Settings > Move
    folder.
    Noel

  • Web Auth Type: Customized(downloaded) Redirect URL after login not working.

             5508WLC as anchor controller with WLC1 and WLC2 with WCS. I have 2 public ssids set up to go directly to the internet.
    Everything is working as it should.  I downloaded the web auth bundle from Cisco and  will just use a disclaimer page and then if the user clicks on the accept button they will be redirected to our company web page, and then they can get out to the internet.
    I have edited the aup.html and login.html to say what I want it to.  I have 2 different login.html pages and bundle to a .tar file like the documentation says.  I download it via tftp to the controller and it is successful. The disclaimer page opens up when I connect and it looks as it should.  The problem is I cannot seem to get the accept button to work. It redirects to a web page but it is undefined. 
       I must be missing some setting somewhere, but I just can not seem to find it.  Is there any line I need to edit in the login.html files that will redirect the page.    The config on the Web Login Page  Redirect URL after login is http://www.mccg.org which is our home page.
    Any help will be appreciated.  I cannot seem to fine very good documentation, or I am just overlooking something.
    Thanks
    John   

    Your HTML code is wrong. Attach your code if your okay with it and I can check.
    Sent from Cisco Technical Support iPhone App

  • Is it possible to have a custom downloaded text/ringtone?

    I want to download a ringtone and use it but it doesn't look like that is possible. Is it?

    Try this I've been doing this and it's sweet.
    http://www.simonblog.com/2010/09/06/how-to-create-ringtone-for-iphone-on-itunes- 10/
    Also you can always purchase ringtones in the iTunes Store app directly to your iPhone.
    Hope this helps.

  • Sybase Unwired Workspace: synchronization and customized download data

    Hello everyone,
    I created an MBO from a webservice and I added two load parameters mapped on two sinchronization parameters, for a totally online application.
    In "customization download data" textedit, I added ORDER BY [column] clause, but it seems to have no effect.
    Someone managed to make it work?
    Furthermore, neither "query limiting" option and "Object query" (with one fixed parameters) seems to work under this conditions. Can anyone help me please?
    Thanks
    Alessandro Iannacci
    TechEdge SpA
    Edited by: Alessandro Iannacci on Nov 16, 2010 3:55 PM

    Hi Alexandro,
    Have to created Synchronization action on your button? if not please follow this article http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/b0872173-7cd4-2d10-f5b1-ea8666d2337c .
    Regards
    Nidhideep Bhandari

  • Lose customer downloads when you rebuild app?

    Hi fellow DPSers
    I have a free multi-folio app on the app store (not newsstand as it's not supported)
    I will be building and submitting a free multi-folio app once the support is announced (using the same folio content though)
    Questions:
    Once the new version is on newsstand, what happens to the old one? Does it automatically get replaced by the new one?
    Also, what about the users who downloaded the original (non newsstand app) - will they get updates of the future issues of the newsstand app or are they effectively 'lost'?
    Thanks
    M

    Hi Bob. Sorry, one other questions.
    When you say convert the app (from multi-free, just on app store, to multi-free subs on newststand), am I right in thinking that you have to rebuild the viewer app from scratch, as you’re changing the subscription type?
    As a test, I tried to edit the current viewer app (in viewer builder) hoping to keep the same app details. The subscription type was greyed out, suggesting it can’t be changed once it’s set/submitted. Or I am missing something (very likely)!
    Thanks again for your help

  • Trying to reload Canon MP620 printer but it will not install due to OS version.  Tried to do custom download and it still will not print?

    When I try to print it always says Communication error.  Sometimes it will start printing then it will print the first few lines and stop.  It is a wireless printer connection.  We needed to reinstall after we upgraded our wireless router.  Every time we try to install printer on Macbook Pro it says it can't due to OS version not supported.  So what do we need to do to install the printer?

    Okay loaded the latest print driver from the link supplied.  The software will still not load it says "OS Version is not supported."  So how do I determine what OS Version I need to have to install the printer.  We have had the printer for a several years.  The Macbook is only 1 yr old.

  • Downloading custom fields to CRM from R/3

    Hi All,
        i have already downloaded condition tables; accesses sequences; condition types; pricing procedures of R3 to CRM using DNL_CUST_CNDALL.
          Now i find some condition tables in CRM have blank fields. These CRM fields are not mapped with R3 fields due to some reasons, i don' know.
          i am trying to map them and populate the CRM missing fields in the condition record.
          I have maintained V_CND_MAP_CNVFLD table and see them populated in CND_MAPM_CNV_FLM. I have run the custom download object YDNL_CUST_A655 once again and find them green status in R3AM1.
            Can anyone please help, with the process that i have to do next, to bring in the missing fields.
    Thanks in anticipation of the much needed help.
    With regards
    Keerthi

    Z fields will be available in BAPIMTCS structure, if you create Z fields through EEWB. I believe, you have done the enhancements using the EEWB.In that case after the enhancements you are supposed to generate all the services of the Bdoc through the transaction smoggen.
    Also you need to enhance the adapter module accordingly so that the data is filled into the BAPIMTCS structures properly. Also you can create some data for these Z fields and check, if the MBdocs have the corresponding data.
    I hope by Default the Z custom data is avilabe in BAPIMTCS. The function module CRM_UPLOAD_TRIGGER calls the FM COM_BUPA_MAIN_INBOUND for data posting.This in turn calls the FM PI_BP_PROXY_BAPI_CUSTOMER where the actal data is mapped to the tables. You need to find the necessary Fields in R/3 for the Z fields to be populated .This is done in this function modules and check for user exits in PI_BP_GET_AND_MAP_KUNNR_RI'(called in PI_BP_PROXY_BAPI_CUSTOMER) where you can map to the R/3 fields.

  • Customizing not downloading from CRM to CDB

    Dear All
    Pl help/ guide on the direction to proceed further. Customizing (Domain Ranges DD Texts) are not downloading from CRM to CDB.
    Background:
    Activities and Campaigns are replicated from CRM to CDB (Mobile). For a particular new field which we have added through AET, the domain ranges are stored in the table DD07T. The task is do a customizing download to replicate these domain ranges to the corresponding CDB table SMODD07T. For this, We would need to create a BDoc type @ BDoc Modeler and then a customizing adapter object with that linked BDoc type. For distribution from CDB to mobile, we would have to create replication object and publication on this Linked BDoc in SMOEAC.
    Issue
    Now, when I am creating the Bdoc type in SBDM, it prompts that mapped table (SMODD07T) should have two key fields and only one Primary key for the segment and since this is not the case it is throwing the error. I have verified with various std customizing adapter objects and their corresponding sBDocs. In all the cases, the SMO table has exactly key fields, the MANDT client and the SFA GUID. Without generating the BDoc type, the adapter object Banega nahi and I experimented in many ways where I created a custom adapter object with any of the standard campaign and customizing related Linked BDoc types for the adapter object, Initial Load is successful and even huge blocks of data is transferred. But the required SMODD07T table is not getting populated.

    Hi,
    Ok the initial load is performed without errors.... But did you check the queues?
    Best regards,
    Caíque Escaler

  • Custom Condition table data download

    Hi,
    In our project we have few custom condition tables in ERP. I have completed the customizing download & then downloading the ZDNL objects which I have created in R3AC5 for custom condition tables. During download I see many records in CRM Inbound queue so as blocks in R3AM1. But when I check the CNCxxxCUSxxx tables its shows zero entries. I do not see any BDoc entries in SMW01 also. This is problem.
    Another issue is I was able to successfully download all above things in other environment & systems of this project but have problem only in this system.
    If records are downloading where are they vanishing ??
    thanks,
    LSP

    Hi,
    Please check the queues in CRM and R3 as well. The queues might be in SYSFAIL, STOP or WAITING status...
    Double click to get the Error and then work accordingly.
    Hope this helps..
    Regards,
    Ajay Gupta

  • Delta download on Customizing

    Hello everyone,
        We want to manage exchange rates in our R3 system, and have customizing in CRM be automatically updated.  Does anybody know if it's possible to have delta downloads on customizing objects?
    Regards,
    Thanks

    Actually, customizing is always refreshed, it doesn't download delta... 
    You could of course pick up the save-event of the custo, but normally it's transferred between systems, not changed in the system itself... so doesn't do much good.
    We did the same for periodic customizing download of article-related customizing, to prevent the inbound queue getting stuck all the time.
    Michael.

Maybe you are looking for

  • Cannot find any of the links under menu

    Hi guys, I made a installation of PT8.51 on Oracle11gR2 on Win2k8R2 64-bit.All scripts ran successfully.Everything went fine.Iam using 2 machines i.e. one as an application server and other as an database server.I configured the application server an

  • Can I swap G5 1.8 iMac SATA drive into a PM G5-1.8?

    Looks like I've hit by the power issue. My iMac will boot up for about 20-30sec, spinning progress, then cut-out. Started happening out of the blue. Of course I hadn't backed up recently. I have some important information on my iMac hard drive. Can I

  • Render farm between multiple os

    Hi All, I have a question about setting up a render farm for After Effects CC. Basically my main computer runs on OSX Maveriks, and I have two more Windows computers that I would like to help out rendering After Effects compositions. I have set up on

  • Things to keep in mind while programming to avoid heap and permgen errors?

    I some time get Java heap error and permgen error in my project which is having large code base i.e 2500 java lasses. I know about two jvm parameter which we can set to deal with for java heap we can -Xms 1024 -Xmx 1024 and for permgen we can set -Xm

  • Migrating to MAC from Windows

    Hi... I Have Written JAva Database Application which is Connected to MSAccess Database through ODBC Driver. I wan't to Make it working on MAC OS. Pl. Guide me how can i start and what kind of changes i required to make in application to make it worki