Ranges in Reports

Hi,
What is the use of declaring Ranges,explain?
Thanks.

RANGES tables
You can use the following variants of the TYPES and DATA statements to create internal tables of the same type as selection tables.
TYPES|DATA <rangetab> TYPE RANGE OF <type>.
or
TYPES|DATA <rangetab> LIKE RANGE OF <obj>.
This defines internal standard tables whose line type is a structure as follows:
SIGN(1) TYPE C
OPTION(2) TYPE C
LOW TYPE <type> bzw. LIKE <obj>
HIGH TYPE <type> bzw. LIKE <obj>
You can also use the RANGES statement to create internal tables of the same type as selection tables.
RANGES <rangetab> FOR <f>.
This statement is simply a shortened form of the following statements:
DATA: BEGIN OF <rangetab> OCCURS 0,
         sign(1) TYPE c,
         option(2) TYPE c,
         low  LIKE <f>,
         high LIKE <f>,
      END OF <rangetab>.
Because the statement represents an obsolete form of defining internal tables with headers and headers should not to be used, you should use above variants of TYPES and DATA statements instead of RANGES.
Tables defined in this way have the same structure as selection tables, but they do not have the same functionality. They are not part of the selection screen: No corresponding input fields are generated and these tables cannot be used as a data interface in a program <prog> called using
SUBMIT <prog> WITH <rangetab> IN <table>.
. However, you can use the above statements to create the table <table> in the calling program. The main function of these tables is to pass data to the actual selection tables without displaying the selection screen when executable programs are called.
The above tables are like actual selection tables in the WHERE clause of Open SQL statements and can be used in combination with the IN operator in logical expressions, but they are not linked to a database table. They:
are not passed like selection criteria to logical databases
cannot be used with the shortened form of selection tables in logical expressions
cannot be used like selection criteria in GET events
Obsolete version:
REPORT demo_sel_screen_tables_ranges.
RANGES s_carrid1 FOR spfli-carrid.
s_carrid1-sign = 'I'.
s_carrid1-option = 'EQ'.
s_carrid1-low = 'LH'.
APPEND s_carrid1.
SUBMIT demo_selection_screen_ldb_1 WITH carrid IN s_carrid1
VIA SELECTION-SCREEN AND RETURN.
Korrekte Version:
REPORT demo_sel_screen_tables_ranges.
DATA: s_carrid2 TYPE RANGE OF spfli-carrid,
s_carrid2_wa LIKE LINE OF s_carrid2.
s_carrid2_wa-sign = 'I'.
s_carrid2_wa-option = 'EQ'.
s_carrid2_wa-low = 'AA'.
APPEND s_carrid2_wa TO s_carrid2.
SUBMIT demo_selection_screen_ldb_1 WITH carrid IN s_carrid2
VIA SELECTION-SCREEN AND RETURN.
A selection table S_CARRID is created with reference to column CARRID of database table SPFLI. Fields S_CARRID-LOW and S_CARRID-HIGH have the same type as CARRID. The work area of the internal table S_CARRID is filled and appended to the table. Program DEMO2 is called. If DEMO2 is linked to logical database F1S, its selections screen contains the fields of selection criterion CARRID from the logical database. These fields are filled with the contents of the internal table.

Similar Messages

  • How to determine SLA in Range Gauge Report?

    have a following human work flow task scenario for which we need to display SLA performance Index in a range gauge.
    1) The dataobject "HumanTaskInfo" will capture task id, task status, task creation time, task completion time in their fields. one more field is been kept to calculate the time difference between task creation time and task completion time during the time of feed to this dataobject
    2) Range gauge report design needs a only one field from dataobject to map. but our objective to calculate the percentage of tasks which got completed or rejected status and also their SLA of 8 hrs time period being met.
    For example, dataobject "HumanTaskInfo" has 10 records. 5 got completed status and 3 got rejected status and 2 still in "New" Status. out of 8 completed and rejected tasks, only 6 met SLA time of 8 hrs. In this scenario, the range gauge should display 75% as SLA performance ( (6 divide by 8) *100) .
    Can anyone help us how to achieve this calculation in Range Gauge Report design configuration?
    thanks.

    Anyone providing suggestions on this will be highly helpful.
    Our requirement is to show the SLA of human task in Range Gauge ( 0 to 65 % - red; 65 - 80 % yellow; 80 - 100% - green) in BAM report.
    The dataobject stores
    1) Process Instance Id ( which is a unique key)
    2) task status ( new, approved, rejected )
    3) task start time
    4) task end time
    5) taskstart2endtime(calculated field which stores the difference between task start time and task end time in seconds)
    The objective is to calculate the number of tasks for last 30 days (which has either approved or rejected status) which completed ( means approved or rejected) in 8 hrs of time period .
    Assume there are 10 tasks in this data object within last 30 days of period; 4 got approved ; 3 got rejected; 3 still in new status ; out of 7 completed tasks ( sum of approved and rejected ) , 5 met SLA ( within 8 hours of time ).
    Now the range gauge has to display 71.42% ( percentage value of 5 divided by 7 ) and the gauge pointer should be with in yellow region ( 65% - 80 %)
    We tried to bring 71.42% and unable to succeed in that. In filter tab, we have provided for bringing data for last 30 days.
    No clue how to apply the rest of the logic in the range gauge report design.
    Any help in achieving this requirement will be highly appreciated.

  • How to achieve the from and to date range in report builder 3.

    I AM TRYING TO CREATE ONE REPORT FROM REPORT BUILDER 3.
    WHERE I AM UNABLE TO DEFINE THE DATE RANGE.
    HOW TO ACHIEVE THE DATE RANGE IN REPORT BUILDER.
    NEED FROM DATE AND TO DATE FILTER IN REPORT BUILDER FOR PK DATE.

    Hi Ganesh,
    According to your description, you create a report in Report Builder 3.0, and create two parameters FromDate and EndDate, now you want to use the parameters in your MDX query, right?
    If in this case, here is a sample query for your reference.
    select
    {[Measures].[Internet Sales Amount]
    } on columns,
    {[Date].[Date].members} on rows
    from(
    select
    STRTOMEMBER("[Date].[Date].&["+@StartDate+"]"):STRTOMEMBER("[Date].[Date].&["+@EndDate+"]")
    ) on columns
    from [Adventure Works]
    Reference:STRTOMEMBER
    Regards,
    Charlie Liao
    TechNet Community Support

  • Excel value range with Report Generation Toolkit

    I have an excel sheet.  I want to find out the range for cells with values.  At least, I want the find out what's the last row that has values in it.  I tried "Excel Get Last Row.vi" in the report generation toolkit, but it would treat a blank cell as a valued cell if it is filled with another color.  Therefore, that won't work. 
    I don't want to use active x, and I don't want to write a separate vi to search for the last row.  I want to see is there a way to use the report generation toolkit.  Can I somehow get a hidden method from the class?  I would think that, since they are charging for the report generation toolkit, a simple function like that should be included.  Thanks!
    Kudos and Accepted as Solution are welcome!

    I am pretty sure that the Report Generation Toolkit does use ActiveX, so you are using it even if you dont want to.
    Seems to be how the UsedRange function is being used in the toolkit.
    See here for some examples: http://blog.contextures.com/archives/2012/03/01/select-actual-used-range-in-excel-sheet/
    I tried, and it does not find the blank cells with colored backgrounds.
    This will require some activeX modifications though.
    Kenny

  • Date range in report output

    Hi Abaper,
    I have a requirment to display range of date in report output . I have fixed output to 7 days.
    when ever i input date range 7 days its display fine but when i input 3 days the report output date is display upto 3 is fine but in 5th to 7th column date should not display correct format.
    below is my code.
    date = p_date-low.
    wa_date-dat = date.
    APPEND wa_date TO it_date.
    CLEAR  wa_date.
    IF date LT p_date-high.
      date1 = p_date-low + 1.
      wa_date-dat = date1.
      APPEND wa_date TO it_date.
      CLEAR  wa_date.
    ENDIF.
    IF date1 LT p_date-high.
      date2 = date1 + 1.
      wa_date-dat = date2.
      APPEND wa_date TO it_date.
      CLEAR  wa_date.
    ENDIF.
    IF date2 LT p_date-high.
      date3 = date2 + 1.
      wa_date-dat = date3.
      APPEND wa_date TO it_date.
      CLEAR  wa_date.
    ENDIF.
    IF date3 LT p_date-high.
      date4 = date3 + 1.
      wa_date-dat = date4.
      APPEND wa_date TO it_date.
      CLEAR  wa_date.
    ENDIF.
    IF date4 LT p_date-high.
      date5 = date4 + 1.
      wa_date-dat = date5.
      APPEND wa_date TO it_date.
      CLEAR  wa_date.
    ENDIF.
    IF date5 LT p_date-high.
      date6 = date5 + 1.
      wa_date-dat = date6.
      APPEND wa_date TO it_date.
      CLEAR  wa_date.
    ENDIF.
    Can any one help me on this issue.
    Thanks in Advance.
    Thanks & Regards,
    Amit

    Hi Amit,
    pls see the code below:
    date = p_date-low.
    wa_date-dat = date.
    APPEND wa_date TO it_date.
    CLEAR wa_date.
    IF date LT p_date-high AND date is not initial.
    date1 = p_date-low + 1.
    wa_date-dat = date1.
    APPEND wa_date TO it_date.
    CLEAR wa_date.
    ENDIF.
    IF date1 LT p_date-high AND date1 is not initial.
    date2 = date1 + 1.
    wa_date-dat = date2.
    APPEND wa_date TO it_date.
    CLEAR wa_date.
    ENDIF.
    IF date2 LT p_date-high AND date2 is not initial.
    date3 = date2 + 1.
    wa_date-dat = date3.
    APPEND wa_date TO it_date.
    CLEAR wa_date.
    ENDIF.
    IF date3 LT p_date-high.
    date4 = date3 + 1.
    wa_date-dat = date4.
    APPEND wa_date TO it_date.
    CLEAR wa_date.
    ENDIF.
    Pls add the condition also in ur check for all the IF conditions..and just see if it works...
    Keerthi

  • XL Reporter - Selection of date range for report templates

    Dear All,
    I want to create a report using XL reporter and attach it to the main SAP B1 reports module . For this I have created the template using report composer .
    Issue:
    I have only one sub-period (ie,year wise in the posting periods)
    how i can select the date range in the Composer and attach it to the main menu.
    Regards,
    Suresh Kannan.P.

    Suresh,
                1. Goto Report Designer
                2. there u can find "Advanced Report Builder" on left side of the window
                3. At the below u can find three buttons like "Parameters", "Properties","Apply"
                4. Click on "Parameters"
                5. then Parameters window will populate
                6. Click the new Button
                7. Name: give as u like
                    Category: Literal
                    Type: Date
                    Attribute: Leave blank
                    Default Vale: Leave Blank
                    Prompt: From Date
             This is the process to create the parameters.
    create two parameters. one is fdate and ldate.

  • Changing date range in Report...

    Hi all,
    in report i have to change date range ..it is presently 1.1.2006 to 31.12.2006. i need to change year to 2007....
    can anyone please suggest me how to do that?

    Hi,
    In query Designer,select your date Char. expand u find Char. Variables.
    Select your Char. Varaible(the variable which is used to restrict the Values). right click ->edit,where u can change defalut date values or make it as blank.

  • YTD summaries in date range param report

    The notion is simple enough:  I need running YTD totals (not really YTD, but Year to a specific date) to display next to total fields selected via a date range parameter.  For instance:
    For 5/1/2008 to 5/31/2008
    Driver--Fund1--
    Total
    name      Trips    10               10
                    YTD Trips  50        50
    The date range parameter is used in the record selection formula using: table.Datefield >= Min parameter and table.Datefield <= Max parameter.
    The YTD formula I'm using is:
    NumberVAR YTDtrips;
    IF {table.Datefield} >= Date(Year(Maximum{?parameter})),01,01) and {table.Datefield} <= Maximum({?Parameter}) Then YTDTrips := {table.Trips}
    Unfortunately, the YTD totals equal the totals for the date range specified, so I'm doing something wrong--and I strongly suspect it's my YTDTrips formula approach.
    I'd appreciate any help.

    What you can do is :-
    1.)  Get all the records from FirstMonth of the Year to Maximum Data Range. So filter the records in the record selection formula like this:
    {table.Datefield} >= Date(Year(Maximum{?parameter})),01,01) and {table.Datefield} <= Maximum({?Parameter})
    2.) Doing Summary for {table.Trips} in the report will give u YTD Totals.
    3.) For summary related to data range parameter, create one running total and in the Evaluate option . Select formula and write the below code.
    table.Datefield >= Min parameter and table.Datefield <= Max parameter.
    This will give u total for the date range parameter..
    Hope this is useful to you..
    Bye
    kanak

  • Date Range at Reports Section

    Hi,
    I am doing some Reports and my requirement is to put a Date Range with default operator as Is Between.  This functionality works in Query Groups in dynamic filters where it shows From Date to End Date. I just wanted to know if this funcationlity works in Reports Section if so How ? For me it is not working.

    Hello,
    Unfortunately, this will not work in the Reports section.
    I was struggling with this and then I found out that the documentation states:
    "Range and List are only supported in the UI for filters in queries which are used in list page query groups and on the report scheduled task page."
    Regards,
    Bogdan

  • UCCX Trigger Range and Reporting Question

    Hello Everyone:
    I are using a wildcard trigger so that instead of having 30 triggers to one application, I can just leverage that one trigger.  That part is working great, however the issue is that when looking at reports we are only seeing the Wildcard Trigger and not the full extension.  Specifically we are looking at the Abandoned Call Detail Activity Report.  We want to pull out calls for each trigger as each trigger represents a different location.  Is there a way to expose the "Original Called Number" field to get this data?  That way the called number will be the range it hit, with the Original Called Number field being the specific location.  I'm hoping there is a way to get this data, outside of developing a custom report.  Any help would be appreciated - Thanks!
    Sean

    Sean,
    You will need to create a custom report for this.

  • Date Range Interactive report

    I have an interactive report
    I want to include
    where dte between to_date(:p38_from_date,'mm/dd/yyyy') and to_date(:p38_to_date,'mm/dd/yyyy')
    I have 2 date pickers and they both format 'mm/dd/yyyy' I can not get this to work
    Above what I am doing here is i want to include a NVL on each date parameter in the SQL statement.
    nvl(:p38_from_date, '01/01/2009') and '12/31/2050'
    I have looked at this forum extensively and I may be a little thick when it comes to dates in apex.

    I've had something similar and found it was a problem with the date strings. In my case, I wasn't handling a month that didn't have a leading zero properly, so it was an easy fix.
    Another thought is, what if you put a SELECT * FROM () around your UNIONed query and did the field comparison on the outer field? I'm guessing something's messing up in one of the UNIONed SELECTs.
    Feuerstein had sample code for taking in a string that supposedly held a date and matching it to multiple possible format strings, returning a date. Maybe you could try that?
    Good luck,
    Stew

  • Help needed to include a dynamic member range in report script

    Hi,
    I need to produce the report from Jan to Cur_Mth dynamically. I can include Cur_Mth by using a substitution variable.
    But how to include the months in between Jan and Cur_Mth?
    I tried with Jan:@Cur_Mth but its not working. Any clues will be of great help. Thanks
    Dinish

    onclipevent(load)                                           
    total=_root.getbytestotal();                             
    onclipevent(enterframe)
    loaded=_root.getbytesloaded();
    current=int(loaded/total*100);
    p=""+current+"%";
    if(loaded==total)
    gotoandplay("Scene 2",1);
    sorry for getting the code and coment mixed up.

  • As soon as I select Colour Range Windows reports an error & PS6 closes

    I have made several attempts; originally I opened an image from LR5. NIK plugins were active but the same problem occured when I closed the NIK plugins and re-opened the file. I then chose a previously opened file in case the LR file was in any way corrupt. Same result, PS6 was closed down by Win 7 which reported an unspecified error.
    Any suggestions welcome please!

    Thank you, please see below I think this is what you are asking for; there are 5 error events for Photoshop which relate to the same event and all point to a Face Detection Plug in that I have never used nor knew about! Where can I locate this Plug in? Sorry stupid question, it lists where the plug in is and I have located it, how do I disable without deleting the plug in? Does it do anything useful apart from detect faces?
    Adobe Photoshop Version: 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:10, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 4
    Processor speed: 3310 MHz
    Built-in memory: 16361 MB
    Free memory: 9680 MB
    Memory available to Photoshop: 14712 MB
    Memory used by Photoshop: 60 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: GeForce GTS 450/PCIe/SSE2
    Display: 2
    Display Bounds:=  top: -375, left: -1600, bottom: 825, right: 0
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 1440, right: 2560
    Video Card Number: 1
    Video Card: NVIDIA GeForce GTS 450  
    OpenCL Unavailable
    Driver Version: 9.18.13.3165
    Driver Date: 20131023000000.000000-000
    Video Card Driver: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Video Mode: 2560 x 1440 x 4294967296 colors
    Video Card Caption: NVIDIA GeForce GTS 450  
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 16384
    Serial number: 91198475815461446833
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\Allan\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Startup, 238.5G, 59.2G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2012/01/18-15:07:40   66.492997   66.492997
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/02/09-16:00:02   4.0.93   66.496052
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1654  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   6,0,29,0  
       AGM.dll   AGM 2012/01/18-15:07:40   66.492997   66.492997
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/01/18-15:07:40   66.492997   66.492997
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/01/18-15:07:40   66.492997   66.492997
       BIBUtils.dll   BIBUtils 2012/01/18-15:07:40   66.492997   66.492997
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/01/18-15:07:40   66.492997   66.492997
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1640  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113  
    Required plug-ins:
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Bas Relief 13.0
       BMP 13.0
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Clouds 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Collada 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Difference Clouds 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Embed Watermark 4.0
       Extrude 13.0
       FastCore Routines 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Measurement Core 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Mezzotint 13.0
       MMXCore Routines 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Picture Package Filter 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Pinch 13.0
       Pixar 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0
       Shear 13.0
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Sumi-e 13.0
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       Underpainting 13.0
       Vanishing Point 13.0
       Variations 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Viveza 2 2.1.11.216
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       WIA Support 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Wind 13.0
       Wireless Bitmap 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       ZigZag 13.0
    Optional and third party plug-ins:
       Analog Efex Pro 1.0.11.216
       BackgroundFilter 2.2.11.216
       Camera Raw 8.3
       Camera Raw Filter 8.3
       Color Efex Pro 4 4.3.11.216
       Dfine 2 2.2.11.216
       DxO ViewPoint 2 NO VERSION
       DxO ViewPoint 2 NO VERSION
       FineStructuresFilter 2.2.11.216
       HDR Efex Pro 2 2.2.11.216
       HotPixelsFilter 2.2.11.216
       Merge to HDR Efex Pro 2 2.2.11.216
       Nik Collection Selective Tool 2.1.16.216
       ShadowsFilter 2.2.11.216
       Sharpener Pro 3: (1) RAW Presharpener 3.1.11.216
       Sharpener Pro 3: (2) Output Sharpener 3.1.11.216
       Silver Efex Pro 2 2.2.11.216
       SkinFilter 2.2.11.216
       SkyFilter 2.2.11.216
       StrongNoiseFilter 2.2.11.216
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE
    Event Viewer
    - <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"> 
    - <System> 
    <Provider Name="Application Error" /> 
    <EventID Qualifiers="0">1000</EventID> 
    <Level>2</Level> 
    <Task>100</Task> 
    <Keywords>0x80000000000000</Keywords> 
    <TimeCreated SystemTime="2014-03-11T18:33:40.000000000Z" /> 
    <EventRecordID>57313</EventRecordID> 
    <Channel>Application</Channel> 
    <Computer>Allan-SD-PC</Computer> 
    <Security /> 
    </System>
    - <EventData> 
    <Data>Photoshop.exe</Data> 
    <Data>13.0.1.0</Data> 
    <Data>5022da9d</Data> 
    <Data>FaceDetectorTBB.dll</Data> 
    <Data>0.0.0.0</Data> 
    <Data>4f19f59c</Data> 
    <Data>c0000005</Data> 
    <Data>000000000000a5ca</Data> 
    <Data>4990</Data> 
    <Data>01cf3d584db4bdfa</Data> 
    <Data>C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Photoshop.exe</Data> 
    <Data>C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\CIT\Plug-ins\FaceDetection\FaceDetectorTBB.dll</Data> 
    <Data>aa7175f3-a94b-11e3-9dd7-f46d0439d2e6</Data> 
    </EventData>
    </Event>

  • Creating a range with Substitution Variables for Report Script

    Is it possible to create a range with substituion varables for use in a report script. For example instead of listing "Jan" "Feb" "Mar" "Apr" in the report script can I use a sub varaible like Jan:Apr that will list them all out?

    while I have not had luck with ranges in report scripts, others have. You could have a substitution variable the is "Jun" "Jul " "Aug" or whatever you want the members to be. and it will replace jusr fine

  • Range Value in Crystal Report

    Hello Experts,
    I want to include a range value in crystal report. Currently the report is used for printing AR invoice with one invoice at time, wherein user inputs invoice number which he wants to print. I want to include invoice number range in the report, but that option is disabled in the parameter field. In present report Invoice number is taken as static value and then connected to db to get the data of that AR invoice number, advise how to
    - Activate "Allow Range Value option"
    - How to set up the multiple invoice printing
    Setup details : SBO 2007B, CR 2008, SQL 2005
    Regards
    Deepak

    Hi Deepak........
    Sure........
    Hope your query report is perfect and for Parameter Range goto Report Expert in Tool Bar of the Crystal Report you can find it by yellow coloured Flask Symbol. Click on that and just define the range of parameters........
    Regards,
    Rahul

Maybe you are looking for

  • Sending to multiple addresses and using BCC

    I'm using Mail and Address book to send a basic email (no images or anything like that) to my mailing list. I beleive my server (Sympatico) has a restriction on the number of recipients - 99. But I'm sending to less than that. When I put the addresse

  • External display scrolling causing loss of color

    I've started running my MacBook Pro with an external display and this strange bug with scrolling has started coming up: After running for a while, a single-app will start to desaturate windows when they scroll. I've seen it happen in the Finder, Safa

  • RoboHelp's air installers no longer install with AIR 4.0 update?

    Has anyone else encountered this issue? After updating to AIR 4.0.0.1390, our RH air help installers no longer work. This includes .air help from 2 - 3 years ago, which have installed fine all these years, all the way up to a recent .air file we crea

  • SXMB_ADM for setting Integration server configuration

    Hi, Default client 001 is set as integration server. Can anyone suggest whether it is recommened to use this 001 as integration server or we can use a new client say 200 as integration server. Thanks and Regards, Sailesh K

  • Need help with output please

    Thank you for taking a look ill post my code and then my problem import java.util.Scanner; public class intrest     public static void main( String[] args )      Scanner input = new Scanner( System.in );         System.out.print("Deposit:");      dou