Ibase Massive upload with CRMXIF_IBASE_SAVE_M

Hi Gurus,
I am using LSMW to do a massive upload of ibase in solution manager.
I used the idoc. Message type: CRMXIF_IBASE_SAVE_M and Basic Type: CRMXIF_IBASE_SAVE01.
Right now is working, but I would like to know your opinion, is that okey that I use the LSMW with this idoc in solman.
Thanks in advance.
Regards

I never dealt with solman, but if it supports parallel execution I don't see any inconvenience. I also would take a look at SXDA.
Cheers!
Luis

Similar Messages

  • Documents massive upload Solution manager

    Hi,
    I am trying to make a massive upload of documentation to Sap Solution Manager, i can upload the documentation into the KW but when i try to save the documentation in SOLAR02 estructure with the function solar_appl_save_items does not work.
    Here is my code:
    Data l_context TYPE REF TO  cl_sctm_context.
    DATA objekey type SWO_TYPEID.
    DATA RC1 TYPE I.
    data: L_FILETABLE TYPE FILETABLE,
          L_FILETABLE_S type FILE_TABLE.
    DATA ls_bo TYPE sadocbo.
    DATA: lo_new_document type ref to IF_SA_DOC,
    ls_document2  type ref to IF_SA_DOC.
    DATA project_filter type HIER_GUID.
    DATA lv_loio TYPE sdokobject.
    DATA handle_id like ISTATIFACE-ID.
    data ti type SPRO_NOTES_TAB.
    DATA items type SAITEMS.
    DATA ls_l1 type HIER_IFACE.
    *tablas internas
    DATA: l1 type STANDARD TABLE OF  HIER_IFACE,
          l2 type standard table of  HIER_REF,
          l3 type STANDARD TABLE OF  HIER_TEXTS.
    START-OF-SELECTION.
      CALL FUNCTION 'SPROJECT_GET_REAL_OF_PROJ'
        EXPORTING
          PROJECT_ID         = 'ZXXX'
        IMPORTING
          REALIZATION_FILTER = project_filter.
    * obtener jerarquia de proyecto
      CALL FUNCTION 'SASAP_HIERARCHY_READ'
        EXPORTING
          FILTER_ID             = project_filter
          READ_TEXTS            = 'X'
          READ_REFERENCES       = 'X'
          LANGUAGE              = SY-LANGU
          INCLUDE_SUBSTRUCTURES = 'X'
          TEXT_OF_REFERENCES    = 'X'
          START_LEVEL           = '01'
          DISPLAY_MODE          = 'D'
          READ_TREE_ASSIGNMENTS = ' '
          LEVELS                = 0
        TABLES
          LIST_OF_NODES         = l1
          LIST_OF_REFERENCES    = l2
          LIST_OF_TEXTS         = l3.
      CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_OPEN_DIALOG
        CHANGING
          FILE_TABLE              = L_FILETABLE
          RC                      = rc1
        EXCEPTIONS
          FILE_OPEN_DIALOG_FAILED = 1
          CNTL_ERROR              = 2
          ERROR_NO_GUI            = 3
          NOT_SUPPORTED_BY_GUI    = 4
          others                  = 5.
      IF SY-SUBRC <> 0.
      ENDIF.
      REad TABLE L_FILETABLE INTO l_filetable_s index 1.
      CALL METHOD CL_SA_DOC_FACTORY=>UPLOAD_DOC
        EXPORTING
          I_DOC_TITLE              = 'prueba viernes jon'
          I_DOC_TECH_NAME          = 'ZXXX'
          I_DOC_TYPE               = 'BPP'
          I_DOC_STATUS             = 'Open'
          I_FOLDER_TITLE           = 'Folder Name'
          I_FOLDER_TECH_NAME       = 'ZXXX'
          I_FOLDER_RESPONSIBLE     = SY-UNAME
          I_FOLDER_GROUP           = 'ZXXX'
          IP_FILEPATH              = l_filetable_s
        RECEIVING
          E_IOBJECT                = lo_new_document
        EXCEPTIONS
          CANCELLED                = 1
          FOLDER_ERROR             = 2
          ERROR                    = 3
          others                   = 4.
      CALL METHOD LO_NEW_DOCUMENT->SAVE
        RECEIVING
          E_LOIO    = lv_loio
        EXCEPTIONS
          CANCELLED = 1
          ERROR     = 2
          others    = 3.
      IF SY-SUBRC <> 0.
      ENDIF.
      CONCATENATE lv_loio-class  lv_loio-objid into objekey RESPECTING BLANKS.
      CALL FUNCTION 'NOTE_OBJECT_SAVE'
        EXPORTING
          ID            = 'E100340107203DF19AFD000C29BB263E'
          APPLICATION   = 'S0'
          FILTERTREE    = project_filter
          NOTE_ID       = lv_loio-OBJID
          NOTE_TYPE     = 'ACC'
          SAVE_LOCATION = ' '
          OBJECTKEY     = objekey
          SEQUENCE      = '0000000001'.
      READ TABLE l1 into ls_l1 with key  node_id = 'E1003401072037F19AFD000C29BB263E'.
      CALL FUNCTION 'SOLAR_APPL_SAVE_ITEMS'
        EXPORTING
          ACTUAL_NODE         = ls_l1
          TAB_TYPE            = 'CUSTDOCU'
          LANGUAGE            = SY-LANGU
          PROJECT_ID          = 'ZGD_IBER'
    *     SYSTEM_ROLE         = ' '
    *     SCOPE_FILTER        = ' '
          NO_TRANSPORT_CHECK  = 'X'
    *     IS_LIBRARY          = ' '
          USER_CONTEXT        = l_context
    *     CREATION_CONTEXT    =
    *     DOCU_HANDLING       = ' '
    *     STATUS_HANDLING     = ' '
    *     KEYWORD_HANDLING    = ' '
    *     REFOBJATTR_HANDLING = '1'
    *     SAVE_OPTIONS        =
    *     HISTORY_HANDLING    = 'X'
          PF_ASSIGN_2_TOPNODE = 'E1003401072037F19AFD000C29BB263E'
    *     _DELETE_REFTREES    = ' '
    *     APPL_INFO           =
        CHANGING
          ITEMS               = items
    *     DEVCLASS            =
    *     TRANSPORT_ORDER     =
    *     OLD_ITEMS           =
    *     MESSAGES            =
        EXCEPTIONS
          ERROR_OCCURRED      = 1
          OTHERS              = 2.
      IF SY-SUBRC <> 0.
    * Implement suitable error handling here
      ENDIF.
    Kind Regards
    Jon
    Edited by: Jon Azkorra on Nov 24, 2011 4:34 PM
    Edited by: Jon Azkorra on Nov 28, 2011 10:08 AM

    hi,
    SAP itself has a program/ transaction is SA_Migration is used to mass upload f valueSAP doc to solar01,
    you just check the logic used behind this and customize it.
    Thanks,
    Jansi

  • RS_TREE_ADD_NODE sample to massive uploading

    Hi,
    I need to make a massive upload from excel to tree used in t-code VDH2N
    I think that the correct module will be RS_TREE_ADD_NODE  i tryed using transaction se37 but i get no results.
    I have doubts with some parameters. Can someone give me a sample code or an detailed explanation about this function module.
    Of course if you think that i should use another function module just tell me what should i use.
                       Best Regards
                              João Fernandes

    Hi,
    Can you describe the parameters and possible entries to that?
             Best Regards
                  Joã

  • Mysterious massive upload

    Hi All,
    Last two days (Friday and Saturday) there was mysterious massive upload done through my BT Home hub router - about 9Gb in 2 days. Knowing that it is not us, as we don't do streaming, p2p, nor uploading any photos etc, I scanned my computers immediately - no virus nor malware found. I used netstat command in command prompt to check download/upload readings for each computer and even disconnected 1 computer from internet, but the data transmitted readings showed on my BT home hub page kept increasing. But I did not see any thing was being uploaded from my computers/device.
    I rang BT customer support but they were unable to provide me details on which computer/device was uploading nor they could provide which time the upload was done (we went out for a concert on Friday night, no one used computers/device between 16:00-00:00). BT customer support could not tell me which IP the upload was addressed to.
    Meanwhile I found plenty of OUT block entries in my router's event log:
    Datetime OUT: BLOCK [7] ICMP replay (ICMP type 3 code 1 XX.XXX.XX.XXX-​>XXX.XXX.XXX.XX on ppp3)
    I decided to restart my router, after that the router data transmitted readings is back to normal, I guess the upload had been stopped. But until I restarted the router at around 5pm Saturday, my router had already uploaded another about 4Gb data. I don't have Fri-Sat event logs anymore after restart, else I could investigate those IPs further.
    Has anyone ever seen this situation before? Thanks for reading.

    All you can do is to disconnect all devices, make sure the upload stops, then connect each device, one at a time, to identify which device is causing it.
    Make sure you do not have any loopbacks, which can be caused by powerline adapters.
    If its your PC causing it, then you will need to run a tool like Process Explorer
    https://technet.microsoft.com/en-gb/sysinternals/bb896653.aspx
    Assuming its a Windows PC. This will identify any processes which are using network resources.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • How to delete file from column after upload with messageFileUpload?

    Which is the way to delete a file from column i have uploaded with messageFileUpload. After uploading the system generates a link to download the file. But how i can delete the file?

    Thank you! Syncing has always scared me...basically I am just afraid to lose any photos. But it worked. Again thank you

  • Excel upload with listener

    Hi,
    I have enabled excel upload with the listener, and it actually works fine. I get the data into a collection.
    Now what if I want to store the file in the database? It seems that the file is NOT inserted into wwv_flow_files. Also the item that contains the file has no value when the page is submitted with the XLS2COLLECTION button. (If I create another button that also submits the filename is there)..
    So it seems that when this feature is enabled the file is deleted from www_flow_files when page processing starts.

    Hi Martin,
    the feature is undocumented and not officially supported for 1.1, but known to work for Excel files up to the 2003 format. XLSX (2007 onwards) is not implemented.
    Perhaps going through the discussion and examples in {thread:id=2342792} helps you solve your issue.
    -Udo

  • Transferring files from users mashines on the server. Uploading with applet

    I'm trying to create applet that would do uploading of user file on the server.
    I'm woundering, Is there any ways to use java applet to open a file on user mashine into a stream and transfer it thought socket into
    server? Is there any good solution that do uploading with java applet? (I can't use CGI or PHP)
    I just noticed that applets don't support FileInputStream. How could I in general get information from user file?
    Ok. Thanks for ideas that you gave me. But there are useless. All that I can use is only HTTP. Unfortunately no FTP, no Web Start application.
    looking for help

    well, i don't work a lot with applets because of their inherent limitations. but my guess would be that you have to somehow use a signed applet. of course that doesn't help with the FileInputStream problem you are talking about.
    if i were going to do it and i couldn't use FTP, i'd write a WebStart app that calls servlets (sending it byte arrays) and the servlets will construct the files on the server...
    i have no clue how you are going to do what you want...

  • Data Migration from 11i to R12 Global - Open POs,lines, receipts & on hand upload, Is it possible to do the onhand qty upload with over riding of all receipts which uploaded against Open PO lines?

    Hi Friends,
    We are in a phase of data migration from 11i to R12 
    I was discussed with client & they wants extraction of all open POs which was generated after 01 Jan 2014 to till date in 11i.
    Condition for open POs is PO qty-received qty=>0
    critical Example for open PO is :PO no: 10 has 4 lines, 3lines full qty has been received & for 1 line partial qty(say 50 out of 100) received.
    in this case he wants in R12 uploading as PO no:10 should entered as open PO with all 4lines & 3 lines complete receipt should be done, for 4th line partial qty i.e 50 should be received.
    the question is if we upload on hand qty first, then open POs & receipts, it will increase the onhand qty in new system(mismatch of on hand qty's 11i to R12) 
    Is it possible to do the onhand qty upload with over riding of all receipts which uploaded against Open PO lines.
    Or Please advice best solution.
    Thanks & Regards
    Giri

    adetoye50 wrote:
    Dear Contacts Journal Support Team,
    FYI, this is a user to user support forum.  You are NOT addressing Apple here.
    Honestly, I doubt anyone is really going to take the time to read the novel you have written.

  • Creation of IBASE (TA IB51) with ABAP

    Creation of IBASE (TA IB51) with ABAP
    Posted: Sep 29, 2005 8:47 AM      Reply      E-mail this post 
    Hello all,
    i want to create an IBASE with Instances (Materials) with Abap.
    It is possible to create the IBASE but not to create the instances. I have always an empty IBASE without materials.
    Can anybody help me
    Thanks a lot
    Markus
    Here is my coding:
    type-pools ibin .
    type-pools IBCO2.
    data: ibib_handle type i.
    data: E_IBASE_REC TYPE IBCO2_IBASE_REC.
    data: I_IBIB1 LIKE IBIB1.
    data: I_IBIBT1 LIKE IBIBT1.
    data: matobject type ref to cl_ibase_r3_material.
    data: i_PROCESS_REC TYPE IBXX_PROCESS_REC.
    data: C_INSTANCE_TAB TYPE IBCO1_INST_TAB1.
    data: c_inst_struct type ibco1_inst_rec1.
    CALL FUNCTION 'IB_COM_NEW'
    IMPORTING
    E_IBCO_HANDLE = ibib_handle.
    CALL FUNCTION 'IB_COM2_CREATE_IBASE'
    EXPORTING
    I_IBCO_HANDLE = ibib_handle
    I_IBTYP = 'Y1'
    IMPORTING
    E_IBASE_REC = E_IBASE_REC
    EXCEPTIONS
    IB_HANDLE_NOT_DEFINED = 1
    OTHERS = 2.
    clear: i_ibib1, i_ibibt1.
    move-corresponding e_ibase_rec-com to i_ibib1.
    move-corresponding e_ibase_rec-conf to i_ibib1.
    i_ibib1-ibase = e_ibase_rec-ibase.
    i_ibib1-extid = 'externer Name'.
    *i_ibib1-authg = 'E001'.
    i_ibibt1-ibase = e_ibase_rec-ibase.
    i_ibibt1-langu = sy-langu.
    i_ibibt1-descr = 'Beschreibung'.
    CALL FUNCTION 'IB_COM1_CHANGE_IBASE_ONLY'
    EXPORTING
    I_IBCO_HANDLE = ibib_handle
    I_IBIB1 = i_ibib1
    I_IBIBT1 = i_ibibt1
    EXCEPTIONS
    IB_HANDLE_NOT_DEFINED = 1
    OTHERS = 2.
    create object matobject exporting i_matnr = '000000000000602028'.
    clear i_process_rec.
    i_process_rec-activity = '1'.
    i_process_rec-ind_valfr = 'X'.
    i_process_rec-ind_valto = 'X'.
    i_process_rec-ind_sortf = 'X'.
    i_process_rec-ind_amount = 'X'.
    i_process_rec-ind_unit = 'X'.
    i_process_rec-ind_objtyp = 'X'.
    i_process_rec-ind_objid = 'X'.
    i_process_rec-ind_serno = 'X'.
    i_process_rec-ind_plant = 'X'.
    i_process_rec-ind_batch = 'X'.
    i_process_rec-ind_revlv = 'X'.
    i_process_rec-ind_deviceid = 'X'.
    i_process_rec-ind_posno = 'X'.
    refresh c_instance_tab.
    c_inst_struct-val-valfr = '20050929080000'.
    c_inst_struct-val-valto = '99991231235959'.
    c_inst_struct-com-amount = 1.
    c_inst_struct-com-unit = 'ST'.
    c_inst_struct-objtyp = '0002'.
    c_inst_struct-object = matobject.
    INSERT c_inst_struct INTO TABLE c_instance_tab.
    CALL FUNCTION 'IB_COM1_PROCESS_INSTANCE'
    EXPORTING
    I_IBCO_HANDLE = ibib_handle
    I_IBASE = e_ibase_rec-ibase
    i_moment = '20050929080000'
    I_PROCESS_REC = i_process_rec
    CHANGING
    C_INSTANCE_TAB = c_instance_tab
    EXCEPTIONS
    IB_HANDLE_NOT_DEFINED = 1
    IB_NO_ACTIVITY = 2
    IB_NOTHING_PROCESSED = 3
    IB_INCONSISTEND_DATA = 4
    IB_INSTALL_NOT_ALLOWED = 5
    OTHERS = 6.
    CALL FUNCTION 'IB_COM_SAVE_AND_FREE'
    EXPORTING
    I_IBCO_HANDLE = ibib_handle
    EXCEPTIONS
    IB_HANDLE_NOT_DEFINED = 1
    IB_NOT_SUCCESSFUL = 2
    OTHERS = 3
    write: e_ibase_rec-ibase.
    commit work.

    Remark: We have SAP R3 Release 4.6c

  • The upgrade to Firefox 4 is causing massive problems with my computer. How do I uninstall it and go back to using the previous version?

    Firefox 4 is absolutely awful - it is causing massive problems with my computer. How do I uninstall Firefox 4 and go back to the previous version of Firefox?

    According to the instructions given on the Norton Community forum under "Other Norton Products/Comcast-Customers - Norton Toolbar Problem in Firefox 10", I have done everything necessary. And I do have a Norton toolbar (Safe Web and Identity Safe) when I open Firefox 10. As was mentioned in the previous posts here, you need to run manual LiveUpdate then reboot until you have version 5.2.0.13. Then reboot and run manual LiveUpdate again and reboot once more. One thing that I noticed is that Norton never told me that it had updated the patch for Firefox 10, so I didn't know. I guess if you have the toolbar when you run Firefox 10, then you have done it all.

  • File upload with 'asp vb' backend

    Hello,
    I am trying to get file uploading with flex (flash buider) working. There are plenty of examples with a php backend, but i need the script for a 'asp vb' backend.
    I' ve tried lots of different approaches but can't get it right. Someone out there with a solution?
    Thanx!!

    Believe it or not I have to do this also.
    I have legacy ASP code that uses ASPUpload that I'd like to get working with my Flash CS5 and FlashBuilder Burrito front-ends.
    it's just multipart encoded.
    So, if you first test it with ASPUpload and a simple form, trying just FILE1 first, and it works with ASP backend then tackle the FlashBuilder side with some debugging.
    ASPUpload is still an extremely embedded component on tens of thousands if not more sites, and it was just updated, but I think the previous version just before this update, the one that's out there in code on so many sites, that is what Flash needs to work with.
    ASPUpload is doing its part, as it follows all the multipart encoded RFC rules and has worked for years.
    I'd love to join you in finding out what's going on here.
    This is a long-standing issue.
    I've done PHP also.  But again, enhancing an interface with FlashBuilder4 or Burrito, to integrate with working legacy code makes it hard when something is not working on the Flash side (it appears anyway) as ASPUpload form posts are extremely easy.

  • Artwork doesn't upload with songs.

    Recently an error occured and my computer or possibly itunes, deleted all the music off my ipod. I reloaded it all, but the album artwork didn't upload with it. I've gone into music and pressed the upload album artwork onto ipod, but it hasn't worked. I've always been able to upload the album artwork with the songs, but this time it isn't working. What can I do?

    Try unchecking "display album artwork" in the music preferences section when your iPod is connected and click "apply". Then sync your iPod.
    Then check "display album artwork" in the music preferences section when your iPod is connected and click "apply". Then sync your iPod again.
    This should resync the album artwork to the iPod.

  • Multiple File Upload With Metadata Using REST

    hi all
    I want to upload multiple files with metadata to document library using REST API. I am using this msdn article
    http://msdn.microsoft.com/en-us/library/office/dn769086(v=office.15).aspx for uploading file. I am able to upload single file to document library but it is not working for multiple file. when I select multiple file it is uploading last selected file. can
    anyone help with this. I am using office 365 environment.
    Thanks in advance

    Hi,
    According to your post, my understanding is that you wanted to use the REST to upload multiple files.
    Per my knowledge, the REST API is not supported for uploading multiple files via a single call.
    You can write your own loop to upload multiple files via an individual call.
    http://sharepoint.stackexchange.com/questions/108525/multiple-file-upload-with-metadata-using-rest/108532#108532
    More reference:
    http://sharepointfieldnotes.blogspot.com/2014/04/uploading-documents-and-setting.html
    http://www.shillier.com/archive/2013/03/26/uploading-files-in-sharepoint-2013-using-csom-and-rest.aspx
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Multiple image upload with save to database problem

    I am developing some backend work for a client, and we recently used the Multiple image upload with save to database wizard without a problem. A few days later, we noticed that we could only upload a single file at a time - it seems that the coding is no longer able to access the flash part of this and is using the javasript function instead. I know the web hosting company has made some changes on the server, and I did some reearch and it seems that  there could be an issue with Flash 10, but has anyone else experienced anything like this? Any help is greatly appreciated.
    Thanks.
    Jeremy

    Thank you for the responses. I have already updated awhile ago, so I am wondering what happened. Not sure if during the server update, some files were replaced (unless I totally forgot to update to 1.0.1 on this site). So I reinstalled 1.0.1, deleted the includes folder from the server and uploaded my includes folder and it now works again.
    Again, thanks for the help.
    Jeremy

  • ERROR ITMS-9000:"Redundant Binary Upload. There already exists a binary upload with build version '1.1' for ipa '1.1'".

    ERROR ITMS-9000:"Redundant Binary Upload. There already exists a binary upload with build version '1.1' for ipa '1.1'".
    I need to change the build number, but not the version number. So I can upload a new build for same version to ITC. What step should I do in FB4.7?

    Hi mobisa,
    Can you try the solution in this post? ios - ERROR ITMS-9000: "Redundant Binary Upload. There already exists a binary upload with build version '1.0' for train…
    Thanks,
    Preran

Maybe you are looking for

  • Crystal Report with text(csv) data file, can we set it as input parameter?

    Hi, I am a new user of Crystal Reports 2008. I have created a report with charts in it. The input data comes from a csv text file. Can I set the name of this text file as an input parameter? as I need to generate 44 similar reports with different tex

  • Exporting data view Report in reporting services to excel using an image click

    We have a report created in reporting services and on the initial page we have a clickable image that opens excel and exports the date to our spreadsheet. This doesn't work when trying it from outside the network. I there a way to get this to work ex

  • Redirect not working correctly

    Selecting "Redirect" in Mail used to seemlessly pass the email on to a new recipient as if the email was sent from the original sender: From: +"original sender's name" <original sender's e-mail>+ Resent: +"my name" <my e-mail>+ The only evidence of m

  • ExportAsText NotAllowedError on Adobe Reader

    hi, I have a big problem: I developed a pdf form using Adobe Acrobat XI Pro. On a button, i added a call to a privileged function. The js file is under the javascript folder on C:\Program Files (x86)\Adobe\Acrobat 11.0\Acrobat\Javascripts and also un

  • [SOLVED] Flash/nspluginwrapper install help

    Hullo,  wager I'm quite novice level when it comes to linux, though I've used Gentoo and SuSE in the past, and wanted to give Arch a try on my friend's recomendation.  I'm familiar with nspluginwrapper and was able to get it working fine on SuSE (to