Manage Workspace report source

Hi!
Can anyone tell me the sources for the reports that I see when I go to Manage Workspace>Monitor>Recent Page Views and then I can drill further by clicking on the Session link? Also, how long does this informaiton stay in the tables?
I think I'm close when I query the flows_010600.wwv_flow_activity_log and flows_010600.wwv_flow_data tables, but I'm still not quite sure on how things are tied together.
Ultimately, I'd like to create my own reporting to see which pages in my app are being used the most and which parameters are being entered.
Thanks!!
Janel

Thanks Vikas!!
I took a look at your samples and I think I can use the page view and session state item queries to get what I need now that I can see how they are joined.
One more question - do you know how long this information lasts in the tables? The ones that I'm querying are wwv_flow_activity_log, wwv_flow_steps and wwv_flow_data. I seem to recall seeing somewhere that the data is purged after 2 weeks or so.
Thanks!
Janel

Similar Messages

  • Sql query in report/source

    Is possible use this kind of select select a,(select b from b) from b
    in sql query in report/source?

    Pretty much any valid select statement can be used.
    If it works in SQL*Plus, then it should work in Application Express.
    I think your example would not be valid if table b has more than one row.
    A scalar subquery (like your "select b from b") must only return a single value.
    SQL>  select ename, (select job from emp) from emp e;
    ORA-01427: single-row subquery returns more than one rowIf your subquery can be restricted to return one value, then it should work.
    SQL>  select ename, (select job from emp where empno = e.empno) job from emp e;
    ENAME      JOB
    KING       PRESIDENT
    BLAKE      MANAGER
    CLARK      MANAGER
    JONES      MANAGER
    SCOTT      ANALYST
    FORD       ANALYST
    SMITH      CLERK
    ALLEN      SALESMAN
    WARD       SALESMAN
    MARTIN     SALESMAN
    TURNER     SALESMAN
    ADAMS      CLERK
    JAMES      CLERK
    MILLER     CLERK
    14 rows selectedBut is that the kind of result you were looking for?

  • Crystal Report Source is MS SQL Stored Procedure Causes Login Popup

    My environment is this:  Visual Studio 2010 with CRforVS_13_0_9 installed.  MS SQL Server is source for all report data.  I use three different databases for all my reports.
    I have a number of working CR reports that work fine in IDE and at runtime.  However, one report works in IDE report designer Main Report Preview but does not work at runtime.  Instead, it pops up the Database Login dialog box.  This particular report is the only one that I have that uses a Stored Procedure for report source data.  The following code is used for all reports.  Can someone please help me to identify what is causing this anomaly?
         ' _Options contains parameter name and value pairs, if any
         Dim oReport As New ReportDocument()
         Dim FullReportName = "MA_CustomerUsage"
         oReport.Load(FullReportName, OpenReportMethod.OpenReportByDefault)
         DoCRLogin(oReport)
         If _Options.ParameterList IsNot Nothing Then ImplementCRParameters(oReport)
         With CrystalReportViewer
              .SelectionFormula = _SelectionFormula
              .ReportSource = oReport
              .Zoom(zoomPageWidth)
              .ShowParameterPanelButton = False
              .ToolPanelView = ToolPanelViewType.None
         End With
         Private Sub DoCRLogin(ByVal oRpt As ReportDocument)
                Dim oCRDb As Database = oRpt.Database
                Dim oCRTables As Tables = oCRDb.Tables
                Dim oCRTableLogonInfo As CrystalDecisions.Shared.TableLogOnInfo
                Dim DatabaseName = oCRTables(0).LogOnInfo.ConnectionInfo.DatabaseName
                Dim oCRConnectionInfo As New CrystalDecisions.Shared.ConnectionInfo() _
                    With {.DatabaseName = ScanInvenConStrSetting("Initial Catalog=", DatabaseName),
                          .ServerName = ScanInvenConStrSetting("Data Source=", DatabaseName),
                          .IntegratedSecurity = True}
                For Each oCRTable As Table In oCRTables
                    oCRConnectionInfo.DatabaseName = oCRTable.LogOnInfo.ConnectionInfo.DatabaseName
                    oCRTableLogonInfo = oCRTable.LogOnInfo
                    oCRTableLogonInfo.ConnectionInfo = oCRConnectionInfo
                    oCRTable.ApplyLogOnInfo(oCRTableLogonInfo)
                Next
         End Sub
         Private Sub ImplementCRParameters(ByRef oReport As ReportDocument)
                Dim oparamFields = New ParameterValues
                Dim oFieldDefs = oReport.DataDefinition.ParameterFields
                For Each CRParameter In _Options.ParameterList
                    Dim oFieldDef = oFieldDefs("@" & CRParameter.Name)
                    Dim oDiscrete As New ParameterDiscreteValue()
                    oDiscrete.Value = CRParameter.Value.ToString
                    oparamFields.Add(oDiscrete)
                    oFieldDef.ApplyCurrentValues(oparamFields)
                Next
         End Sub
         Private Function ScanInvenConStrSetting(ByVal Src As String, ByVal DBName As String) As String
                Dim MyDB As String = String.Empty
                Select Case DBName.ToUpper
                    Case "Database1".ToUpper
                        MyDB = Global.My.Settings.Database1ConnectionString
                    Case "Database2".ToUpper
                        MyDB = Global.My.Settings.DatabaseConnectionString
                    Case "Database3".ToUpper
                        MyDB = Global.My.Settings.Database3ConnectionString
                End Select
                Dim ndx1 As Integer = InStr(MyDB, Src, CompareMethod.Text) + Src.Length
                Dim ndx2 As Integer = InStr(ndx1, MyDB, ";", CompareMethod.Text)
                If ndx2 = 0 Then ndx2 = MyDB.Length
                ScanInvenConStrSetting = Mid(MyDB, ndx1, ndx2 - ndx1)
         End Function

    Check what else is different with the report:
    1) Connection type (ODBC vs. OLEDB, vs. Native, etc)
    2) Check for subreports
    3) Check that the report uses the SQL Native 10 Driver
    Enable the report options "Verify on 1st refresh" and "Verify stored procedure on 1st refresh".
    Comment out the db logon code as well as the parameter code and let the report prompt. Does that work?
    If it does, add the db logon code but leave the param code commented out. Does that work?
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • CRVS2010 Beta - Error: No valid Report Source is available

    I am new to using crystal reports in .NET so any (un-jargoned) help is much welcomed and appreciated.
    I am implementing an web application on a Windows XP machine using VS2010 and have downloaded and installed the CR4VS2010 beta 2 and the CRforNET40_x86.  All installed OK with no errors.
    I have embedded a crystal report viewer into my web page and have populated a dataset (myDS) successfully from my SQL server connection earlier in the code.
    The report (stoppages.rpt) is an untyped report stored in a separate folder and has 2 datetime parameters to pass in.  When I run the web app it runs fine until the parameter boxes appear - I enter 2 valid date values into the parameter boxes when I hit OK I get an error - No valid report source is available.
    My code is shown below - I have searched other forums and it was suggested to put in the session.add part but the error occurs with or without this bit in...
    Please help - newbie and desparate! Thanks
    Dim myReportDocument = New CrystalDecisions.CrystalReports.Engine.ReportDocument()
                myReportDocument.Load("C:\Reports\stoppages.rpt")
                myReportDocument.SetDataSource(myDS)
                Session.Add("Report", myReportDocument)
                crvThisReport.ReportSource = myReportDocument
    Subject modified as per the sticky post at the top of this forum; [Crystal Reports for Visual Studio 2010 Beta - read before posting|Crystal Reports for Visual Studio 2010 Beta - read before posting;
    Edited by: Ludek Uher on Oct 13, 2010 7:22 AM

    Hi Ludek,  I tried adding
    <startup useLegacyV2RuntimeActivationPolicy="true">
      <supportedRuntime version="v4.0"/>
    </startup>
    to the config file but it didnt resolve the problems. 
    However I think I have found a work-around solution to setting the parameters programmatically rather than use the crystal report viewer pop-up boxes.  I am posting my code to help anyone else who might be experiencing the same problems:
    Dim myReportDocument = New CrystalDecisions.CrystalReports.Engine.ReportDocument()
    myReportDocument.Load(Server.MapPath(strRptPath))
    myDS.WriteXml(Server.MapPath(strXMLPath), XmlWriteMode.WriteSchema)
    myReportDocument.SetDataSource(myDS)
    myReportDocument.Refresh()
    myReportDocument.SetParameterValue("DateFrom", #9/1/2010 6:35:00 AM#)
    myReportDocument.SetParameterValue("DateTo", #9/8/2010 6:35:00 PM#)
    crvThisReport.ReportSource = myReportDocument
    DateFrom and DateTo are the parameter names within my crystal report.
    It seems to be working fine, it stops the crystal report viewer from displaying the parameter pop-up box which stops the error occurring.  However, the error still occurs when you want to interact with the report in other ways, ie page navigation, group tree navigation.  It still allows me to print, export and zoom in and out, so I will have to disable some buttons and features until this error is resolved - the search continues!
    Thanks for all your help and advise.
    Edited by: juliep68 on Oct 14, 2010 11:33 PM

  • Error: The report source could not be retrieved from the state object.

    I have been trying to create a report in a JSF page. The relevant parts are below:
    Inside the JSP page, this is the code:
                  <jsp:useBean id="MyBean" class="com.nm.facade.rto.POJOViewerBean" scope="session" />
                    <jsp:setProperty name="MyBean" property="reportLocation" value="Report1.rpt" />
                   <v:reportPageViewer reportSource="#{MyBean.reportSource}"
                                           displayToolbarPrintButton="true"
                                           printMode="ActiveX"
                                           zoomPercentage="100"
                                           displayToolbarExportButton="true"
                                           displayToolbarRefreshButton="true"
                                           viewerName="My Viewer"
                   ></v:reportPageViewer>
    In the backing bean, this is the relevant code:
        public Object getReportSource() throws ReportSDKException
            if (propertiesChanged || reportSource == null)
                propertiesChanged = false;
                if (reportLocation == null)
                    throw new RuntimeException("The reportLocation property must be set before a report source is retrieved");
                ReportClientDocument rcd = new ReportClientDocument();
                rcd.setReportAppServer(ReportClientDocument.inprocConnectionString);
                rcd.open(reportLocation, 0);
                DatabaseController dbc = rcd.getDatabaseController();
                //Create the POJO collection and populate it with data
                ReportData[] data =
                  new ReportData("B.B.", "King", 6, new Date(25, 9, 16)),
                    new ReportData("Muddy", "Waters", 7, new Date(15, 4, 4)),
                    new ReportData("John Lee", "Hooker", 8, new Date(16, 8, 16)),
                    new ReportData("Otis", "Rush", 9, new Date(34, 4, 29)),
                    new ReportData("Buddy", "Guy", 10, new Date(36, 7, 30))
                //Create the result set from the collection of POJOs
                POJOResultSetFactory factory = new POJOResultSetFactory(ReportData.class);
                factory.setVerbose(true);
                POJOResultSet results = factory.createResultSet(data);
                ResultSetMetaData metaData = results.getMetaData();
                //Set the resultset as the report datasource
                      //Get the table name from the 'Set Datasource Location' dialog in the Crystal Reports designer
                String reportTable = "getReportDataDataSource";
                dbc.setDataSource(results, reportTable, reportTable);       
                IReportSource reportSource = rcd.getReportSource();
                if (reportSource == null)
                    throw new RuntimeException("Unable to get a report source.");
            return reportSource;
    In the CRConfig.xml, this is what is there:
    <?xml version="1.0" encoding="utf-8"?>
    <CrystalReportEngine-configuration>
        <reportlocation>../reports</reportlocation>
        <timeout>0</timeout>
        <ExternalFunctionLibraryClassNames>
             <classname></classname>
        </ExternalFunctionLibraryClassNames>
    </CrystalReportEngine-configuration>
    The report template 'Report1.rpt' is packaged under WEB-INF/reports in the war file.
    When I try to generate the report by accessing the JSF page, I am getting an error: "The report source could not be retrieved from the state object. "
    I am not sure what is wrong. Can someone help me in resolving this issue?
    Edited by: renshai on Jul 9, 2009 3:21 AM

    My formatting gets lost and the message looks unintelligible. After some experimentation, I found that if the message exceeds some length, the formatting is removed. Since I couldn't find any way to delete this post, I made another post with the same subject. Please ignore this post and help me to find a solution for the problem posted in the other thread with the same subject. Thanks in advance.

  • Risk Management interactive reports drill up error

    Hi,
    I have been working with Risk Management 10 in SAP GRC recently.  I noticed that when using the Risk Manager Interactive Reports in the Report section (Heat Map and Overview Report), I have received an error when trying to drill back up to the parent organizational unit after I have drilled down to the child sub organization.
    Our current workaround is to click on the <All> unit, close the window, and then reopen the window and drill back down to the parent unit.  While this workaround has been successful when using the reports so far, it is difficult to communicate this error to other users when they attempt to use the reports.
    Are there any fixes to this error, or any plans to fix?  Otherwise, is there a feature that needs to be adjusted in Risk Management?  Thanks.

    Bump

  • Cash Management - Forecast Report

    Dear Expert,
    In the cash Management - Forecast Report, I have customer invoice with discount payment term.
    Example:
    customer invoice - USD1,000
    Payment term is 30 days. If pay in first 10 days, 1% discount.
    So the forecast report is showing USD990 in the customer forecast column for the coming 10 days. But after the 10 days, it still showing RM990.
    Logically, it should have exceed the 10 days discount period and the report should show USD1,000, RIGHT?
    Any expert have any idea on this issue?
    Please share. Thanks.

    Hi Louis,
    May be the system is figuring out more than we expect ?
    Please check the cutomer master to see if the "Payment History" is flagged. If this is the case then the calculation of "planning day " is different. As you might be aware , usually Planning Day = baseline day + payment term days.
    Also check out the note 24883
    Hope you resolve soon,
    Shony

  • Updating a report source/viewer with new filename

    I posted earlier about this problem but now can be more specific so thought a re-post was in order. I am trying to setup an asp.net website using .NET 2.0 and Crystal Reports 2008. Rather than having a seperate page for each possible report with a viewer on it I decided to setup a page and pass it session variables telling it what file name to set the report source to and the variables to pass to it. This worked fine in crystal reports basic (the one with visual studio).
    So I have on the page CrystalViewer (CrystalReportViewer) with display page true seperate pages true and crystalRepSource (CrystalReportSource) with cache enabled and viewstate enabled as far as I know cache is required for the paging to work.
    In my form code behind file i have something like:
    protected void Page_Load(object sender, EventArgs e) {
    CrystalRepSource.Report.FileName = SessionHandler.RunReport;
    switch (report)
    if (PreviousPage != null || paramHasChanged)
    case @"~\CollegeReports\CR_Course_Review.rpt":
                    //setup report in viewer with correct db logon
                    SetupLogonInfo(CrystalRepSource);
                    //add parameters
                    CrystalRepSource.ReportDocument.SetParameterValue("@year", year);
                    CrystalRepSource.ReportDocument.SetParameterValue("@school", school);
                    CrystalRepSource.ReportDocument.SetParameterValue("@division", division);
                    CrystalRepSource.ReportDocument.SetParameterValue("@progArea", progArea);
                    CrystalRepSource.ReportDocument.SetParameterValue("@type", SessionHandler.record_type);
                    CrystalRepSource.ReportDocument.SetParameterValue("@filterText", "School = \'" + school +
                                                            "\' Division = \'" + division
                                                            + "\' Programme Area = \'" + progArea
                                                            + "\' Record Type = \'" + SessionHandler.record_type_text + "\'");
                    break;
                case @"~\CollegeReports\CR_WBL_Attendance_Sheets.rpt":
                    //setup report in viewer with correct db logon
                    SetupLogonInfo(CrystalRepSource);
                    //add parameters
                    CrystalRepSource.ReportDocument.SetParameterValue("@year", year);
                    CrystalRepSource.ReportDocument.SetParameterValue("@school", school);
                    CrystalRepSource.ReportDocument.SetParameterValue("@division", division);
                    CrystalRepSource.ReportDocument.SetParameterValue("@progArea", progArea);
                    CrystalRepSource.ReportDocument.SetParameterValue("@attendanceEndDate", LastDayOfMonth(SessionHandler.WBL_EndDate).ToString());
                    break;
    The case statement actually has about 20 reports in it it is basically used to send the appropriate parameter set to the report and setup the database logon info, the if statement around the case checks if the load is a postback (to allow paging of the report) if it is it won't run the code or if a parameter has changed if one has it will rerun the code. As I said this worked in CR basic.
    Unfortunately what now seems to happen is the first time I run a report it works fine, if I then leave the page and run a report requiring different parameters it will give me the parameter error. However if instead I run a report requiring the same parameters it will show the original report document as if it is coming from cache I think. The case becomes a bit more bizarre later as I have created the ability to change a parameter without leaving the report page this actually does a postback and changes the report to the proper one with the proper data.
    So it seems to me the code to change report is working first time and for postback but not for re-entering the page. I am really stuck been working on this for hours  any ideas.

    ok i have found the solution after a quite a while so anyone else getting this I was using the line:
    CrystalRepSource.Report.FileName = SessionHandler.RunReport;
    I changed it to:
    CrystalRepSource.ReportDocument.Load(Server.MapPath(ReportName));
    This clears any existing report and loads the correct one seems to have solved all my problems.

  • Report Source from Column in Table

    I'm probably just not using the correct search words so pardon me if this has already been answered here.
    I have a table has a list of reports and the SQL required to generate that report. So page 500 executes this report source:
    select t.reptid, t.short_name, t.long_name
    from reports t
    where t.rept_inst = :F104_CURINST
    and t.rept_time_frame = :F104_CURTERM
    and t.submission = :F104_CURSUBM
    I have a column link on t.reptid that sets P520_RPTID. I then want page 520 to display the results of the sql stored in the sql_source column so I have a Before Header Process that sets the contents of P520_SQL using this source:
    SELECT sql_string
    from univdb.reports
    where rports_id = :P520_RPTID
    The contents of P520_SQL are indeed the sql_string I want:
    SELECT * FROM univdb.sites t where t.rept_inst = :F104_CURINST and t.rept_time_frame = :F104_CURTERM and t.submission = :F104_CURSUBM
    I thought by setting the source for my Report Region to &P520_SQL. that apex would run the contents of the item and resolve all the substitutions but I get 'not all variables bound'. I tried using :520_SQL also but that returned an 'invalid function'.
    Thanks for any help you can give me,
    ...elsa

    Hi Simon,
    Thanks for your reply. I'm finally get back to this problem. I tried your suggestion but still only get back the string that's in my Oracle table w/out the variable substitutions being made.
    In other words, the actual contents of my field in the table are:
    select t.rept_inst, t.campus_cd, t.base_yr,t.rept_time_frame,
    t.site_nbr, t.bldg_nbr, t.be_cd_pom, t.pom_bud_factor
    from univdb.bldg_plnt_oper_maint t
    where t.rept_inst = '&F104_CURINST.'
    and t.rept_time_frame = ' &F104_CURTERM.'
    order by 1, 2, 3, 4, 5, 6
    and I want APEX to resolve the & variables and display the rows that result from this select. If I hard code the & variables in the data the query works but I want this to be dynamic depending on who is logged on. Otherwise I have to have a row in my REPORTS table for every combination of F104_CURINST and F104_CURTERM.
    Thanks for pondering,
    ...elsa

  • Stored Procedure With Multiple Result Sets As Report Source : Crosspost

    Hello Everyone,
    I have an issue where i have created a stored procedure that returns multiple result sets
    /* Input param = @SalesOrderID */
    SELECT * FROM Orders TB1
      INNER JOIN OrderDetails TB2 ON  TB1.ID = TB2.ID
    WHERE TB1.OrderID = @SalesOrderID
    SELECT * FROM Addresses
      WHERE Addresses.OrderID = @SalesOrderID AND Addresses.AddressType = 'Shipping'
    SELECT * FROM Addresses
      WHERE Addresses.OrderID = @SalesOrderID AND Addresses.AddressType = 'Billing'
    This is just a quick sample, the actual procedure is a lot more complex but this illustrates the theory.
    When I set the report source in Crystal X to the stored procedure it is only allowing me to add rows from the first result set.
    Is there any way to get around this issue?
    The reason that I would prefer to use a stored procedure to get all the data is simply performance. Without using one big stored procedure I would have to run at least 6 sub reports which is not acceptable because the number of sub reports could grow exponentially depending on the number of items for a particular sales order.
    Any ideas or input would be greatly appreciated.
    TIA
        - Adam
    P.S
    Sorry for the cross post, I originally posted this question [here|/community [original link is broken];
    but was informed that it might be the wrong forum
    Edited by: Adam Harris on Jul 30, 2008 9:44 PM

    Adam, apologies for the redirect, but it is better to have .NET posts in one place. That way anyone can search the forum for answers. (and I do not have the rights to move posts).
    Anyhow, as long as the report is created, you should be able to pass the datasets as:
    crReportDocument.Database.Tables(0).SetDataSource(dataSet.Tables("NAME_OF_TABLE"))
    Of course alternatively, (not sure if this is possible in your environment) you could create a multi-table ADO .NET dataset and pass that to the report.
    Ludek

  • How to display hidden columns in Management Cockpit Reports

    Hi all,
    I need to display columns with zero values in a management cockpit report graph. I think the report had been set to hide columns without values and only brings charactesitics whose values are not equal to zero.
    Could anyone help?
    Thanks in advance.
    Sezin

    HI,
    After you are executing the report, on columns right click & select filter options-> if 0 values will be there then you can filter it by 0 & get the report

  • Users are not authorized to accesContent Management- Classification- Report

    Hi All,
    We are planning to user 'Property Propagation' tool present at Content Management->Classification->Report.
    We have added the report iView to custom role. When user access the rerport he is getting following message:
    "No reports are available in this folder. Choose another folder"
    I know this is related to User Authorization to the report and KM Content.
    But dont know where in the  portal I need o authorize the user.
    Regards,
    Ganga

    Check by assigning ContentManager role
    http://help.sap.com/saphelp_nw04s/helpdata/en/03/294dbd0b07af46b002417cbf2409fa/frameset.htm
    Koti Reddy

  • MENU NOT FOUND [ 66000-27] in Manage Crystal Report

    Hi All,
    I had installed crystal report add-on in my SAP Business One System but when I am going to Adminstration > Crystal Report Administration > Manage Crystal Report, I am getting the following error as - MENU NOT FOUND 66000-27.
    Please note that earlier this menu used to open by which I used to add the reports but now for the last 4-5 days this menu is not opening.
    Also would like to know in Account setup how to create ext table when the table already exist.
    Regards,
    Kawish

    Hi,
    I am still not able to find any solution for the error of ''MENU NOT FOUND [ 66000-27] in Manage Crystal Report''.
    I am using the add-on version of 1.0.0.1. And I have also the FULL license for Crystal Report 2008 of Business Object.
    Please also note that the above error which I am getting if only in a particular company / database. When I am loading the add-on in any other database then everything is working fine and the Menu of Manage Crystal Report is working.
    Please advise for a solution as how to get rid of it.
    Regards,
    Kawish

  • Gws - A helper to manage workspaces composed of git repositories

    Hi everyone,
    I recently wrote a small bash script for my own needs. I called it gws for Git WorkSpace.
    gws
    It is a KISS, bash, colorful, vundle-inspired helper to manage workspaces composed of git repositories.
    License: MIT
    Website: http://streakycobra.github.io/gws/
    Github: https://github.com/StreakyCobra/gws
    Installation
    A package is available in AUR: gws. There is also a git version for development version, just in case someone is interested: gws-git
    Briefly
    I encourage you to read the README file on github or the github-pages to get started, because:
    This is just a very brief introduction
    It takes me a lot of time to write it
    That being said, you start by creating a list of projects on which you are working (with their associated urls) in a .projects.gws file in the desired "workspace" folder:
    perso/gws | https://github.com/StreakyCobra/gws.git
    perso/teafree | https://github.com/StreakyCobra/teafree.git
    archlinux/habs | https://github.com/StreakyCobra/gws.git
    Then you can update your repository with:
    gws update
    That will clone the repositories which don't exist yet. Then you just have to hack as usual in your repositories. After a long day of coding, you probably didn't remember which repositories have changed, which where pushed and so on. This is where the principal command shows up:
    gws
    It displays (see screenshots below) the state of each repository, allowing you to take action for repositories you think that need it.
    You can also share the projects file to have exactly the same folder structure in all your computers for instance. But there is also some other functionalities, like an ignore file and a check command. Have a look at the README to get started.
    Screenshots

    kniren wrote:This is great! One of these tools that you don't know that you need until you know they exist
    Glad to see you find it useful. I hope you will enjoy it too.
    If you want to try, I just added a new functionality: `fetch`, that do a `git fetch` before showing the status of all repositories. For me it is useful when I am going to take the train and I want to be sure to have the latest code on my laptop. I didn't implement it as default for the `status` command because it is quite slow, and require to have ssh-agent installed to avoid reentering the passphrase multiple time for ssh repositories.
    It is available in the `gws-git` package right now.

  • Procedures with sys_refcursor out parameters as apex report source

    I would like to be able to just call packaged stored procedures that return ref cursors as Apex report region sources. Can anyone explain to me why Apex is not able to do this?
    Cheers
    The FunkyMonkey

    I now have a apex report based on a pipelined table function which uses a collection based on the original select query. So the Apex report source is now a one liner with the now reusable code squirrelled away in a package...Happiness, it works a treat. :-)

Maybe you are looking for

  • Bad Signature on Mac OS 10.5.8 Update

    I have a Mac G5 running Mac OS X 10.5.6. Want to update to 10.5.8 using the software update mechanism. It downloads the 768MB file but then cannot install it because it has a bad signature (indicating that it may have been tempered with). Anybody kno

  • Compatibility problem with macro media flash active control

    I am getting a message on my screen "compatibility problem with macro media flash active control, it isnt compatible with my version of windows (vista).  How can this be fixed?  why am I suddenly getting it now?  I have the latest Adobe flash player

  • Can anyone tell me why there's an extra space here?

    Can anyone tell me why there's an extra space here? http://www.libertywebmarketing.com/test/test.html SOURCE CODE: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="

  • Excise details for foreign vendors, Error: 8I565

    Hi Experts, After upgrade from 4.7 to ECC 6.0 system throwing error message 8I565: Vendor Excise details are not maintained. Foreign vendors do not have excise details, Is there any config/ SAP note available to ovecome this issue? Experts Kindly res

  • Can't download Premiere Elements 13 for days!

    Support won't answer. Trying to download Premiere Elements 13. Have been trying for 2 days. Finally got Photoshop Elements downloaded after 2 days. I get this message at the end of File 1:  saying it is the wrong kind of file. I do not see the .7z' e