Spark Combo instantiation overriding TextFlow default configuration

I've posted this also on the Text Layout Framework forum here : http://forums.adobe.com/message/2686329#2686329
I have a textFlow running through columns with a nice embedded font.  Looks lovely. I then decide to add a completely unrelated Combo box to  my app ... and now the textFlow doesn't render with the font. Comment  out the combo and the font returns.
I  ran some tests and even with a completely dumb combo added with no DP  it robs me of my font.
Here's the code I have for my TextFlow : http://snipplr.com/view/30192/programmatically-creating-a-textflow-stream-of-link-elements /
Notice the formatting for the TextFlow object is created with a Configuration object. I believe this is being overriden by the Combo.
I'm going to try and create a non-config format and see if that solves it. Any ideas?

I've had the same odd experience. For instance, if I set a style using MyTextArea.setStyle("fontSize", 56) and export it to HTML the font tag will say size="12" but it will show as 56px when drawn in the browser. Very weird.
But that's not the real problem with the TextConverter.export method, the real problem is that it surrounds every paragraph with a font tag, even though I have also done so through using TextLayoutFormat for the entire paragraph's range. On export I end up with two font tags around every paragraph, the one the TextConverter adds and (inside of that, luckily) the one that I have set.
Now I have to write custom code that goes back through all the paragraphs and "breaks" them out of the extra font tag...which is entirely unnecessary.
I hope this gets fixed in the future. Perhaps like this: TextConvert.export(source, format, conversionType, *addHtmlTags:Boolean*);

Similar Messages

  • Can I override the default ReadObjectQuery for an entity and specify my own call

    Hi,
    I am trying to override the default ReadObjectQuery and the ReadAllQuery for an entity and supply my own call.The entities have to be read from the database using a StoredProcedure.I tried doing something like
    Descriptor desc=evt.getSession().getDescriptor(Configuration.class);
    desc.getQueryManager().setReadObjectQuery(new ReadObjectQuery());
    StoredProcedureCall call = new StoredProcedureCall();
    call.setProcedureName("CONFIGSVC");
    call.addUnamedArgument("CATEGORY");
    call.addUnamedArgument("CFGKEY");
    call.addUnamedArgument("VALUE");
    desc.getQueryManager().getReadObjectQuery().setCall(call1);
    desc.getQueryManager().getReadObjectQuery().addArgument("CATEGORY");
    desc.getQueryManager().getReadObjectQuery().addArgument("CFGKEY");
    desc.getQueryManager().getReadObjectQuery().addArgument("VALUE");
    When I try to execute the query
    ExpressionBuilder builder = new ExpressionBuilder();
    Expression expr = (builder.getField("category").equal("GOESVC.GETTDEV")).and(
              new ExpressionBuilder().getField("configKey").equal("GOESVC.REQ")).and(
              new ExpressionBuilder().getField("value").equal("$ENV.$ORIGIN.GOESVC.REQ"));
    ReadObjectQuery query = new ReadObjectQuery(Configuration.class, expr);
    session.executeQuery(query);
    I can see in the log that it completely ignores the call I set and tries to execute using the default call and that too with incorrect mappings between the "entity" field names and the actual database field names.
    2002.11.01 08:50:52.640--ClientSession(8218801)--Thread[main,5,main]--#executeQuery(ReadObjectQuery(com.fmrco.gett.toplink.Configuration))
    2002.11.01 08:50:52.750--ServerSession(7721862)--Thread[main,5,main]--Connection(5230193)--SELECT CFGKEY, CATEGORY, VALUE FROM CONFIG_ETT WHERE (((category = 'GOESVC.GETTDEV') AND (configKey = 'GOESVC.REQ')) AND (value = '$ENV.$ORIGIN.GOESVC.REQ'))
    2002.11.01 08:50:53.375--ClientSession(8218801)--Thread[main,5,main]--EXCEPTION [TOPLINK-4002] (TopLink - 9.0.3 with StoredProcedureCall patch [email protected] 28/10/2002 (Build 423)): oracle.toplink.exceptions.DatabaseException
    EXCEPTION DESCRIPTION: java.sql.SQLException: [SQL0206] Column CONFIGKEY not in specified tables.
    INTERNAL EXCEPTION: java.sql.SQLException: [SQL0206] Column CONFIGKEY not in specified tables.
    How to I solve this issue?
    Thanks,
    Harini

    Hi,
    The "ReadObjectQuery" in a descriptor's query manager can only be used to change the primary key read query. It will be used only for a ReadObjectQuery that either has a selection key, selection object, or an expression that exactly matches the primary key.
    If you have a non-primary key query that you want to use, you can add it as a named query to the descriptor's query manager.
    I'm not sure of the primary key of your descriptor, assuming that it is a 3 part composite key, then your ReadObjectQuery procedure is defined correctly in the descriptor. However the ReadObjectQuery is incorrect, you must use "get" not "getField", also you must use a single expression builder.
    i.e.
    ExpressionBuilder builder = new ExpressionBuilder();
    Expression expr = (builder.get("category").equal("GOESVC.GETTDEV")).and(
    builder get("configKey").equal("GOESVC.REQ")).and(
    builder.get("value").equal("$ENV.$ORIGIN.GOESVC.REQ"));
    ReadObjectQuery query = new ReadObjectQuery(Configuration.class, expr);
    session.executeQuery(query);
    you could also do,
    Vector key = new Vector(3);
    key.add("GOESVC.GETTDEV");
    key.add("GOESVC.REQ");
    key.add("$ENV.$ORIGIN.GOESVC.REQ");
    ReadObjectQuery query = new ReadObjectQuery(Configuration.class);
    query.setSelectionKey(key);
    session.executeQuery(query);
    If the descriptor primary key is not 3 part, then add this query as a named query.
    Descriptor desc=evt.getSession().getDescriptor(Configuration.class);
    ReadObjectQuery query = new ReadObjectQuery();
    StoredProcedureCall call = new StoredProcedureCall();
    call.setProcedureName("CONFIGSVC");
    call.addUnamedArgument("CATEGORY");
    call.addUnamedArgument("CFGKEY");
    call.addUnamedArgument("VALUE");
    query.setCall(call);
    query.addArgument("CATEGORY");
    query.addArgument("CFGKEY");
    query.addArgument("VALUE");
    desc.getQueryManager().addQuery("findConfigSVC", query);
    To execute the query,
    Vector arguments = new Vector(3);
    arguments.add("GOESVC.GETTDEV");
    arguments.add("GOESVC.REQ");
    arguments.add("$ENV.$ORIGIN.GOESVC.REQ");
    session.executeQuery(Configuration.class, "findConfigSVC", arguments);

  • Trying to override the default af:tree expanded and collapsed icons

    Hi,
    I initially hijacked a thread from 2010 that was vaguely similar to what I need to ask, but a kind forum moderator split my post out to stand on its own merits.
    I am trying to override the default af:tree expanded and collapsed icons I am using the following styles for my af:tree but they are not reflecting any thing on my tree with the styleclass orgType.
    af|tree.orgType::expanded-icon {
    content: url("../images/ac-expand.png");
    cursor: default;
    af|tree.orgType::collapsed-icon {
    content: url("../images/ac-collapsed.png");
    cursor: default;
    af|tree::expanded-icon {
    content: url("../images/folder_open.png");
    cursor: default;
    af|tree::collapsed-icon {
    content: url("../images/folder_close.png");
    cursor: default;
    After working for long hours I realized that there is some problem with af:tree and treeTable. They are not taking the styles where as for the other components, every thing works fine. Is there any way to achieve the task. Could you suggest any alternative way to do this. Thanks in advance. Your suggestions for this task can really help me and my team a lot.
    Regards,
    Krishna Sumanth.

    Hi,
    do the icons show without the style class reference used in the skin file? If so, then the style class for this component might be rendered differently for the tree, e.g.
    .orgType af|tree ...
    Frank

  • Overriding SPMetal Defaults by Using a Parameters XML File

    hi everybody,
    I have a datatable
    Employee below :
    FullName Single line of text
    Age
    Number
    After use SPMetal to generate entities, i have
    EmployeeItem below:
    FullName string
    Age
    double?
    I want Age is Integer so i use "Overriding SPMetal Defaults by Using a Parameters XML File" :
    <?xml version="1.0" encoding="utf-8"?>
    <Web AccessModifier="Public" xmlns="http://schemas.microsoft.com/SharePoint/2009/spmetal">
    <List Name="Employee" Type="Employee">
    <ContentType Name="Employee" Class="Employee">
    <Column Name="FullName" />
    <Column Name="Age" Type="Integer" />
    <ExcludeOtherColumns/>
    </ContentType>
    </List>
    <ExcludeOtherLists />
    </Web>
    When generate it have error "There is an error in XML doc" at :
    <Column Name="Age" --error here-- Type="Integer" />
    Would you like help me?

    Hi,
    I came across the same error when testing your code in my environment.
    Anyway, if we convert the Number field to Integer, there will be a risk of damaging our data due to the conversion accuracy.
    So if you want to use the Integer type of data, a workaround is that you can convert the double type of data to Integer type programmatically after retrieving the data you want.
    Best regards
    Patrick Liang
    TechNet Community Support

  • Setting Default Configuration in 1.4.2

    Previous versions of Java Web Start had a default configuration file javaws.cfg which contained the default preferences. When JWS was installed on PCs in our intranet, we could switch the cfg file to one which, amongst other things, set the proxy correctly and disabled shortcut creation. Then when any other user logged on to the PC, they would get a copy of this cfg file.
    But in JWS 1.4.2 there no longer seems to be a default cfg file. When a user logs on they get defaults which are incorrect for our environment. This is a problem when several different users share the same PC. Whenever a new user logs on to the PC and uses Java Web Start, we must set up the preferences manually.
    Our users are in a call center and are not capable of setting preferences themselves. In fact in the past we have removed the JWS icon from the desktop because we don't want them to even know it exists. All they know how to do is click a link (to a jnlp document) on a web page.
    Is there some way to set the default preferences at install time that I've missed?
    Thanks,
    Simon.

    Educated guesswork mostly; read over the JavaOne "whats new with web start" to get a feel for the changes yourself (http://servlet.java.sun.com/javaone/sf2003/conf/sessions/display-1486.en.jsp). Several things here will lead to internal changes. While it's location isn't likely to change (they're in the right place now - in the user profile dir) the contents, structure and config files certainly will.
    Biggest single change is the unification of Java Plugin and Web Start, according to the slides this includes the merging of the applet & web start caches and configuration dialogs (it's not a big leap to assume this means merging their config files also). The new 1.5 Jar Hyper Compression format will also doubtless come into play changing the very format of the Jars getting cached. The other big change is to the security system - both opening up the sandbox model and a new central administration system will mean that the preferences on a users machine may be overridden at any time by the administrator. The cache structure itself undergos a big change with the new 'System Cache' - given that users cannot read from another users profile, this system cache will need to be stored in some shared directory elsewhere. A move that will split normal operation into a pair of active caches further obfuscates assumptions about the internal structure somewhat. This only scratches the surface here - needless to say, big changes ahead.
    For the 'system cache' It'll be interesting to see how the web start team get around the default privileges assigned to a domain user under XP typically doesn't allow writing to a directory outside of their user profile folder (default privs are restricted). Similarly I'd like to see how well the new JNLP file associations work out in a similar scenario. Adding a file association requires writing to the registry; this again is typically a prohibited operation requiring local administrator rights to the machine. I hope the web start team have come up with answers to these problems and not just take the Java update line of only working while the user is logged on as a local administrator (http://www.javadesktop.org/forums/thread.jspa?threadID=184&tstart=0). This severely limits your user base to non-networked single user machines (home users), the network admins machine and windows 98 & me boxes which don't share the security model.
    Finally it's not a good idea to make any assumptions about the internal layout and contents of any of Sun's undocumented services, it's always going to be prone to change without warning. Developers make changes to these at their own peril and only have themselves to blame when their code suddenly stops working.
    - Richard

  • Load default configuration in BIOS to fix sound, caused another problem

    Hey !
    I have had problem to get sound in my T61, and used Lenovo support, Troubleshooting, to fix it.
    I did as it told in Lenovo Support.
    In BIOS Setup utility menu setup I pressed F9.
    Then I selected YES to load the default configuration.
    After that I pressed F10 key and YES to save the configuration.
    But after that when I start the computer it says that a failur has occured, and windows has shot down to avoid problems with the computer.
    Is there any way of going back in the BIOS setup, so I should get it work again ?
    Thanks in advance/ Kurt
    Moderator edit: Subject edited for clarity.

    Hi !
     I solved it with money !
    I went to a company, and they fixed it, Don't ask me how ! I did not understand when they described it.
    Anyway I have another problem with the sound, as you can see in the other message !
    They tried to fix that to, but could not solve the problem.
    George

  • How to override the default delete operation

    Hi,
    I am new to Jheadstart, java coding for that matter.
    Here's my situation,
    I have a view which is based on a function (function returns a collection).
    I have created instead of triggers on this view to perform insert/update/delete operations.
    All these DML operations work as expected in Oracle database.
    Now, I created an Entity object and a view object on this view in my jheadstart project.
    When I run this Jheadstart application my insert and search operations run fine but update and delete operations fail with JBO-26080 error.
    The underlying oracle error is "ORA-02014: cannot select FOR UPDATE from view with DISTINCT, GROUP BY, etc."
    I know that delete and update operations work fine in Oracle and hence I would like to override the default Jheadstart operations. Can any body tell me how can I do it or point me in right direction?

    Hi,
    From the JHeadstart Developer's Guide, chapter TroubleShooting - Problem Assessment:
    If you are getting a JBO error (Business Components for Java error), try to perform the same data retrieval or data manipulation action using the BC4J Tester. You can
    invoke the tester through a right-mouse-click on the BC4J application module. If you get the same error using the BC4J tester, the problem is in the BC4J object definitions. If you added business rules, or other custom code to your BC4J objects that executes during your data retrieval or data manipulation action, you can debug this code line-by-line by running the tester in debug mode. You can also look up the JBO error in the JDeveloper online help, for each error possible causes and how to solve them are described.
    It sounds to me like you will also get this error in the BC4J Tester. This means that the problem is not related to JHeadstart. You can go to the JDeveloper discussion forum http://otn.oracle.com/discussionforums/jdev.html and ask your question there without mentioning JHeadstart. Maybe there is some switch you can set in the BC4J object to let BC4J not use SELECT FOR UPDATE.
    Hope this helps,
    Sandra Muller
    JHeadstart Team

  • MS ssis service: registry setting specifying configuration file does not exist. attempting to load default configuration file. SQLIService100 - event id 274

    window 2008 R2 server ---- after installing SQL 2008 R2 then applying sp2 / sp3 I noted a warning -
    Note this server had SQL 2008 R2 uninstalled previously.
    MS ssis service: registry setting specifying configuration file does not exist. attempting to load default configuration file.
    SQLIService100 - source
    event id- 274
    user - N/A
    Task category - service control.
    Do we need to fix something and how do we fix this warning event?
    dsk

    You could search online for this warning. I was able to find http://superuser.com/questions/346264/event-log-warning-registry-setting-specifying-configuration-file-does-not-exist
    where the fix is "in your registry, go to:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSDTS\ServiceConfigFile
    or
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\100\ServiceConfigFile
    if value is empty then add in:
    C:\Program Files\Microsoft SQL Server\100\DTS\Binn\MsDtsSrvr.ini.xml"
    Arthur
    MyBlog
    Twitter

  • Exporting Objects Style Manager file? And Overriding Preset Defaults?

    Hi,
    We received our upgrade of Captivate 5 from Captivate 4.  I noticed the Captivate 5 does not use design template as it is replaced with Object Style Manager.  I have a question, how do I override objects styles preferences presented to us from a vendor with my department's standard design template?  Also, we have two copies of licensed Captivate softwares installed (One in Austin, TX and one in Washington DC).
    What I am asking is it possible to export a full Style Manager file from one location and share this file with other computer where 2nd copy is installed?  I don't want to export INDIVIDUALLY as I am looking for a full, and complete export?
    Secondly, when we receive a Captivate project from a vendor, they have their own object design preferences and we don't want to use their preferences if we present this simulation onto our Learning Content Management System (LCMS) as we want to override preset defaults with our standard design template, is it also possible?
    I want to make sure that we exhaust all of our options before we downgrade to Captivate 4 from Captivate 5.
    Thanks for taking your time reading this and assistance in advance!

    As you've noted, Cp5 doesn't use Design Templates, and neither does it have anything exactly equivalent to CSS or style sheets that can be applied quickly and easily across multiple projects, as you can do with web pages.
    You can export all styles from a current Captivate 5 project and import the entire style set into another Cp5 project.  However, in current Cp5 functionality the imported styles do not overwrite existing styles that may have the same name, and this includes the default styles.  What you end up with is a lot of additional styles that have the same name with a number appended to the end to differentiate them from existing styles.  Do this once or twice and things can get very messy very quickly.
    We've logged a request for Adobe to consider adding the ability for authors to choose whether or not to overwrite existing styles with identical names on import.  Hopefully this will happen soon.  For the present however, you need to work around the issue as best you can.
    If your vendor sends you a project with an existing set of styles that are customised versions of the default styles, my suggestion is that you create your own style set with unique names (e.g. a two or three letter prefix to identify them in the Object Style Manager lists)  and then import the entire set as a single file into your projects.
    I'm afraid that the bad news is that, since you cannot overwrite styles on import, you will need to apply your new set of styles one by one.  You can use the Apply This Style To option to change all objects of a given style over to your new style, but it's still a rather tedious process.
    There is no downgrade option from Captivate 4 to Captivate 5.  You cannot save a Captivate 5 file as Captivate 4 format. No Captivate version has ever been able to do this as far as I can recall.

  • How to override the default height of tree component...

    Hi,
    Can anyone please tell me how to override the default height of <af:tree> component.
    Actual Problem:
    I have a PanelBox in which I have a ShowDetail component. ShowDetail contains Tree component. When I click on ShowDetail item the Tree component have to be displayed. But, PanelBox is expanding to TREE default height(27.27 ems) instead of expanding to exact height of Tree.
    How to manage this issue?
    Thanks
    -Sukumar

    Did you already try
               <af:treeTable value="#{bindings.DashProjectPhasesDev.treeModel}"
                                  var="node"
                                  selectionListener="#{bindings.DashProjectPhasesDev.treeModel.makeCurrent}"
                                  rowSelection="none" rowBandingInterval="0"
                             inlineStyle="width:810px; height:1100px;"> Check the last line with inlineStyle...
    Julian

  • How to retrive the overwritten SAP Default Configuration

    Hi There,
    I was trying to enhance the component BT115IT_SLSO to add some new fields into the table view Items.
    I copied the view configuration to my Z config key but by mistake & added the fields into the default view and saved the changes. Now the default configuration is screwed up.
    Can some one point out how to retrive the SAP standard configuration( where it is stored ). In the configuration tab of the view the configuration looks ok but in Web UI I see all the columns available in the context node, and makes the view useless, when I go to the personlization of the view all fields shows the message < Error in Meta data > and I can not see the details of the fields.
    I have already backed off my enhancement. Now I want to retrive the view configuration.
    Your help will be highly appreciated.
    Thanks,
    Vikash.

    Issue resolved.
    Solution was In BSP workbench when I went to choose configuration I saw that just next to std conf there was column for cust conf. and both were marked X so I deleted the conf and that gave me the standard conf back.
    Thanks,
    Vikash.

  • ADF &CSS :overriding the default ADF:tree icons and CSSs

    Hi,
    I have major layout issue regarding ADF:tree, how can I override the default icons?
    I override the oracle CSS with my own, but when I did that, the tree images has changed, its now small hideous triangles, I copied some lines from the oracle CSS and it worked, but the small triangles still show inside the images, how can I remove those triangles, or can I write something in my CSS to override them?
    Thanks in prior,
    Ahmad Esbita

    Ahmad,
    According to bug 5682799, you cannot work around this in the current JDeveloper release. It is fixed in 10.1.3.3 (due out "soon," perhaps as early as 15th June, according to another post on this forum)
    John

  • Overriding the default heap size of 64mb

    I run the java program on my pc on windows xp
    I need to increase the heap size, currently I launch the jar file using a batch file, the contents of the batch file are:
    java -Xms64m -Xmx512m -jar Lines.jar
    I have set the min and max heap size and when I click on the .bat file it launches the jar file with tose heap settings
    But I do not want to launch the jar file in this way(I don't want to use a batch file), is there anyway to override the default heap size for the java program to 512mb so that every time I launch the jar file the heap size is 512mb??
    Edited by: muddy777 on Sep 23, 2009 6:30 PM

    Vikash.SunJava wrote:
    set this in some machine startup like a scheduled task at machine startup
    java -Xms64m -Xmx512m
    This this will be default JVM settings.Huh?

  • Configuring the default configuration profile for Profile Manager

    Hello folks,
    I would like to edit the default configuration profile served by Profile Manger. As far as I understand the only thing I can configure from the Server.app is the name of the profile. The settings for the different services provided by the server (such Mail, Messages, etc.) are automatically chosen by Server.app. When logging as an administrator on the Profile Manager webapp, I can go to "Groups", choose "Everyone", go to "Settings" to review the different payloads. However, almost none of the settings are editable. You can read "This payload is configured using the Server app" on the top of the various panels.
    So my question is: How do you use Server to tweek those payloads? Can this be done using the serveradmin command line tool?
    Thank you very much for your help.
    Regards

    Bump. This is annoying the crap out of me. Every time I try to design a website using Coda, this color picker bug plagues me. I just wish I could turn off color profiles completely as I will never use them.

  • Default Configuration Lines on Nexus 5000

    What is the purpose of these  default configuration lines? What do they mean? I can't find an  explanation of them anywhere. I believe some are written to the config  when FCoE is enabled....
    I would like to know exactly what they are doing.
    I DO have an idea but I would like to have each line explained, one at a time, so that I can understand how Cisco implements PFC and ETS and how they identify system classes, etc....
    class-map type qos class-fcoe
    class-map type queuing class-fcoe
      match qos-group 1
    class-map type queuing class-all-flood
      match qos-group 2
    class-map type queuing class-ip-multicast
      match qos-group 2
    class-map type network-qos class-fcoe
      match qos-group 1
    class-map type network-qos class-all-flood
      match qos-group 2
    class-map type network-qos class-ip-multicast
      match qos-group 2
    system qos
      service-policy type qos input fcoe-default-in-policy
      service-policy type queuing input fcoe-default-in-policy
      service-policy type queuing output fcoe-default-out-policy
      service-policy type network-qos fcoe-default-nq-policy

    What is the purpose of these  default configuration lines? What do they mean? I can't find an  explanation of them anywhere. I believe some are written to the config  when FCoE is enabled....
    I would like to know exactly what they are doing.
    I DO have an idea but I would like to have each line explained, one at a time, so that I can understand how Cisco implements PFC and ETS and how they identify system classes, etc....
    class-map type qos class-fcoe
    class-map type queuing class-fcoe
      match qos-group 1
    class-map type queuing class-all-flood
      match qos-group 2
    class-map type queuing class-ip-multicast
      match qos-group 2
    class-map type network-qos class-fcoe
      match qos-group 1
    class-map type network-qos class-all-flood
      match qos-group 2
    class-map type network-qos class-ip-multicast
      match qos-group 2
    system qos
      service-policy type qos input fcoe-default-in-policy
      service-policy type queuing input fcoe-default-in-policy
      service-policy type queuing output fcoe-default-out-policy
      service-policy type network-qos fcoe-default-nq-policy

Maybe you are looking for

  • Animated Gif Editing Help

    Im trying to add a face to every layer of the gif, so i can move the head, eyes, and mouth.. when i add the image of the face to layer 1 of the animated gif, its good, i hit play and the first frame is the head and it disapears on the second, but whe

  • Oracle Forms New Features - Your input.  Supporting data types

    I am interested to know IF we were to support any new database types in Oracle Forms 11g, which types would you like supported and why. I'd also like to know if you are currently working around the absence of a database type. Please note, this is not

  • Time machine multiple internal hard drives to multiple external hard drives

    I have four internal hard drives that I back up to four separate dedicated external hard drives. I have upgraded to leopard and would like to use TIME MACHINE but I don't see how I can set up this unique back up system. Up until now I have been using

  • Infosource to be used for both Direct update and Flexiable update

    Hi,   I had a Data source 0CUST_SALES_ATTR.   A infosource is created Direct Update of Master Data from DS:0CUST_SALES_ATTR to 0cust_sales. So the Data source 0CUST_SALES_ATTR is being used to load ATTR data of 0CUST_SALES. Now as per my requirment c

  • Gl_info.gl_get_set_of_books_info

    Hi All, We are using gl_info.gl_get_set_of_books_info in a report in 11i but as you know this package does not exist in R12, what is the alternative to use so that we can successfully upgrade this report to R12. Thanks