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();
%>

Similar Messages

  • Report which contains subreports which contains also subreports

    I have different reports which contain subreports.
    Each report has 2 to 4 pages.
    I need now a so called multiple report which should up to 12 of these reports all shown i the reportviewer.
    Each report should start on a new page.
    I tried tis with subreports which contains also subreports, but this doesn´t work.
    Is it possible to such a report and when how can this be realized?
    Thanks for your help.
    Gerhard

    Hi Raghavendra,
    I´m using version 10.5.3700 which comes with Visual Studio 2008 but I have also Crystal Reports 2008 but not installed yet.
    I need the sections because I have to suppress sections depending on the protocol I use.
    Do you think it is better to place about 100 subreports in one section?
    But how can I then suppress subreports?
    Regards
    Gerhard

  • Fix the coulmn width of main report which contain the sub report( remains white space of extra width)

    Hi,
    I am setting the column width of main report and that column is bounded with the sub report which contain some data.
    But if width is exceeded other than sub report data that width is showing as white space block. 
    It should be showing as normal header in gray shade.
    Please provide the solution for this. see the screen attached.
    Thanks

    Hi Raj,
    According to your description, you want to show the sub report without any white space in the textbox. Right?
    In Reporting Services, when we display a sub report in a textbox, this textbox will always show the whole sub report area. If the textbox is smaller than the report area, this textbox will extend automatically to fit the size of the sub report. Otherwise,
    it will has white space inside of the textbox. And if you have white space in your sub report, it will also be displayed in the textbox. So you may need to adjust the sub report size to make it fitted in main report.
    Reference:
    Subreports (Report Builder and SSRS)
    If you have any feedback on our support, please click
    here.
    Best Regards,
    Simon Hou (Pactera)

  • I need to display a Report which contain -- del QTY  and  INV QTY   in one

    Hi ALL,
    I need to display a Report which contain
    <b>Customer  , Material , Order No, Delivery No, Billing No , Order Qty , Dev Qty, Bill Qty , Invoiced Qty  and There Values  in One Line  .</b>
    How can I Display, When I am executing the report against the Delivery Number Bill Qty and Invoiced Qty is showing Hash ( # ).
    Do I need to right any Routines for this, if I am correct,  where I have to write that code and what is the code ,
    What are the Consolidation  routines ?????
    I am working on BI 7.
    Regards ,
    Shaik
    Message was edited by:
            shaik

    Frst check in backend, which all cubes have got data for each of three..
    Corresponding you can go ahead with Multi/Infoset..
    Look for reference no in all three cubes and pick one order and track tht by reference no in all cubes,
    Hope it helps..
    Thanks for points assigned

  • Is there any standard report which contain all these fields

    is there any standard report which contain all these fields
    1. plant
    2. material no.
    3. profit  center
    4. movement type
    5.g l a/c
    6.posting date
    we have it in z form one of the job it does is that what all materials entries came to a single gl we can know from it
    like we can know what all materials were charged to repair to p and m a/c.
    can any one tell where can we find these field in any standard format in sap.
    pls send some suggestions.

    Hello Sanjeev,
    I don't think there is an existing standard report with all the information from KE5Z plus material name.
    What I would suggest to you is either:
    1) Copy the standard KE5Z program (RCOPCA02) to a Z program one and insert the additional field from MAKT table (it would demand ABAP coding and some considerable effort to develop it);
    2) Create a Query (SQ01 transaction) by selecting data from GLPCA (table that is used in KE5Z) and MAKT (table that contains the material name by language).
    Hope it helps you.
    Best Regards,
    Daniel.

  • TS1702 I had this Scrabble on my iPad2 and began to have connection problems, it would lock in the "connecting" position. This is not the first time Scrabble has had problems with interface. Typically customers delete the Ap then download it again to rein

    I have contacted EA about this and can find no help. I had this Scrabble on my iPad2 and began to have connection problems, it would lock in the "connecting" position. This is not the first time Scrabble has had problems with interface. Typically customers delete the Ap then download it again to reinstall it. During the process you sign in and approve the purchase KNOWING that another window will open saying that you have previously purchased it and that there is no charge. So what happened this time? It will not connect and all of my saved and current games are wiped out. I want my money back, this game interface is pretty junk and operates like some ancient DOS program,,bug,bug,buggy. I want my money back.

    Go here:
    http://www.apple.com/support/itunes/contact/
    and follow the instructions to report the issue to the iTunes Store.
    Regards.

  • The most recent update erased all of my bookmarks. I tried the steps to find them and they are gone. This is not the first time this has happened and it extremely disuptive.

    the most recent update resulted in a loss of ALL of my bookmarks. This is not the first time this has happened and it is very disruptive. I tried the steps suggested to find the bookmarks but that failed.

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • Mac mini restart because of a problem. Not the first time!

    Hi everyone!
    This morning, while I was simply listening to iTunes, browsing with Safari and a Time Machine Backup was going on I had the Grey Screen Of Death!
    This is not the first time it happens, I'm really worried about a real hardware problem.
    Here are the infos about the restart, I really don't know how to read them.... Please if someone could help me I will really appreciate!
    Thanks in advance for your help.
    A.A.R.
    Fri Aug 29 09:45:28 2014
    panic(cpu 0 caller 0xffffff80248bc6bc): "complete() while dma active"@/SourceCache/xnu/xnu-2422.110.17/iokit/Kernel/IOMemoryDescriptor.cpp:26 20
    Backtrace (CPU 0), Frame : Return Address
    0xffffff820eccb970 : 0xffffff8024422f79
    0xffffff820eccb9f0 : 0xffffff80248bc6bc
    0xffffff820eccba30 : 0xffffff7fa49f9b06
    0xffffff820eccba70 : 0xffffff7fa49efab2
    0xffffff820eccbac0 : 0xffffff7fa509c2ca
    0xffffff820eccbb10 : 0xffffff7fa509fc3a
    0xffffff820eccbb60 : 0xffffff7fa4a870d4
    0xffffff820eccbbb0 : 0xffffff7fa4a8114e
    0xffffff820eccbc00 : 0xffffff7fa4a8121c
    0xffffff820eccbc30 : 0xffffff7fa4d6a7cd
    0xffffff820eccbd30 : 0xffffff7fa515d126
    0xffffff820eccbde0 : 0xffffff7fa515df11
    0xffffff820eccbe20 : 0xffffff7fa516b82e
    0xffffff820eccbed0 : 0xffffff7fa5173469
    0xffffff820eccbef0 : 0xffffff80248b07f0
    0xffffff820eccbf30 : 0xffffff80248af292
    0xffffff820eccbf80 : 0xffffff80248af367
    0xffffff820eccbfb0 : 0xffffff80244d7417
          Kernel Extensions in backtrace:
             com.apple.iokit.IOStorageFamily(1.9)[9B09B065-7F11-3241-B194-B72E5C23548B]@0xff ffff7fa49ec000->0xffffff7fa4a10fff
             com.apple.iokit.IOUSBFamily(683.4)[7595281D-D047-3715-9044-98F46B62F845]@0xffff ff7fa4d67000->0xffffff7fa4dc7fff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[4662B11D-2ECA-315D-875C-618C97CDAB2A]@0xffffff 7fa4abe000
             com.apple.driver.AppleUSBXHCI(683.4)[4C9A2D47-0723-387A-9C4B-6199093960A9]@0xff ffff7fa515c000->0xffffff7fa5178fff
                dependency: com.apple.iokit.IOUSBFamily(683.4.0)[7595281D-D047-3715-9044-98F46B62F845]@0xff ffff7fa4d67000
                dependency: com.apple.iokit.IOPCIFamily(2.9)[4662B11D-2ECA-315D-875C-618C97CDAB2A]@0xffffff 7fa4abe000
             com.apple.iokit.IOSCSIArchitectureModelFamily(3.6.6)[C7B04E3E-37FF-3DC4-A0ED-92 DDCE6FCB98]@0xffffff7fa4a7c000->0xffffff7fa4aa6fff
             com.apple.iokit.IOSCSIBlockCommandsDevice(3.6.6)[160F02BC-97C1-3119-BD28-4B2ED1 21C501]@0xffffff7fa509b000->0xffffff7fa50affff
                dependency: com.apple.iokit.IOSCSIArchitectureModelFamily(3.6.6)[C7B04E3E-37FF-3DC4-A0ED-92 DDCE6FCB98]@0xffffff7fa4a7c000
                dependency: com.apple.iokit.IOStorageFamily(1.9)[9B09B065-7F11-3241-B194-B72E5C23548B]@0xff ffff7fa49ec000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    13E28
    Kernel version:
    Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    Kernel UUID:
    Kernel slide:     0x0000000024200000
    Kernel text base: 0xffffff8024400000
    System model name: Macmini6,2 (Mac-F65AE981FFA204ED)
    System uptime in nanoseconds: 1057344563610
    last loaded kext at 419151165914: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7fa63b7000, size 49152)
    last unloaded kext at 542203040150: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7fa63b7000, size 32768)
    loaded kexts:
    com.motu.driver.FireWireAudio 1.6 60625
    com.apple.filesystems.autofs 3.0
    com.apple.driver.AudioAUUC 1.60
    com.apple.iokit.IOBluetoothSerialManager 4.2.6f1
    com.apple.driver.AGPM 100.14.28
    com.apple.driver.ApplePlatformEnabler 2.0.9d6
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.driver.AppleMCCSControl 1.2.5
    com.apple.driver.AppleMikeyDriver 2.6.3f4
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.driver.AppleIntelHD4000Graphics 8.2.8
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleLPC 1.7.0
    com.apple.driver.AppleSMCPDRC 1.0.0
    com.apple.driver.AppleIntelFramebufferCapri 8.2.8
    com.apple.driver.AppleThunderboltIP 1.1.2
    com.apple.iokit.IOUSBAttachedSCSI 1.0.5
    com.apple.driver.AppleIRController 325.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.0
    com.apple.driver.AppleUSBHub 683.4.0
    com.apple.driver.AppleSDXC 1.5.2
    com.apple.iokit.AppleBCM5701Ethernet 3.8.1b2
    com.apple.driver.AirPort.Brcm4331 700.20.22
    com.apple.driver.AppleFWOHCI 5.0.2
    com.apple.driver.AppleAHCIPort 3.0.5
    com.apple.driver.AppleUSBEHCI 660.4.0
    com.apple.driver.AppleUSBXHCI 683.4.0
    com.apple.driver.AppleACPIButtons 2.0
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 2.0
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 217.92.1
    com.apple.nke.applicationfirewall 153
    com.apple.security.quarantine 3
    com.apple.driver.AppleIntelCPUPowerManagement 217.92.1
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 10.0.7
    com.apple.driver.DspFuncLib 2.6.3f4
    com.apple.vecLib.kext 1.0.0
    com.apple.iokit.IOAudioFamily 1.9.7fc2
    com.apple.kext.OSvKernDSPLib 1.14
    com.apple.iokit.IOBluetoothFamily 4.2.6f1
    com.apple.iokit.IOSurface 91.1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.driver.AppleSMBusController 1.0.12d1
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.driver.AppleHDAController 2.6.3f4
    com.apple.iokit.IOHDAFamily 2.6.3f4
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.iokit.IOFireWireIP 2.2.6
    com.apple.iokit.IOAcceleratorFamily2 98.22
    com.apple.AppleGraphicsDeviceControl 3.6.22
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.driver.AppleSMC 3.1.8
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.driver.AppleUSBHIDKeyboard 170.15
    com.apple.driver.AppleHIDKeyboard 170.15
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.6.6
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.6.6
    com.apple.driver.AppleUSBMergeNub 650.4.0
    com.apple.driver.AppleThunderboltDPInAdapter 3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily 3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter 1.4.5
    com.apple.iokit.IOUSBHIDDriver 660.4.0
    com.apple.driver.AppleUSBComposite 656.4.1
    com.apple.driver.AppleThunderboltNHI 2.0.1
    com.apple.iokit.IOThunderboltFamily 3.3.1
    com.apple.iokit.IOEthernetAVBController 1.0.3b4
    com.apple.driver.mDNSOffloadUserClient 1.0.1b5
    com.apple.iokit.IO80211Family 640.36
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOUSBUserClient 660.4.2
    com.apple.iokit.IOFireWireFamily 4.5.5
    com.apple.iokit.IOAHCIFamily 2.6.5
    com.apple.iokit.IOUSBFamily 683.4.0
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 278.11.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.DiskImages 371.1
    com.apple.iokit.IOStorageFamily 1.9
    com.apple.iokit.IOReportFamily 23
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 2.0
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    com.apple.kec.pthread 1
    Model: Macmini6,2, BootROM MM61.0106.B03, 4 processors, Intel Core i7, 2.6 GHz, 16 GB, SMC 2.8f0
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x802C, 0x31364B544631473634485A2D314736453120
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x802C, 0x31364B544631473634485A2D314736453120
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x10E), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.6f1 14216, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: APPLE HDD HTS541010A9E662, 1 TB
    Serial ATA Device: KINGSTON SH103S3240G, 240,06 GB
    USB Device: Porsche Desktop
    USB Device: Hub
    USB Device: Keyboard Hub
    USB Device: USB Receiver
    USB Device: Apple Keyboard
    USB Device: Hub
    USB Device: Hub
    USB Device: IR Receiver
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    FireWire Device: Vendor 0x1F2 Device 0x106800, 0x1F2, Up to 400 Mb/sec
    Thunderbolt Bus: Mac mini, Apple Inc., 23.4

    I'll do... but it sounds strange to me... this LaCie is brand new (I've bought it a month ago) and it seems to be a good brand for drives, especially for Mac OS X, isn't it?
    All this problems started after a Mavericks fresh install...
    I hope to solve this problem quickly.

  • After updating itunes to the latest version it will now not open. I have tried reinstalling the programme, rebooting and all other suggestions, to no avail. this not the first time I have had issues with itunes. Frankly I find it completely unacceptable .

    I recently updated itunes to the latest version and now the programme will not open.
    I have tried all suggestions such as reinstalling the programme, rebooting you name it, nothing.
    This most frustrating and completely unacceptable, especially when a company such as Apple touts itself being the leader in music technology yet does not respond directly to questions about faults in their system, but prefers to leave to disgruntled customers to try and sort it out amongst themselves
    This not the first time I have had frustrating problems with the Apple system. Perhaps someone could suggest a more reliable system to switch to. Someone with a better troubleshooting system.

    Going all the way back to Firefox 3.0.5 is shear foolishness, it is 14 security versions behind the last 3.0.19 release. And that version is missing at least a dozen security updates that were applied to the 3.5 and 3.6 versions after support for 3.0.x ended.
    If you are not happy with Firefox 4, you should have installed Firefox 3.6.17. That is very similar to the 3.0 and has all the security fixes that have been released since support for Firefox 3.0.x ended last year.

  • I was almost done my project. I hadn't published it anywhere. Then, the next day, the clips from my timeline went all grey and there was an "out of date" icon. My project was lost. What happened? It's not the first time it's done that!

    I was almost done my project. I hadn't published it anywhere. Then, the next day, the clips from my timeline went all grey and there was an "out of date" icon. My project was lost. What happened? It's not the first time it's done that!

    You can undo your permission changes. Probably the most relevant one is cookies. Try one or both of these methods:
    (1) Page Info > Permissions tab
    While viewing a page on the site:
    * right-click and choose View Page Info > Permissions
    * Alt+t (open the classic Tools menu) > Page Info > Permissions
    (2) about:permissions
    In a new tab, type or paste '''about:permissions''' and press Enter. Allow a few moments for the list on the left to populate, as this information needs to be extracted from a database.
    Then type or paste ''rcn''' in the search box above the list to filter it to the most relevant domains. When you highlight a domain, you can adjust its permissions in the right pane.
    Any luck?

  • Audio is not playing first time in Flex app with 11.2 Flash player.

    Hi,
    I am playing an audio fle as flv in a flex application with flash player 11.2  but it is not playing first time and it is playing afetr pause/play and page refresh. Loacally it is playing fine. Please help and guide me.
    thanks in Advance
    Rangrajan.

    Taha,
    Not sure that I understand your workflow there. For editing, the 48KHz 16-bit is the "standard." The 32KHz is not.
    Now, what is the Sample-Rate of your original material?
    What is the CODEC used in that muxed (multiplexed, i.e. combined Audio & Video) file?
    Did you allow Conforming complete 100%? This ARTICLE will give you some background.
    Do you see the Waveform Display for that Clip? Alt+click on the Audio portion of the Clip, and then Dbl-click on it to get it into the Source Monitor. Do you see the Waveform Display there?
    Have you added any Keyframes, or Effects to that Audio? Toggle the Keyframe Display in the Track Header, to see if there are any Clip, or Track Keyframes there.
    Have you accidentally Muted that Track? Look at the Visibility (eyeball) icon in the Track Header. Then, look in Audio Mixer to see if that Track is Muted.
    Good luck,
    Hunt

  • How to put a report which contains code for  BDC in background

    Hello Experts ,
    Please provide your valuable opinions on following issue,
    My BDC execution is taking longer time and it gives time out error. To avoid this problem i have created a separate report which l contains the BDC code (Call transaction ) and  i have put this report for background execution. But upon doing this My BDC code is not performing the transaction call which it was performing when it was executed individually.  In sm37 it shown the job that i am creating but nothing is actually happening as a result of transaction call.
    The code that i have written is :
    RFC code
    SUBMIT ZREPORT AND RETURN.
    RFC end
    Z_REPORT .
    PERFORM open_job.
    PERFORM get_print_parameters.
    PERFORM job_submit. here in Submit i have specified the another report name(zbdcreport) which contains the actual logic for bdc 
    PERFORM job_close.
    Report END.
    zbdcreport
    The call transaction is as follows :
    ( CALL TRANSACTION TCODE USING BDCDATA
                         MODE   'N' "CTUMODE "N
                         UPDATE 'S' "CUPDATE "S
                         MESSAGES INTO MESSTAB .)
    end zbdcreport
    Can anybody provide the reason for the error . 
    Regards,
    Uma

    Hi
    Check the code using this...
    DATA: number           TYPE tbtcjob-jobcount,
          name             TYPE tbtcjob-jobname VALUE 'JOB_TEST',
          print_parameters TYPE pri_params.
    CALL FUNCTION 'JOB_OPEN'
      EXPORTING
        jobname          = name
      IMPORTING
        jobcount         = number
      EXCEPTIONS
        cant_create_job  = 1
        invalid_job_data = 2
        jobname_missing  = 3
        OTHERS           = 4.
    IF sy-subrc = 0.
      SUBMIT submitable TO SAP-SPOOL
                        SPOOL PARAMETERS print_parameters
                        WITHOUT SPOOL DYNPRO
                        VIA JOB name NUMBER number
                        AND RETURN.
      IF sy-subrc = 0.
        CALL FUNCTION 'JOB_CLOSE'
          EXPORTING
            jobcount             = number
            jobname              = name
            strtimmed            = 'X'
          EXCEPTIONS
            cant_start_immediate = 1
            invalid_startdate    = 2
            jobname_missing      = 3
            job_close_failed     = 4
            job_nosteps          = 5
            job_notex            = 6
            lock_failed          = 7
            OTHERS               = 8.
        IF sy-subrc <> 0.
        ENDIF.
      ENDIF.
    ENDIF.

  • Report to identify sales orders not shipped on time

    Hi
    i have one requirement to identify the sales orders that are not shipped on time(Sales Order due).
    Could you please anyone throws some hints to build a report.
    Thanks in Advance
    Arjun

    You will have to join oe_order_lines_all and mtl_material_transactions.
    The oe_order_lines_all.scheduled_ship_date will give you when the order was supposed to ship.
    The "sales order issue" transaction in the mtl_material_transaction will give you the date on which the sales order issue transaction occurred.
    Alternatively, you can use the dates in wsh_delivery_details and wsh_new_deliveries tables and compare them with scheduled_ship_date.
    Hope this helps
    Sandeep Gandhi
    Independent Techno-functional Consultant

  • Portlets not displayed first time until refresh

    Hi,
    I have a strange bug when using WLP 8.1 sp5.
    When I go on a page for the first time, my page (Portal Page) is bad displayed : its title is diplayed but the inner portlet is not displayed.
    When I look at the source, I can see that the Portal rendering stopped at the page level (no HTML for the skeleton of portlets).
    If I refresh the page (just F5 or refresh button), the portlet "magically" appears.
    Do you have any idea ?

    For the both .portal and desktop
    It happens after login.
    I use a backing file with handlePostBackData method to check the login action.
    If everything is ok, I redirect the user to the private space.
    On this space, another backing file check that the user is authorized to access to the private space (so it checks for destroyed sessions, url hacks, ...).
    I can put the code of the backing files if you need it.
    After some tests, it seems to be a problem in relation with the page label. If the page label is a book , the portlet don't dipslay, but if the label is the full way to the page, it appears immediately.

  • UI configuration not loaded first time when view is enhanced

    Hi,
    I did enhancement on the view BP_SALES/CorpAccountShippingEF  in component BP_SALES
    There are UI configuration to be loaded based on the condition (life cycle stage) and for which enhancement has been done in spot CRM_UIU_BP_ENHANCEMENT.
    All works fine untill I simply create a enhancement for the above mentioned view. Once I do the enhancement, without making any further changes, the UI config that should get loaded doesn't load and is loaded with the default one.
    However on pressing enter, the desired config get loaded and all the mandatory fields show up.
    If I delete the enhancement for this view, then it works fine.However I need to enhance the view to default some values.
    Does anyone know why this is happening?
    Many thanks in advance for your help.
    Cheers,
    Rakesh

    Hi,
    Probably,when you enhance,some particular field ,which decides the runtime configuration to be loaded,is not getting its proper value.
    You can test this by putting a brkpoint in the method DO_CONFIG_DETERMINATION of your class.
    Do this wihout the enhancement first.
    So when you test,you would be able to see which configuration is loading for the 1st time,and also why.
    After this test it with the enhancement.This will help you to differentiate between the 2 scenarios,and probably also help you to identify the issue.
    Suvidha

Maybe you are looking for