First time delta process for 2lis_13_vdkon in bw 3.5?

Hi all,
Till now the data was loaded through setup tables, and there is no delta process being setup for 2lis_13_vdkon.
Can anyone let me know how to carry out the delta process, so that the daily updates runs in the system rather than updating through a full update.
Thanks
Pooja

Hi Pooja,
Once you delete the setup table, it deletes the data for all the DataSources for the application area. In your case 13 (sales).
Then, initialise the setup table. Make sure there is no transaction happening when the initialisation run is executed.
Once the initialisation is complete in R/3 side, run the initialisation InfoPackage for the DataSource.
Next load onwards, all the data will be stored in the delta queue in case of direct delta and in the update queue in ccase of queued delta. In any case you will get the delta data. You might have to create a new InfoPackage for delta.
Roy

Similar Messages

  • Report which contain subreports is not rendered first time is processed.

    when I try to render report contains subreports from first time is not rendered but when i select regresh button the input screen is promb again and then i fill all input again and submit, as a result the report was rendered.
    why this happen? is this a know issue?

    after more testing that issue i discovered that when i try to render report of type "Table" then the report is rendered fom rthe first time i pass/set the input values of the report, but when i use reports of type "chart" the report is not rendered from first time and it need a refresh and then manually entering the values for the input.
    i am using the folloing version of JRC:
    com.businessobjects.sdks_.jrc_.11.8.0_11.8.5.v1197
    my code is a s follow:
    =========================
    <%@ page contentType="text/html; charset=utf-8" %><%@ page import="com.crystaldecisions.reports.sdk.ReportClientDocument"%>
    <%@ page import="com.crystaldecisions.report.web.viewer.*" %>
    <%@ page import="com.crystaldecisions.reports.sdk.DatabaseController" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.lib.ReportSDKException" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.lib.PropertyBag" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.data.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.lib.IStrings" %>
    <%@ page import="com.crystaldecisions.reports.sdk.ParameterFieldController" %>
    <%@ page import="com.crystaldecisions.reports.exportinterface.ExportFormatType" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.reportsource.IReportSource" %>
    <%@ page import="java.io.ByteArrayInputStream" %>
    <%@ page import="java.io.FileOutputStream" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.document.PrinterDuplex" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.document.PrintReportOptions" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.document.PaperSource" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.document.PaperSize" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.lib.ReportSDKExceptionBase" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.exportoptions.*" %>
    <%@ page import="java.io.OutputStream" %>
    <%@ page import="org.t2k.bl.reports.ReportsViewerManager" %>
    <%@ taglib prefix="lms_reports" tagdir="/WEB-INF/tags/lms/reports" %>
    <%!
    Utility method that demonstrates how to write an input stream to the server's local file system.
        private void writeToBrowser(ByteArrayInputStream byteArrayInputStream, HttpServletResponse response, String mimetype, String exportFile, boolean attachment) throws Exception {
            //Create a byte[] the same size as the exported ByteArrayInputStream.
            byte[] buffer = new byte[byteArrayInputStream.available()];
            int bytesRead = 0;
            //Set response headers to indicate mime type and inline file.
            response.reset();
            if (attachment) {
                response.setHeader("Content-disposition", "attachment;filename=" + exportFile);
            } else {
                response.setHeader("Content-disposition", "inline;filename=" + exportFile);
            System.out.println("aaaaaaaaaaaaaaaaaaaaaaaaaaaa");
            response.setContentType(mimetype);
            System.out.println("aaaaa1111");
            OutputStream outs = response.getOutputStream();
             System.out.println("aaaaa2222");
            //Stream the byte array to the client.
            while ((bytesRead = byteArrayInputStream.read(buffer)) != -1) {
                outs.write(buffer, 0, bytesRead);
            System.out.println("bbbbb");
            //Flush and close the output stream.
            outs.flush();
    //        outs.close();
            System.out.println("ccccc");
        /* Include the file AlwaysRequiredSteps.jsp, which contains the code to:
           - Create an Enterprise SessionMgr object
           - Log on to the CMS
           - Create an IInfoStore object
           - Query for and select a report
           - Create an IReportAppFactory object
           - Use the IReportAppFactory object to create a ReportClientDocument object with the IInfoObject that is retrieved from the query
    Logs on to all existing datasource
    @param clientDoc The reportClientDocument representing the report being used
    @param username    The DB logon user name
    @param password    The DB logon password
    @throws com.crystaldecisions.sdk.occa.report.lib.ReportSDKException
        public static void logonDataSource
                (ReportClientDocument
                        clientDoc,
                 String username, String
                        password
                throws
                ReportSDKException {
            clientDoc.getDatabaseController().logon(username, password);
    Changes the DataSource for each Table
    @param clientDoc The reportClientDocument representing the report being used
    @param username  The DB logon user name
    @param password  The DB logon password
    @param connectionURL  The connection URL
    @param driverName    The driver Name
    @param jndiName        The JNDI name
    @throws ReportSDKException
        public static void changeDataSource
                (ReportClientDocument clientDoc,
                 String username, String password, String connectionURL,
                 String driverName, String jndiName
                throws
                ReportSDKException {
            changeDataSource(clientDoc, null, null, username, password, connectionURL, driverName, jndiName);
    Changes the DataSource for a specific Table
    @param clientDoc The reportClientDocument representing the report being used
    @param reportName    "" for main report, name of subreport for subreport, null for all reports
    @param tableName        name of table to change.  null for all tables.
    @param username  The DB logon user name
    @param password  The DB logon password
    @param connectionURL  The connection URL
    @param driverName    The driver Name
    @param jndiName        The JNDI name
    @throws ReportSDKException
        public static void changeDataSource
                (ReportClientDocument
                        clientDoc,
                 String
                         reportName, String
                        tableName,
                                     String
                                             username, String
                        password, String
                        connectionURL,
                                  String
                                          driverName, String
                        jndiName
                throws
                ReportSDKException {
            PropertyBag propertyBag = null;
            IConnectionInfo connectionInfo = null;
            ITable origTable = null;
            ITable newTable = null;
            // Declare variables to hold ConnectionInfo values.
            // Below is the list of values required to switch to use a JDBC/JNDI
            // connection
            String TRUSTED_CONNECTION = "false";
            String SERVER_TYPE = "JDBC (JNDI)";
            String USE_JDBC = "true";
            String DATABASE_DLL = "crdb_jdbc.dll";
            String JNDI_OPTIONAL_NAME = jndiName;
            String CONNECTION_URL = connectionURL;
            String DATABASE_CLASS_NAME = driverName;
            // The next few parameters are optional parameters which you may want to
            // uncomment
            // You may wish to adjust the arguments of the method to pass these
            // values in if necessary
            // String TABLE_NAME_QUALIFIER = "new_table_name";
            // String SERVER_NAME = "new_server_name";
            // String CONNECTION_STRING = "new_connection_string";
            // String DATABASE_NAME = "new_database_name";
            // String URI = "new_URI";
            // Declare variables to hold database User Name and Password values
            String DB_USER_NAME = username;
            String DB_PASSWORD = password;
            // Obtain collection of tables from this database controller
            if (reportName == null || reportName.equals("")) {
                Tables tables = clientDoc.getDatabaseController().getDatabase().getTables();
                for (int i = 0; i < tables.size(); i++) {
                    origTable = tables.getTable(i);
                    if (tableName == null || origTable.getName().equals(tableName)) {
                        newTable = (ITable) origTable.clone(true);
                        // We set the Fully qualified name to the Table Alias to keep the
                        // method generic
                        // This workflow may not work in all scenarios and should likely be
                        // customized to work
                        // in the developer's specific situation. The end result of this
                        // statement will be to strip
                        // the existing table of it's db specific identifiers. For example
                        // Xtreme.dbo.Customer becomes just Customer
    //                    System.out.println(newTable.getQualifiedName() + "  -  " + origTable.getQualifiedName());
                        newTable.setQualifiedName(origTable.getAlias());
    //                    newTable.setAlias(origTable.getAlias());
                        // Change properties that are different from the original datasource
                        // For example, if the table name has changed you will be required
                        // to change it during this routine
                        // table.setQualifiedName(TABLE_NAME_QUALIFIER);
                        // Change connection information properties
                        connectionInfo = newTable.getConnectionInfo();
                        // Set new table connection property attributes
                        propertyBag = new PropertyBag();
                        // Overwrite any existing properties with updated values
                        propertyBag.put("Trusted_Connection", TRUSTED_CONNECTION);
                        propertyBag.put("Server Type", SERVER_TYPE);
                        propertyBag.put("Use ODBC", USE_JDBC);
                        propertyBag.put("Database DLL", DATABASE_DLL);
                        propertyBag.put("JNDIOptionalName", JNDI_OPTIONAL_NAME);
                        propertyBag.put("Connection URL", CONNECTION_URL);
                        propertyBag.put("Database Class Name", DATABASE_CLASS_NAME);
                        // propertyBag.put("Server Name", SERVER_NAME); //Optional property
                        // propertyBag.put("Connection String", CONNECTION_STRING); //Optional property
                        // propertyBag.put("Database Name", DATABASE_NAME); //Optional property
                        // propertyBag.put("URI", URI); //Optional property
                        connectionInfo.setAttributes(propertyBag);
                        // Set database username and password
                        // NOTE: Even if the username and password properties do not change
                        // when switching databases, the
                        // database password is not saved in the report and must be set at
                        // runtime if the database is secured.
                        connectionInfo.setUserName(DB_USER_NAME);
                        connectionInfo.setPassword(DB_PASSWORD);
                        // Update the table information
                        clientDoc.getDatabaseController().setTableLocation(origTable, newTable);
            // Next loop through all the subreports and pass in the same
            // information. You may consider
            // creating a separate method which accepts
            if (reportName == null || !(reportName.equals(""))) {
                IStrings subNames = clientDoc.getSubreportController().getSubreportNames();
                for (int subNum = 0; subNum < subNames.size(); subNum++) {
                    Tables tables = clientDoc.getSubreportController().getSubreport(subNames.getString(subNum)).getDatabaseController().getDatabase().getTables();
                    for (int i = 0; i < tables.size(); i++) {
                        origTable = tables.getTable(i);
                        if (tableName == null || origTable.getName().equals(tableName)) {
                            newTable = (ITable) origTable.clone(true);
                            // We set the Fully qualified name to the Table Alias to keep
                            // the method generic
                            // This workflow may not work in all scenarios and should likely
                            // be customized to work
                            // in the developer's specific situation. The end result of this
                            // statement will be to strip
                            // the existing table of it's db specific identifiers. For
                            // example Xtreme.dbo.Customer becomes just Customer
    //                        System.out.println(origTable.getQualifiedName());
                            newTable.setQualifiedName(origTable.getQualifiedName());
                            newTable.setAlias(origTable.getAlias());
                            // Change properties that are different from the original
                            // datasource
                            // table.setQualifiedName(TABLE_NAME_QUALIFIER);
                            // Change connection information properties
                            connectionInfo = newTable.getConnectionInfo();
                            // Set new table connection property attributes
                            propertyBag = new PropertyBag();
                            // Overwrite any existing properties with updated values
                            propertyBag.put("Trusted_Connection", TRUSTED_CONNECTION);
                            propertyBag.put("Server Type", SERVER_TYPE);
                            propertyBag.put("Use JDBC", USE_JDBC);
                            propertyBag.put("Database DLL", DATABASE_DLL);
                            propertyBag.put("JNDIOptionalName", JNDI_OPTIONAL_NAME);
                            propertyBag.put("Connection URL", CONNECTION_URL);
                            propertyBag.put("Database Class Name", DATABASE_CLASS_NAME);
                            // propertyBag.put("Server Name", SERVER_NAME); //Optional property
                            // propertyBag.put("Connection String", CONNECTION_STRING); //Optional property
                            // propertyBag.put("Database Name", DATABASE_NAME); //Optional property
                            // propertyBag.put("URI", URI); //Optional property
                            connectionInfo.setAttributes(propertyBag);
                            // Set database username and password
                            // NOTE: Even if the username and password properties do not
                            // change when switching databases, the
                            // database password is not saved in the report and must be
                            // set at runtime if the database is secured.
                            connectionInfo.setUserName(DB_USER_NAME);
                            connectionInfo.setPassword(DB_PASSWORD);
                            // Update the table information
                            clientDoc.getSubreportController().getSubreport(subNames.getString(subNum)).getDatabaseController().setTableLocation(origTable, newTable);
    %>
        try {
            // Create the ReportClientDocument object.
            ReportClientDocument clientDoc = new ReportClientDocument();
            clientDoc.open("Class Progress by AI.rpt", 0);
            //start sheeet code            -  work
            changeDataSource(clientDoc, "root", "eatmyshorts",
                    "jdbc:mysql://localhost:3306/lms",
                    "com.mysql.jdbc.Driver", "LMS_MySQL5.1");
            ParameterFieldController paramController = clientDoc.getDataDefController().getParameterFieldController();
            paramController.setCurrentValue("", "Type", "en_US");
            paramController.setCurrentValue("", "SchoolName", "general");
            paramController.setCurrentValue("", "StudyClassName", "classss");
            paramController.setCurrentValue("", "SegmentId", 6);
            paramController.setCurrentValue("", "LAID", 30);
            paramController.setCurrentValue("", "AIID", 205);
            paramController.setCurrentValue("", "LOID", 1);
            IReportSource reportSource = clientDoc.getReportSource();
            // Create a Viewer object
            CrystalReportViewer viewer = new CrystalReportViewer();
            // Set the report source for the  viewer to the ReportClientDocument's report source
            viewer.setReportSource(reportSource);
            // Set the name for the viewer
            viewer.setName("Crystal_Report_Viewer");
            viewer.setPrintMode(CrPrintMode.PDF);
            viewer.setEnableParameterPrompt(true);
            viewer.setEnableDrillDown(true);
            viewer.setOwnPage(false);
            viewer.setOwnForm(true);
            viewer.setDisplayToolbar(false);
            viewer.setDisplayGroupTree(false);
            viewer.setHasPageBottomToolbar(false);
            // Process the http request to view the report
            viewer.processHttpRequest(request, response, getServletConfig().getServletContext(), out);
            // Dispose of the viewer object
            viewer.dispose();
            // Release the memory used by the report
            clientDoc.close();
        } catch (ReportSDKExceptionBase e) {
            e.printStackTrace();
    %>

  • How to prevent a first time login prompt for an external application.

    Hi,
    I'm doing a Portal iFS integration project. We managed to login to our iFS application via an external application definition in the Login Server. We created a JSP screen to create iFS users. In the back-end java-code uses the Portal API to create a Portal user. When this new user uses the external application link for the first time he gets a Portal screen to supply the external username/password combination. Can someone answer the following questions:
    1. How can I customize the layout of this first time external application login screen just like the you can customize the standard portal "login/change password" screens ?
    2. Is there an API to specifiy the external username/password combination for a specific portal user and specific external application in advance in order to prevent the firsttime login screen ?
    Any help/answers would be great. We need to implement this in a few weeks.
    regards,
    Willem-Pieter van der Lugt

    There is an API -- WWSSO_PSTORE_EX which is in $IAS_HOME/portal30/admin/plsql/sso/ssopsex.pks which includes APIs
    for accessing the password store. Please see the package specification here, which is not wrapped. This API is generally private to the SSO schema, but it is granted for EXECUTE to the
    PORTAL30_PS schema - which is the schema provided for access to the password store.
    To add a users credentials to the store, you would use the pstore_add_user_info procedure...
    PROCEDURE pstore_add_userinfo
        p_app_id     IN VARCHAR2
      , p_ssouser    IN VARCHAR2
      , p_app_user   IN VARCHAR2
      , p_app_pwd    IN VARCHAR2
      , p_fname1     IN VARCHAR2 DEFAULT NULL
      , p_fval1      IN VARCHAR2 DEFAULT NULL
      , p_fname2     IN VARCHAR2 DEFAULT NULL
      , p_fval2      IN VARCHAR2 DEFAULT NULL
      , p_fname3     IN VARCHAR2 DEFAULT NULL
      , p_fval3      IN VARCHAR2 DEFAULT NULL
      , p_fname4     IN VARCHAR2 DEFAULT NULL
      , p_fval4      IN VARCHAR2 DEFAULT NULL
      , p_fname5     IN VARCHAR2 DEFAULT NULL
      , p_fval5      IN VARCHAR2 DEFAULT NULL
      , p_fname6     IN VARCHAR2 DEFAULT NULL
      , p_fval6      IN VARCHAR2 DEFAULT NULL
      , p_fname7     IN VARCHAR2 DEFAULT NULL
      , p_fval7      IN VARCHAR2 DEFAULT NULL
      , p_fname8     IN VARCHAR2 DEFAULT NULL
      , p_fval8      IN VARCHAR2 DEFAULT NULL
      , p_fname9     IN VARCHAR2 DEFAULT NULL
      , p_fval9      IN VARCHAR2 DEFAULT NULL
      , p_user_prefs IN VARCHAR2
    );Note that you should provide p_app_pwd as cleartext, and the API encrypts it before storing.

  • First time using iDVD for slideshow, need some guidance

    I want to make a dvd that consists of 3-6 slideshows, plus "extras". Each slideshow will have 50-150 photos, but the "extras" section I want to have all the photos (including some not used in the slideshows) for a total of about 1300 photos.
    1. How do I get the photos not used in the slideshow in the "extras" section?
    2. Can I put anything in the "drop zones"? or does everything just go in the "slideshow" section?
    This is the first time I have ever used iDVD and could use any help or suggestions at all.....
    thanks

    Don't use over 99 images in a slideshow. You may have trouble:
    http://docs.info.apple.com/article.html?artnum=302961
    1. Just create a new extras slideshow menu from the main menu by using the + button and select Add Submenu. Then go there and add slideshows the same way, only select Add Slideshow and then drag your images in; or use the Import funtion.
    2. Drop Zones are for single images/movies.
    I think you need to spend some time learning how to do this, rather than guessing.
    iDVD 6 Getting Started PDF download
    Apple's iMovie Learning Site
    Apple's iDVD Learning Site
    iLife ’06 Multimedia Tutorials
    General Learning Center
    Ken Stone: Authoring in iDVD 6
    My favorite, by far:
    iMovie HD & iDVD 6: The Missing Manual
    You can download Chapter four: Camcorder Meets Mac.
    iPhoto 6: The Missing Manual

  • Problem in running Delta load for 2LIS_13_VDKON

    Hi Friends,
    I am working on LO Data Source i.e., 2LIS_13_VDKON, i have run the INIT setup tables through OLI9BW. There were 2389443 records.
    Now, since in BW these records multiply depending on condition types I didn't want unnecessary records. So I have run multiple INITs in BW with selection criterias as I wanted data only from 01-Jan-10. Having done that, now I want to run deltas but the BW system is not letting me do. If I click on Delta in the infopackage (in update rule) then it selection criteria it adds up all those INIT selection criteria that I have run and I can't change it (as in it becomes non-updatable); why is it adding up all those selection criteria in Delta infopackage?
    I want to fetch all deltas from the day I ran OLI9BW...How to run delta for those records updated after run of OLI9BW.
    Thanks!

    Hi,
    Follow the steps, these steps are for SD module, but for your datasource, change the Tcode to fill setup tables and replace the SD DataSource with your datasource in the following steps.
    1. First Install the DataSOurce in RSA5 and see it in RSA6 and activate in LBWE.
    Before doing the steps from 2 to 6 lock the ECC System, i.e. no transaction will happen
    2. Then delete the Queues in LBWQ like below
         MCEX11  --> For 2LIS_11_* 
         MCEX12  --> For 2LIS_12_* 
         MCEX13  --> For 2LIS_13_* 
      Be carefull while doing all these deleations in Production Servers
    3. Then delete if any entry is there in RSA7
         Eg:
         2LIS_11_*
         2LIS_12_*
         2LIS_13_*
    4. Then delete setp tables using LBWG Tocde and select Application Number. i.e. 11, 12 and 13.
    5. Then Load Setup Tables using OLI7BW, OLI8BW and OLI9BW.
       Give Name of run = XYZ, Termination Date = tomorrows date and execute it in background.
       i.e. Program-->Execute in Background.
       2LIS_11_*  Use OLI7BW Tcode to fill the Setup tables
       2LIS_12_*  Use OLI8BW Tcode to fill the Setup tables
       2LIS_13_*  Use OLI9BW Tcode to fill the Setup tables
    At the time of setup table filling no entry will exists in LBWQ in ECC for the following Queues.
         MCEX11  --> For 2LIS_11_* 
         MCEX12  --> For 2LIS_12_* 
         MCEX13  --> For 2LIS_13_* 
    6. Check the job status in SM37 and once finish it then goto RSA3 and then execute it and check.
    7. Then Replicate the DataSource in BW.
    8. Install InfoCube/DSO from Business Content or cretae InfoCube/DSO and then Map the ECC DataSOurce Fields and BW          InfoObejcts in Transfer Rules (in BW 3.5) or in Transfermations (in BI 7.0).
    9. Map the InfoObejcts in InfoSource and InfoObejects in InfoCube/DSO in in Update Rules (in BW 3.5) or in Transfermations
       (in BI 7.0).
    10.Create InfoPackage and Load Init/Full.
    11.Using DTP you can load to InfoCube/DSO (if it is BI 7.0) 
    Thanks
    Reddy

  • Table.Join/Merge in Power Query takes extremly long time to process for big tables

    Hi,
    I tried to simply merge/inner join two big tables(one has 300,000+ rows after filtering and the other has 30,000+ rows after filtering) in PQ. However, for this simple join operation, PQ took at least 10 minutes (I killed the Query Editor after 10
    minutes' processing) to load the preview.
    Here's how I did the join job: I first loaded tables into the workbook, then did the filtering for each table and at last, used the merge function to do the join based on a same field.
    Did I do anything wrong here? Or is there any way to improve the load efficiency?
    P.S. no custom SQL was used during the process. I was hoping the so called "Query Folding" can help speed the process, but it seems it didn't work here.
    Thanks.
    Regards,
    Qilong

    Hi!
    You should import the source tables
    in Access. This will speed up the work of
    PQ in several times.

  • First time using inDesign for multi-page web design. Trying to "print" a pdf or jpeg to show client. But it comes in blank (white) but file size is 1.8mb. help!, First time using inDesign for multi-page web design. Trying to "print" a pdf or jpeg to show

    Have created a web design using Master Pages. 5 pages in all. When I try to create a proof with pdf or jpeg the result appears blank (or white). How do I create something that I can send my client?

    Hello all,
    I appreciate your willingness to help.
    Did a test. Copy and pasted a page of my graphics into a new indd file and into a new master. New file works fine for exporting jpeg as well as pdf.
    Must just be something wrong with the original. gremlins. No time to wonder why.
    but....Thank you again.

  • HT1689 Hi I just tried connecting my new iPad air for the first time to iTunes for backing it up as I already set it up as a new device without it being connected. iTunes keeps stating that my iPad cannot be connected as it has "timed out". Any suggestion

    I cannot connect to iTunes with my new iPad Air...Help please

    Hey Shutterbuginorlando,
    Thanks for the question. I understand you are experiencing issues with your iPad Air. The following resource may provide a solution:
    iOS: Troubleshooting USB connection
    http://support.apple.com/kb/TS1286
    Thanks,
    Matt M.

  • First time user--help for first task

    How do I take 2 pages from a PDF file sent to me, isolate them so I can copy/edit those two pages, and return those 2 pages to sender?

    Hi there,
    My recommendation is for you to follow these steps:
    1) Log into createpdf.acrobat.com and select "Export from PDF" on the right pane.
    2) Select your PDF file, select docx and click Export to export your file to *.docx.
    3) Once the export operation is complete, Download your converted file locally.
    4) Open the downloaded file using MS Word and make your necessary Edits.
    5) Save your edited file.
    6) In createpdf.acrobat.com, click Convert to PDF on the right pane.
    7) Select your edited docx file and convert the file to PDF.
    8) Download the file locally and send it to the appropriate sender using email or using Adobe's SendNow service (https://www.acrobat.com/sendnow/en/home.html).
    I hope this helps.
    Laura.

  • I downloaded adobe pro xi, I installed it.  When starting it up for the first time, it asked for a language.  I hit English, but then proceeded to load up everything thereafter in French.  How do I fix this.  I already went back and modified under change

    Never mind - got it figured out at this forum:  change language adobe acrobat pro XI (Installation & updates)

    Hi dougy scrooge,
    It's great to hear that your problem got resolved.
    You can reach out to us if you have any other query in the future.
    We would be happy to help you.
    Regards,
    Anubha

  • Is there any process for the intializing the deltas for the purchasing da

    Hi,
    I need how can we intialize the delta process for the purcahsing data. that is 2LIS_02_SCL and 2LIS_02_ITM data sources.
    Please help me out this issue.
    Points will be awarded.
    Thanks in advance.

    HI
    Go to Transaction LBWE (LO Customizing Cockpit)
    1). Purchase Logistics Application
    Purchase BW
    Extract Structures
    2). Select the desired Extract Structure and deactivate it first.
    3). Give the Transport Request number and continue
    4). Click on `Maintenance' to maintain such Extract Structure
    Select the fields of your choice and continue
    Maintain DataSource if needed
    5). Activate the extract structure
    6). Give the Transport Request number and continue
    Next step is to Delete the setup tables
    7). Go to T-Code SBIW
    8). Select Business Information Warehouse
    i. Setting for Application-Specific Datasources
    ii. Logistics
    iii. Managing Extract Structures
    iv. Initialization
    v. Delete the content of Setup tables (T-Code LBWG)
    vi. Select the application (01 u2013 Sales & Distribution) and Execute
    Now, Fill the Setup tables
    9). Select Business Information Warehouse
    i. Setting for Application-Specific Datasources
    ii. Logistics
    iii. Managing Extract Structures
    iv. Initialization
    v. Filling the Setup tables
    vi. Application-Specific Setup of statistical data
    vii. u2013 Perform Setup (T-Code OLI*BW)
    Specify a Run Name and time and Date (put future date)
    Execute
    Hope it helps
    Check the data in Setup tables at RSA3

  • HT1349 When i click the buy it's asking me for a security question cause of the first time of using device for purchasing a game,but im already using this device before

    It's really not working..i always
    Buying an iTunes card and redeeming in one device but asking me a
    Security question cause of first time using device
    For purchasing oh my i already using this device

    Joiz wrote:
    {snip}. . . I don't remember..i know my email add and my password but I dont know the answer. . .
    There's not much anyone here can do for that particular issue.
    Your best bet is to seek assistance from iTunes Support.  If there is an alternate way to accsess your account, it will only be through them.
    http://www.apple.com/support/itunes/

  • ANY PODCAST CAN'T PLAY ON IPOD NANO AT THE FIRST TIME

    Everytime i try to play a podcast on my ipod nano, the first time it hangs for a few seconds and then it returns to the main menu. So i have to enter the podcast menu again, select the file once again and then it plays.
    That happens everytime i turn my ipod on...
    OBS.: Both Itunes and nano are updated....

    vcolonel wrote:
    Have you got NTFS-3G installed? "sudo pacman -S ntfs-3g".
    Then you can edit your /etc/fstab and do:
    /dev/sdb1 /media/whatever ntfs-3g defaults,user,locale=en_US.utf8 0 0
    thanks, vcolonel.
    Yes, I have ntfs-3g installed. But although I edited fstab as you said, it couldn't mount the drive automatically.
    I guess this problem is not caused by ntfs. Because it happens to ext4 and fat too.
    And I found that the partition had been overwritten.
    sudo fdisk -l /dev/sdb
    Disk /dev/sdb: 120.0 GB, 120034122752 bytes
    255 heads, 63 sectors/track, 14593 cylinders, total 234441646 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x093be277
    Device Boot Start End Blocks Id System
    /dev/sdb1 16065 234436544 117210240 f W95 Ext'd (LBA)
    /dev/sdb5 16128 234436544 117210208+ 7 HPFS/NTFS/exFAT
    I don't know why and how it happenned. It should have only one ntfs partition.
    Last edited by dannyking630 (2011-08-25 10:23:51)

  • Specific Datasource in a source system : how to modify the delta process ?

    Hello,
    I have a specific datasource in a Sap CRM5.0 system that sends sales data by year and Business Partner to a Sap BI7 system.
    The Delta Process used (AIE     After-Images Via Extractor (FI-GL/AP/AR)) do not manage the deletion : if you delete the 2009 sales data for a Business Partner, these data won't be in the CRM system anymore, but they'll remain in the Sap BI7 system after the delta.
    My client would like to change the delta process to send the deletions in CRM to BW.
    In CRM, when i use the RSA2 transaction, i can display the delta process, but apparently, there's no way to modify it
    Moreover, the RSA6 and RSO2 transactions are usefull to modify my datasource, but not directly  its delta process.
    I found the RSOOSOURCE table where i could manually modify the delta process for my datasource, but it doesn't seem right to do it that way.
    Can anyone help ? Is there anyway to modify the delta process for my datasource ? Or will i have to create a new one ?

    You have to create new one
    check these links
    Changing Delta Process of DataSource
    Changing Delta Process Type
    Rgds
    sateesh

  • When I plug my device into the computer for the first time the setup process doesn't begin. What do I do?

    When I plug my device into the computer for the first time the setup process doesn't begin. What do I do?

    Try to connect in recovery mode, explained in this article:
    iOS: Unable to update or restore
    Before that, back up your device, explained here:
    iOS: Back up and restore your iOS device with iCloud or iTunes
    How to back up your data and set up as a new device
    You can check your warranty status here:
    https://selfsolve.apple.com/agreementWarrantyDynamic.do

Maybe you are looking for

  • I updated my Mac Book Pro to Yosemite, now to says it's not compatible with my Cannon copier. Any idea how to fix this problem?

    I updated my Mac Book Pro to Yosemite, now it says it's not compatible with my Cannon copier. Any ideas how to fix this problem so I can use my Cannon copier again?  Thanks for any help!

  • ISight Issues on Late 2008 MacBook Pro-Please Help

    I am having issues where my iSight Camera will work and then not work. This happens in all applications that use the iSight. I have tried resetting the PMU, zapping the PRAM, and creating another user and logging in as that user...all with the same r

  • Tethered capture in L R 5

    Tethered capture has got to buggy again. I am shooting with the Nikon D 800e. It times out, so I have to turn the camera off and then on again, and sometimes tethered capture just quits. Also another note, I find it disconcerting that  the crop tool

  • File won't open - HELP

    Hi All, I was using a file in Captivate 7 and it was saved with a timestamp of 3.41pm. Captivate crashed so I did CTRL + ALT + DEL and closed captivate and reopened it however I got the following error (view attached), I also reset the computer and t

  • Copy/paste bug in RichEditableText.as

    Hi All, I found this bug when I accidentally copied an excel file and pasted it inside a TextInput control (I thought I had copied one of the cell in the spreadsheet). Flex throws the following: Error #1009: Cannot access a property or method of a nu