Writing a report

I have a need to write a word document from within flash, and
to place a few
flash variables into this document. So I would have a
template document with
some placeholders which need to be populated with flash
variables.
Has anybody come across a method of doing this, perhaps using
any third
party tools?
Many thanks

Hi,
Go throu NLS (National Language Support) stuff from Oracle Documentation.
I think, you will get ur answer
Thanks
Biswa.
<BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Kevin Spence ([email protected]):
I have a current application that creates English language invoices. Now the customer wants us to write some invoices in Japanese. I have no experience of using other languages/character sets with Oracle. Can someone point me in the right direction on how to approach their requirement?<HR></BLOCKQUOTE>
null

Similar Messages

  • I'm writing a report and need a title page, so I want the auto-numbering to start with the second page. So the title page is zero and the next page will read "1"

    I'm writing a report and need a title page, so I want the auto-numbering to start with the second page. So the title page is zero and the next page will read "1" How do I do this?

    Hi H4S,
    Click at the end of the Tile page.
    Menu > Insert > Section Break.
    Click in the second Section. Insert a page number in the Header or Footer.
    Inspector > Layout > Section:
    Regards,
    Ian.

  • Problem in writing 'After Report trigger'

    Hi All,
    Iam trying to insert values into database table after running the report.
    but the values are not inserted into the table.
    Here is the code in 'After Report trigger'
    function AfterReport return boolean is
    begin
    insert into reports_log values('poorders',user,sysdate,'Y');
    commit;
    return (TRUE);
    end;
    Thanks in Advance

    Tested one of my reports and found:
    the After Report Trigger does not fire (to insert a table) in Report Builder (6i) but it fires when it's invoked from Apex.
    It you run your report in Froms or Apex or...., try over there.

  • Writing a report file with specific information

    Hi, all:
    I need to write a text file with specific information in it. I'm going to copy it into Excel, so the easier the format, the better (perhaps CSV format?). I've never done this before, so here's the method I need to capture the information from:
         public void step() {
              greenColorStorage = new ArrayList();
              magentaColorStorage = new ArrayList();
              System.out.println( "==> Model step " + getTickCount() );// Checking step #
              for (int i = 0; i < soldierList.size (); i++) {
                   Soldier s = (Soldier) soldierList.get (i);
                   s.step();
              Collections.shuffle(soldierList);
              System.out.println("Shuffling collection now.");
              dsurf.updateDisplay ();
              System.out.println("Model.step() finished.");
              for (int i = 0; i < soldierList.size (); i++) {
                   Soldier s = (Soldier) soldierList.get (i);
                   if (s.getMyColor() == Color.green ) {
                        greenColorStorage.add(s);
                   if (s.getMyColor() == Color.magenta ) {
                        magentaColorStorage.add(s);
              if (magentaColorStorage.size() == 0 || greenColorStorage.size() == 0 ) {
                   stop();
         }In this method, I need to capture this information: There are soldiers on the Green team and on the Magenta team. I need to know how many there are originally, how many in this time step, at what time step the model stops, and how many of the winning color team are left when the model stops. How do I do this? If you can point me to a specific thread that shows how to write a report file like this, I'd be grateful, since I couldn't find one when I searched. Otherwise, I'd be grateful for examples. I'm in the middle of doing some research, and I have the feeling that I'll need to write report files in the future, so if you'd explain any code you provide, I would be quite grateful--I need to understand what I'm doing as well as simply using your code so that I can really learn what I'm doing when I do this again. Thanks very much!

    FileOutputStream
    public FileOutputStream(File file,
                            boolean append)
                     throws FileNotFoundException
    Creates a file output stream to write to the file represented by the specified File object.
    If the second argument is true, then bytes will be written to the end of the file
    rather than the beginning.
    */

  • Writing a report to spool

    Dear all,
    I have a requirement to write the report output to spool. For that I have used the syntax, new-page print on and new-page print off. But in ECC 5.0 system is telling that the command is obsolate. Can you please suggest what can be done to write the output of a report to spool? Is there any function module available to write the output to spool?
    Thanks and regards,
    Atanu

    Hi,
    Example
    Without archiving
    DATA: PARAMS LIKE PRI_PARAMS,
          DAYS(1)  TYPE N VALUE 2,
          COUNT(3) TYPE N VALUE 1,
          VALID    TYPE C.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
      EXPORTING DESTINATION           = 'LT50'
                COPIES                = COUNT
                LIST_NAME             = 'TEST'
                LIST_TEXT             = 'SUBMIT ... TO SAP-SPOOL'
                IMMEDIATELY           = 'X'
                RELEASE               = 'X'
                NEW_LIST_ID           = 'X'
                EXPIRATION            = DAYS
                LINE_SIZE             = 79
                LINE_COUNT            = 23
                LAYOUT                = 'X_PAPER'
                SAP_COVER_PAGE        = 'X'
                COVER_PAGE            = 'X'
                RECEIVER              = 'SAP*'
                DEPARTMENT            = 'System'
                NO_DIALOG             = ' '
      IMPORTING OUT_PARAMETERS        = PARAMS
                VALID                 = VALID.
    IF VALID <> SPACE.
      SUBMIT RSTEST00 TO SAP-SPOOL
        SPOOL PARAMETERS PARAMS
        WITHOUT SPOOL DYNPRO.
    ENDIF.
    Example
    With archiving
    DATA: PARAMS   LIKE PRI_PARAMS,
          ARPARAMS LIKE ARC_PARAMS,
          DAYS(1)  TYPE N VALUE 2,
          COUNT(3) TYPE N VALUE 1,
          VALID    TYPE C.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
      EXPORTING DESTINATION            = 'LT50'
                COPIES                 = COUNT
                LIST_NAME              = 'TEST'
                LIST_TEXT              = 'SUBMIT ... TO SAP-SPOOL'
                IMMEDIATELY            = 'X'
                RELEASE                = 'X'
                NEW_LIST_ID            = 'X'
                EXPIRATION             = DAYS
                LINE_SIZE              = 79
                LINE_COUNT             = 23
                LAYOUT                 = 'X_PAPER'
                SAP_COVER_PAGE         = 'X'
                COVER_PAGE             = 'X'
                RECEIVER               = 'SAP*'
                DEPARTMENT             = 'System'
                SAP_OBJECT             = 'RS'
                AR_OBJECT              = 'TEST'
                ARCHIVE_ID             = 'XX'
                ARCHIVE_INFO           = 'III'
                ARCHIVE_TEXT           = 'Description'
                NO_DIALOG              = ' '
      IMPORTING OUT_PARAMETERS         = PARAMS
                OUT_ARCHIVE_PARAMETERS = ARPARAMS
                VALID                  = VALID.
    IF VALID <> SPACE.
      SUBMIT RSTEST00 TO SAP-SPOOL
        SPOOL PARAMETERS PARAMS
        ARCHIVE PARAMETERS ARPARAMS
        WITHOUT SPOOL DYNPRO.
    ENDIF.
    Best regards,
    Prashant

  • Need help writing EPM report

    Hi,
    I need an Excel sheet with two reports (I think it should be two, maybe one would be sufficient).
    The first (upper) report should show a dynamic list of accounts. The list is selected by property, so it can change as new accounts are added. The columns should show the selected entity from the context and a list of all intco dimension members which have a corresponding entity dimension member.
    The second (lower) report should show a dynmic list of accounts different from the first report. The selection is also based on a property. The columns should show the intco dimension member for the currenty selected entity and for each column the entity member corresponding to the intco member shown in report 1 above.
    The number of columns in both reports also needs to be dynmic as new entites and intco members are added.
    Maybe this little mock-up can help.
    I have no problem creating the first report. My problem is to define the column headers for the second report. Is there a way to make this dynamic?
    Thanks,
    Arnold

    Hi Arnold,
    I think the solution provided by Vadim is the only way and it's working.
    Shrikant

  • Code help in writing a report Program

    Hello experts
    i was asked to write a report program with the following requirements,(This is to address the pricing issues KSE(company code A ) is facing with KST(another company code B) for S-Bank program(an important program we use it in SD)
    cananyone help with the code.? atlease a skeleton to start the program is highly appreciated.
    requirements..
    Selection Parameters
    Material
    Sold to party
    Sales Org
    Plant
    Sales order
    Actual goods movement dates
    Invoice number
    Sales order
    Report
    -Should detail only the Sbank scopes (all FERT’s beginning with S*)
    -Detail by line items
    -Material number
    -Serial number of device shipped
    -Serial number from SBANK_SERIAL_NUMBER characteristic in KSE_SN_ENDOSCOPES class contained in name plate data
    -Delivery number
    -Invoice number
    -Invoice price
    -Notification number
    -KST Repair level (coding field in notification)
    -KSE Repair level (activity code text from KSE-SM07 code group)
    Thanks
    SP

    Hello experts
    i was asked to write a report program with the following requirements,(This is to address the pricing issues KSE(company code A ) is facing with KST(another company code B) for S-Bank program(an important program we use it in SD)
    cananyone help with the code.? atlease a skeleton to start the program is highly appreciated.
    requirements..
    Selection Parameters
    Material
    Sold to party
    Sales Org
    Plant
    Sales order
    Actual goods movement dates
    Invoice number
    Sales order
    Report
    -Should detail only the Sbank scopes (all FERT’s beginning with S*)
    -Detail by line items
    -Material number
    -Serial number of device shipped
    -Serial number from SBANK_SERIAL_NUMBER characteristic in KSE_SN_ENDOSCOPES class contained in name plate data
    -Delivery number
    -Invoice number
    -Invoice price
    -Notification number
    -KST Repair level (coding field in notification)
    -KSE Repair level (activity code text from KSE-SM07 code group)
    Thanks
    SP

  • Doubt in writing a report from specifications

    Hi,
    1.On a selection-screen with four select -options as s_vbeln,s_vkorg,s_vtweg,s_spart. I need to validate and write a error message ' enter atleast one field' if it is executed without any values.
    2.Also validation should be done that the entered value is correct or incorrect and if it is incorrect it should show the error message concerned to the fields for example if the vkorg value is entered incorrect , it should display'' please enter valid entry' respectively to all the fields.
    Can anyone send me a code on how to perform this.
    Thanks,
    Stalin.

    hi.
    i'm sending u the code  check it and understand it for ur own fields, select ur own fields from there master tables for single validation and check for each field , and for combine validation for wrong combination of data eneterd on selection screen or no data entered , check this sample code::
    **********************VALIDATON OF SONUMBER************************
      SELECT SINGLE vbeln INTO (wa_orderhead-vbeln)
                    FROM vbuk
                    CLIENT SPECIFIED
                    WHERE   mandt = sy-mandt
                      AND vbeln IN s_vbeln.
      IF sy-subrc <> 0.
        MESSAGE e001.          "so number does not exist
      ENDIF.
    **********************VALIDATON OF SOTYPE************************
      SELECT SINGLE auart INTO (wa_orderhead-auart)
                   FROM tvak
                   WHERE auart = s_auart.
      IF sy-subrc <> 0.
        MESSAGE e002.    "doc. type does not exist
      ENDIF.
    **********************VALIDATON OF SOLD TO PARTY**********************
      SELECT SINGLE kunnr INTO (wa_orderhead-kunnr)
                  FROM kna1
                  WHERE kunnr = s_kunnr.
      IF sy-subrc <> 0.
        MESSAGE e003.      "customer does not exist
      ENDIF.
    **********************VALIDATON OF BLOCK************************
      SELECT SINGLE lifsp INTO (wa_orderhead-lifsp)
                    FROM tvls
                    WHERE lifsp = s_lifsk.
      IF sy-subrc <> 0.
        MESSAGE e004.
      ENDIF.
    **********************VALIDATON OF ORGANISTION************************
      SELECT SINGLE vkorg INTO (wa_orderhead-vkorg)
                   FROM tvko
                   WHERE vkorg = s_vkorg.
      IF sy-subrc <> 0.
        MESSAGE e005.
      ENDIF.
    **********************VALIDATON OF DISTRIBUTION***********************
      SELECT SINGLE vtweg INTO (wa_orderhead-vtweg)
                  FROM tvkov
                  WHERE vkorg = s_vkorg and
                        vtweg = s_vtweg.
      IF sy-subrc <> 0.
        MESSAGE e006.
      ENDIF.
    **********************VALIDATON OF DIVISION************************
      SELECT SINGLE spart INTO (wa_orderhead-spart)
                  FROM tvta
                  WHERE vkorg = s_vkorg and
                        vtweg = s_vtweg and
                        spart = s_spart.
      IF sy-subrc <> 0.
        MESSAGE e007.
      ENDIF.
    *************************VALIDATION OF DATE************************
      IF s_erdat-low > sy-datum OR s_erdat > sy-datum.
        MESSAGE e008.
      ENDIF.
    *********************COMBINATION VALIDATION*********************
      SELECT SINGLE  vbeln
                     auart
                     vbtyp
                     erdat
                     ernam
                     lifsk
                     vkorg
                     vtweg
                     spart
                     kunnr
                     waerk
                     vsbed INTO CORRESPONDING FIELDS OF  wa_orderhead
                     FROM vbak
                     WHERE vbeln = s_vbeln AND
                           auart = s_auart AND
                           vbtyp = s_vbtyp AND
                           erdat = s_erdat AND
                           ernam = s_ernam AND
                           kunnr = s_kunnr AND
                           lifsk = s_lifsk AND
                           vkorg = s_vkorg AND
                           vtweg = s_vtweg AND
                           spart = s_spart .
      IF sy-subrc <> 0.
        MESSAGE e009.
      ENDIF.
      SELECT SINGLE vbeln
                    lfgsk
                    lfstk
                    fkstk INTO (wa_orderhead-vbeln,wa_orderhead-lfgsk,
                                wa_orderhead-lfstk,wa_orderhead-fkstk)
                    FROM vbuk
                    WHERE vbeln = s_vbeln AND
                          lfgsk = s_lfgsk AND
                          lfstk = s_lfstk AND
                          fkstk = s_fkstk.
      IF sy-subrc <> 0.
        MESSAGE e009.
      ENDIF.
    ENDFORM.                    " validate_data
    thanks and
    reward points if helpful please.
    Edited by: Abhishek  Ojha on Feb 6, 2008 6:22 AM

  • Printing/report writing

    Could anyone recommend any good printing/report writing tools that can be
    integrated with Forte? I have found these capabilities to be less than
    satisfactory from within Forte itself.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi Matt,
    We have a enterprise strength report writing product (Report Workshop
    for Forte) built in Forte having native support for Integrating with
    Forte Applications. You can visit our website
    http://www.indcon.com/products for further information. This product is
    now available for evaluation and sale.
    Report Workshop For Forte:
    Report Workshop for Fort&eacute;TM is an enterprise strength, distributed,
    report development and management environment. Report Workshop is a user
    friendly, adaptable, scaleable and versatile environment to develop and
    distribute reports. It has the capability to scale with increasing load
    and makes optimal use of resources owing to its server-centric,
    multi-tiered architecture. It supports multiple report formats, multiple
    RDBMS and even non-relational data.
    Fort&eacute; is ingrained in Report Workshop, providing seamless integration
    with Fort&eacute; applications. Report Workshop also leverages Fort&eacute;'s
    capability of providing a scaleable architecture for distributed
    business applications.
    Report Workshop Capabilities
    WYSIWYG Report Development Environment
    *Browse distributed database schema in easy graphical way
    *Jump start with default report formats
    *Override report formats to suit specific needs with point and click
    ease
    *Preview reports with actual data
    *Iterate above steps until perfection is reached
    Sever Based Enterprise Strength Reporting
    *N-tiered scaleable application
    *Share the report objects
    *Execute once and share the reports among end users
    *Optimizes database connections
    *Minimal network traffic with capability of shipping one report page at
    a time
    Distribute reports with state-of-the-art distribution channels
    *E-mail
    *Publish HTML on Web
    *Network printing
    *View it with viewer
    *Save in Excel format for further analysis
    Schedule Management
    *Create schedules for periodic execution and distribution
    *Customize schedules to suit your organization's holiday plan
    *View history of schedule runs
    Version Management
    *Retain report results for future use
    *Define purge policy
    *View/Print/E-mail versioned reports
    Native Fort&eacute; Application Program Interface
    *Integrate your Fort&eacute; application with Report Workshop
    Rich Features
    Support for multiple report formats
    *Tabular
    *Grid
    *Group
    *Free
    *Composite
    Support for multiple data sources
    *SQL (Oracle, Sybase, ODBC, DB2, Ingres and Rdb Databases)
    *External Data Source ( Forte Applications)
    .CORBA Objects
    Client and server based printing (on NT servers)
    For additional information about Report Workshop for Fort&eacute;, please feel
    free to contact us. 
    An evaluation copy of Report Workshop is available and can be downloaded
    from the Internet.
    Indus Consultancy Services
    140, E.Ridgewood Ave.
    Paramus, NJ 07661
    www.indcon.com
    Phone: 201-261-3100
    - Pradnesh Dange
    From: Matt Luce[SMTP:[email protected]]
    Reply To: Matt Luce
    Sent: Wednesday, March 03, 1999 3:33 PM
    To: [email protected]
    Subject: printing/report writing
    Could anyone recommend any good printing/report writing tools that can
    be
    integrated with Forte? I have found these capabilities to be less
    than
    satisfactory from within Forte itself.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Dear experts help needed in creation of report in hr

    Please check the below code.
    There is one Transaction code PA20 from these i need the fields in my report.
    I tried writing the report but the fields are from structure so please help in creating the report.
    I am a beginner so i donno how to find the below fields are coming from which table.
    when i do F1 on the fields in PA20 i found the fields but they are from structure.
    type-POOLS: SLIS.
    TYPES : BEGIN OF TY_P0001,
            PERNR TYPE PERNR_D,      "Personnel Number
            BEGDA TYPE BEGDA,        "Start Date
            BUKRS TYPE BUKRS,        "Company Code
            ENAME TYPE EMNAM,        "Formatted Name of Employee or Applicant
            END OF TY_P0001.
    TYPES : BEGIN OF TY_P0016,
            PERNR TYPE PERNR_D,      "Personnel Number
            PRBZT TYPE PRBZT,        "Probationary Period
            CTTYP TYPE CTTYP,        "Contract Type
            END OF TY_P0016.
    TYPES: BEGIN OF TY_P9210,
             PERNR TYPE PERNR_D,
            ZTICKET_AMT TYPE ZTICKET_AMT,  "Ticket Amount
            END OF TY_P9210.
    TYPES : BEGIN OF TY_OUTPUT,
             PERNR TYPE PERNR_D,      "Personnel Number
             BEGDA TYPE BEGDA,        "Start Date
             BUKRS TYPE BUKRS,        "Company Code
             ENAME TYPE EMNAM,        "Formatted Name of Employee or Applicant
             PRBZT TYPE PRBZT,        "Probationary Period
             CTTYP TYPE CTTYP,        "Contract Type
             ZTICKET_AMT TYPE ZTICKET_AMT,  "Ticket Amount
            END OF TY_OUTPUT.
    DATA:  T_P0001 TYPE TY_P0001 OCCURS 1,
           W_P0001 TYPE TY_P0001,
           T_P0016 TYPE TY_P0016 OCCURS 1,
           W_P0016 TYPE TY_P0016,
           T_P9210 TYPE TY_P9210 OCCURS 1,
           W_P9210 TYPE TY_P9210,
           T_OUTPUT TYPE TY_OUTPUT OCCURS 1,
           W_OUTPUT TYPE TY_OUTPUT.
        START-OF-SELECTION.
            SELECT PERNR
                   BEGDA
                   BUKRS
                   ENAME FROM P0001 INTO TABLE T_P0001
                   WHERE
                    AND  BUKRS IN S_BUKRS
                    AND  BEGDA < '31032007'.
              SELECT PERNR
                     PRBZT
                     CTTYP
                     FROM P0016 INTO TABLE T_P0016
                     FOR ALL ENTRIES IN T_P0001
                     WHERE PERNR = T_P0001-PERNR
              SELECT PERNR
                     ZTICKET_AMT
                     FROM P920 INTO TABLE T_P920
                     FOR ALL ENTRIES IN T_P920
                     WHERE PERNR = T_P0001-PERNR.

    use logical data base PNP.
    tables: pernr.
    infotypes: 0001, 0016, ....
    start-of-selection.
    get pernr.
    here all tables Pxxxx defined as INFOTYPES are filled for the selected PERNR.

  • Change Table in Report Painter

    Hi Experts,
    I have some Report Painter reports assigned to a Library.  I would like to change the table.  Is there a a way to change the table without re-writing the reports?  I can add a new table, but do not know how to remove the existing table without affecting the report. Does any one have an idea? Please advice.
    Thanks
    Kingsley

    Hi,
    I would like to change the assignment of the form.
    Yet it is assigned to a standard report and I would like to assign it to a report I have created.
    Ronan

  • Need to develop this report plezzzz help

    the requirement says
    When a user submits an ID they have to choose who sold the product from the sold by field.This has to be chosen correctly otherwise there will be issues in sales and commission process.I need to develop a report to detect immediately when an Id is created which seems to be suspect.A suspect ID is one in which a salesperson was chosen on a customer who is not assigned to that sales person territory
    for example: if danny is in Kathy territory is assigned to a customer in Texas which is Larry territory.
    any suggestions will be helpful for me...
    Edited by: user13001889 on Jun 6, 2011 4:43 PM
    Edited by: user13001889 on Jun 6, 2011 4:44 PM

    You ask for help, yet all you give is conceptual data. How do you expect help on writing the report?
    Q) What defines "territory"? Is it a flag? Zip code? City?
    Here is an answer based on a lot of assumptions:
    I would have to assume that territory is defined by something like city, state, or zip code. If so, you could start with this:
    When a customer submits an ID, along with who he/she selects as a salesperson -- I assume this is a drop down box to eliminate multiple entries of the same person due to variations in spelling -- thep person's address, city, state and zip are included as well. Let's assume that territory is defined by zip code. With the salesperson's name and the zip of the customer captured, you have the basis for comparison.
    Based on the table of all your salespeople and their territory (zip code in my assumption), you can create a report that contains a concatenated field of salesperson||zip code. This will produce a report with all possible combinations of salesperson and territory. This report will be your sub-query.
    Now you have your main query based on the customer activity table and you create a concatenated field of salesperson (chosen-by-customer)||zip code (of the customer). You will put a filter on this concatenated column and have it based on the results of another request (your sub-query) with the operand "not equal to/not in."
    If any record in the main query does not match an entry from the sub-query, that record will display. It will be a report that contains customers who chose a sales person who doesn't have that territory.
    That's how you build your report.

  • Search data into ResultSets to genrate a complex report

    Hi,
    I am writing a report called "Product Flow". The report headings are follows
    prodcode prod name opening qty purchase_qty sales_qty closing_qty
    =============================================================
    To achieve this, I need to know the products, their opening qty, their purchase qty, sales qty and finally I will I will calculate the closing stock.
    All this information is into different tables. I want to create 4-5 resultsets and then take the prodcut's resultset and scroll into it, take product one by one and then search its details into other resultset of opening, purchase and sales resultsets
    How can I do it with resultsets? can anyone guide me? I am very much new for Java.
    Thanks
    OMkar

    Dear,
    Evenif I use SQL join. While designing the report finally, do I not have to write some code to compare and search some data into various resultsets or some kind of collections?
    For example, in the above report, when I want to display report on screen, I will have to take the list of product and then search its values into tables and display it on the screen. So for this, do I not have to take the resultset of product table (rs) which will give me a list of product.
    use while (rs.next()) >
    take each product code
    search the values in other resultsets (to search these values in actual table may be time consuming becasue of huge size of table. If there are 500 products in the table, I will have to use the table for 500 times using SQL.
    Finally display the report on screen.How can I get more information about the collection type of resultset as u mentioned in the first reply? I will read the tutorials on SQL joins as you suggested and see if I can use it for this report.
    Thanks for the reply. I would high appreciate if you can guide me to achieve my aims of project I am doing my studies.
    Regards
    OMkar

  • How to add a new field in Query Builder or Report

    Hi,
    I am writing a report using Oracle 6i query builder and report.
    example:
    QTY_1 QTY_2 QTY_3
    QTY_1 and QTY_2 are table fields and QTY_3 Is not. I need to show the value of (QTY_2-QTY_1) in QTY_3.
    I need to create a field QTY_3 which is not in the database table. How do I do that?
    Jun

    Hi,
    Try using formula to return the qty_1 - qty2.
    or
    select qty_1, qty_2, (qty_1 - qty_2) qty_3
    from table;
    regards,
    CB

  • How to create a report without any data

    HI All, <BR> Can anyone help me in writing a report without any data. I want to create a report with list of memebers from a dimension where UDA is "My UDA". I wrote a report "<UDA(CHANNEL,'My UDA')" but this fetches me data too in the report. How to eliminate the data in the report. <BR><BR>Thanks<BR>Murali

    Hi<BR><BR>Assuming you are using the essbase report writer the following script will work: <BR><BR>{ SUPPAGEHEADING }<BR>{ SUPCOLHEADING }<BR>{ SUPFORMATS }<BR>{ SUPFEED }<BR>{ NOINDENTGEN }<BR>{ FIXCOLUMNS 1 }<BR> <ROW("Dimension") <BR> <UDA(Dimension,MyUDA)<BR>!<BR><BR>the fixcolumns 1 will ensure that you only get the UDA without it you will get the variable followed by the corrosponding value.<BR>

Maybe you are looking for

  • Time Capsule Disk is very slow

    Hello, I'm using 10.8.2 and I just bought a Time Capsule 2TB for my backups. I have tried to use Time Machine to backup my data (about 200GB) via our wifi network. My MBP (Retina mid 2012) stands at a distance of 2 meters from the Time Capsule. It to

  • Error message when 'submitting' completed survey.

    One survey participant got an error message as she was submitting the filled survey online. The message told her to press "back" on her browser and resubmit. She did that and it threw her back onto the first page of the survey... any ideas what is wr

  • An Eclipse question

    i'd like to ask why when i debug a program at Eclipse in the console session and especially in the Problems tab shows the problems of all the programs? Do i make something wrong?? Im new at java and sorry if there are any mistake at my english... thn

  • How do i re install safari browser on my Iphone

    I tried all my luck to find where Safari Browser has gone in my Iphone 4, Let me know how do i re-install it ?

  • My late 2006 Black MacBook has a gray screen and won't boot.

    My late 2006 Black MacBook has a gray screen, folder icon, and flashing question mark.  I replaced the HD with a Western Digital 500 GB and had no change.  What's wrong with my MacBook?