Using APD in SAP BW 3,5

Hi,
Does anyone know if there is a possibility to keep the data in an transactional ODS when running an APD ?
Normally the target will be emptied when the process starts but I 'd like to keep it until it is time to update the target with new data.
Thanks,
Björn

Hi,
I'm sorry but there is not a possibility. You must create a new ODS when you store all data.
Regards,

Similar Messages

  • How to transpose the data records (rows) to column(lists) using apd

    Hi,
      how to transpose the data records (rows) to column (lists) using apd  in sap bw.
    I do not want to use abap routine.only use the transpose rows to list  transformation .
    Pls provide the step by step procedure .
    thanks,
    Nimai

    Save youe file to transpose as a csv and in the header row of your file for the columns you want to transpose you need to put some soer of a tag before the column name (ie your colum header was for a period budget will be something lie 2011001:ZFIBDD)
    1. You will need to create a new apd process (rsanwb)
    2. Insert a "Read from Data File" data source object and map it file (,csv)
    3. insert a transpose object into your apd process (middle row 4th one over in the transformations section)
    4. under the definition tab in the transformation object select all the columns that are to be transposed into rows and move them to the transformed area, the grouping fields section should contain the rows that you want to now be columns
    5.under the transformation tab enter in the seperator you selected  under the Field Name/Infoobject area (ie. ZFIBDD)
    6. under the details tab  you need to enter in all the fields to be transformed and tner the transposition field (ie ZFIBDD)
    7. Then you can insert a set of transformations and a DSO and link the newly transposed fields into that.
    hope that helps

  • Crystal report using ABAP from SAP ECC6.0 EHP 3.0

    Hi Gurus,
    Can i create crystal report using ABAP in SAP ECC 6.0 EHP 3 . as i am not able to see this link in SPRO.
    IMG > SAP NetWeaver > Application Server > SAP List Viewer > Maintain SAP GUI Specific Settings.
    Kindly guide me urgently.

    http://help.sap.com/saphelp_slc/helpdata/en/27/c9ee1951fc4fb9ac322ac7e6fa7372/content.htm
    If I understood your question correctly.
    Have a look in the link above.
    It is possible to use Crystal Reports from ALV.
    Tammy Powlas also has some good guides on how to do this.
    The ABAP however is not covered that much.
    Best Regards
    Ingrid

  • XI message status at Adapter engine level using a table (SAP table)

    Hello Experts,
    XI message status at Adapter engine level using a table (SAP table).
    We want to write a custom report using ABAP so Pls tell why the status u2018Holdingu2019 and u2018To be deliveredu2019 are present in message monitoring of RWB but not in the status (MSGSTATE) field of SXMSPMAST table.
    My need is to write a report to get the messages based on the these status from table level.
    Please let me know the table name and field name for this and the table name for the desciption of the status of XI messages at Adapter level.
    Thanks
    Gopesh

    Hi Gopesh,
    the Adapter Engine Messaging System messages are on the Java schema,
    i.e., see the following -
    [XI/PI tables|https://www.sdn.sap.com/irj/scn/wiki?path=/display/xi/xi+tables]
    Regards
      Kenny

  • Using the HTML SAP GUI inside the Enterprise Portal?

    Hello everyone
    In our company we plan to set up the SAP Enterprise Portal (NetWeaver 7.0). The first application we want to provide inside the portal is the SAP GUI that connects to our SAP ERP 2005 system via single sign on. Therefor two different approaches exist:
    1: Using the standard SAP GUI inside a portal iView. In this case every client pc needs the SAP GUI installed.
    2: Using the HTML SAP GUI. In this case we have to set up the integrated ITS in our SAP ERP system.
    Now I have some questions about the second approach. Is the functionality of the HTML GUI equal to the functionality of the standard GUI? If not, what are the restrictions? How high is the additional load on the network and SAP ERP system caused by the HTML GUI? Would you recommend this approach for a system with more than thousand SAP users?

    Hi Marc,
    At least if you consider using webgui, you should test the transactions properly as there are some issues for example with scandinavian characters and lines visible in lists of search helps.
    Also you might want to consider the limitations of the screen resolutions and space which the portal framwork already takes from the gui. This of course is a topic for both HTML/SAP GUI's.
    Kind regards,
    Ville

  • How to know where the user exits or enhancement used in standard sap code?

    Hi
    I m pretty new to abap.
    How can I know where the user exits or enhancement used in standard sap code?
    As i have to add some functionality to the standard sap code. I m looking to search the enhancement or user exits used in this standard code wher i can add my functionality.
    thanks in advance.
    Moderator message : Search for available information, thread locked.
    Edited by: Vinod Kumar on Oct 19, 2011 2:38 PM

    Hi Henry,
    I don't think this is the easiest way to look at the code around a particular field on the screen. Debugging standard programs also can be very tedious, if not impossbile. So, instead of this question, I would like to find out exactly what you want to do if you know the code.
    If you are in a transaction and you want to know where the code of a particular field is, the fastest way to get to it is by pressing the F1 key on the field and then press the Technical info button on the help screen. In here you will typically see the same kind of information but it is very specific to the field you selected.
    PROGRAM(SCREEN) tells you which program is manipulating the main screen, in which your field is embedded. Remember your field may be included in a sub-screen and that subscreen may be the one included in the main screen.
    PROGRAM(SUB SCREEN) tells you which program is directly responsible for the field on the subscreen it is included in. This is where you should find the code most appropriate for the field, but not necessarily.
    PROGRAM(GUI) controls how your push buttons and the menu options in the screen behave and controlled.
    Srinivas

  • How to retrieve data from a function module and use it in sap script??

    I have a report program, which calls a function module. This function module internally calls an include program. In this program, I have a variable which is to be used in the sap script. How can I send this variable to the sap script

    Hi,
    In your case, Include prog is part of FM, no need to treat it as an Entity.
    Now, Your Answer -
    In SCRIPT - IN Page Window -->
         PERFORM GET_MVAT_TIN IN PROGRAM Z_SCRIPT_PERFORMS_ABAPDB3
         USING &VBDKR-KUNRE&
         CHANGING &STCD1&
         CHANGING &STCD2&
         ENDPERFORM
         IF &STCD1& <> ' '
         <B>MVAT Number :</> &STCD1&
         ENDIF
    Then go to SE38 --> Creat prog with type - Subroutine pool
    In that Write FORM statement for this PERFORM.
    FORM get_mvat_tin TABLES inttab STRUCTURE itcsy
                             outtab STRUCTURE itcsy.
      DATA : v_kunre TYPE kna1-kunnr,
             v_stcd1 TYPE kna1-stcd1,
             v_stcd2 TYPE kna1-stcd2.
      LOOP AT outtab.
        CLEAR outtab-value.
        MODIFY outtab.
      ENDLOOP.
      READ TABLE inttab INDEX 1.
      v_kunre = inttab-value.
      IF v_kunre CA sy-abcde.
      ELSE.
        UNPACK v_kunre TO v_kunre.
      ENDIF.
       " Here You can take your Funcion module ***************************
      SELECT SINGLE stcd1 stcd2 FROM kna1 INTO (v_stcd1, v_stcd2)
                                         WHERE kunnr = v_kunre.
      IF sy-subrc = 0.
        READ TABLE outtab INDEX 1.
        WRITE v_stcd1 TO outtab-value.
        MODIFY outtab INDEX 1.
        READ TABLE outtab INDEX 2.
        WRITE v_stcd2 TO outtab-value.
        MODIFY outtab INDEX 2.
      ENDIF.
    ENDFORM.                                

  • Could you let me know how to enable and use ITS on SAP ECC5  and ECC6

    Could you let me know how to enable and use ITS on SAP ECC5  and ECC6

    Hello Tina,
    please see here
    in tree select "Installation and Activation"
    <a href="http://help.sap.com/saphelp_nw70/helpdata/en/4f/2e6a52c3cdc44d83169b181a9c62ba/frameset.htm">http://help.sap.com/saphelp_nw70/helpdata/en/4f/2e6a52c3cdc44d83169b181a9c62ba/frameset.htm</a>
    <a href="http://help.sap.com/saphelp_nw70/helpdata/en/b8/2a8d65be7eee4eb66067f8a33d1c8b/frameset.htm">http://help.sap.com/saphelp_nw70/helpdata/en/b8/2a8d65be7eee4eb66067f8a33d1c8b/frameset.htm</a>
    best regards

  • Stock Snapshot using APD

    Hello all,
    Overview
    I have requirement to get monthly snapshot of stock for all Materials, Plants and other characteristic combination. "How to... Inventory guide" mentions about using snapshot ODS and then snapshot cube.
    Analysis
    I would like to avoid using "How to" and replace that with APD.
    I would create a Query on 0IC_C03 infocube and then using APD Monthly I would create the snapshot recordset for all Materials, Plants and other characteristic combination .
    I have already looked at various OSS notes including 751577 - APD-FAQ: Data source query.
    Questions
    1)Will Query as source work for APD work with large volumes of data?
    2). If Yes is there is a limitation what volume of records with the Query using APD feeding to transactional ODS can be handled.Our client will have the one of the highest volumes of records?
    At the moment we are on BW 3.5.
    Please let me know if you have any experience and thought about this.
    Thanks
    TK

    Hi Mansi,
    Thanks for the reply.
    Scenario : I have data in Standard DSO ,I want to send the data to CRM system from BI.
    1 ) yes, I have seen the CRM icon in targets , but I am not able to connect both BI and CRM system, please let me know what transformations option should I use, because I donu2019t want to do any calculations here , just I want to transfer the data from BI to CRM.
    2 ) I have clicked the DSO option in the T-code RSANWB , here I have selected the standard DSO (Drag and Drop) and selected the CRM icon , I have connected both by black arrow sign and Transfer Rule icon in the middle.
    3 ) After drag and Drop the DSO , I have right click the DSO and selected properties ,here I am able to see the info objects (under Selected Char).If I right click the CRM icon (i can see the description name for CRM) and select Properties , it is asking log in ID and password to CRM server , after that I am able to see u201CDescription which I have givenu201D , u201CLogical Systemu201D and u201CData Targetu201D.
    I donu2019t what to mention here in the options?
    Thanks,
    Nithi.
    Pls guide me , if I have missed out any steps.

  • What requirements need to use IE8 in SAP?

    Hi,
          Our systems are on ERP 5.0 SP22, Netweaver 640. The company that I work wants to upgrade Internet Explorer from 7 to 8.
    What requirements I need to use IE8 in SAP?
    Thanks for the help!!!

    I think IE 8.0 is only supported by the latest portal SP's. However, you should be able to find an exact answer by reviewing the Product Availability Matrix for the SAP Components you have.
    Just go to http://service.sap.com/pam
    This is a link you'll always need to reference here and there.
    Regards,
    Tom

  • How to use Net use command in SAP

    Dear All,
    Any one knows how to user Net use command in SAP to connect to other system  i have Created in SM69. when i am executing the program it is asking login Details of other system.
    Regards
    SNB

    Hi,
    What is the exact command you exceuting?
    Message was edited by:
            Pavel sheynkman

  • Using 2 data (SAP Netweaver BW) connections in Xcelsius dashboard

    I have a situation when using 2 data (SAP Netweaver BW) connections in Xcelsius dashboard.
    Break-down of issue:
    I have a toggle button in our Sales dashboard which displays Top Ten Customers versus Bottom Ten Customers.  I use the value of the toggle button to trigger the data connections.  When a user clicks the toggle button for Top Ten Customers the value of the toggle button would be a 1 which would trigger a BW query to capture sales data for the Top Ten Customers.  When a a user clicks the toggle button for Bottom Ten Customers the value of the toggle button would be a 0 which would trigger a BW query to capture sales data for the Bottom Ten Custoemrs.  NOTE: all the key figures in both querys use a scaling factor of 1000.  So for example, if invoiced sale has a value of 100,000 the scaling factor of a 1000 would display this key figure with a value of a 100.  The issue I am having with the dashboard is when I click the toggle botton for the Top ten Customers, the value shows as 100 and if i click the toggle button for Bottom ten Customers the value would show as 100,000.  I need the toggle button to show the values using the scaling factor coming from the BW queries for both Top Ten Customers and Bottom Ten Customers. It's only using the 1000 scaling factor coming from the Top Ten Customers.
    Any help on this issue would be graetly appreciated... 
    Thanks,
    Joe

    Hi, I get both. I think the errors are connected. On the one hand it is not possible to create any SAP NetWeaver BW connection, because you cannot enter the connection details- just as in the screen above. The only option you have is to use the "browse" button, but then the blank error appears.
    When trying to open a Dashboard from Portal you have to use SAP->Open and then SAP GUI should appear, but here I get the error "Could not open from SAP" instead. I have installed BEx and SAP GUI of course, reinstalled all of them two times just as recommended above, also reinstalled MS Excel, Flash, Java. Furthermore I tried to repair the installation and to change between different editions, personal, departmental etc.
    In the meantime I think it should not be possible at all to connect to BW with the departmental license key. Can somebody confirm that?

  • Update BUT000 attributes using APD

    Dear All,
    I need to update attributes of BUT000 directly using APD. Can anyone suggest how do i go about.
    I have already created the necessary query but i am not sure What Data Taget i have to use.
    Plz help.
    Regards,
    SS

    Hi,
    Please specify what is BUT000. Is it infoobject. Do you have any specific pseudo logic to update it.
    You can use joins, routine etc to update it.
    Regards,
    Pravin

  • Suppressing zero rows using APD

    Hello,
    We are using APD to create a .csv file extract which is posted on the BW server. This file is created via APD using a query which in turn is loaded into a DSO. This data is then outputted into a .csv file. The problem is that we have a huge file, of which much of the rows contain zeros. Is there any way that the zero rows can be removed either before the datas is loaded into the DSO or during the extract from the DSO to the flat file. I cannot see any way to do this through APD functionality. Any help with this would be graetly appreciated,
    many thanks,
    Dave

    Hi David,
                   Actually there is an option of appliying transformations in APD.There is a transformation type of ABAP routine which you can directlr drag and drop directly.So once getting the CSV file then apply transformations on it.I think you can try this way.This is my view.
    Hope this helps
    Regards
    Karthik

  • HR Master Data Use for other SAP Modules?

    Which part of SAP HR Master Data can be used by various SAP modules including PP, SD, MM, PS, FI, etc?
    Expecting expert input!

    Which part of SAP HR Master Data can be used by various SAP modules including PP, SD, MM, PS, FI, etc?
    Expecting expert input!
    Hi
    The following may be useful try this out
    PP try this tcode and surf on HRMS-CR02 there u can bring the pernr to workcentre
    SD Try T Code VPE1 and u can assign the sales personnel using pernr
    MM Try T Code XK01 Create employee as vendor and u can use it for Vendor consignment goods via MSK3
    FI In fi u can create vendor like mm using FK01 for bulk amount distribution
    Hope it helps
    with regards
    partha

Maybe you are looking for

  • SSO and portal timeout  -- other bug?

    ...this is very probably related to the other post talking about SSO and portal timeout... I am having another weird issue with dotnet portlets that uses inline refresh (done automatically by dotnet accelerator) and SSO. When you let the portal sessi

  • How to change the text in default selection screen

    Hi,   I have created the default selection screen(using PNP Logical database) ,In that I wants to display 'Data Selection Period' instead of 'Period'. Please send me the related code. Thanks in advace mohan

  • Data Error in the Query Output

    Hi Experts Could you please advise me how to proceed.....and impact of Aggregates I had a Query based on a Multicube which in turn is based on 4 Infocubes IC1-North, IC2-South, IC3-EAST, IC4-WEST. I had Aggregates developed on IC1-North, IC2-South, I

  • F110 - Exclude / Include vendors based on payment Amount in payment run

    I have a requirement to make a vendor to appear in the exception list if the payment amount for the vendor (invoices are grouped together for payment) exceeds a certain limit. Can anyone explain me how can achieve this? Eg: Vendor A has 2 invoices of

  • MIRO...

    Hi all, We do return to vendor process thru Mvt type 161.We completed GRN and J1IS transaction. During MIRO CENVAT clearing account is not credited only VAT account is taken. Kindly suggest. Regards SAP MM user