first_last
Participant
Member since ‎03-28-2012

User Statistics

  • 164 Posts
  • 7 Solutions
  • 32 Kudos given
  • 7 Kudos received

User Activity

Is there a way to identify the parameters that are defined in a command object? Inspecting the ParameterField class doesn't yield any obvious property that could be used for this purpose. Foreach (ParameterField field In ReportDocument.ReportClie...
I wrote a PowerShell script to resize fields in the details section and their associated headers: $reportDocument = New-Object CrystalDecisions.CrystalReports.Engine.ReportDocument $reportDocument.Load($file) # process each 'Detail' section $repor...
What is the correct way to filter info objects by a date field?Retrieve running [0] or failed [3] instances that were created on 08-MAY-2019: SELECT si_cuid,si_name,si_schedule_status,si_creation_time,si_starttime,si_endtime,si_kind,si_owner,si_par...
We have a number of reports that have recurring schedules that have event dependencies. Essentially, these reports wait for the event to be triggered before the schedule instance will start to process. Is there a way to get the "run now" action to ...
I have two columns: Data Source Sql: CLOBData Source Table: VarChar2(4000); the results of using Oracle's LISTAGG() function I have two filters: Data Source Sql Matches Pattern REGEXP_LIKE( TABLE.CLOB_FIELD, @Prompt(Search pattern), 'i' ) D...