Using PSA as a datasource in BI7 across systems

I have a scenario where the extraction takes place in one BW1 system and I would like to update a second BW2 system with the contents of the extraction contained in the PSA/DataSource from BW1.
The creation of a DataSource based on the PSA table is not the optimum solution. Is there another way to retrieve data collected in one system and move across system without creating a DataStore?
Thanks,
Celso

Could look at using APD.  It can read a flat table and output to a file (File output option may be with a recent SP, not sure it was there originally in 7.0) can output to a file.  APD would ley you filter or alter records if needed.   Not sure I would go this route, but I think it would work.

Similar Messages

  • Replicating Datasource in BI7 when there is data in PSA

    Hi all,
    We are working on CRM opportunities item data with 0CRM_OPPT_I datasource. There is a change is the mapping in BWA1 and we are moving the datasource to quality. Now as of BI7 if we replicate the datasource in quality the existing datasource in BI will become inactive and we need to activate the datasource once again. If the datasource contain PSA data in quality, how do we activate the datasource without impacting the existing data. Is there any different approach in BI7 with which we have to handle the replication of datasource and activation of datasource while moving across quality and production systems.
    Regards
    Vijay

    Tha datasource replication must be only made in DEV in Q you must transport the datasources....
    Regards

  • Donot extract from PSA. Access datasource directly (for small amts of data)

    Hi Experts,
    I am facing issue in DTP screen. I dont see File extraction selection path in DTP screen.
    My requirement is to load the csv file directly into DSO.  Here I dont use PSA /Infopackage.  I want to do this by DTP selection.  But in DTP selection I dont see File extraction options.
    In DTP screen I dont see Check Box which says " Donot extract from PSA. Access datasource directly (for small amts of data) "
    Last week we have upgrade/applied support packs.  So I am assuming that is this issue occured due to upgrade activity or it is something other way which iam missing.
    Appreciate your early response.
    Many thanks for your help.
    Regards,
    Saji

    Saji
    What is the location of your CSV file? Your Local machine or Application server ?
    I believe it has to be application server to have this settings.
    If you think this problem got created due to upgrade , you can try to create a FULL DTP for any of the master data/text DataSource and check if the option is coming there. If yes, then upgrade did not create any problem and you are sure this is a settings problem.
    Please check this thread....Do not Extract from PSA but Access Data Source (for Small Amounts of Data)
    Regards
    Anindya
    Edited by: Anindya Bose on Mar 10, 2012 10:23 AM
    Edited by: Anindya Bose on Mar 10, 2012 10:38 AM
    Edited by: Anindya Bose on Mar 10, 2012 10:38 AM

  • How to identify which process is using PSA?

    Hi all,
    Does anybody know if there is some way to identify all infopackages in my environment that are using PSA?
    Thanks in advance,
    Silvio Messias.

    Hi Guys, just to thanks you...
    I have created this ABAP program... Enjoy...
    *& Report  ZLIST_OF_IP_THAT_USE_PSA
    REPORT  zlist_of_ip_that_use_psa.
      Data declaration
    TABLES: rsldpsel, rsldpio.
    TYPES: BEGIN OF ty_rsldpsel,
             logdpid       TYPE rslogdpid,
             objvers       TYPE rsobjvers,
             lnr           TYPE rsnrchar,
             ziel          TYPE rsziel,
             ziel_text(40) TYPE c,
             source        TYPE rsisource,
             logsys        TYPE rsslogsys,
             oltpsource    TYPE rsisource,
           END OF ty_rsldpsel,
           BEGIN OF ty_rsldpio,
             logdpid       TYPE rslogdpid,
             objvers       TYPE rsobjvers,
             source        TYPE rsisource,
             logsys        TYPE rsslogsys,
             oltpsource    TYPE rsisource,
           END OF ty_rsldpio.
    DATA: l_is_rsldpsel TYPE STANDARD TABLE OF ty_rsldpsel,
          l_ih_rsldpio  TYPE HASHED   TABLE OF ty_rsldpio
                        WITH UNIQUE KEY logdpid objvers.
    FIELD-SYMBOLS : <ls_rsldpsel> TYPE ty_rsldpsel,
                    <ls_rsldpio>  TYPE ty_rsldpio.
    RANGES: rg_ziel FOR rsldpsel-ziel.
    Processing data...
    PARAMETERS : psa_used AS CHECKBOX DEFAULT 'X'.
    START-OF-SELECTION.
      PERFORM collect_data.
    END-OF-SELECTION.
      PERFORM display.
    *&      Form  COLLECT_DATA
          Collecting database information
    FORM collect_data.
    Valid range of ZIEL
      CLEAR: rg_ziel, rg_ziel[].
      rg_ziel-sign   = 'I'.
      rg_ziel-option = 'EQ'.
      rg_ziel-high   = space.
      rg_ziel-low    = 1.  APPEND rg_ziel.
      rg_ziel-low    = 2.  APPEND rg_ziel.
      rg_ziel-low    = 3.  APPEND rg_ziel.
      IF psa_used IS INITIAL.
        rg_ziel-low = 4.  APPEND rg_ziel.
      ENDIF.
    Selection all INFOPACKAGES that are using PSA tables
      SELECT logdpid objvers lnr ziel
        INTO TABLE l_is_rsldpsel
        FROM rsldpsel
        WHERE objvers EQ 'A'
          AND ziel IN rg_ziel.
      IF sy-subrc EQ 0 AND l_is_rsldpsel[] IS NOT INITIAL.
        DELETE ADJACENT DUPLICATES FROM l_is_rsldpsel COMPARING logdpid.
    Selecting data from RSLDPIO
        SELECT logdpid objvers source logsys oltpsource
           FROM rsldpio INTO TABLE l_ih_rsldpio
           FOR ALL ENTRIES IN l_is_rsldpsel
           WHERE logdpid EQ l_is_rsldpsel-logdpid
             AND objvers EQ l_is_rsldpsel-objvers.
      ENDIF.
      LOOP AT l_is_rsldpsel ASSIGNING <ls_rsldpsel>.
        CASE <ls_rsldpsel>-ziel.
          WHEN 1.
            <ls_rsldpsel>-ziel_text = 'Only PSA'.
          WHEN 2.
            <ls_rsldpsel>-ziel_text = 'PSA in parallel mode'.
          WHEN 3.
            <ls_rsldpsel>-ziel_text = 'PSA and after that to Infoprovider'.
          WHEN OTHERS.
            <ls_rsldpsel>-ziel_text = 'Directly to Infoprovider'.
        ENDCASE.
        READ TABLE l_ih_rsldpio ASSIGNING <ls_rsldpio>
        WITH TABLE KEY logdpid = <ls_rsldpsel>-logdpid
                       objvers = <ls_rsldpsel>-objvers.
        IF sy-subrc EQ 0 AND <ls_rsldpio> IS ASSIGNED.
          <ls_rsldpsel>-source     = <ls_rsldpio>-source.
          <ls_rsldpsel>-logsys     = <ls_rsldpio>-logsys.
          <ls_rsldpsel>-oltpsource = <ls_rsldpio>-oltpsource.
        ENDIF.
      ENDLOOP.
    ENDFORM. " collect_data
    *&      Form  DISPLAY
          Displaying database information
    FORM display .
      TYPE-POOLS: slis.
      DATA: gt_fieldcat TYPE slis_t_fieldcat_alv,
            gs_layout   TYPE slis_layout_alv.
      PERFORM fieldcat_init USING gt_fieldcat[].
      PERFORM layout_init USING gs_layout.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program = 'Z_DB_ENTRIES_COUNTER'
          is_layout          = gs_layout
          it_fieldcat        = gt_fieldcat[]
        TABLES
          t_outtab           = l_is_rsldpsel.
    ENDFORM.                    "DISPLAY
    *&      Form  fieldcat_init
    FORM fieldcat_init USING lt_fieldcat TYPE slis_t_fieldcat_alv.
      DATA: ls_fieldcat TYPE slis_fieldcat_alv.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname    = 'LOGDPID'.
      ls_fieldcat-datatype     = 'C'.
      ls_fieldcat-seltext_l    = 'InfoPackage (ID)'.
      ls_fieldcat-seltext_m    = 'InfoPackage (ID)'.
      ls_fieldcat-seltext_s    = 'InfoPackage (ID)'.
      ls_fieldcat-reptext_ddic = 'InfoPackage (ID)'.
      ls_fieldcat-key          = 'X'.
      APPEND ls_fieldcat TO lt_fieldcat.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname    = 'SOURCE'.
      ls_fieldcat-datatype     = 'C'.
      ls_fieldcat-seltext_l    = 'InfoSource'.
      ls_fieldcat-seltext_m    = 'InfoSource'.
      ls_fieldcat-seltext_s    = 'InfoSource'.
      ls_fieldcat-reptext_ddic = 'InfoSource'.
      ls_fieldcat-key          = ' '.
      APPEND ls_fieldcat TO lt_fieldcat.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname    = 'LOGSYS'.
      ls_fieldcat-datatype     = 'C'.
      ls_fieldcat-seltext_l    = 'Source System'.
      ls_fieldcat-seltext_m    = 'Source System'.
      ls_fieldcat-seltext_s    = 'Source System'.
      ls_fieldcat-reptext_ddic = 'Source System'.
      ls_fieldcat-key          = ' '.
      APPEND ls_fieldcat TO lt_fieldcat.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname    = 'OLTPSOURCE'.
      ls_fieldcat-datatype     = 'C'.
      ls_fieldcat-seltext_l    = 'Datasource'.
      ls_fieldcat-seltext_m    = 'OLTPSOURCE'.
      ls_fieldcat-seltext_s    = 'OLTPSOURCE'.
      ls_fieldcat-reptext_ddic = 'OLTPSOURCE'.
      ls_fieldcat-key          = ' '.
      APPEND ls_fieldcat TO lt_fieldcat.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname    = 'ZIEL_TEXT'.
      ls_fieldcat-datatype     = 'C'.
      ls_fieldcat-seltext_l    = 'Type of processing'.
      ls_fieldcat-seltext_m    = 'Type of processing'.
      ls_fieldcat-seltext_s    = 'Type of processing'.
      ls_fieldcat-reptext_ddic = 'Type of processing'.
      ls_fieldcat-key          = ' '.
      APPEND ls_fieldcat TO lt_fieldcat.
    ENDFORM.                    "fieldcat_init
    *&      Form  layout_init
    FORM layout_init USING ls_layout TYPE slis_layout_alv.
      ls_layout-zebra             = 'X'.
      ls_layout-colwidth_optimize = 'X'.
    ENDFORM.                    "layout_i

  • DISADVANTAGE OF USING PSA?

    Hi Everyone,
    Can anybody tell me what is the disadvantage of using PSA ?

    Hi........
    As disadvantage of PSA u can say...........
    1) Memory space will be occupied..........
    2) Diplication of same records in the BI side.............ie PSA and agsin in Data targets.........
    But still I will say............loading through PSA is good.............since.........if something goes wrong.......and suppose u hav to load the data again.........no need to do the Extraction again..........data will be in BI side only.........it will save time.............Moreover .........if someone by mistake delete the data from the target........data will not be lost...............since there is a back up in PSA..............
    If u want save the memory space.............Just everyday delete PSA records older than 10 days...........If there r many datasources.............just create a Process chain.............and run it end of the day............ie completion of the loads............then it will solve ur problem........
    Regards,
    Debjani.......

  • How to Upload data without using PSA layer

    Hi Colleagues,
    I would like to apply LSA architecture principals.
    Is it possible to upload data from SAP source system or NON-SAP source system directly in a Write Optimized DSO without have to use the PSA layer ?
    And if yes how ?
    Thanks

    Hi Peter,
    We donot have any option for skipping the PSA loading in BI7.
    If you are working with BW3.5, then yes we can load the data directly without using PSA. Goto  IP>Processing Tab> Select the radio button Data Targets only--> When you schedule the IP, data will be directly loaded to Data Target without using PSA.
    Hope it helps!
    Rregards,
    Pavan

  • Java.lang.Exception: Attempted to use a 5.0 DataSource outside of a 2.3 ser

    Receiving error message: java.lang.Exception: Attempted to use a 5.0 DataSource outside of a 2.3 Servlet
    The application worked fine with 2.2 servlet version and data source 4.0
    But i need to add some filter in web.xml so
    I changed the servlet version in my web.xml from
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> to
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
    and created a data source version 5 in websphere server 6.0.0.1
    After that it is throwing the above mentioned error. pls help me on this.
    Thanks

    Is there anything i need to change in my application.xml
    <!DOCTYPE application PUBLIC "-//Sun Microsystems, Inc.//DTD J2EE Application 1.2//EN" "http://java.sun.com/j2ee/dtds/application_1_2.dtd">

  • How to use ABAP program as datasource

    I want to use one program as datasource. Pls let me know if it is possible and how to use it. Many thanks!

    Hi Awa,
    It's regarding your questions..
    Yes you can make it ..
    You can create your data source program in your source system such as R/3, CRM, etc.
    There is template function that can be used for your program:
    RSAX_BIW_GET_DATA_SIMPLE.
    You can use that template, and alter the code as your business requirement.
    There are also blog, and tutorial as your references:
    Generic Extraction via Function Module
    http://help.sap.com/saphelp_nw04/helpdata/en/3f/548c9ec754ee4d90188a4f108e0121/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/86/1c8c3e94243446e10000000a114084/frameset.htm
    Hopefully it can help you a lot.
    Regards,
    Niel.

  • Using Excel as a Datasource

    I created a report that will use Excel as a datasource. The report runs fine from my desktop. I would like to place this report on the Business Objects Server. Can anyone tell me what I would need to do in regards to the excel file.
    In addition to this issue, when I moved the excel file to a shared folder and reconfigured the system dsn, the report would not run. I received an error message: could not decrypt data. Any help would be appreicated. Thanks.

    Hi
    Put the excel file on a network drive which is accessible by the server.
    Create a Crystal Report using the Access/Excel DAO connection based on the above excel file.
    Save it to the enterprise.
    Hope this helps!!
    Regards
    Sourashree

  • Using Vertica as a datasource in Aldsp

    Hi,
    We are trying to develop a Demo Portal using Weblogic Server, ALDSP as Xquery Engine and Vertica as the database.
    We are able to successfully create a connection pool on the Weblogic server using vertica as the datasource.However while trying to create a PhysicalDS file in ALDSP,no option is populated while selecting Database Type and after a few attempts we get the message that Maximum Capacity of Connection Pool is exceeded.Please help us solve this issue.
    regards,
    Nithya

    I'd like to see your JDBC code for getting, using, and closing the connection you get from the
    DataSource. Offhand, it sounds like a simple coding error where you neglect to close your
    pool connection in some/all cases, which will leak the pool till it's empty.

  • How to create Entity objects using xml as a datasource

    Hi All,
    How to create EO(ADF Business components) using XML as a datasource instead of database tables..Pls do reply..Its an urgent requirement
    Thanks in Advance
    Edited by: 1000899 on Apr 25, 2013 12:01 AM
    Edited by: 1000899 on Apr 25, 2013 12:02 AM

    There is nothing 'urgent' in this forum. We are all volunteers spending our spare time helping out other users. If you have an urgent matter, you have to open an SR with sopport.oracle.com
    If it's urgent, then why don't you provide information needed to answer the question.
    Which jdev version do you use?
    What is the use case?
    To answer your question: A look into the docs http://docs.oracle.com/cd/E35521_01/web.111230/e16182/bcadvvo.htm#sm0341 and http://docs.oracle.com/cd/E35521_01/web.111230/e16182/bcadvvo.htm#sm0338 holds the answer to it.
    Timo

  • XLSQL for using Excel (XLS) as datasource in VC

    Hi Benjamin,
    Hope you are having a good day. I know its been a while since you worked on this piece ([url] DATE issues when using BI JDBC Excel datasource in VC;url] ) but we are trying to do the same thing you had done. Use xlSQL to connect to an excel file as a datasource for VC modeling.
    We want to use the BI Java connector. I have loaded the JAR files and when we get to the Manage Connections, not sure what we enter for the Driver, URL, Schema, username and Password.
    What I now see if that the Connection Test (for the BI JDBC system) works fine with the following:
    Driver: com.nilostep.xlsql.jdbc.xlDriver
    Connection URL (Unix box): jdbc:nilostep:excel:/reports/spec (this is the folder where I have the xls file)
    FixedSchema: (should my excel file name go in here?)
    FixedCatalog: (should my excel sheet name go in here?)
    Username: none used
    Password: none used
    When I do all of this and search for TABLES in VC on that system, it says None found. Any light shed on this would be very helpful.
    Thanks,
    BR

    Hi,
    The most important guideline we used was this document:
    How Tou2026Configure a BI JDBC System for Visual Composer Version 1.03 u2013 March 2006
    LINK: http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/6209b52e-0401-0010-6a9f-d40ec3a09424?quicklink=index&overridelayout=true
    Follow all the steps... Some remarks about the steps in this document:
    Step 7: add all additional .jar files that are in the /lib folder of the xlsql driver package
    Step 11 - 14:  ... skip this, after step 15 restart the whole j2ee cluster, this is really needed to load the .jar files
    Step 15: although optional and not the configuration you need to get it working for VC it is handy to configure this as it allows you to use the JDBC test page for debuging etc.
    The only 2 parameters you need to configure with this step is:
    Driver: com.nilostep.xlsql.jdbc.xlDriver
    Connection URL: jdbc:nilostep:excel:/reports/spec/
    ...Now restart the j2ee cluster...
    After the restart you can use the following url to see if the driver works: http://<hostname>:<port>/TestJDBC_Web/TestJDBCPage.jsp
    Continue the configuration to allow VC to access the driver you need to configuer a System object in the portal...
    Follow Step 16 an onwards...
    Step 26: Again only fill in the following:
    Driver Class name: com.nilostep.xlsql.jdbc.xlDriver
    Connection URL: jdbc:nilostep:excel:/reports/spec/
    Step 29,30 and 34,35: Usermaping Type can be left untouched
    Additional step (do this after step 33): To make the system visible in VC you must set the portal permission for the user that use VC to Read + Enduser. Also when used in runtime later the enduser should have Read+ Enduser permission to use the system object. We used the built-in group Authenticated User for this and set the permissions on this group to Read+Enduser.
    This should do the trick...
    FAQ 1 - after uploading a new (or overwriting an existent) XLS file to the folder the changes are not visible, how to solve this?
    ANSWER 1 -  restart the JDBC connector via /nwa > manage > applications > (search for jdbc) > Stop / Start
    FAQ 2 - after deleting a XLS file the data is still querieable, even after the restart of the jdbc driver?
    ANSWER 2 - this is some kind of caching bug, deleted files are only deleted when you restart the J2EE engine.
    FAQ 3 - after a restart of the jdbc driver, the first query firred in VC returns an error.
    ANSWER 3 - this is because the first time the XLS files are read and writen into a HSQLDB in memory database, this takes more time. after this the calls are made on this in-memory-copy of the XLS data.
    Hope this helps you...
    Cheers,
    Benjamin Houttuin
    Edited by: Benjamin L.F. Houttuin on May 26, 2011 8:04 PM

  • Error using Excel as a DataSource for Report Builder 3.0 - ODBC connection

    Hi,
    I'm getting this error message below while trying to use excel as a datasource within Report Builder 3.0.  I can see the columns and rows but unable to display/run the report.  Using Excel 32 bit and have the driver and user dsn created under c:/windows/syswow64/odbcad32.
    ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified

    Hi Cherise,
    Vishal's link looks good.
    I have commercial experience in migrating Crystal Reports to SSRS. When performing any type of migration it is always wise for the business requirements to be revisited. It is likely that the business requirements may have changed since the Crystal reports
    were initially developed, etc.
    I've done some research for you and the following link looks quiet impressive and offers a cheap trial, in terms of a direct migration. Please tell me how you get on; - 
    http://www.sqlcircuit.com/2013/08/ssrs-how-to-create-report-using-excel.html
    I emphasis again I have commercial experience of lots of migration projects and it would be very unwise to not revisit the business requirements as part of the migration process.
    Kind Regards,
    Kieran.
    Kieran Patrick Wood http://www.innovativebusinessintelligence.com http://uk.linkedin.com/in/kieranpatrickwood http://kieranwood.wordpress.com/

  • Attempted to use a 5.0 DataSource outside of a 2.3 servlet

    I am using WAS 5.0 with Oracle 9.2 . I cannot get a servlet to work with the datasource 5.0 . Any ideas??
    The message I get is :
    [2/26/04 11:17:28:984 GMT-06:00] 20bfba44 Helpers W NMSV0610I: A NamingException is being thrown from a javax.naming.Context implementation. Details follow:
    Context implementation: com.ibm.ws.naming.jndicos.CNContextImpl
    Context method: lookup
    Context name: localhost/nodes/localhost/servers/server1
    Target name: jdbc/WMBDatasource
    Other data:
    Exception stack trace: com.ibm.websphere.naming.CannotInstantiateObjectException: Exception occurred while the JNDI NamingManager was processing a javax.naming.Reference object. Root exception is java.lang.Exception: Attempted to use a 5.0 DataSource outside of a 2.3 servlet
         at com.ibm.ws.naming.jndicos.CNContextImpl.lookup(CNContextImpl.java:1179)
    My Servlet code is :
    public class SimpleServlet extends HttpServlet {
         public void doGet(HttpServletRequest req, HttpServletResponse resp)
                                                 throws ServletException, IOException
         javax.sql.DataSource ds = null;
         java.sql.Connection con = null;
         java.io.PrintWriter out = resp.getWriter();
         resp.setContentType("text/html");
         try
         out.println("Looking up DataSource<br>");
         javax.naming.InitialContext ctx = new javax.naming.InitialContext();
         ds = (javax.sql.DataSource) ctx.lookup("jdbc/WMBDatasource");
         out.println("Getting connection<br>");
         con = ds.getConnection();
         con.close();
         catch (Exception e)
         e.printStackTrace(out);
         out.println("Done<br>");

    hi vijay ,
    i am using wasd5.1 ,and i am trying to access database thru datasource and i had created one javawebapplication and one server(test enviroument with data source ), and i had created this class inside web application, and i am running this class as a java application , but i am getting output like
    Before Context
    After Context
    In Exception
    com.ibm.websphere.naming.CannotInstantiateObjectException: Exception occurred while the JNDI NamingManager was processing a javax.naming.Reference object. [Root exception is java.lang.Exception: Failed security check.  Client is not permitted to create connection factory jdbc/db]
    please help me to get out of this problem
    /*please see code first*/
    import java.sql.SQLException;
    import java.util.Properties;
    import java.sql.Connection;
    import javax.naming.*;
    import javax.sql.DataSource;
    import java.sql.DriverManager;
    import java.util.*;
    public class checkclass
         //private static String OWD2_DATASOURCE ="jdbc/db";
         private static String INITIAL_CONTEXT_FACTORY "com.ibm.websphere.naming.WsnInitialContextFactory";
         public static void main (String args[])
              try{
              Hashtable jndiProperties = new Hashtable();
         jndiProperties.put(Context.INITIAL_CONTEXT_FACTORY,INITIAL_CONTEXT_FACTORY);
         jndiProperties.put(Context.PROVIDER_URL,"iiop://localhost:2809");
         jndiProperties.put(Context.REFERRAL, "throw");
         System.out.println("Before Context");
         javax.naming.Context ctx = new     javax.naming.InitialContext(jndiProperties);
                             System.out.println("After Context");
         DataSource ds = (javax.sql.DataSource)ctx.lookup("jdbc/db");
                             ctx.close();
         System.out.println("After DataSource");
         Connection con = ds.getConnection();
         System.out.println("After Getting Connection");
         con.close();
         System.out.println("After Closing Connection");
         catch(Exception e)
         System.out.println("In Exception");
         System.out.println(e);
    }

  • Whats the advantage of using  PSA instead of IDOC?

    Hi,
    Whats the advantage of using  PSA instead of IDOC in transfer methods?
    -Arun.M.D

    Hi Arun,
    PSA - Persistent Staging Area
    IDOC - Intermediate Document
    PSA is a temporary storing of all the data.
    IDOC is used as a intermediate document to trnasfer the data from one system to our BW systems.
    From PSA we can transfer 1600 bytes of data & by using PSA we can edit the data also.we can also rectify errors also through PSA,bcoz PSA is a subfunction of our SAP BW system.
    IDOC we can transfer only 1200 bytes of data & we cant rectify the errors if any,bcoz it is not a function of SAP BW.
    Regards,
    Lakshman.G

Maybe you are looking for

  • Mail - passwd.db problems

    Hi, I have a server running Mac OS X Server 10.5.8 and the Mail service has suddenly stopped working - no changes have been made via Server Admin or direct to the main.cf file.  The Log shows the following entries: Jul 10 20:01:46 <removed> postfix/s

  • MacOS X 10.5.2 Server still crashes when Airport is activated

    Hi, after updating to MacOSX 10.5.2. Server the problems with the airport card remains. I had already several system crashes, all with the following stack trace: Sun Mar 2 13:03:23 2008 Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x0000000

  • Java For Mac 10.5 Update 4 Ver. 1.0 Can't Install

    Running 10.5.7 on a Intel MacBookPro I get the above message when trying to install the Java update 4 ver 1.0. I quit all other apps including browsers. I have 16.08 GB space available. There is no explanation. It just has a red exclamation point and

  • Diff. between business process masterlist and business process procedurelis

    hello gurus, pls tell me the main difference between business process master list and business process procedure list so please help me in this matter. regards, muralidhar.t

  • 105101: non-ORACLE exception

    I have the following statment and it is throwing 105101: non-ORACLE exception. any idea how to resolve it?      DECLARE      l_filename VARCHAR2(10000);      l_filetype VARCHAR2(10);      l_trans BOOLEAN;      l_url varchar2(100) := 'c:\Sample.JPEG';