Using Highlighted Expert With Formula (i.e. 'Insert Summary')

I'm trying to compare the summary of a value (via formula (let's call it 'formula A' ) that uses the 'Insert Summary' option in Crystal Reports) with the value that is in a table.  The formula does not show in the list of available fields (i.e. in the 'Item editor' section for 'Value of') of 'Highlight Expert'.  So, I used 'Other Fields ...' (which took me to 'Choose Field').  I found the field (as a Group#1 total), so I set it up to compare this Group #1 total for 'formula A' to 0.00.  I then tried to create logic in formula 'A' which currently does what it supposed to do, but it states that 'A formula cannot refer to itself, either directly or indirectly."  How can I refer to the value and flag (i.e. 'crRed' - 'Conditional Formatting Function') the value if they are different.  Thanks  ! ! !

I found another way to compare these two (2) values.  It is outlined below:
1.  Right click on the value
2.  Select 'Format Field . . .'
3.  Select 'Font' tab
4.  Create the formula (As shoen below)
If {Region.Commission_Amt} <> {@Commission Amount} Then crRed;
Now, my problem is that any value after the decimal point that does not end with a '00', '05', '50' is flag in red.  I tried rounding, but it did not solve the problem.  Since I can't see the actual values, I don't know what is causing this.  Any ideas ?

Similar Messages

  • How to use array list with fixed values to insert record in trigger

    I have a list  of number 1,30,40,45,60 . These numbers are not being changed so I  don't need to keep in a table. So have to create a  after insert trigger   for 
    As
    Begin
    @list =  1,30,40,45,60 // Array value 
    for i=1 to @list.count
    Insert into mappingtable(arrayvalue,itemcode) values (list[i],Inserted.Itemcode)
    Next
    End
    Please can you help with a code 
    Regards
    Pol
    polachan

    Be careful what you assume - rarely are lists of values like this truly static.  One thing to keep in mind that arrays in sql server are tables.  So, one example is:
    set nocount on;
    /* represents the virtual inserted table in your trigger */
    declare @inserted table (itemcode char(4));
    insert @inserted (itemcode) values ('ABCD'), ('JJKL');
    select * from @inserted;
    select * from @inserted cross join (values (1), (30), (40), (45), (60)) as arrayx(value);

  • Highlighting Expert

    Post Author: jcpub
    CA Forum: Administration
    I am using Highlighting Expert to change the color of several fields based on the data found in a particular fields.  It works OK.  However, I have several columns to format and 5 criteria per column.  Is there a way to use this tool on several fields at a time?  I tried selecting all of the fields but then Highlighting Expert does not appear.
    Thank you.

    Hi Divya,
    The Highlighting Expert is 'just another way' to conditionally colour fields. It is usually used by developers who are very new to Crystal Reports and are not very comfortable with the whole idea of writing 'code' for simple things.
    Do note however, that complex formulae/conditions cannot be defined in the Higlighting Expert - that's where you'd need to get used to the formula editor.
    -Abhilash

  • I'm using Adobe Acrobat with the hope of editing a url on the graphic...a simple 3-letter change, save, close and send for printing..how do I get in edit mode to delete 3 letters and insert 3 new letters?

    ?I'm using Adobe Acrobat with the hope of editing a url on the graphic...a simple 3-letter change, save, close and send for printing..how do I get in edit mode to delete 3 letters and insert 3 new letters?

    pkg4ibm wrote:
    editing a url on the graphic...
    Not sure what you mean by that: is that URL in an image, or is it actual text?
    If it is in an image, then you need to extract the image, edit it with something like Photoshop, then add it back to the PDF.
    If the URL is actual text, I suggest that you remove the entire URL, then add the corrected link.

  • Is there the way to use "Highlight File Format" with Acrobat Reader 9.0 or later?

    hi
    Do anyone know the way to use "Highlight File Format" with Acrobat Reader 9.0 later or substitutional way to highlight a PDF file as well as highlight file?
    I want to highlight some words by indicating character's location(from n to m) using Acrobat Reader 6, 7, 8, and 9.
    I use highlight xml file to highlight words in Acrobat 6, 7, and 8.
    http://www.adobe.com/devnet/pdf/pdfs/HighlightFileFormat.pdf
    According to this documents, "External Window Handler Plugin" is required to use highlight file.
    But I cannot find this plugin in Acrobat Reader 9.
    So Acrobat Reader doesn't recognize highlight file.
    Well, I know that there is another way to highlight pdf file. It is called "PDF Open Parameters".
    However this parameters cannot indicate location of characters but words which is to be searched.
    This parameter does not work perfectly to substitute a highlight xml file.
    To satisfy what i want to do, the best solution is that Acrobat Reader 9.0 recognizes highlight xml file.
    But I think it is impossible because of lack of plugin.
    Do anyone know the way to recognize a highlight xml file to 9.0 or another way to highlight some words?
    thanks,
    Asatamax

    The feature is disabled by default in reader 9
    (1) Open Adobe Reader
    (2) Click Edit > Preferences > Search, and
    (3) check the box labelled Enable search highlights from external highlight server.
    (response found here: http://support.dtsearch.com/dts0117.htm)
    I can't imagine why Adobe choose to disable it. It's a bad joke for us at UNESCO (http://unesdoc.unesco.org)

  • I want to cut out a head from a photo and insert it into another photo again. In the head hair flying in the wind and the blue sky can be seen between the hairs. This blue sky I want to remove, so I can only use the head with hair flying in another photo.

    I want to cut out a head from a photo and insert it into another photo again. In the head hair flying in the wind and the blue sky can be seen between the hairs. This blue sky I want to remove, so I can only use the head with hair flying in another photo. Is it possible to simply delete this blue color of the sky?

    Make your selection and then use Refine Edge.
    See this video tutorial from Bob Gager.
    https://www.youtube.com/watch?v=xrl3Qwg6zSc

  • NEWBIE HELP - Supress Header with Formula using Parameter

    Post Author: Melanie
    CA Forum: Crystal Reports
    Hi,
    I am new to CR10, and I am working with it and C#.
    I have a report that lists all calls made to a motor vehicle registry agent office after the office is selected from a dropdown on a webpage. I have been asked to make an enhancement whereby the user can select All from a dropdown menu and the report will show all calls for all registry offices. I can do that much and get it to group by the registry agent.
    The problem is the header which currently has the Reg. Office Name, Address, City listed on it. If the user now selects All from the dropdown, I just want it to display text "All Registry Offices". Otherwise, I want the name etc...of the registry office selected. I was trying to add a parameter in the code saying if all offices are selected:
    objReport.SetParameterValue("AllAgents", 1);
    and then in the report, I added a parameter called AllAgents (it showed up in my parameter list). Then I right clicked by the left side of the header, selected Section Expert -> the formula button by Suppressed and typed in this formula:
    if {?AllAgents} = "1"    then trueelse false
    Then when I saved everything, ran the app and try to view the report I get this error:
    Server Error in '/src' Application. -
    The resource cannot be found. Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable.  Please review the following URL and make sure that it is spelled correctly.
    Requested URL: /src/reports/temp/CallSummaryByQuestionAgentReport_paincme_21112007140219.pdf
    I can see when I go to where the pdf is generated that the pdf was never created. I am lost and stressed out a little bit by this.
    Any help is genuinely appreciated!

    Hi,
    1. (argh, I can't get it to paste! lol, just a simple little thing... :/):
    Yes it is (you've surely forgotten):source code > Strg or Ctrl A (if you want to send the whole code) > Strg or Ctrl C (copy) > Strg or Ctrl V
    2. garywpaul is surely right, BUT only to show you one way how you could center your image (from my German DW):
    Header 1
    yours:
    <body>
    <div class="container">
      <div class="header"><a href="index-2.html"><img src="images/I%26F%20Header.jpg" alt="I&amp;F Header" width="781" height="271" align="absmiddle" /></a><!-- end .header --></div><div class="sidebar1">
    new:
    <body>
    <div class="container">
      <div class="header">
        <div align="center"><a href="index-2.html"><img src="images/I%26F%20Header.jpg" alt="I&amp;F Header" width="781" height="271" align="absmiddle" /></a></div>
      <!-- end .header --></div><div class="sidebar1">
    Hans-G.
    P.S.
    You should delete the blanks in the names of your images,

  • Using arrays with formulas

    I'm having trouble getting my arrays to work in the formula that I need to use to calculate a monthly mortgage payment, which is what I need to do. I'm supposed to use arrays to store three different term year amounts and three different interest rates, and then display the monthly payment and other info for each amount. Can someone help with this? I keep getting errors that say "cannot use operator / or * with double[]". Here is my code:
    class PaymentArray {
         public static void main(String[] arguments) {
              double amount = 100000;
              int[] term = {7, 15, 30};
              double[] rate = {.0535, .055, .0575};
              double payment = (amount*(rate/12))/(1-(Math.pow(1/(1+(rate/12)),(term*12))));
              for (int i = 0; i < term.length; i++) {
                   for (int j = 0; j < rate.length; j++) {
                        System.out.println("If the initial loan amount is " + amount);
                        System.out.println("and the length of the term is " + term + " years");
                        System.out.println("and the monthly interest rate is " + rate);
                        System.out.println("The monthly payment will be " + payment);
    }Any help would be greatly appreciated. Thanks!!! :-)

    That all worked really well, thanks so much!!!
    The only problem I have now is, instead of calculating the payments at 7 years/5.35%, 15 years/5.5%, and 30 years/5.75%, it's calculating them for 7 years at 5.35%, 5.5%, and 5.75%, 15 years at 5.35%, 5.5%, and 5.75%, and so on. I don't need it to do all of that, I need the years to correspond to the correct interest rate. How can I change that? Thank you so much. Here is my new code:
    class PaymentArray {
         public static void main(String[] arguments) {
              double amount = 100000;
              int[] term = {7, 15, 30};
              double[] rate = {.0535, .055, .0575};
              for (int i = 0; i < term.length; i++) {
                   for (int j = 0; j < rate.length; j++) {
                        System.out.println("If the initial loan amount is " + amount);
                        System.out.println("and the length of the term is " + term[i] + " years");
                        System.out.println("and the monthly interest rate is " + rate[j]);
                        double payment = (amount*(rate[j]/12))/(1-(Math.pow(1/(1+(rate[j]/12)),(term*12))));
                        System.out.println("The monthly payment will be " + payment);

  • When trying to burn a playlist to a blank CD, iTunes 10.3.1 won't recognize the blank CD I've inserted (Verbatim CD-R). I've burned using these CDs before, this is a recent problem. Not the burner, as I can burn using Toast. iMac with Snow Leopard 10.6.8

    When trying to burn a playlist to a blank CD, iTunes 10.3.1 won't recognize the blank CD I've inserted (Verbatim CD-R). I've burned using these CDs before, this is a recent problem. Not the burner, as I can burn using Toast. iMac with Snow Leopard 10.6.8

    What kind of CD are you burning (Audio or MP3)?
    If you're burning an MP3 CD, the songs must already
    be in mp3 format.
    If not, iTunes will tell you that you have no songs
    in the playlist.
    M
    I was making an audio cd. But I have since found out what the problem was. The files in my PLAYLIST I converted to aiff, since they were SDll files (I thought they were similar to AIFF, and they PLAY on Itunes...just won't burn.) When I selected the songs in the playlist and converted them...I thought all those files were converted, They were not. The converted files went into my LIBRARY, even tho I selected the ones in the playlist...and once I exchanged the SDll versions of the songs in my playlist. THEN they burned fine...but still...it's confusing..you say convert..it says it's been converted..and what they don't say is it's not been converted inside the playlist...where I had selected the songs...It just ADDED aiff versions..but only in the library...Anyway, that's what happened. But it's strange that it PLAYS SDll but won't burn them....and you'd think, logically..the ones you selected would change...but they don't. Playlists are mainly pointers to the actual files I guess...a sort of Alias..
    At least it works now. But it's sad that the latest itunes does more, but also does LESS...as I used to be able to burn SDll files. Now I'll have to convert all my files to AIFF, and mp3's as I assume my ipod video won't play anything but mp3's?

  • BW 3.5 - Issue with formula variable with replacement path

    Dear experts,
    I'm facing an issue with formula variable with replacement path.
    Just to clarify, I know replacement paths is raising a lot of questions but I've been using this functionnality extensively in the past, both in 7.0 and 3.5, so I'm not looking for basic information about how to use it.
    I'm trying to setup a simple report that would show total values per plant of Purchase Order < 100 €
    To do so I've setup a calculated key figure as follow:
    VAR1 * ("PO value" < 100 ) * "PO value"
    VAR1 is a formula variable with replacement path on 'purchase order' and value attribute 'constant =1'.
    (The report has to show values summarized by plant but should not show the detail PO by PO, so I'm not looking at a solution based on condition)
    The report as characteristic "plant" in rows and my CKF in columns.
    Now let's take an example. I have 3 POs in Plant 1:
    PO1 -> 150€
    PO2 -> 90€
    PO3 -> 80€
    Because of the variable with replacement path, the result in my query should be:
    plant1 = 170 (even though characteristic "purchase order" is not in my rows, system should evaluate PO one by one and return values only for those two that are below 100).
    But the result coming is 320, which is wrong.
    I've done the same report on many other 3.5 systems and it worked perfectly, and I am not able to get proper support from SAP OSS who keep saying that this functionnality is not ready in 3.5 (although I've provided screenshot of this working on another 3.5 system!!! how frustrating...)
    They have also pointed to problems of Before and After aggregation but that has absolutely no impact. Once again, the scenario is working perfectly on other 3.5 systems with the same query design, so i'm sure it has nothing to do with Query Designer options.
    Would anyone have ever come to an equivalenet problem? I'm wondering whether the DB itself could not play a role in the variable with ref  characteristic 'constant =1' ...
    Any though is welcome!
    thanks

    Hi,
    The text variable is replaced when the exact date is clear for this key figure column according to the restriction.
    To achive this, please make sure that either the variable is directly restricted in the key figure selection, or that the date characteristic is in drilldown.
    Regards,
    Patricia

  • IF statement is true THEN replace with 0 in box with formula

    Hello.
    Sorry maybe for very stupid question, but I have some kind of little problem.
    I need to do this:
    If the checkbox (B16) is TRUE (checked) then simply put 0 to field O16. How I can do it, if I already in this field have a formula?
    Best reagards,
    And thanks for help!

    Hi Aviation,
    I may be wrong, but this is how I see a simplified version of your question.
    Formula in D2 (and Menu > Insert > Fill > Fill Down) is
    =IF(A2=TRUE,0,MAX(C2-B2,0))
    In my Region, I use a comma "," in formulas. If you use a semi-colon ";" the formula is
    =IF(A2=TRUE;0;MAX(C2-B2;0))
    Happy Flying!
    Ian.
    P.S. or replace TRUE with FALSE in the formula (thank you Badunit).
    Message was edited by: Yellowbox. P.S. or replace TRUE with FALSE in the formula (thank you Badunit).

  • Issue with formula collision

    Hello Experts,
    I am facing an issue with Formula collision, below is an expample
    My requirement is to use Column formula for the value (????) in the below table.
                                  Restriction (C1)     Restriction (C2)     Formula(C1-C2)
    Restriction (R1)     4              2                                 2
    Restriction (R2)     8              3                                 5
    Formula(R1+R2)     12              5                              ????
    I have tried using the below settings
    1) Formula(R1+R2)  "Standard"
    2) Formula(C1-C2)  " Use result of this formula"
    But still getting row formula being used, please advice.
    Thanks,

    Select the Formula which you created Formula(C1-C2)
    In the properties tab Go to Calculations--> Select the Check Box Cumulated
    In the Drop Down for Calculation Direction Select --> Calculate Along Columns
    If you require you can also select the Check Box Also Apply to Results
    Hope it Helps.
    rgds, Ghuru

  • Using stored procedures with a timestamp parameter with Delphi  and ADO

    Dear Oracle experts,
    I have a problem concerning using a stored procedure with Delphi.
    I try to use a stored procedure which hast two input parameters ( a integer and a timestamp).
    The timestamp parameter is my problem since I would like to use the "to_timestamp"
    Oracle-function to create the timestamp parameter to be inserted into my procedure.
    If I insert the to_timestamp statement as a adodatetime I have to perform the conversion to the oracle timestamp in my application.
    If I want to use the to_timestamp statement I have to use the ftstring datatype but in that case I get an error because I use a string as input for my procedure were it awaits a timestamp.
    So the problem seems to be that the function call "to_timestamp" is not interpreted if it is transferred through my ADO component.
    Do you know how to use a procedure with Delphi (ADO) with a function as input parameter ?
    Best regards,
    Daniel Wetzler
    P.S. :
    This is the Delphi code to use my Procedure.
    FactsTempDS:=TADODataset.Create(nil);
    Sproc1 := TAdoStoredProc.Create(nil);
    Sproc1.Connection := TDBConnection(strlistConnectionstrings.objects[iConnectionIndex]).Connection;
    Sproc1.ProcedureName := 'ECSPACKAGE.PROCFINDINITIALSWITCHSTATE';
    Sproc1.Parameters.CreateParameter ('SwitchID',ftInteger,pdinput,0,0);
    //Sproc1.Parameters.CreateParameter ('StartTime',ftdatetime,pdinput,50,0);
    Sproc1.Parameters.CreateParameter ('StartTime',ftString,pdinput,50,0);
    Sproc1.Parameters.Findparam('SwitchID').value:=SwitchID;
    Sproc1.Parameters.FindParam('StartTime').Value:= 'to_timestamp(''2005/12/30 19:36:21'', ''YYYY/MM/DD HH:MI:SS'')';
    Sproc1.CursorType := ctKeyset;
    Sproc1.ExecuteOptions:=[];
    Sproc1.Open;
    Sproc1.Connection := nil;
    FactsTempDS.Recordset:= sproc1.Recordset;
    if FactsTempDS.RecordCount=0
    then raise Exception.Create('No line switch variable found for switch '+IntToStr(SwitchID)+' before starttime. Check BDE dump filter.')

    I have my entity manager setup in a singleton.
    I'm finding it's costly to generate the emf, but if I don't close the em (enitity manager) and emf (entity manager factory) my open cursor count climbs until I exceed the max number of open cursors on the database (11g RAC)
    I'm committing the connection, and uow, and closing the em at the end of each call.
    But until I close the emf, the open cursors aren't released.
    TransactionhistoryPkg tranPkg = new TransactionhistoryPkg(conn); //Class created over database package via JPublisher
    tranPkg.transactionhistoryInsSp(insertTrans.getCardId()); // executes db package
    tranPkg.closeConnection();
    conn.commit();
    uow.commit();
    uow.getAccessor().decrementCallCount();
    em.close();
    Am I missing something really obvious here??
    btw - I found this link helpful in troubleshooting the max cursors issue: https://support.bea.com/application_content/product_portlets/support_patterns/wls/InvestigatingORA-1000MaximumOpenCursorsExceededPattern.html

  • Using Dynamic Visibility with Accordian Menu

    Hiya.  I am trying to use dynamic visibility with an accordian menu.  My menu categories are years, 2005 - 2010. My categories items are key performance indicators such as abandon percentage,  first call resolution, customer satisfaction percentage, call volume and average speed of answer. 
    Of my 6 KPIs, 4 display as percentages and 2 display as whole numbers.  When the percentage graphs are displayed the axis labels needs to be percentages.   When the whole number graphs are displayed the axis label needs to show whole numbers.
    I thought to achieve this I should use dynamic visibility with two different line charts where one line chart shows percentages and the other line chart shows whole numbers.   However I am strugging trying to make that happen.
    Is my concept correct, or is there an easier way to accomplish this?  If my concept is correct,can someone give me some advice on how to make dynamic visibility display the correct chart depending on which KPI I select from my accordian menu?
    Thanks!

    Hi
    You can achieveby doing following steps..
    Insert your categories into D3 and label bind to E3.
    take two charts and bind to the destination data of Accordion menu
    then write a formula in F3 like this =IF(OR(E3="abandon percentage",E3="customer satisfaction percentage"),1,0)
    and bind your two charts to the F3 and set DV for % charts as 1 and # charts as 0.
    I hope this will helps you
    Thanks,
    Srinivas Dandamudi.

  • 32bit and 64bit Apps using Crystal 2010sp1 with a recordset

    Hi
    I'm using Crystal 2010sp1 with VS2010. I have some code that I did not write, which obtains a recordset and passes that to the ReportDocument. It then goes on to .Export() the report.
    When my app is compiling as 32bit the .DataSourceConnections on the ReportDocument contains 1 item with the following properties:
    DataBaseName=""
    DBConnHandler=0
    IntegratedSecurity=False
    LogonProperties = { "ADO.Net DataSet Object", "0,4AFECC" }  { "ADO.Net DataSet Object", "0,4AFECC" }
    { "Internal Connection ID", "2e3b2f7f-0c31-472a-9773-f301a7ba9a3e" }  { "Internal Connection ID", "2e3b2f7f-0c31-472a-9773-f301a7ba9a3e" }
    Password = ""
    ServerName = "NewDataSet"
    Type = CRQA
    UserID = Nothing
    And it exports perfectly!!
    When compiled as "Any CPU" and running on a 64bit machine, the properties are:
    DataBaseName=""
    DBConnHandler=0
    IntegratedSecurity=False
    LogonProperties = { "Field Definition File", "BL_Extras.ttx" } { "Field Definition File", "BL_Extras.ttx" }
    Password = ""
    ServerName = "D:\EntaV4\ENTAReports\rpt\BL_Extras.ttx"
    Type = CRQA
    UserID = Nothing
    And the export fails with the exception:
    "Failed to load database information. Error in File BL_Extras {9D634275-70C4-42E8-B7EE-C2A69C0CDD2B}.rpt: Failed to load database information."
    Why under 64bit is Crystal setting different connection details? And where is it getting the path for the ttx file in the ServerName property, my app and report are on my C drive in a totally different location. That folder on D had never existed on my machine.
    I do happne to have the ttx file for this report, but putting it next to the rpt or in the above path makes no difference. I don't have the ttx for other reports though anyway and running as 32bit it works even if I delete the ttx though.
    I have searched the error and found several pre-SP1 and non-recordset scenarios. I also read a little about create XML files for the reports but that is going to be too much work as there are hundreds of reports. It's not a lack of a 64bit ADO driver is it?
    I thought i'd ask here for other solutions before I step back in time 10 years and make this app 32bit only.
    I'm pretty sure this all worked on 2008 with CR2008.....

    I exported the data as XML from my datatable like you said. I did it both running as x64 and x86, the output was the same.
    I thought i'd eliminate any bad code that might be in my main app by writing a little test app that loads that xml and drops it in a viewer control. I started a new project in VS, added a form with the Crystal Report viewer. I then wrote code to load the rpt file, and read the xml into a dataset, and then setdatasource on a report object to the first table of that dataset (which is what my main app is doing).
    Dim crReportDocument As New ReportDocument
    Dim filePath As String
    Dim ds As DataSet
    filePath = "c:\64crystal.xml"
    ds = New DataSet()
    ds.ReadXml(filePath)
    crReportDocument.Load("C:\inetpub\wwwroot\SchedulerManager\rpt\BL_Extras.rpt")
    crReportDocument.SetDataSource(ds.Tables(0))
    CrystalReportViewer1.ReportSource = crReportDocument
    Running it in x86 I am prompted for some parameters that the report required, and then the report renders in the viewer perfectly, no problems.
    Running this app in x64 prompted me for the parameters, and then I get a msgbox saying:
    Failed to load database information
    Error in File BL_Extras {CD6C5C52-744C-433E-9297-87ECC3834262}.rpt:
    Failed to load database information.
    So then going back to what you asked, I went to the viewer control and click 'choose a crystal report' I get a 'Bad forumula result' error. If I select 'Create a new Crystal Report' and then 'From and existing report' and select the rpt file i'm working with. It then shows the rpt file in the VS designer with all the fields and sections and looks fine, though returning to the viewer gives the 'Bad Formula result' again. Seem to get this on several reports so am assuming its just because there is no data yet.
    On this report now in my project I went to set datasource location and selected the XML it then shows NewDataSet with Table under it in the treeview. The update button is disabled if i select the table. If I select the dataset and click update it tells me:
    "Some tables could not be replaced, as no match was found in the new data source. Please specify the table required for any unmodifeid tables". The top pane of this window is showing the file details of the ttx that it thinks is located on the D drive.
    If I go to database expert and move the table over it then prompts me to find the ttx file. It doesn't let me skip this so I give in and tell it where it is. I then get the link tab. It shows the ttx with 23 fields and my xml table with 27 fields. It has 11 fields linked automatically,
    A comparrison of the ttx and XML in notepad shows the following, the bold fields are the ones that did not auto link.
    DateOption, ttx:Number, xml:unsignedByte
    StartDate, ttx:dateTime, xml:dateTime
    EndDate, ttx:dateTime, xml:dateTime
    VenueGroups, ttx:Memo, xml:string
    Profiles, ttx:Memo, xml:string
    Users, ttx:Memo, xml:string
    Extras, ttx:Memo, xml:string
    RepGrouping: ttx:Number, xml:unsignedByte
    IncludeDiscount, ttx:Number, xml:unsignedByte
    VgrDescription, ttx:String(50), xml:string
    CurSymbol, ttx:String(3), xml:string
    CurName, ttx:String(30), xml:string
    CurScaleFactor, ttx:Number, xml:short
    ProDescription, String(50), xml:string
    UseName, String(30), xml:string
    TransactionDate, ttx:Datetime, xml:dateTime
    StxCode, ttx:Number, xml:int
    StxDescription, ttx:String(100), xml:string
    MrwID, ttx:String(3), xml:string
    MrwDescription, ttx:String(100), xml:string
    Sales, ttx:Number, xml:int
    Returns, ttx:Number, xml:int
    Reserved, ttx:Number, xml:int
    GrossSalesAmount, ttx:Currency, xml:decimal
    GrossReservedAmount, ttx:Currency, xml:decimal
    SalesVAT, ttx:Currency, xml:decimal
    ReservedVAT, ttx:Currency, xml:decimal
    Right clicking on all of these bold items on the table side (in the link tab) says that those bold fields are type Number. So not sure why the first 8 don't link as they are looking for Number. As for the last 4, in SQL these fields are type money, once read by vb.net into a datatable they are of type decimal. Not sure what crystal is expecting here.
    I can manually link the 8, but it tells me for the 4 currency fields that the "data types are not compatibile"
    I still don't get why if running as 32bit and passing the datatable from xml or sql to the rpt, even without the ttx, works without issue.
    I think for now that i'm going to have to simply compile my main app for 32bit, but would still like to understand what is going on here. Thanks for helping to look into this.
    Tony.

Maybe you are looking for

  • Refresh page after execute event

    Hi all, I have a question, please help. I have a button on the view SOHOverView(BT115H_SLSO) to change the status. *** part of code of event *** CALL FUNCTION 'CRM_STATUS_CHANGE_EXTERN'      EXPORTING        objnr               = objnr        user_st

  • HOW CAN I DO A RESET TO THE IPAD2 ?, HOW CAN I DO A RESET TO THE IPAD2 ?

    I was deleting mails from my mail box when the sistem down. Since there i try to shutdown the ipad but the screen apears black with a thinking icone in the middle and doesn´t swich off. What can i do? Someone a similar problem? Thanks

  • How To Add Business Partner Catalog Numbers throuh the SDK (OSCN)

    Is there an SDK Object to Add Business Partner Catalog Numbers (form 993) I would like to use a sdk object to Add Business Partner Catalog Numbers instead of using SQL to insert into the OSCN table Sincerely yours Riade Asleh

  • Fireworks CS3 Pages export internal error from Page naming?

    When exporting a set of linked "Pages" to HTML, I was getting an "internal error" and an incomplete set of pages. It would have been nice to get a more informative error message, but I found an Adobe Technote recommending repairing permissions. This

  • Firewire CF Cardreader to P.S.4 Elements

    I can find no information on how to down load images from my Canon S50 using a Lexar Firewire CF Card reader to Photoshop Elements 4 on my 24"imac running 10.5.2. All the instructions deal with a direct USB to camera connection? I have multiple GB of