Copy Infospoke.

I have a Infospoke which is FULL load. I want to create a delta for that. How do I copy an Infospoke in a different name and change FULL to DELTA.
Thanks in Advance.

Goto RSBO-->add new infospoke name, in template type your old info spoke name --> Execute  ...
Modify new info spoke as Delta in Extraction mode ..
Hope it helps ..
Ravi

Similar Messages

  • Copy functionality in Infospoke??

    Dear Friends,
    I have not seen any facility for copying of infospoke?..is there any 'trick' we can have over here??
    Thanks for your time,
    regards,
    Hari

    Hello Hari,
    In the first screen of RSBO, you will find place to specify name of the infospoke. There give the name with which you want to create the new one. Just below that, you will find space to mention the name of infospoke which you want to use as template, mention the name of existing infospoke there. Then click on create button. That's all, your new infospoke is crated with all the properties of existing one.
    But if your existing infospoke contains BADI, that is not copied. You need to write that gain.
    Hope it helps.
    Regards,
    Praveen

  • Infospoke Full Loads

    Hello BW Gurus,
    BW 3.5 does not allow  full loads after delta has been activated. My problem is that now we have to trigger a full load to the informatica client and I cant do this from my delta configured infospoke.
    I even created a duplicate ODS which is a copy of the original ODS. I then created a separate 'Full Load' infospoke sourcing this duplicate ODS  and this also does not work.
    Does anyone have a workaround for this problem ?
    Dorothy

    Hi,
    You can goto change mode and deactivate delta, and change the delta mode to full update.....
    rgds,

  • Copy data between 2 cubes

    Gurus, Long time groups. Gosh, more than a month, finally got some time.
    Anyways had a quick question, thought if anybody has a simpler method to do what i need.
    I have a couple of cubes in the BW Prod which have actual and plan data. Is there a simple way to copy only those cubes to BW Dev. I am sure i can get the data thru InfoSpokes. Any suggestions in and around would be rewarded. Thanx.

    Hi
    This Q has benn floating every now and then.
    look at:
    Re: Transporting Queries
    Re: transport
    Re: Transporting Process Chains from Production DOWN to QA and Dev
    Reg's
    Edan

  • BADI Implementation for INFOSPOKE

    Hi,
    I have a BADI logic to read the product description from the text table in my infospoke and writing into a file.
    I have multiple(10) infospoke extraction (same format but with different selections) which wants to use the similar type of logic.
    My question is:
    Is it possible to write one Generic BADI and that can be shared by other infospoke extractions?
    OR should I copy the same logic for other 10 BADI ?
    I believe the BADI is specific to infospoke. I see that I have no control over the source structure...
    2) I was trying this in RSCRM_BAPI. My query result in BEX shows the product and product description(from text table)fine. where as in my RSCRM_BAPI it displays only the product and NOT the description. If I could able to display the text using RSCRM_BAPI I can define 10 queries which makes my life easier...
    Any idea/suggestion in both methods is greatly appreciated as this is kind of very URGENT..
    Thanks for you help.

    This is kind of URGENT.
    Any help will be very useful

  • Infospoke Help!

    Hi All,
    I am looking for infospoke documents for different extractions,How to write abap programming in infospokes? Please help me guys...
    With Regards,
    Kris

    Hi Kris/N D,
    -Go to T-code RSBO.
    -Create an infospoke if u already have not created.
    -In the general tab, choose Infocube, ODS, ifoobjext texts, info object attr.
    -In the destination tab, choose whether u want to downlaod in to a DB table or a flat file. If you want to download it on the appl. server check the box(it takes the path by default, u cannot change it). If not on the appl. server then browse to the location you want to download.
    -In the InfoObjects tab select all the info objects you want to download.
    -In the selection tab specify the filters. for ex u can filter the data on date, customer number, company code etc. specify the values in "from value" and "to value".
    -In the transformation tab check the box. It asks to save the infospoke if u have not already done it. Save. The source and targetr structures are populated by default(u can specify your own output structure if it is different from the input structure). Double click on the implementation it says the implementation is not activated. Copy the implementation, go to se19 and paste this implementation and activate it. Again come back to the transformation tab and try to double click o nit, if still it wont allow you to implement, save and activate the info spoke before trying again. This time it should allow you to implement.
    -Once you are in the implementation, in the attributes tab in the Type box look for "define filters". Double click on the space below the Infospoke label and add your infospoke that you just created. Save. Then go to the interface tab, double click on the TRANSFORM method. This should take you to the ABAP code for the BAdI. You are all set !!
    For sample code you can click the Imformation button(The blue button with the "i") on the transformation tab of the infospoke.
    Hope this helps...

  • Infospoke BADI problem

    Hi all,
    I am using an Infospoke to extract data from an infocube to the application sever in .CSV format. There are five fields in the extract. Since I want to filter out negative values coming in field5 I am using a BADI implementaion to do that. At the end of the file I am giving 'EOF' as value for field1 using the same BADI imlementation to mark the end of the file.  Following is the BADI code I am using.
    method IF_EX_OPENHUB_TRANSFORM~TRANSFORM.
      DATA :
               ZSTDATAIN TYPE /BIC/CYZINFOSPOKE ,
               ZITDATAIN TYPE STANDARD TABLE OF /BIC/CYZINFOSPOKE,
               ZSTDATAOU TYPE ZSTRUCTURE ,
               ZITDATAOU TYPE STANDARD TABLE OF ZSTRUCTURE.
      LOOP AT I_T_DATA_IN INTO ZSTDATAIN.
        IF ZDATAIN-/BIC/FIELD5 > 0 .
          MOVE-CORRESPONDING ZSTDATAIN TO ZSTDATAOU.
          APPEND ZSTDATAOU TO ZITDATAOU.
          CLEAR ZSTDATAOU.
        ENDIF.
      ENDLOOP.
      ZSTDATAOU-/BIC/FIELD1 = 'EOF'.
      ZSTDATAOU-/BIC/FIELD2 = ' '.
      ZSTDATAOU-/BIC/FIELD3 = ' '.
      ZSTDATAOU-/BIC/FIELD4 = ' '.
      ZSTDATAOU-/BIC/FIELD5 = ' '.
      APPEND ZSTDATAOU TO ZITDATAOU.
      E_T_DATA_OUT[] = ZITDATAOU[].
    endmethod.
    I have given the maximum value of 999999 as lines per data package in infospoke. So when the number of records is more than this value I am geting more than one 'EOF' records in my .CSV file. I have to avoid it. Can any one suggest how it can be done. Any help will be appreciated.
    Regards,
    Amith

    Hi Luis,
    Thanks for your answer, but I already made the changes in the "target structure" of the transformation tab by changing that structure by one created by myself with the field I wanted to add to the layout (it's a copy of the autogenerated one with the new field, as explained above).
    I swaped also the autogenerated structure with the one i created (on the 'transform method' of the "addin implementation" for the badi).
    Also i already had the object in the infospoke fields of the infobjects tab.
    Kind Regards,
    Carles

  • File copy from AL11

    Hi Experts,
      I generated a Extract from BW and placed it in a file in <b>AL11</b>  by using function module/program.
    for some reasons i can't use infospoke.
    The generated file is in AL11,How can i copy the file to by desktop
    Thanks

    Hi,
    you need to make an abap program.
    Try this code:
    *& Report  ZBAJARARCH
    REPORT  ZBAJARARCH.
    TABLES:
        sscrfields. "Campos en las imágenes de selección
    DATA:
        it(5000) OCCURS 100 WITH HEADER LINE.
    *-parameters----
    SELECTION-SCREEN:
        BEGIN OF BLOCK b1 WITH FRAME TITLE text-004.
    PARAMETERS:
        sfn(128) OBLIGATORY LOWER CASE MEMORY ID z0s   " server file name
                 DEFAULT 'C:',
        pfn(128) OBLIGATORY LOWER CASE MEMORY ID z0p   " pc file name
                 DEFAULT 'C:'.
    SELECTION-SCREEN END OF BLOCK b1.
    *-events----
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR pfn.
      CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
           CHANGING
                file_name     = pfn
           EXCEPTIONS
                mask_too_long = 1
                OTHERS        = 2.
    START-OF-SELECTION.
      PERFORM getfrsrv.
          FORM getfrsrv                                                 *
    FORM getfrsrv.
      REFRESH it.
      PERFORM borrar_file_si_esixte.
      PERFORM dsopen_input_text
          USING sfn.
      PERFORM xfer2it.
    ENDFORM.
          FORM xfer2it                                                  *
    FORM xfer2it.
      DATA: cont TYPE i.
      WHILE sy-subrc = 0.
        CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
             EXPORTING
                  percentage = cont
                  text       = 'Espere por favor'.
        PERFORM dsread
            USING    sfn
            CHANGING it.
        IF sy-subrc <> 0.
          EXIT.
        ELSE.
          ADD 1 TO cont.
        ENDIF.
        APPEND it.
        IF cont = 100.
          PERFORM download.
          REFRESH it. CLEAR it.
          CLEAR cont.
        ENDIF.
      ENDWHILE.
      PERFORM download.
      REFRESH it. CLEAR it.
      PERFORM dsclose
          USING sfn.
    ENDFORM.
          FORM dsclose                                                  *
    -->  DSN                                                           *
    FORM dsclose
        USING dsn TYPE c.
      CLOSE DATASET dsn.
      IF sy-subrc <> 0.
        MESSAGE e001(zk) WITH 'Error closing' dsn 'rc=' sy-subrc.
      ENDIF.
    ENDFORM.
          FORM dsopen_&1_&2                                             *
    -->  DSN                                                           *
    FORM dsopen_input_text USING
            dsn  TYPE c.
      DATA msg(80).
      OPEN DATASET dsn FOR INPUT IN TEXT MODE MESSAGE msg encoding default.
      IF sy-subrc <> 0.
        MESSAGE e001(zk) WITH 'Error opening' dsn msg.
      ENDIF.
    ENDFORM.
          FORM dsread                                                   *
    -->  DSN                                                           *
    -->  REC                                                           *
    FORM dsread
        USING    dsn TYPE c
        CHANGING rec.
      STATICS: rctr TYPE i.
      READ DATASET dsn INTO rec.
      CASE sy-subrc.
        WHEN 0.
          ADD 1 TO rctr.
        WHEN 4.
          MESSAGE s001(zk) WITH rctr 'records read from' dsn.
        WHEN OTHERS.
          MESSAGE e001(zk) WITH 'Error reading' dsn 'rc=' sy-subrc.
      ENDCASE.
    ENDFORM.
          FORM download                                                 *
    FORM download.
      DATA: ls_file TYPE string.
      ls_file = pfn.
      CALL FUNCTION 'WS_DOWNLOAD'
           EXPORTING
                filename            = pfn
                mode                = 'A'
           TABLES
                data_tab            = it
           EXCEPTIONS
                file_open_error     = 1
                file_write_error    = 2
                invalid_filesize    = 3
                invalid_table_width = 4
                invalid_type        = 5
                no_batch            = 6
                unknown_error       = 7
                OTHERS              = 8.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.
    *&      Form  borrar_file_si_esixte
          text
    -->  p1        text
    <--  p2        text
    FORM borrar_file_si_esixte.
      DATA: ls_file TYPE string,
            res,
            rc TYPE i.
      ls_file = pfn.
      CALL METHOD cl_gui_frontend_services=>file_exist
        EXPORTING
          file            = ls_file
        RECEIVING
          result          = res
        EXCEPTIONS
          cntl_error      = 1
          error_no_gui    = 2
          wrong_parameter = 3
          OTHERS          = 4
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      IF res = 'X'.
        CALL METHOD cl_gui_frontend_services=>file_delete
          EXPORTING
            filename           = ls_file
          CHANGING
            rc                 = rc
          EXCEPTIONS
            file_delete_failed = 1
            cntl_error         = 2
            error_no_gui       = 3
            file_not_found     = 4
            access_denied      = 5
            unknown_error      = 6
            OTHERS             = 7.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                     WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      ENDIF.
    ENDFORM.                    " borrar_file_si_esixte
    Hope this helps.
    Regards,
    Diego

  • InfoSpoke for FlatFile

    Can anyone who has implemented InfoSpoke for generating FlatFile tell me your problems and overheads.
    I tried getting data into FlatFile and also into DB table. When i run for flatfile it just hangs up on me even though i check in the Open Hub monitor that its extracting data but i guess its not able to generate a flatfile out of it. Errors out by a Short DUMP message.
    I used field seperation ";" and tried to saved in my work folder, but when i check the actual file it does show some of the whole data.
    Thanx

    Ok guys, I am trying to copy the data for a SEM transaction sales planning cube from Prod using a InfoSpoke, which has hierarchies and lotta fields. Then this faltfile i want it to upload to Dev system.
    I guess this is not possible, as i thought. I think theres one more way by using a LOGICALFILE.
    Message was edited by: Pradeep Kondra

  • Unable to capture IdcService on certain webdav actions like copy-paste

    We wrote a simple checkin filter long back for the Dynamix Prefix functionality.
    We have written an If Clause to restrict running this for any services other than CHECKIN related ones, by checking the value of IDCService parameter
    There is a scenario where users copy files present in one folder in UCM and paste it under another folder (thus creating a new content item altogether), using Webfolders.
    In 10g, even this case produced correct Prefix as service name. We used to have "validateStandard" filter used for this activity.
    In 11g, due to some complications and changed filters, we started using "preComputeDocName" filter.
    In 11g PS3, We are unable to capture IDCService here and hence unable to assign Dynamic Prefix. Any suggestions?
    Currently we only fire the code if IdcService contains "CHECKIN_" or "WEBDAV_PUT" or "COLLECTION_COPY"
    Regards,
    Prateek

    Office X is problematic in SL and it's a bit obsolete since it's almost ten years old. Student version of office is relatively inexpensive. BTW, I can't solve your issues, since I moved to Office '04 six years ago.

  • HP AiO Remote app will not recognize scan and copy function of HP Envy 120

    Good morning! HP AiO Remote App is installed on my iPad4 and in the same WiFi network with my HP Envy 120 printer. The printer is recognized by the app and marked with a green led. When I tap on scan or copy in the app menu, it tells me that these functions were available in the app only for printers which provide these features. But HP Envy 120 has both scanner and copier. And last time it worked. Some idea what could have happened here? Thanks. UJ

    Replied on: http://h30434.www3.hp.com/t5/ePrint-Print-Apps-Mobile-Printing-and-ePrintCenter/HP-AiO-Remote-will-n...
    TwoPointOh
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • HP AiO Remote will not recognize scan and copy function of HP Envy 120 printer

    Good morning! HP AiO Remote App is installed on my iPad4 and in the same WiFi network with my HP Envy 120 printer. The printer is recognized by the app and marked with a green led. When I tap on scan or copy in the app menu, it tells me that these functions were available in the app only for printers which provide these features. But HP Envy 120 has both scanner and copier. And last time it worked. Some idea what could have happened here? Thanks. UJ

    Hi UJKarl, welcome to the HP Forums. You should be able to scan from the HP AIO Remote App on your Envy 120 printer. You probably just need to power cycle the printer, iPad and router to regain proper function.
    Turn off your printer with the power button. Power down the iPad by holding the sleep button down until you get the option to 'slide to power off'. Then disconnect the power cord to your router and count to about 10, and then plug it back in. Once the router comes back online, turn the printer on. When the printer comes back online (blue wi-fi light stops blinking), then power the iPad back up. Try again, and it should work.
    Let me know how it turns out.
    TwoPointOh
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • Aio remote update copy

    Been using the aio app for sometime now with no problems, very happy!
    But.....the latest upgrade seems no longer to have a simple "photocopy" function, used it a lot in the past...simple!
    Now it seems I have to do scan or photograph and then fiddle with parameters like paper size and getting the right configuration etc. not nearly as simple as before....document on table close lid and then "copy" and that was it!
    Anyone else seen this, am I missing something? Hopefully I'll get my "copy" button back in the next version......??

    Hello John_france,
    Welcome to the HP Support Forums!
    I see that the current is version is 4.3.1, if this is the one you have, then it appears that yes, that feature has been removed. Why, I do not know and with this knowledge I do not plan on updating my All-in-One Remote app on my iPad. I'll keep and open eye for updates and let you know what I find out. Cheers!
    JERENDS
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • Copy file from mounted DMG to the Applications folder?

    I'm wanting to copy file (application) from a mounted DMG to the Applications folder. Something like:
    tell application "Finder"
    try
    copy "Volumes:Dropbox Installer:Dropbox.app" to folder "Volumes:Macintosh HD:Applications"
    end try
    end tell
    (But that doesn't work).
    Preferably overwriting the existing application in that folder. Any help would be greatly appreciated.

    tell application "Finder"
        duplicate file "Volumes:S001TEST:S001-S001c-TEST.zip" to folder "Volumes:Macintosh HD:Applications" with replacing
    end tell
    I tried this principle in Applescript (Mavericks) and received error...
    Finder got an error: Can’t set folder "Volumes:Macintosh HD:Applications" to file "Volumes:S001TEST:S001-S001c-TEST.zip".
    "001TEST" is a disk image with filename of "S001TEST.dmg"
    Any ideas why this won't work?

  • Copying file from mounted disc image.

    Hi
    I'm trying to copy a file from a mounted .iso file but it says i don't have permission to do so ( error code -39).
    Is there any way around this?
    Thanks in advance.
    George.

    Its a folder containg many files, most of which it copies fine then it gets to one particular file and the copying stops giving the following error.
    ' The Finder can’t complete the operation because some data in “Session Strings Pro020.nkx” can’t be read or written.
    (Error code -36) '
    My mistake it's error code -36!
    I've tried copying to my internal and external harddrives.
    The file that fails to copy is 1.05gb it copies just 250mb of it before stopping.

Maybe you are looking for

  • Videos on MacBook Pro

    When I open iMovie 09 I have a few problems, so thought I would ask for some assistance (from the experts). While I login and imovie VIDEOs is selected under Library I am waiting for the current project to load I get a 1-5 minute beachball with pop u

  • How do I keep movies on my Iphone, but delete them from my computer as well?

    I've got a computer with limited hard drive space left due to an exhaustive game library. As such, I can only 'afford' to fit maybe 8 gigs (2 or so) worth of media downloads on it. And suffice to say, downloading media with my computer is much prefer

  • Help creating a new project in JE8.1

    Hello, As I am very new to JAVA and the IDE I am having problems creating a new project using JE8.1. The problem that I am having is when I try to create a new project the only option under the "standard" folder is for me to create a project using an

  • Lack of modularity in Projects for EJB module

    Problem For a project you have many enterprise bean components. In JDeveloper, currently, all the information like persistence-type, resource-reference, etc reside in the ejb-jar.xml which is project specific. (1) In the real-world, developers work o

  • Early 2011 macbook pro, windows 8.1 bootcamp crashes

    Hi, I have some problems with running windows 8.1 on my macbook. I have managed to manipulate Bootcamp so I can create a bootable USB, the installation went fine and windows is booting correctly. The problem I have is with the installation of the boo