Are there any one ever upload the file to CIC0 for transaction creatation

Dear Sir,
Our server is CRM 5.0 , I would like to upload the data to create transaction in CIC0 . Do you ever use the bapi : BAPI_ACTIVITYCRM_CREATEMULTI   ?
Is is work or not?
Thank you and best regards,
Vimol

Dear  Paul,
Thank you for answer.
In ourside  , we are upgrade from CRM 2.0c to CRM 5.0 , however, we have downtime for many days. So, we do the backup system for the users to create the transaction. So, we need to create the program to upload the data to crm 5.0  However, when we run that BAPI_ACTIVITYCRM_CREATEMULTI . It make the short dump. "Storage_Parameter_Wrong_set".
Please kindly advise.
Thank you and best regards,
Vimol

Similar Messages

  • Is there any way to upload iWeb files updates only with a 3rd party ftp program to a new hoster, e.g. Godaddy? I see no posts newer than 2007

    Is there any way to upload iWeb files updates only with a 3rd party ftp program to a new hoster, e.g. Godaddy? I see no posts newer than 2007.

    If you are using iWeb V 3, there are two other options for publishing the site...
    http://www.iwebformusicians.com/iWeb/Publish-Website.html
    Some pointers for choosing hosting...
    http://www.iwebformusicians.com/iWeb/Website-Hosting.html

  • Is there any way to collect the file list from UTL_FILE_DIR.

    I expect the use "Oracle supplied package UTL_FILE" to import our customer order shipments to table by XML format files. I already did the procedure to import one XML file into Table by DBMS_XMLSave.insertXML and UTL_FILE. GET_LINE. And it did work.
    My question is :
    Is there any way to collect the file list from UTL_FILE_DIR. (I put all import XML files into `/usr/tmp?, I want to get all file names from this folder and feed them into UTL_FILE.FOPEN.)
    Thanks in advance

    UTL_FILE_DIR is a very dangerous and deprecated parameter. Oracle very specifically recommends not using it. You should be using directory objects instead.
    As for doing a directory listing, you can use Java stored proc. External procs/functions are not required.
    The following sample shows how to use such a Java stored proc to insert the result of a directory listing into a session temporary table:
    create or replace and compile java source named "ListFiles" as
    import java.io.*;
    import java.sql.*;
    public class ListFiles
            public static void getList(String directory, String filter)
            throws SQLException
                    File path = new File( directory );
                    final String ExpressionFilter =  filter;
                    FilenameFilter fileFilter = new FilenameFilter() {
                            public boolean accept(File dir, String name) {
                                    if(name.equalsIgnoreCase(ExpressionFilter))
                                            return true;
                                    if(name.matches("." + ExpressionFilter))
                                            return true;
                                    return false;
                    String[] list = path.list(fileFilter);
                    String element;
                    for(int i = 0; i < list.length; i++)
                            element = list;
    #sql {
    insert
    into directory_list
    ( directory, filename )
    values
    ( :directory, :element )

  • Are there any known issue with the HP 3005pr USB 3 replicator ?

    Hi,
    I recently ordered an HP laptop Pavilion dv6t-7000 with Intel i7 and nVidia video. While the unit isn't due to arrve for about 2 weeks, I'm looking for a docking station/port replicator.
    Are there any known issues with the HP 3005pr USB 3 replicator ? Does it fully support Win7 64 bit? I am also considering the Targa U3 unit, but I'd prefer HP if I can be assured that it works.
    I'd like to be able to leave the laptop closed when at my desk so I can use  an external keyboard, mouse, and monitor.
    Does HP make this device or does a 3rd party make it for them?
    I've read so many stories on various forums regarding these things.
    Any suggestions from HP or others? I need to order something soon, but I don't want head aches when it arrives.
    thanks,
    Steve

    This HP USB 3.0 Port Replicator fully supports with Windows 7 64-bit, if that is the one that you are talking about.
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • Are there any free apps with the same app iPhoto?

    Are there any free apps with the same app iPhoto?

    Do you want to get iPhoto for free, or are you looking for supplemental apps that are working well with iPhoto?
    I do not know of any free third party replacement for iPhoto. For add-ons browse the Store - there are some nice camera apps, image editors,  and panorama stitchers, some are free (cam wow, pic collage, Photo splash, pixlr-o-matic).

  • Is there any way to get the files from other computer ?

    Hai all,
    I have 2 computers connected. I know the IP address of other computer. Is there any way to get the files from other computer. (for e.g. I want to get the files from specific folder. In Java netwroking is it possible? (Any programs)
    regards,
    Namanc

    Bro Take it easy.
    Think you need to send a Image file named ("abc.gif")
    now develop a server using ServerSocket and connect it in local IP and any PORT
    For example i think ur server is connected in "localhost" and 9000 port.
    Now make ur server educated using some commands.
    For example:
    FileName: <File Name String>
    [Means new file is sending by connected client]
    FileSize: <File size long or int value>
    [ So that ur server can determind about the total length of sender file]
    DataModeOpen
    [Now your client will send its image data, this command means your client software is sending data]
    fjadlkfjaofaijojfwoeiurfodkjflsajlfksa
    l23j4lj23lkjlasjfoq23j4rokjelfkjasldkf
    2o3j4lk2j3ljslakdjf2l3j4 l23kjlk23k4j
    DataModeClose
    [Means file sending finished]
    Close
    [Means your client connection is closed]
    Now develop a client supporting this command.
    For example(Server):
    String getFileName=null;
    long getFileSize=0;
    public handleCommand(String getCmd) {
        if(getCmd.startsWith("FileName")) {
                String[] splitData=getCmd.split(":");
                this.getFileName=   splitData[1];
                outPutStream.writeBytes("+OK");
        } else if(getCmd.startsWith("FileSize")) {
                String[] splitData=getCmd.split(":");
                this.getFileSize=Long.parseLong(splitData[1]);
                outPutStream.writeBytes("+OK");
        } else if(getCmd.startsWith("DataModeOpen")) {
               //data mode open so receive data
              receiveData();
              outPutStream.writeBytes("+OK");
        } else if(getCmd.startsWith("DataModeClose")) {
              //close client socket
             getClientSocket.close();
    }For client:
    DataInputStream dataIn=null;
    BufferedOutputStream bout=null;
    public sendFile(bytes[] getBytes) {
            //if ok found then do other or show error message
        if(sendCmd("FileName:"+getFileName)) {
            if(sendCmd("FileSize:"+getFileSize)) {
                if(sendCmd("DataModeOpen")) {
                   bout.write(getBytes);
                } else {
                   showError(3);
            } else {
                   showError(2);
       } else {
            showError(1);
    }i think it will help u

  • Are there any interesting tricks that the iphone 5 can do?

    Are there any interesting tricks that the iphone 5 can do? Are there any secrets?

    How about these:
    Apple - iPhone 5 - Learn some helpful iPhone tips and tricks.
    50 iPhone 5 tips and tricks - Opinion - Trusted Reviews

  • Are there any feature same with the ResourceBundle for I18N in JavaFX

    Are there any feature same with the ResourceBundle in JavaFX, the I18N support

    No, shouldn't have any problems

  • Verizon Iphone 4 without sim card is locked because of forgotten passcode. Can't access serial number because of having no sim tray. Never synced with itunes. Recovery mode always comes up with an error. are there any solutions on resetting the phone?

    Verizon Iphone 4 without sim card is locked because of forgotten passcode. Can't access serial number because of having no sim tray. Never synced with itunes. Recovery mode always comes up with an error. are there any solutions on resetting the phone?

    Are you looking for the serial number or the IMEI? If the phone was active on your Verizon acount, Verizon can give you the IMEI.

  • Are there any way to recover the deleted images form iPhone 4

    hello guy's
    are there any way to recover the deleted images form iPhone 4
    note : i haven't make any copy of the photo in my pc so i relay need for them
    plz help

    The Camera Roll is for temporary storage as with any other digital camera. Although photos in the Camera Roll are included with your iPhone's backup which is updated by iTunes as the first step during the iTunes sync process, photos in the Camera Roll can and should be imported by your computer ASAP. If you didn't sync your iPhone with iTunes since these photos were captured by your iPhone and the photos in the Camera Roll weren't imported by your computer, the photos are gone.
    Depending on how wealthy you are, you can contact a data recovery service to see if they can recover deleted photos from an iPhone's flash drive, but you will pay an arm and a leg for this. Such a data recovery service is not cheap and with no guarantee the data will be recoverable.

  • Are there any way to recover the deleted images form iPhone4

    hello guy's
    are there any way to recover the deleted images form iPhone 4
    note : i haven't make any copy of the photo in my pc so i relay need for them
    plz help

    What happened that you lost them?
    If you have synced recently you could restore the iPhone and it will restore the camera roll to it's state at the time of that sync.

  • Is there any way to show the file name super imposed on the slides?

    Is there any way to show the file name super imposed on the slides in Premiere Elements 9?
    I am setting up pictures as slide show along with some movie clips but wanted the desctiptive file names appearing with each picture.
    Thanks!

    Yes. In Timeline mode, you add it to an upper video track as a title.
    I show you the basics of titles in the Basic Training tutorials at Premiere Elements support site Muvipix.com.
    http://forums.adobe.com/thread/537685?tstart=0

  • Are there any calls to get the entire database schema ?

    I'm using JDBD Thin, are there any calls to get the entire database schema or do I need to use the thick libray ?
    Thanks.

    This could be done using the Azure Management Libraries for Azure Websites https://www.nuget.org/packages/Microsoft.WindowsAzure.Management.WebSites
    There you can find an API to enumerate your website's running instances.
    var client = new WebSiteManagementClient(new CertificateCloudCredentials("subscriptionid", cert));
    foreach (var webSiteInstanceId in client.WebSites.GetInstanceIds("webspacename", "sitename"))
    Console.WriteLine(webSiteInstanceId);
    You can also see this information using the Azure command line tools (both PowerShell and xplat).
    Note that scaling up doesn't guarantee you'll have more instances (unless you have Always On configured) to get those instances running you'll need traffic to your website.
    Thanks,
    Amit

  • Are there any functional differences between the trial and the paid version?

    Are there any functional differences between the trial and the paid version for Labview 2009?  Thank you.
    Solved!
    Go to Solution.

    This outlines the limitations of the eval version of Labview: Limitations of the LabVIEW Evaluation Version
    Cheers, 
    Misha

  • HT201342 Are there any setting or some way to show notifications for new email without open Apple Mail app ?

    Are there any setting or some way to show notifications for new email without open Apple Mail app ?
    You know , I am an OCD . I alway's close my Mail app and miss many important new emails .

    What I do is open the Mail.app, then click the red traffic light (upper left corner of the main Mail.app window) to close that window. The app itself will remain running and you will get updates - this helps keep the desktop tidy while while the mail app remains running. When an update is received, simply click the either the mail icon in your dock or go to the Mail.app menu and click Window > Message Viewer.

Maybe you are looking for

  • Data recovering from formatted bit locker encrypted portion.

    unfortunately i formatted a partition which is bit locker encrypted having all my valuable documents and data. luckily i have bit locker recovery key and my decryption password. i use m3 bit locker recovery software to recover my data using my store

  • Add new Table Region Through Personalizations

    Dear all, I I want Add a new table region in seeded page Through Personalization . Not getting item style as table pls provide any documents for table personalization Thanks and Regards Aneesh Edited by: aneeshmathew on May 4, 2011 4:44 AM

  • Air for Android checklist

    Hi, I started with Air to iOS, and now I'm porting to Android. I have a few questions about best practices if anyone has any experience? 1a) Screen Ratio: My Flash document size is 1024x768, with content running to 1200px. Will this ratio be OK for a

  • Business Rule problem

    Here is a problem I am not quite sure how to solve. Given a collection of objects of type X, find out if there are two objects in that collection that meet certain criteria.  For example, find out if there are two objects X1 and X2 such that X1.city=

  • Surround- left and right gone...please help

    When I switch my tracks over to surround... L and R (1+2) are gone! i can sweep the dot around the surround and hear all the channels except for left and right... but in stereo mode they work fine... help!