Report generation with XML

We already generate reports without OracleReporter. We build a xml file and based on this file we generate reports with the report-server. But these are very easy tabular reports.
Now we want to generate more complex reports (eg. matrix reports).
Is anybody out there who already made this by generating xml files? Maybe there is some ready to use code for solving our problem.
andreas

Hello,
Report is defined through a XML file. The format of XML definition follows : Reports.dtd in ORACLE_HOME/reports/dtd/
That means the data comes out of a XML file :XML Data can be treated as data source(reading data from xml file) is possiable through
Oracle Reports 9i feature XML Query. if you do not want to use ReportBuilder, You have to manually
write the XMLPDS portion in XML Report. Please make some XML Query report from Builder and try to
follow the same format while you write your XML Definition.
with Regards
Sachin

Similar Messages

  • XML report generation with Stylesheet

    Hi all,
    I am creating a LabVIEW code which would be generating a XML report. Is there any way we can import this report into a xml stylesheet programatically using LabVIEW and open the report automatically after the code has been generated?
    -FraggerFox!
    Certified LabVIEW Architect, Certified TestStand Developer
    "What you think today is what you live tomorrow"

    Hi Mike,
    Here are stylesheets taken from teststand. I tried using one of them by a simple VI having some String controls like Name, Age, Address etc. and logging it to an xml file using this stylesheet. Is there any format or something I am missing?
    If you have any sample VI for me, it would be of great help if you attach it.
    I am using LV 8.2
    Message Edited by Parag D on 08-25-2009 03:58 PM
    -FraggerFox!
    Certified LabVIEW Architect, Certified TestStand Developer
    "What you think today is what you live tomorrow"
    Attachments:
    StyleSheets.zip ‏71 KB

  • -1073741819 code using Report Generation with LV 6.1

    I'm studing about the Report Generation Functions with LV 6.1, and I'm trying to run some example about it, but the programs sends the next error: "Error -1073741819 ocurred at unknown System error in Font Style.vi> Set report font.vi>Easy text report.vi
    >. I'm using Windows XP plataform.
    someone knows what can I do?
    Thanks for your help

    Maybe you already know this but the font settings is a cluster of 4 elements: 2 integers and 2 strings. The 2 integers are character set and weight. They default to -1. The two strings are font name and font size. The default to blank strings. Are you wiring this cluster into your font settings terminal? Do you have -1, -1, Arial, and a number for font size inside the cluster (I use 4 for HTML reports)?
    - tbob
    Inventor of the WORM Global

  • Report generation with excel (picture)

    hello,
    I need to insert pictures into excel. I have already printed the report generation toolkit for microsoft office and downloaded Picture_To_XL_(6i). But I have nothing to do the report : for in instance write jpeg file (excel).vi,read jpeg file (excel).vi, read png file(excel).vi...
    Where can I finf this ? I have 3 Cds with labview:Labview 7 express, national instruments device drivers and DIAdem.
    I have download an install update bur does not work.
    How can I do?
    thank you to help me
    labview 7.0

    You can get an excelent Excel Active-X control from the gentleman at the following e-mail address:
    [email protected]
    Also, I have included a PDF description of the item. It is for sale, but it is CHEAP, and well worth the low asking price.
    Attachments:
    excelocx.pdf ‏248 KB

  • Crystal report generation with Java Bean AS  Data source on RAD

    <p>Hi,</p><p>&#160;</p><p>          Our company wants report generation in IBM RAD 7.0  using crystal reports with a Java Bean as data source. i HAVEN&#39;T FOUND ANY ARTICLES TO WORK ON RAD. Any inputs appreciated..</p><p>&#160;</p><p>Thanks,</p><p>Manju</p>

    Look for Java POJO in the doc, i'm using RAD 7.0 and it's working like RAD 6.0

  • 10g Reports issue with XML Data Source

    Hi,
    Has anybody ever encountered an issue with Oracle 10g report using an XML as the data source? What happens is, some of the values in the XML are printed to the wrong column.
    One of the elements in our XML file is a complex type with 10 elements under it. The first 5 are picked up properly, but the last 6 are not. Elements #6 to #9 has a minimum occurence of 0. What happens is when element #6 is present, but #7 is, the value for element #7 is passed on to element #6.
    The XSD and XSL files are both valid since the reports were working when we were still using 9i. There is no hidden logic in the report which might cause this issue to come up, i.e., the report just picks up the values from the XML and prints it to the appropriate columns.
    Any help will be greatly appreciated.

    XSD used
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
            <!-- trade instructions detail & trailer -->
            <xs:element name="TradeDetail">
                    <xs:complexType>
                            <xs:sequence>
                                    <xs:element ref="TradeType"/>
                                    <xs:element ref="TradeID"/>
                                    <xs:element ref="TradeDate"/>
                                    <xs:element ref="FundID"/>
                                    <xs:element ref="FundName"/>
                                    <xs:element ref="DollarValue" minOccurs="0"/>
                                    <xs:element ref="UnitValue" minOccurs="0"/>
                                    <xs:element ref="PercentageValue" minOccurs="0"/>
                                    <xs:element ref="OriginalTradeID" minOccurs="0"/>
                                    <xs:element ref="CancellationFlag"/>
                            </xs:sequence>
                    </xs:complexType>
            </xs:element>
            <xs:element name="Instruction">
                    <xs:complexType>
                            <xs:sequence minOccurs="0">
                                    <xs:element ref="TradeDetail" maxOccurs="unbounded"/>
                            </xs:sequence>
                    </xs:complexType>
            </xs:element>
            <!-- overall trade instruction message -->
            <xs:element name="InterchangeHeader">
                    <xs:complexType>
                            <xs:sequence>
                                    <xs:element ref="Instruction"/>
                            </xs:sequence>
                    </xs:complexType>
            </xs:element>
            <!-- definition of simple elements -->
            <xs:element name="FundID" type="xs:string"/>
            <xs:element name="TradeType" type="xs:string"/>
            <xs:element name="TradeID" type="xs:string"/>
            <xs:element name="TradeDate" type="xs:string"/>
            <xs:element name="FundName" type="xs:string"/>
            <xs:element name="DollarValue" type="xs:decimal"/>
            <xs:element name="UnitValue" type="xs:decimal"/>
            <xs:element name="PercentageValue" type="xs:decimal"/>
            <xs:element name="OriginalTradeID" type="xs:string"/>
            <xs:element name="CancellationFlag" type="xs:string"/>
    </xs:schema>
    XML used
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <InterchangeHeader xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="TradeInstruction.xsd">
       <Instruction>
          <TradeDetail>
             <TradeType>Purchase</TradeType>
             <TradeID>M000038290</TradeID>
             <TradeDate>20061201</TradeDate>
             <FundID>ARO0011AU</FundID>
             <FundName>ABN Fund</FundName>
             <DollarValue>2111.53</DollarValue>
             <CancellationFlag>N</CancellationFlag>
          </TradeDetail>
          <TradeDetail>
             <TradeType>Redemption</TradeType>
             <TradeID>M000038292</TradeID>
             <TradeDate>20061201</TradeDate>
             <FundID>ARO0011AU</FundID>
             <FundName>AMRO Equity Fund</FundName>
             <UnitValue>104881.270200</UnitValue>
             <CancellationFlag>N</CancellationFlag>
          </TradeDetail>
          <TradeDetail>
             <TradeType>ISPurchase</TradeType>
             <TradeID>M000038312</TradeID>
             <TradeDate>20061201</TradeDate>
             <FundID>MLC0011AU</FundID>
             <FundName>Cash Fund</FundName>
             <OriginalTradeID>M000038311</OriginalTradeID>
             <CancellationFlag>N</CancellationFlag>
          </TradeDetail>
       </Instruction>
    </InterchangeHeader>
    XSLT used
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
            <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
            <xsl:template match="/">
                    <InterchangeHeader>
                            <xsl:for-each select="InterchangeHeader/Instruction/TradeDetail">
                            <xsl:sort select="FundName"/>
                            <xsl:sort select="TradeDate"/>
                                    <TradeDetail>
                                            <TradeType><xsl:value-of select="TradeType"/></TradeType>
                                            <TradeID><xsl:value-of select="TradeID"/></TradeID>
                                            <TradeDate><xsl:value-of select="TradeDate"/></TradeDate>
                                            <FundID><xsl:value-of select="FundID"/></FundID>
                                            <FundName><xsl:value-of select="FundName"/></FundName>
                                            <DollarValue><xsl:value-of select="DollarValue"/></DollarValue>
                                            <UnitValue><xsl:value-of select="UnitValue"/></UnitValue>
                                            <PercentageValue><xsl:value-of select="PercentageValue"/></PercentageValue>
                                            <OriginalTradeID><xsl:value-of select="OriginalTradeID"/></OriginalTradeID>
                                            <CancellationFlag><xsl:value-of select="CancellationFlag"/></CancellationFlag>
                                    </TradeDetail>
                            </xsl:for-each>
                    </InterchangeHeader>
            </xsl:template>
    </xsl:stylesheet>

  • .tdms report generation with .pdf format

    Hi,
    My problem is a kind of report generation problem.My data logging format is .tdms format and i use tdm file viewer function to view my datas but i didnt use tdm data report generation function.How can i use this function with my code.Actually i want to print automatically like pdf format...
    Attachments:
    ustalt.vi ‏62 KB

    kacco wrote:
    Hi Yye,
    İ use diadem and labview 09. I know diadem is very good solution to view data but i want to print automaically.My data type is .tdms(test data management system) if u look my .vi you can understand.
    ı want to print aoutomatically with my channel and group.
    I can see from your code that you are a beginner. Your coding style is very Labview no-no. But well every Labview pro have some time been a beginner I have some problems understanding or grasp the essence of your problem. Can you post your failed attempt to use rapport generation. It would help in the understanding of your problem.
    Besides which, my opinion is that Express VIs Carthage must be destroyed deleted
    (Sorry no Labview "brag list" so far)

  • Report Generation with Endeca

    Hi ,
    We are trying to implement the Endeca Logging and Report Generation in our application. I have followed LogServerReportGen.pdf provided by Endeca.
    1. We implemented logging API calls in our code.
    2. Created a logserver component in Workbench and specified all the neccessary details
    3. Created a report generation componentin Workbech
    When i am trying to start the Report Generation component its failing, i am not able to figure out what is the problem here.
    Aslo do we need to develop and new script and provision it in workbech for Generating report ? How this report generation works.
    Can some one list out what i am missing ?
    Thanks
    DEV

    Hi Praving,
    I tried to run it from scripts tab in Workbench admin console. It ran fine without any failures
    What i am seeing in the view reports tab is empty all 0 values.... but we could see lot of our call recorded in Logserver output files... somewhere the connection between them is missing. I just used the existing logserver and report generation scripts provided OOB from Endeca.
    I havenet logged the key SESSION_ID in loggin calls, will it matter, do you see this as the reasong.
    The below is the logserver output I could see
    H2012_12_17.10_02_27{version=3.5}
    L2012_12_17.10_14_10{DIMS=By Fulfilment Type,DVALS=/By Fulfilment Type/Both,ENE_TIME=210,NUMREFINEMENTS=1,NUM_RECORDS=29,PAGE_TIME=0,TYPE=UNKNOWN}
    L2012_12_17.10_14_29{DIMS=By Fulfilment Type,DVALS=/By Fulfilment Type/Both,ENE_TIME=260,NUMREFINEMENTS=1,NUM_RECORDS=11,PAGE_TIME=10,SEARCH_KEY=all,SEARCH_MODE=mode+matchany,SEARCH_TERMS=Cakes,TYPE=S}
    L2012_12_17.10_14_45{AUTOCORRECT_TO=cakes,DIMS=By Fulfilment Type,DVALS=/By Fulfilment Type/Both,ENE_TIME=100,NUMREFINEMENTS=1,NUM_RECORDS=11,PAGE_TIME=0,SEARCH_KEY=all,SEARCH_MODE=mode+matchany,SEARCH_TERMS=Cakys,TYPE=S}
    L2012_12_17.10_15_04{DIMS=By Fulfilment Type,DVALS=/By Fulfilment Type/Both,ENE_TIME=70,NUMREFINEMENTS=1,NUM_RECORDS=4,PAGE_TIME=0,SEARCH_KEY=all,SEARCH_MODE=mode+matchany,SEARCH_TERMS=Wine,TYPE=S}
    L2012_12_17.10_15_22{DIMS=Wine%2CBy Fulfilment Type,DVALS=/Wine/Wine%2C/By Fulfilment Type/Both,ENE_TIME=40,NUMREFINEMENTS=2,NUM_RECORDS=4,PAGE_TIME=0,TYPE=SN}
    L2012_12_17.10_15_49{DIMS=Wine%2CBy Fulfilment Type,DVALS=/Wine/Red%2C/By Fulfilment Type/Both,ENE_TIME=40,NUMREFINEMENTS=2,NUM_RECORDS=4,PAGE_TIME=0,TYPE=SN}
    L2012_12_17.10_16_53{DIMS=Wine%2CBy Fulfilment Type,DVALS=/Wine/Red%2C/By Fulfilment Type/Both,ENE_TIME=130,NUMREFINEMENTS=2,NUM_RECORDS=0,PAGE_TIME=0,TYPE=SN}
    L2012_12_17.10_17_06{DIMS=Wine%2CBy Fulfilment Type,DVALS=/Wine/Red%2C/By Fulfilment Type/Both,ENE_TIME=110,NUMREFINEMENTS=2,NUM_RECORDS=0,PAGE_TIME=0,TYPE=SN}
    L2012_12_17.10_17_20{DIMS=By Fulfilment Type,DVALS=/By Fulfilment Type/Both,ENE_TIME=80,NUMREFINEMENTS=1,NUM_RECORDS=0,PAGE_TIME=0,SEARCH_KEY=all,SEARCH_MODE=mode+matchany,SEARCH_TERMS=Strawberry,TYPE=S}
    L2012_12_17.10_17_31{DIMS=By Fulfilment Type,DVALS=/By Fulfilment Type/Both,ENE_TIME=160,NUMREFINEMENTS=1,NUM_RECORDS=0,PAGE_TIME=0,SEARCH_KEY=all,SEARCH_MODE=mode+matchany,SEARCH_TERMS=Lemon,TYPE=S}
    L2012_12_17.10_17_42{DIMS=By Fulfilment Type,DVALS=/By Fulfilment Type/Both,ENE_TIME=81,NUMREFINEMENTS=1,NUM_RECORDS=9,PAGE_TIME=0,SEARCH_KEY=all,SEARCH_MODE=mode+matchany,SEARCH_TERMS=Red,TYPE=S}
    L2012_12_17.10_18_00{DIMS=By Fulfilment Type,DVALS=/By Fulfilment Type/Both,ENE_TIME=80,NUMREFINEMENTS=1,NUM_RECORDS=2,PAGE_TIME=0,SEARCH_KEY=all,SEARCH_MODE=mode+matchany,SEARCH_TERMS=Occasion,TYPE=S}
    L2012_12_17.10_18_14{DIMS=By Fulfilment Type,DVALS=/By Fulfilment Type/Both,ENE_TIME=110,NUMREFINEMENTS=1,NUM_RECORDS=1,PAGE_TIME=0,SEARCH_KEY=all,SEARCH_MODE=mode+matchany,SEARCH_TERMS=Basket,TYPE=S}
    L2012_12_17.10_18_31{DIMS=By Fulfilment Type,DVALS=/By Fulfilment Type/Both,ENE_TIME=140,NUMREFINEMENTS=1,NUM_RECORDS=3,PAGE_TIME=1,SEARCH_KEY=all,SEARCH_MODE=mode+matchany,SEARCH_TERMS=Blooms,TYPE=S}
    L2012_12_17.10_19_51{DIMS=By Fulfilment Type,DVALS=/By Fulfilment Type/Both,ENE_TIME=30,NUMREFINEMENTS=1,NUM_RECORDS=3,PAGE_TIME=0,SEARCH_KEY=all,SEARCH_MODE=mode+matchany,SEARCH_TERMS=Blooms,TYPE=S}

  • Crystal Report generation using XML

    I have some reports that were created using XML and as I recall when I created them using CR v. 9 I used a connections called ADO (Xml) or something like that. On one of my machines I have CR XI and the only option available is XML and when I add a field from this connection it inserts: "{NewDataSet\TableName.FieldName}" however, previously when I used the ADO XML connections it only inserted {TableName.FieldName}. In the version 9 CR i was using the professsional version and in the version 11 CR it is still the professional version but I can't seem to create an XML connector that doesn't prefix the table/field with "NewDataSet". My request is two fold, first, can you please direct me to some articles that I can read to better understand how to generate  CR from XML? My project is to generate the XML and then set the xml during runtime into the report using SetDataSource and then display the report using the CR viewing that I package and redist with my app. Secondly, why does the ADO XML connector not available in CR XI professional version and is there any way to get the CR v. 9 behaviour back?
    Thanks,
    Marcus

    Hi, Markus
    If you are planning to run reports from a .NET application, you need to have the Developer edition, not the professional.
    The ADO.NET Driver is not installed by default. Go into Control Panel - Add / Remove programs, and chose Crystal Reports, and change. You can expand the Database drivers, and you should see the ADO.NET driver there. Note: you need to have the .NET framework installed for this to work.
    Regards,
    Jonathan

  • Oracle Report 6i with XML

    Can I create an Oracle report definition programmatically using XML and to build up a report definition on the fly based on user input? If I can, could anyone tell me where I can find more information about HOW?
    null

    Yes. Please read chapter 7 of the Publishing Reports manual (shipped with 6i in PDF or HTML)
    Regards
    The Oracle Reports Team http://technet.oracle.com

  • How to see Greek characters inside a PDF report (made with XML Publisher)

    Hi,
    I just patched my e Business Suite (ver. 11.5.9) in order to use XML Publisher 5.6.3.
    It works fine, but I have a big problem when I want to see Greek characters inside my report; instead to see the Greek characters I see only '?????'
    I tried to add some font under the XML Publisher Administrator responsibility following the Doc ID: 373377.1 "How To Install a Font Using XML Publisher Administrator", but my problem remains: I don't see my Greek characters
    Do I need to add any other fonts on the file system ? and where ? (under which path), or I set something at the XML Publisher Administrator responsibility level (under the Administration link) ?
    Any help will be appreciated, because it's very urgent to know how to fix this problem.
    Thanks in advance
    Alex

    Alex,
    Please verify the value of $AF_CLASSPATH variable and make sure that JRE_TOP/lib/fonts is part of this env variable (in addition to $CLASSPATH).
    Note: 353164.1 - Chinese Characters Appear as Question Marks(?) When Using a Data Template
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=353164.1
    Note: 399518.1 - Arabic Characters Appear As Question Marks
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=399518.1

  • Problem when using templates in report 6i with xml defination

    Iam trying to generate a report through xml defination , and iam including the template
    in the xml . but when i include a user parameter in the template and try to map that UI parameter as f_1 in margin (you can look in object navigator) and run the report through xml then report is hanging, But it works fine when i add the template to the rdf . I doesn't when i include that tdf in the xml and run it. can any one solve this problem.
    manks
    null

    In the template you should change both the font for headings and for data.
    Those are 2 different section in the template.

  • Crystal Reports generation from XML datasource or file.

    How to generate the crystal report(.rpt file) from XML/XSD file as input..?
    I'm trying out this from 'Crystal Reports in Eclipse'.

    Same problem here using CR4J v.2 sp1<BR/>
    This is the complete StackTrace:<BR/>
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: Error al cargar el conector de base de datos. No se pudo obtener acceso a la clase 'com.crystaldecisions.reports.queryengine.driverImpl.DriverLoader'.---- Error code:-2147467259 Error code name:failed
         at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.if(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
         at com.businessobjects.samples.InformePruebaXML.main(InformePruebaXML.java:64)
    Caused by: com.crystaldecisions.reports.common.QueryEngineException: Error al cargar el conector de base de datos. No se pudo obtener acceso a la clase 'com.crystaldecisions.reports.queryengine.driverImpl.DriverLoader'.
         at com.crystaldecisions.reports.queryengine.Connection.ur(Unknown Source)
         at com.crystaldecisions.reports.queryengine.Connection.uB(Unknown Source)
         at com.crystaldecisions.reports.queryengine.Connection.br(Unknown Source)
         at com.crystaldecisions.reports.queryengine.Connection.bs(Unknown Source)
         at com.crystaldecisions.reports.queryengine.Connection.t1(Unknown Source)
         at com.crystaldecisions.reports.dataengine.dfadapter.DFAdapter.a(Unknown Source)
         at com.crystaldecisions.reports.dataengine.dfadapter.DFAdapter.for(Unknown Source)
         at com.crystaldecisions.reports.reportdefinition.ReportHelper.a(Unknown Source)
         at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.long(Unknown Source)
         at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.a(Unknown Source)
         at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.int(Unknown Source)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.do(Unknown Source)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(Unknown Source)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(Unknown Source)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.a(Unknown Source)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.call(Unknown Source)
         at com.crystaldecisions.reports.common.ThreadGuard.syncExecute(Unknown Source)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.for(Unknown Source)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.int(Unknown Source)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(Unknown Source)
         at com.businessobjects.sdk.erom.jrc.a.a(Unknown Source)
         at com.businessobjects.sdk.erom.jrc.a.execute(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.RemoteAgent$a.execute(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.CommunicationChannel.a(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ds.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         ... 4 more
    Caused by: java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         ... 32 more
    Caused by: com.businessobjects.reports.jdbinterface.common.DBException: No se pudo cargar el conector de base de datos 'crdb_xml.dll'.
         at com.crystaldecisions.reports.queryengine.driverImpl.DriverLoader.loadDriver(Unknown Source)
         ... 36 more
    Edited by: Asier Camara Martin on Jun 1, 2009 2:16 PM

  • Report-generation with Excel97 (german-version)

    When I send values to excel97 (german) using "excel easy table.vi" (numeric or string format) or "Append Numeric Table to Report.vi" the values are not represented as numbers but as text. Only after double-click on the cell (same as additional enter) excel automatically takes it as a number. (Not possible/stupid with large number of values.)
    How can I make excel dirctly accept my values?

    Sorry, been on Holiday...
    The number is aligned left in the excel cell and ignored in further calculations. (See the attached example).
    Meanwhile I found some "trick": I run an excel-macro to reformat all cells (should be included in the example-file).
    But is this the right way (takes time), or is it possible to make excel directly accept the values?
    Thanks for your interest,
    Till
    Attachments:
    Tilltest.xls ‏30 KB

  • Report generation with two tables having no join

    Hi, 
           I would like to know if i can generate a report to view data from purchase and sales tables at one time even if they are not directly linked.
    Regards,
    Bhavna

    hi jain,
    You can use Union All to combine sql queries of sales and
    purchase tables.
    Jeyakanthan.

Maybe you are looking for

  • Typekit sync problem in Photoshop (Suitcase fusion?)

    I am on a Mac OS X 10.9 and all my CC apps are up to date I installed a few desktop fonts from Typekit. They worked fine in Photoshop but after restarting my Mac the fonts were disabled in Photoshop. I then turned file and font sync of/on in CC setti

  • Installation error-Argument tnsnamesOraTemplate must point to an existing f

    Hi experts, I am getting below error during  installation ERROR      2011-08-30 19:19:44.309 [sixxcstepexecute.cpp:937] FCO-00011  The step doNetworkConfigurationClient with step key |NW_Doublestack_DB|ind|ind|ind|ind|0|0|NW_CreateDBandLoad|ind|ind|i

  • Trying to install the output module for Bridge CC but there is no extensions folder for Windows

    I am trying to install the output module for Bridge CC on a Windows system, but there is not an extensions folder in my Bridges CC folder. I have seen several discussions about this issue for Mac's but nothing on a PC. Suggestions that I could use to

  • Thinking about cancelling

    I'm kind of disappointed with Verizon. I'm not exactly happy about their upgrade policy. I have an IPhone 4s, which I loved in the beginning, until the stupid upgrade. Now I'm stuck with a phone that not only crashes on every single app and internet,

  • Updating CV (delete entry which does not match the criteria any more)

    Hi, A MV synchronises entries in a CV (MVtoCV) depending of a criteria (flag). OwnerShip=Meta view. An MVentry is created. If this MVentry doesn't match the criteria, not synchronized in the CV=OK If this MVentry matchs the criteria, synchronized in