Generate spreadsheet column ?

Hi Everybody,
Any one help how to generate spreadsheet column in java.
A B C...........Z AA AB AC..............ZZ AAA AAB.................ZZZ............
I want to generate like this but i am not able to generate dynamically, Please help me if any solution
Thank you.

Do you know how to generate the Strings themselves?
Then Google for Apache's POI or Andy Khan's JExcel and read their documentation. Then try it.

Similar Messages

  • Can't generate SPREADSHEET output in Reports 10.1.2.0.2

    We are using Reports 10.1.2.0.2. I want to generate in my (Not deployed in the AS) PC a simple tabular report but in spreadsheet format. I use this command line command in a batch file.
    d:\OracleDevR1\bin\rwrun.exe    USERID=user1/user123@db1  
        REPORT=c:\temp\rpt_10gr2_101202_1.rep
        DESFORMAT=spreadsheet    
       DESTYPE=FILE 
    DESNAME=c:\temp\rpt_10gr2_101202_1_excel_output.xls   I get this error in the log file
    REP-0826: Invalid printer driver
    'spreadsheet' specified by parameter
    DESFORMAT.However, I can generate DESFORMAT=HTML, DESFORMAT=PDF output. The HTML and PDF files are created.
    What is the problem here?? Any help would be greatly appreciated.
    I even installed Excel 2007 but still gives the same error.
    Edited by: Rohan123 on Aug 24, 2012 4:19 AM

    rzuluaga - Oracle wrote:
    Hi,
    this is very weird as it should work fine in 10.1.2.0.2. I tested rwrun with desformat=spreadsheet on Windows and on Linux with base release (10.1.2.0.2) and it worked fine so not sure what is happening with your environment.
    My only suggestions would be as follow
    1- Make sure you are using a report with paper layout and no web layout
    2- Aapply patchset 10.1.2.3 and re-try.
    Reference
    https://updates.oracle.com/Orion/PatchDetails/process_form?patch_num=5983622
    Regards, RobertoSorry Roberto, I have mistakenly used the 10G release 1 EXE. When I use my 10g R2 exe we can generate spreadsheet format. BUT, the spreadsheet is useless for complex reports. The excel sheet is not readable since lots of blank lines added and also lots of blank columns added. No images also there that is found in the PDF output. So, it's not WYSIWYG type output.
    We are now trying to patch the 10g r2 to 10.1.2.3 and use the ENHANCEDSPREADSHEET format.

  • Generating dynamic column in planning layout

    Hi Guys,
    I am new to BPS.. My task is user inputs calendar year thru variable, based on the year it has generate dynamic columns as month of the year entered by the user.
    Dnt know i am right or wrong based on the sdn threads. i think i have to create user input variable, and create a FM to read the user input value. Upto to this i can understand, after reading the user input how to calculate the months and generate 12 columns dynamically for each month...
    Kindly help me in this scenario..
    Edited by: kevin peterson on Jun 6, 2008 5:23 AM

    Hi,
    I hope you are using calendar year/month and calendar year characteristics. Create an user input variable for calendar year,
    create one exit variable for calendar year month.
    Inside this exit, read the value of the user input variable, append the year with all 12 months, so u get 12values for this exit variable.
    Now keep calendar year in header, restricted by user input variable, create one data column dynamic for calendar year month restricted by this exit variable. This will generate 12columns dynamically.
    Bindu

  • Dynamically generate the Column header

    Hi friends,
    I am using Binary Cache method for Export to Excel. I am using a separate method for generating the column headers. My question is : Is there a way to put the attribute names from the node directly instead of the one I am currently using.
      public java.util.Map getOrderColumnInfos( )
        //@@begin getOrderColumnInfos()
              //     Returns Header for the Table to be passed on to method toExcel()
              Map columnInfosMap = new LinkedHashMap();          
    columnInfosMap.put(
                   IPrivateABC.ISearchResultstoExcelElement.ATTRIBUTE1,
                   "Name");
              columnInfosMap.put(
                   IPrivateABCSearchResultstoExcelElement.ATTRIBUTE2,
                   "Reference");
              columnInfosMap.put(
                   IPrivateABC.ISearchResultstoExcelElement.ATTRIBUTE3,
                   "Created By");
              columnInfosMap.put(
                   IPrivateABC.ISearchResultstoExcelElement.ATTRIBUTE4,
                   "Input Date");
              return columnInfosMap;
        //@@end
    Instead of putting the header texts, I want the attribute names to be displayed on the Excel file headers. Please let me know if this is possible.

    Hello Rasim,
    The idea was to create the Column headers dynamically. This means basically at runtime the Application would recognize what is there in the screen and use it for Column headers. This involved reading the from the View Table->The Table Column Element-> The header and saving those values in a Context. This context is then mapped to the Excel Custom Controller and then all we have to do is read from the context, Convert to XML (The usual way that is.... )
    And ...There it is....!!!!
    Bit hectic to code this than the obvious Map and stuff. But it saves a lot of headache for future additions/deletions of columns to the table.
    Sample Code :
      public void populateExcelColumnsFromView( java.lang.String tableName, com.sap.tc.webdynpro.progmodel.api.IWDView view )
        //@@begin populateExcelColumnsFromView()
              //Created By : AVIK SANYAL Date : 28 March 2008
              //This method will fetch the header names from the Table in the View and set the
              // Attributes in nodeExcelTableColumns(). These nodes are mapped to
              //Excel Custom Controller and hence used to set the Column headers for the Excel File.
              IWDTable searchTable = (IWDTable) view.getElement(tableName);
              wdContext.nodeExcelTableColumns().invalidate();
              String tableDataSource = searchTable.bindingOfDataSource();
              wdContext.currentContextElement().setDataSource(tableDataSource);
              for (int i = 0; i < searchTable.numberOfGroupedColumns(); i++) {
                   //               Read the Column
                   IWDTableColumn col =
                        (IWDTableColumn) searchTable.getGroupedColumn(i);
                   IWDTableCellEditor TCE = col.getTableCellEditor();
                   IWDCaption header = col.getHeader();
                   //               This will check if the column is visible in the View only then it will
                   //               go for further processing.
                   if (WDVisibility.VISIBLE.equals(col.getVisible())) {
                        IExcelTableColumnsElement columnElement =
                             wdContext
                                  .nodeExcelTableColumns()
                                  .createExcelTableColumnsElement();
                        //               If the header is not null then set the header as in the View
                        if (header != null) {
                             columnElement.setHeading(header.getText());
                        } else {
                        //               Add the column name to the nodeExcelTableColumns()
                        //This checks the type of column in the View and then take the value.
                        if (TCE != null) {
                             if (TCE instanceof IWDTextView) {
                                  IWDTextView element = (IWDTextView) TCE;
                                  columnElement.setBinding(element.bindingOfText());
                                  wdContext.nodeExcelTableColumns().addElement(
                                       columnElement);
        //@@end

  • Spreadsheet Columns -- How to Name?

    I've learned how to Define the Names of Columns but what I want to do is change the A, B, C, D etc in a spreadsheet column to a name like Author -- so that it shows instead of A, B, C, D across the top and leave a1, b1,c1,d1 empty to add content? I want to make a chart with Author, Title, Comments, Date Finished and keep track of these entries by numbers on the left side of page. HOW ?
    G5 iMac   Mac OS X (10.4.3)  

    "I want to make a chart with Author, Title, Comments, Date Finished and keep track of these entries by numbers on the left side of page. HOW ? "
    Hi Nan,
    Welcome to the discussions and the AppleWorks forum.
    Although it's probably easier to start this type of list in a spreadsheet, the task is one more suited to the database, particularly if you're going to add anything beyond short comments.
    Looking over the "Wine List" database included in Starting Points > Templates will give you some ideas toward creating a Book list database. In "List" (near the top of the Layout menu), a database file displays in a manner very similar to a spreadsheet (but with the field names at the top of each column. The Wine List db also includes a "List View" layout (this one near the bottom of the Layout menu) which is similar, but 'prettier', and offers more control of the display. It was created using Columnar report, found in the New layout... item in the Layout menu.
    If you decide to stick with the spreadsheet for now, it's fairly easy to transfer the data to a database later.
    Adding to Ed's comments regarding the spreadsheet:
    You can remove the column and row headers using the Display item in the Options menu. Before you do that, make the changes described below.
    Leave Column A free for numbering the items, then enter your headings into the first cell in each column, starting with "Author" in B1.
    In A2, enter =ROW()-1
    Select cells A2..A500 (or as far as you wish to enter item numbers).
    Go (to the) Calculate (menu and choose) Fill Down. AppleWorks will fill the formula in A2 into the selected cells, and will calculate numbers 1..499 to display in these cells.)
    With the cells still selected, go Edit > Copy.
    Then go Edit > Paste special... Values only. (These two steps replace the formulas you entered with the values calculated by the formulas. This keeps the numbers fixed if the spreadsheet is sorted, allowing a sort on column A to restore the original order.)
    Regards,
    Barry

  • Spreadsheet column addition

    Hi, please forgive my naivity as I am a very new user.
    I have 4 spreadsheets with 8 columns each.  What I want to do is simply add together in each spreadsheet columns 1 - 2, 3 - 4, 5 - 8.
    Once each spreadsheet now has 3 columns I would like to combine all spreadsheets to form 1 output (total of 12 columns).
    My main difficulty is choosing the right array function to select individual columns and also be able to form the 3 column output from this  .
    Any help would be greatly appreciated   I realise that this is probably really easy but I have got no where with tutorials and my help book.
    Thanks
    Mark
    (m_robbo)

    to index column. you must use 'index array' function. you will mouse over that function until you see the cursor change character to 'expander'. for a 2-d array, expand the function by 1. to select just a column, wire a number to the newly expanded terminal. when index array is expanded the top down order is row, column, etc. the number of indec terminals wired determines the dimension of the output of the function.

  • How to Generate Dynamic Columns from SQL

    Hi Friends,
    I want to create a data fromat like This
    Showroom / date    01-01-09        02-01-09     03-01-09     04-01-09      05-01-09     06-01-09     07-01-09   
    S1                           20                      10              09            90             90                  10            100
    S2                           10                       1                1              2               6                    2             10
    S3                            5                        7                 9             1               2                    3             12This Data is Just like Matriz Reports....................................
    Here i Want to Generate Date column value Dynamically.....................is it possible through SQL
    the values are Sales value for each showroom for diffrent date value
    all sale,showroom and Date Column are in one Table......................
    It should Generate date Dynamically depending on User VAlues./..............
    Thanks in Advance

    something to play with (not tested as I don't have database access)
    declare
    /* assuming table showroom_sales has columns a_showroom,a_date,a_sale */
      the_sql varchar2(32000) := 'select a_showroom';
      day_from date := to_date('20090101','yyyymmdd');
      day_till date := to_date('20090107','yyyymmdd');
    begin
      for d in (select a_date from showroom_sales where a_date between day_from and day_till)
      loop
        the_sql := the_sql ||
                   ',max(decode(a_date,to_date('''||to_char(d.a_date,'yyyymmdd')||''',''yyyymmdd''),a_sale,null)) "'||to_char(d.a_date,'dd-mm-rr')||'"'
      end loop;
      the_sql := the_sql || ' from showroom_sales group by a_showroom order by a_showroom ';
      dbms_output.put_line(the_sql);  /* to verify if query is correct or not */
    end;the code above should generate something like (provided all those dates appear in your showroom_sales table)
    select a_showroom,
           max(decode(a_date,to_date('20090101','yyyymmdd'),a_sale,null)) "01-01-09",
           max(decode(a_date,to_date('20090102','yyyymmdd'),a_sale,null)) "02-01-09",
           max(decode(a_date,to_date('20090103','yyyymmdd'),a_sale,null)) "03-01-09",
           max(decode(a_date,to_date('20090104','yyyymmdd'),a_sale,null)) "04-01-09",
           max(decode(a_date,to_date('20090105','yyyymmdd'),a_sale,null)) "05-01-09",
           max(decode(a_date,to_date('20090106','yyyymmdd'),a_sale,null)) "06-01-09",
           max(decode(a_date,to_date('20090107','yyyymmdd'),a_sale,null)) "07-01-09"
      from showroom_sales
    group by a_showroom
    order by a_showroom to be executed to get the result as required
    Regards
    Etbin

  • How to determine the fixed width I can use to generate html columns in java

    I have a jsp where I dynamically generate menus for a web page.
    Table's cells are generated with different width, making the menus look differently.
    When clicking on menus, cells changing sizes.
    What is the best way to implement that, so I have a fixed width for every column?
    Thank you

    That's what I do.
    The code determines the width of the column now.
    The only drawback is that I manually assign values to the width depending on the menu item length.
    Is there any way how to do it dynamically, by determining how many px width will be by having the menu item lenght?
    <TABLE cellspacing=0 cellpadding=0 border=0 width="100%">
                   <!--<TR>-->
                        <!--<td width="251"><img src="images/Menu1L.gif" width="8" height="25"></td>-->
                   <%
                        int gs = menu.getSelectedGroupNum();
                        MenuGroup menuGroup = menu.getMenuGroup(gs);
                        int is = menu.getSelectedItemNum();
                        int maxScr = 10; //10 screens buttons per line
                        int totScr = menuGroup.getSize(); //total number of screens for the selected menu
                        int rowsNum = 0;
                        rowsNum = (int)Math.ceil((double)totScr/maxScr);
                        System.out.println("Num of scr per line: " + maxScr +
                                                 " Num of scr/menu: " + totScr +
                                                 " Num of rows: " + rowsNum);
                   for(int     screenRow = 0; screenRow < rowsNum; screenRow ++){
                        //for (int item = 0; item < menuGroup.getSize(); item++)%>
                   <tr><td>
                        <table border="0" cellspacing="0" cellpadding="0" height="20">
                         <tr>
                           <td width="251"><img src="images/Menu1L.gif" width="8" height="25">
                        <%
                        for(int item = screenRow*maxScr; item < (screenRow + 1)*maxScr && item < totScr; item ++)
                             MenuItem menuItem = menuGroup.getMenuItem(item);
                             String title = menuItem.getDisplay();
                             String link = null;
                             String cssClass = null;
                             System.out.println(title + ":" + title.length());
                             if(!menu.isDisabled())
                                  link = "<A href=\"Menu.do?top=" + gs + "&side=" + item + "\">";
                             %>
                             <%
                             else{
                                  link = "";
                                  title = "<i>" + title + "</i>";
                             MenuItem subMenuItem = null;
                             boolean isSubMenu = menuItem.containsSubMenuItem();
                             String subText = null;
                             //determine the width of the column
                             int width = 0;
                             if(title.length() > 5 && title.length()<20)
                                  width = 158;
                             if(title.length() > 20)
                                  width = 193;
                             if(title.length() <=5)
                                  width = 60;
                             if (is == item){
                                  //link = "<A href=\"Menu.do?top=" + gs + "&side=" + item + "\">";
                                  cssClass = "ScreenItemSel A";
                             else
                                  cssClass = "ScreenItem";
                             %>
                             <TD align = "center" nowrap class = "<%= cssClass%>"  background ="images/Menu1F.gif" width="<%=width%>"> <%=link%><%=title%></TD>
                             <TD class="Screen" nowrap><img src="images/Menu1Sep.gif" height=25 width=16></TD>
                        <%                         
                        }%>
                                  <TD width="100%" valign=top align=right class="ScreenName" background="images/Menu1F.gif"><%--<%=mode%>--%></TD>
                                  <TD><IMG src="images/Menu1R.gif" width="8" height="25"></TD>
                             </td>
                        </tr>
                        </table>
                   </td>
                   </tr>
                   <%}
                   %>
                   <!--</TR>-->
    </TABLE>

  • Generate dynamic columns in t:dataTable

    Hi ,
    Can anybody please give me an example of generating column dynamically in a t:dataTable. My requirement is i have a list of checkboxes in a popup for different company account IDs. when i click on any of those checkboxes and click View Button on the same popup the popup should be closed and the a new column should appear in the dataTable with the header as Company Account and colum values must include checkboxes. Please provide me with some direction as how to achieve this task
    Appreciate your help in advance.

    check myfaces tomahawk exemple , there is a t:columns exemple inside :
    [http://www.apache.org/dyn/closer.cgi/myfaces/binaries/tomahawk-examples-1.1.9-bin.zip|http://www.apache.org/dyn/closer.cgi/myfaces/binaries/tomahawk-examples-1.1.9-bin.zip]

  • Generating dynamic columns for a report

    Hi all,
          Can anybody pls. tell me how to output dynamic columns in a report. my req. is that i've to generate so many columns as there are no. of unique(a particular field value) rows in my internal table. for e.g say suppose i've 5 rows in my internal table which has 2 fields, one short text & it's corresponding value. so now my report output shud have 5 columns with the short text as the column heading & the their corresponding values below each column heading. i heard it can be done thru field-symbols. can anyone pls. guide me.

    Hi Sushma,
    This piece of code might be useful.
    The following sections will help you to understand the steps required to define a Dynamic ALV.
    Following symbol signifies:
    Þ                    Important
    Main Steps Required
    The following are the main steps that are to be performed for defining a dynamic Alv
    1.       Defining a field catalog
    2.       Defining the dynamic table
    3.       Filling data into the table
    4.       Displaying ALV list
    Defining a field catalog
    The purpose of defining a field catalog first in case of Dynamic ALV is somewhat different than in case of normal ALV. In case of Dynamic ALV the field catalog is used to define the final internal table that will hold the data, and would be used to display the final output.
    Þ It is very important to remember that the field catalog table be refreshed first, else it might give an error.
    For example:
    DATA: T_FIELDCAT TYPE LVC_T_FCAT,
    L_FIELDCAT TYPE LVC_S_FCAT.
       Refresh T_FIELDCAT.
      CLEAR L_FIELDCAT.
      L_FIELDCAT-FIELDNAME = 'LIFNR'.
      L_FIELDCAT-INTTYPE = ''.
      L_FIELDCAT-OUTPUTLEN  = 10.
      L_FIELDCAT-COLTEXT  = TEXT-002.
      APPEND L_FIELDCAT TO T_FIELDCAT.
    Defining the dynamic table.
    This table will hold the final data that needs to be displayed. To declare the table the following things need to be done.
    Declare a field symbol
    Displaying Alv List
    This is done in the same way as we do for normal Alv. Call function “REUSE_ALV_GRID_DISPLAY” and pass the field catalog table in the export parameters and the dynamic table in Tables.
    Reward Points if it is helpful.
    Reagrds,
    Kiran I

  • Toplink 9.0.4.5  gradually generate extra columns in SQL

    We encounter a very interesting Toplink feature or bugs after we upgrade to 9.0.4.5
    The general pattern is that when we have SQL generated that involves joining more than 1 tables, after toplink run for a while, the join SQL statement get bigger and bigger with repeat of columns from some of the join table.
    Eventually, the SQL statements become so big with repeated groups of columns that oracle fails.
    The following are some example SQL from our log from the same run,
    ServerSession(1409420520)--Connection(840879336)-
    Notice the progression of more and more repeated column groups.
    ServerSession(1409420520)--Connection(840879336)--TopLink, version: OracleAS TopLink - 10g (9.0.4.5) (Build 040930)
    ServerSession(1409420520)--Connection(840879336)--connecting session: Not named
    ServerSession(1409420520)--Connection(840879336)--connecting(DatabaseLogin(
    platform=>Oracle9Platform
    user name=> "COMMON"
    datasource URL=> "jdbc:oracle:thin:@DEVT5DB1:1521:BASET7"
    ServerSession(1409420520)--Connection(840879336)--Connected: jdbc:oracle:thin:@DEVT5DB1:1521:BASET7
    User: COMMON
    Database: Oracle Version: Oracle9i Enterprise Edition Release 9.2.0.6.0 - Production
    With the OLAP and Oracle Data Mining options
    JServer Release 9.2.0.6.0 - Production
    Driver: Oracle JDBC driver Version: 9.2.0.4.0
    ServerSession(1409420520)--Connection(103599336)--TopLink, version: OracleAS TopLink - 10g (9.0.4.5) (Build 040930)
    ServerSession(1409420520)--Connection(103599336)--connecting session: Not named
    ServerSession(1409420520)--Connection(103599336)--connecting(DatabaseLogin(
    platform=>Oracle9Platform
    user name=> "COMMON"
    datasource URL=> "jdbc:oracle:thin:@DEVT5DB1:1521:BASET7"
    ServerSession(1409420520)--Connection(103599336)--Connected: jdbc:oracle:thin:@DEVT5DB1:1521:BASET7
    User: COMMON
    Database: Oracle Version: Oracle9i Enterprise Edition Release 9.2.0.6.0 - Production
    With the OLAP and Oracle Data Mining options
    JServer Release 9.2.0.6.0 - Production
    Driver: Oracle JDBC driver Version: 9.2.0.4.0
    ServerSession(1409420520)--Connection(389549288)--TopLink, version: OracleAS TopLink - 10g (9.0.4.5) (Build 040930)
    ServerSession(1409420520)--Connection(389549288)--connecting session: Not named
    ServerSession(1409420520)--Connection(389549288)--connecting(DatabaseLogin(
    platform=>Oracle9Platform
    user name=> "COMMON"
    datasource URL=> "jdbc:oracle:thin:@DEVT5DB1:1521:BASET7"
    ServerSession(1409420520)--Connection(389549288)--Connected: jdbc:oracle:thin:@DEVT5DB1:1521:BASET7
    User: COMMON
    Database: Oracle Version: Oracle9i Enterprise Edition Release 9.2.0.6.0 - Production
    With the OLAP and Oracle Data Mining options
    JServer Release 9.2.0.6.0 - Production
    Driver: Oracle JDBC driver Version: 9.2.0.4.0
    ServerSession(1409420520)--Connection(840879336)-
    SELECT
    t1.MODIFY_DT, t1.VER_ID, t1.CREATE_DT, t1.AUTHOR_ID, t1.ROLE_ID, t1.MEMBER_ID, t1.PERMISSION_ID,
    t0.VER_ID, t0.MODIFY_DT, t0.CREATE_DT, t0.AUTHOR_ID, t0.MEMBER_ID, t0.ROLE_ID,
    t2.PERMISSION_ID, t2.VER_ID, t2.CREATE_DT, t2.AUTHOR_ID, t2.MODIFY_DT, t2.ACTION_ID, t2.ENV_ID, t2.RESOURCE_ID
    FROM
    COMMON.MEMBER_ROLE_ASSIGNMENT t0,
    COMMON.PERMISSION t2,
    COMMON.MEMBER_ROLE_PERMISSION t1
    WHERE
    (((t1.MEMBER_ID = 'ctestqaa@adp') AND
    (t1.ROLE_ID = 'QAA')) AND
    ((t2.PERMISSION_ID = t1.PERMISSION_ID) AND
    ((t0.ROLE_ID = t1.ROLE_ID) AND
    (t0.MEMBER_ID = t1.MEMBER_ID))))
    ORDER BY t1.CREATE_DT ASC
    ServerSession(1409420520)--Connection(840879336)-
    SELECT
    t1.MODIFY_DT, t1.VER_ID, t1.CREATE_DT, t1.AUTHOR_ID, t1.ROLE_ID, t1.MEMBER_ID, t1.PERMISSION_ID,
    t0.VER_ID, t0.MODIFY_DT, t0.CREATE_DT, t0.AUTHOR_ID, t0.MEMBER_ID, t0.ROLE_ID,
    t2.PERMISSION_ID, t2.VER_ID, t2.CREATE_DT, t2.AUTHOR_ID, t2.MODIFY_DT, t2.ACTION_ID, t2.ENV_ID, t2.RESOURCE_ID,
    t0.VER_ID, t0.MODIFY_DT, t0.CREATE_DT, t0.AUTHOR_ID, t0.MEMBER_ID, t0.ROLE_ID,
    t2.PERMISSION_ID, t2.VER_ID, t2.CREATE_DT, t2.AUTHOR_ID, t2.MODIFY_DT, t2.ACTION_ID, t2.ENV_ID, t2.RESOURCE_ID
    FROM
    COMMON.MEMBER_ROLE_ASSIGNMENT t0,
    COMMON.PERMISSION t2,
    COMMON.MEMBER_ROLE_PERMISSION t1
    WHERE
    (((t1.MEMBER_ID = 'qaa09@adp') AND
    (t1.ROLE_ID = 'QAA')) AND
    ((t2.PERMISSION_ID = t1.PERMISSION_ID) AND
    ((t0.ROLE_ID = t1.ROLE_ID) AND
    (t0.MEMBER_ID = t1.MEMBER_ID))))
    ORDER BY t1.CREATE_DT ASC
    ServerSession(1409420520)--Connection(840879336)-
    SELECT
    t1.CREATE_DT, t1.MODIFY_DT, t1.BASE_CLIENT_ID, t1.VER_ID, t1.AUTHOR_ID, t1.ROLE_ID, t1.MEMBER_ID,
    t0.VER_ID, t0.MODIFY_DT, t0.CREATE_DT, t0.AUTHOR_ID, t0.MEMBER_ID, t0.ROLE_ID,
    t0.VER_ID, t0.MODIFY_DT, t0.CREATE_DT, t0.AUTHOR_ID, t0.MEMBER_ID, t0.ROLE_ID,
    t0.VER_ID, t0.MODIFY_DT, t0.CREATE_DT, t0.AUTHOR_ID, t0.MEMBER_ID, t0.ROLE_ID
    FROM COMMON.MEMBER_ROLE_ASSIGNMENT t0,
    COMMON.MEMBER_ROLE_CLIENT_ASSIGNMENT t1
    WHERE
    (((t1.MEMBER_ID = 'rliubsa@adp') AND
    (t1.ROLE_ID = 'QAA')) AND
    ((t0.ROLE_ID = t1.ROLE_ID) AND
    (t0.MEMBER_ID = t1.MEMBER_ID)))
    ServerSession(1409420520)--Connection(840879336)-
    SELECT
    t1.MODIFY_DT, t1.VER_ID, t1.CREATE_DT, t1.AUTHOR_ID, t1.ROLE_ID, t1.MEMBER_ID, t1.PERMISSION_ID,
    t0.VER_ID, t0.MODIFY_DT, t0.CREATE_DT, t0.AUTHOR_ID, t0.MEMBER_ID, t0.ROLE_ID,
    t2.PERMISSION_ID, t2.VER_ID, t2.CREATE_DT, t2.AUTHOR_ID, t2.MODIFY_DT, t2.ACTION_ID, t2.ENV_ID, t2.RESOURCE_ID,
    t0.VER_ID, t0.MODIFY_DT, t0.CREATE_DT, t0.AUTHOR_ID, t0.MEMBER_ID, t0.ROLE_ID,
    t2.PERMISSION_ID, t2.VER_ID, t2.CREATE_DT, t2.AUTHOR_ID, t2.MODIFY_DT, t2.ACTION_ID, t2.ENV_ID, t2.RESOURCE_ID,
    t0.VER_ID, t0.MODIFY_DT, t0.CREATE_DT, t0.AUTHOR_ID, t0.MEMBER_ID, t0.ROLE_ID,
    t2.PERMISSION_ID, t2.VER_ID, t2.CREATE_DT, t2.AUTHOR_ID, t2.MODIFY_DT, t2.ACTION_ID, t2.ENV_ID, t2.RESOURCE_ID
    FROM
    COMMON.MEMBER_ROLE_ASSIGNMENT t0,
    COMMON.PERMISSION t2,
    COMMON.MEMBER_ROLE_PERMISSION t1
    WHERE
    (((t1.MEMBER_ID = 'rliubsa@adp') AND
    (t1.ROLE_ID = 'QAA')) AND
    ((t2.PERMISSION_ID = t1.PERMISSION_ID) AND
    ((t0.ROLE_ID = t1.ROLE_ID) AND (t0.MEMBER_ID = t1.MEMBER_ID))))
    ORDER BY t1.CREATE_DT ASC

    The latest patch, TopLink 9.0.4.7 is available at metalink.oracle.com. It can be found by searching for patch 4309484.
    Note: TopLink patches are cumulative and contain fixes from all previous patches.
    The following is the bug description:
    "Introduced OracleAS TopLink 10g (9.0.4.5), OracleAS TopLink no longer appends duplicate fields to SQL when executing a query that includes mapping-level-joining."

  • Create App From Spreadsheet: "column name is an Oracle reserved word"

    I'm creating an App from a spreadsheet on apex.oracle.com (3.0.0.00.20 at time of writing) and receiving the error "The identified column name is an Oracle reserved word. Please choose another name."
    I've tried adding an underscore to the end of each column name in order to avoid having to check every column name (yup, lazy) but that didn't remove the error, nor is any column name identified by the interface.
    Thoughts?

    Hi David,
    There was a bug at one time where reserved words were not being checked properly when creating columns. A particular problem related to names beginning with "SYS".
    Try adding the underscore in front of the column name.
    Regards
    Andy

  • Write spreadsheet column limitation

    Hello, I'm trying to use write spreadsheet to save my structure of arrays.
    I use an insert into array to join some arrays (10). I've got 450 variables (%.3f).
    But when I read the saved file, it's showed me 30 Columns*15 lines columns instead of 450 columns *1 line.
    In those arrays I've got SGL, INT and UINT variables.
    My questions: 1) Is there any software limitation for that? Or I have made some mistake.
    2)When I look at my saved file, the SGL variables should bring me, for instance, 3.145 or 127.236, but it brings me 3.000 or 127.000.
    Please, is there anybody that can help me on that?
    Regards
    Felipe
    Solved!
    Go to Solution.

    Hi Kitofelipe,
    the difference is easily to spot:
    the build array results in a 2D array (it's not in "concat" mode), the insert array will give a 1D array. Just create indicators to see this (or move the wiring tool over the output connectors of both functions).
    In your other eample you work with a 2D array in the shift register, so you will (nearly) always get a 2D spreadsheet file...
    Message Edited by GerdW on 10-09-2009 12:02 AM
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Regarding Query Generator One Column Extra

    hi.
    i have one requirement
    ie.
    normally
    sleect ordr.cardcode from ordr
    i put this query in query generator 
    so, the result will come like
    s
    y
    x
    p
    but what i need is, i want  one column extra each time the value of this column is  'co'
    like
    co s
    co y
    co x
    co p
    is it possible...
    i need your valuable suggestions..

    Hi Srinivas,
    Fine Srini..hope you are fine..
    If you got the answer please close this thread with tag correct answer...
    Regards
    Ajith

  • Generating Duplicate Columns Names in CMP's

    Hi,
    We are having trouble with the automatic key generation of the CMP beans. We are using java.lang.Object as primary key class and the autogenerated col is ejb_pk but still it doesnt work.
    The Generated Class files show the insert and update statements with duplicate column names.
    The exception trace is
    <i>
    Caused by: com.sap.engine.services.ejb.exceptions.BaseEJBException: SQLException while the data is being flushed.
    The persistent object is com.ejb.PriorityCMP220Persistent.
    at com.sap.engine.services.ejb.entity.pm.UpdatablePersistent.ejbFlush(UpdatablePersistent.java:106)
    at com.sap.engine.services.ejb.entity.pm.TransactionContext.flushAll(TransactionContext.java:380)
    at com.sap.engine.services.ejb.entity.pm.TransactionContext.flush(TransactionContext.java:343)
    at com.sap.engine.services.ejb.entity.pm.TransactionContext.beforeCompletionTransactionContext.java:446)
    at com.sap.engine.services.ts.jta.impl.TransactionImpl.commit(TransactionImpl.java:230) ... 50
    more Caused by: java.sql.SQLException: [SAP_Portals][SQLServer JDBC Driver][SQLServer]Column name 'PRIORITY_ID' appears more than once in the result column list. </i>
    We are using p9 sqlserver driver . Is it something related to driver problem or some configuration issue.
    Please Suggest,
    Thanks,
    Mukul.
    Edited by: Mukul Mangla on Mar 25, 2009 2:03 PM

    As stated by Ken, the Organizer does not consider duplicate file names as duplicate files : the full path with folder hierarchy is taken into account. I have the same situation than you with my camera limited to 10 000 ... I am working with this fact since 1999, and I have no organization problem with that. Absolutely no necessity to rename in my case, but you may have other requirements ?
    If so, it's good to know that you can use the downloader to rename at the import stage (hence the questions of Ken about the way you import).
    You mentionned batch renaming : that can only be made from within the organizer, and I would seriously recommend thinking twice before deciding to do so, a full backup before that being a must.

Maybe you are looking for

  • BRF expression to check company code in SC

    Hello, I need to check company code in SC as a starting condition. There is standard expression 0V_IN_COMPANYCODE to check Company code in Invoice with those parameters : Result Type : C Access FM : /SAPSRM/WF_BRF_0EXP000 0C_C1_C_FWFINRLCNTNT     Cla

  • Error while executing first dynpro program

    Hi guys, I am new to dynpro area. Below is the setting in my profile maintenance (Tcode RZ10) icm/host_name_full        --  gcbipiep login/system_client        --   800 SAPSYSTEMNAME      --    ECC SAPGLOBALHOST       --    gcecc62 SAPSYSTEM         

  • PO creation-ME21n-Why SAP does not check company code and Plant relation

    Hi All, Does someone know, why SAP does not check Plant and company code relation at the time of PO creation or how can we put validation between plant and company code at the time of PO creation. <b>Example:</b> Suppose i have a company 0001 which i

  • One inspection lot for multiple materials of purchase order line items

    Hi All, My client requirement is one inspection lot for multiple materials of purchase order line items. Please share your thoughts. Thanks in advance for early reply. Regards, Jishu

  • Change NetBIOS name in 10.6 Server

    I'm setting up  a new server to replace my PowerMac G5 Leopard server, just got a Mac Pro so I put 10.6 server on there for file sharing services. I cannot figure how to change the NetBIOS name however. When i go into System Prefs and try to change i