Moving columns up/down in Report  Attributes

Is there a faster way to move columns up/down in the Report Attributes region? When I have a query like
select
col1,col2,...
and I add a column before col1, it gets added after all the columns and I have to click Up several times to have it positioned at the start of the column list. This is a tad painful when dealing with more than 4-5 columns.
Can I suggest putting a column display sequence on each column also?
Thanks

Has this been discussed?
A "display sequence" text box would be nice if there is not an alternate method.
Dave

Similar Messages

  • Interactive Report Attributes: Missing a column?

    This is for Application Express 3.2.1.00.12
    I'm working on a report with the columns pulled in a SQL statement in the Region Definition section of the Interactive Report Attributes screen. We want to alter the column names so they are more user friendly, so on the Report Attributes tab, I'm looking for the column name we wish to alter, but it is not showing up. Now, in the final report, the column is visible with the header from the name of the column from the database, so the system is aware of the column and can display it, but for some reason we can't see it in the Report Attributes tab.
    Why would a column be invisible or inaccessible in the Report Attributes tab? There are 100 columns displayed in the Report Attributes: Column Attributes section. Is that the reason I'm missing some columns; 100 is a hard column limit on that page?
    Thanks in advance for all help you can provide.
    Matthew Nagler
    Edited by: user13579247 on Jul 20, 2011 10:45 AM
    Edited by: user13579247 on Jul 20, 2011 12:20 PM

    Hi,
    You are almost right place. You need click icon before 100th column name, order to go screen where you can edit column attributes.
    In that screen right top is buttons (Cancle, Apply, < and >)
    Regards,
    Jari
    Edited by: jarola on Jul 21, 2011 5:43 PM
    It might documentation guides you to right screen
    http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/app_comp.htm#sthref978
    >
    To access Column Attributes:
    1. On the Workspace home page, click the Application Builder icon.
    2. Select the application.
    3. Select a page. The Page Definition appears.
    4. Under Regions, click Interactive Report next to the name of the report region you want to edit.
    The Interactive Report Attributes page appears with the Column Attributes section at the top of the page.
    5. To access the Column Attributes page, click the Edit icon next to the appropriate column Alias.
    >
    Edited by: jarola on Jul 21, 2011 5:44 PM

  • Report Attributes: Add column link and derived column

    On the Report Attributes page (4000:420), under the Tasks list on the right side of the page, there are 2 links, "Add column link" and "Add derived column". This is the first time I am noticing them.
    The usage is clear, they add columns to the report to function either as a drill-thru link column or just a read-only derived field.
    Doing it this way does NOT modify the source query for the report region.
    Is there any benefit to using this feature versus adding a "null column_link" or "null derived_col" columns to my source query then setting attributes for those columns?
    Thanks

    Well, one disadvantage I can see of using the 'Add Column link' is that if I have more than 1 of such columns, they all show up as '[column link]' on the Report Attributes page with no way to tell what the underlying links are. Instead, if I were to manually add these dummy columns to my query itself, I would give them meaningful column aliases that indicated where they link to.
    Suggestion: Maybe a tooltip could be added to the Report Attributes page for such columns which indicate what the underlying link is without actually going to the Edit page for that column.
    Thanks

  • Report Attributes: arranging sequence of columns

    in a non-interactive report, in order to specify the sequence of the columns, we have to use the up/down arrows from Report Attributes->Column Attributes.
    Any tricks to make this easier?
    Has anyone heard about whether this will be draggable in 4.0?
    I don't mean to sound ungrateful.... I am having tremendous success pulling my project together, but this is such a tedious way to arrange the column sequence!
    Thanks
    Marion

    Hi Tony - I ordered that book over a week ago from half.com but it hasn't arrived yet; Thanks for reminding me - I'll look for a status on the ship-date. I also ordered the book by Greenwald and am going thru it (but I tend to get sidetracked trying to do stuff with my own business needs)
    I do try to surf and look in documentation and find answers for myself, but sometimes it's counter-productive when I don't even have the vocabulary to know what it is that I'm looking for.
    For example, other applications, I know the concept of 'margins' and so, even if I don't know where the settings are, I know to search for margins.
    But here, there is so much to learn that I don't even always have the words to know what it is that I'm looking for!
    Thanks for the suggestion Tony - I appreciate it -
    Marion

  • Number of columns in the Report Attributes

    Hi,
    In the report attributes, there are around 100 columns, but I am able to see around 70. If i want to change the order of the columns i need to view everything. What is the solution for this?
    Regards,
    Pallavi

    From my experience there are two options. One is copy your query out to another editor, delete the region and rebuild it after changing the order of the select statement in your query. This works well, but becomes cumbersome if you have lots of custom attributes or links on the columns.
    The other is to modify the source of an application export. We have had to do this before on an import form, because the number of input items exceeded the limit in APEX. The export file is a sql script and has parameters in the section that creates the report region that reference each column (COL09 for instance). You could re-org those and attempt to import the application. !!!This of course is not supported by Oracle should something not work correctly. I would make sure to take a backup and do not import over top of the existing application.!!!
    Good luck!

  • Report Attribute - Column Attribute - Sort

    I have a SQL Query (PL/SQL function body returning SQL Query) report. I have the number of returned limited to 100 rows (Report Attributes - Layout and Pagination - Max Row Count). When I run this report without any column sorts (none of the Column Attribute Sort columns are checked) it runs fast. If I set either the Sort Sequence, or check any one of the Sort columns, the report takes forever to run. This with only 100 rows on the report.
    Where is the sort being performed - Is the sort being performed within Oracle (meaning, in the database) or is it being sorted in Apex or on the Client?
    Note that there is no "order by" nor "group by" contained within the SQL - just a simple 2 table join (an inner join).

    Thank You, Thank You, Thank You.
    That is indeed the point I am trying to make.
    My report is a SQL Query (PL/SQL Function body returning SQL Query) and is based on information provided in several PopUp LOVs. The more LOVs used, the more information provided to the WHERE CLAUSE, and therefore the less data returned to the screen.
    When the End User produces a small report, they are likely to want to sort it.
    But when they bring back huge amounts of data, they don't want it sorted. Especially not automatically sorted.
    In most cases, this is happening when we are joining two or three tables with say 10 million rows on each table. The join condition is good (meaning there is not a Cartesian Product) but the resultant data is 10 million rows - something you not likely want to sort. Even with a limit on the number of rows returned (Report Attributes - Layout and Pagination - Max Row Count) to something reasonable, like 500, the 10 million resultant rows are first being sorted and then the first 500 returned.
    So, yes, a "sort-enabled" report should NOT automatically sort. Which is what is happening.
    Of course, it might be a good thing to have some sort of Variable that we could set on a page to decide if we want automatic sorting. On most pages, an automatic sort is great - as the amount of data returned will always be small.
    On the pages where I have this problem, it would be great to do the automatic sort when one or more of the PopUp LOVs are populated. So, within a "After Submit" process I might want to turn automatic sorting on.
    Hey, if we are going to ask for an enhancement/change, we might as well ask for something really flexible.

  • Report Attributes. Count of columns limit

    Hello,
    I've found that Apex display only up to 100 columns in "Report Attributes" area of report properties. But now I create a report with more than 100 columns (that is a kind of project planning system). Is it possible to delete this limitation in current release or in upcoming 3.1.1 ?
    Thanks in advance,
    Alex

    Hello,
    I've found that Apex display only up to 100
    columns in "Report Attributes" area of report
    properties. But now I create a report with more than
    100 columns (that is a kind of project planning
    system). Is it possible to delete this limitation in
    current release or in upcoming 3.1.1 ?
    Thanks in advance,
    AlexWhy would you try to generate a report with over a hundred columns? Maybe you should look at do doing some smaller reports, since most people will NOT be looking at that many columns..
    I used to work with MS Project and project management reporting and can not remember ever having reports with that much data packed into one report..
    Thank you,
    Tony Miller
    Webster, TX

  • Not able to open Modal Page through a report attribute link

    Dear All,
         Not able to open Modal Page through a report attribute link, kindly help me...
      I am using skill builders modal page plugin ...
    Thanks and Regards,
    Madonna

    Here's what you have to do.
    You set up your column link like this:
    Link text: whatever you like
    Link attributes: onclick="return false;" class="open_modal"
    Target: Page in this application
    Page: number of the page you want to open in your modal window
    You set up your dynamic action like this:
    Event: Click
    Selection type: jQuery selector
    jQuery selector: .open_modal
    (notice the dot at the beginning!)
    Action: SkillBuilders Modal Page (2.0.0) [Plug-in]
    Event Scope: Dynamic
    And finally, in your True Action (SkillBuilders Modal Page (2.0.0)), URL Location should be set as Attribute of Triggering Element.
    And that's pretty much all it takes.
    Hope this helps.

  • LOV of column names with a report's custom column headings?

    I have a list ov values definition that looks like this:
    select column_name d, column_name r from all_tab_columns where table_name = 'DATABASE_LIST'
    I'd like to list the custom column headings from a report as d, rather than repeating the column_name. How can I do this?

    As Anton said, the best thing is to store your custom headings in a table so that you can use the table for your LOV as well as for your report headings.
    To use dynamic report headings, you can use the 'PL/SQL function body returning colon-delimited headings' feature on the Report Attributes page.
    So, if your report headings are stored in table t that function body can be
    declare
    l_headings varchar2(4000)
    begin
    for rec in (select heading from t) loop
       l_headings := l_headings||':'||rec.heading;
    end loop;
    return ltrim(l_heading,':');
    end;Hope this helps.

  • No data found when adding column link to classic report

    Hi,
    Oracle 11g r2, APEX 4.1.1.00.23.
    I have some classic reports.
    I go to Report Attributes, then I click Add Column Link in the "Tasks" right menu, it adds me a column link, I just add some text for the link and a page to go to.
    Then I run the report and I get :
    report error:
    ORA-01403: no data foundTested with several classic reports on multiple pages.
    Debug mode shows me :
    0.43816     0.00240     ...Execute Statement: select distinct [...] order by 3,11 ,4
    0.44056     0.00162     print column headings
    0.44218     0.04816     rows loop: 25 row(s)
    0.49037     0.00141     report error: ORA-01403: aucune donnée trouvée
    0.49175     0.00078     Computation point: After Box BodyWhen I run the query in my favorite tool, I get expected results.
    Did I missed something ?
    Thank you.
    Yann.

    Yann39 wrote:
    <font size="4">Is it an APEX bug ?</font>
    - Create a new Region of type Classic Report, then set Region source as :
    begin
    return test_return_query;
    end;- Run the page, the report works as expected
    - Go to Report Attributes and click Add Column Link (and just specify a text for the link and a page to go to).
    - Run the page, you should get the error !This might be unorthodox but try wrapping your returned query within an SQL statement, like so:
       begin
          return 'SELECT t.* FROM ('||test_return_query||') t';
       end;
    I can reproduce it on oracle.apex.com if needed...If my suggestion doesn't work, I think this might be the only option. You could create a new forum posting with the word "BUG" in the title, along with a link to this thread and the relevant workspace details (with guest developer credentials).

  • I cannot change song order on playlist with highlight and drag. I have turned off shuffle and highlighted the far left column( up/down arrow) of playlist. My mac pro is running 10.5.8  and am using itunes 10.4.

    I cannot change song order on playlists (old or new) with highlight and drag. I have turned off shuffle and highlighted the far left column (up/down arrow) of playlist. My mac pro is running 10.5.8  and am using itunes 10.4. I can't drag and drop "music" to "playlist" but can right click and get the option to "add to playlist." No such option for moving song within playlist, only the up and down arrow which moves song from top to bottom list, so if it is #4 from top it will move to #4 from bottom. Stupid I know. I spent over an hour with Apple support, reinstalled itunes, restarted and rebooted computer. Networked with my laptop which is running 10.6.8 and itunes 10.4 and it can drag and drop. The final Apple support solution was to reinstall my operating system. I would prefer not to. Any other ideas?

    After looking at other people's posts, I think it's official: there is a bug. Itunes support said I should not have lost the drag/drop tool and I haven't on the laptop that is running itunes 10.4 and operating system 10.6.8. I chatted with someboby who lost both his drag/drop and side scroll and what we have in common is a wacom tablet for a mouse. My laptop is a wireless mouse. I reinstalled whatever updated driver that wacom has out there, shut the system down for night, hoping for magic, but alas none to be had. So if I want to change song order, I network the laptop and desktop, share the screen on the laptop, drag and drop to my heart's content and curse Apple for making me work this hard to find the tool that was once at my fingertips. Apple also let me know that if I want to share songs in household that the hundreds on songs that were purchased for .99 need to be repurchased for another .30. Maybe Apple is holding my drag/drop tool captive til I pay up the money or Maybe the next update will fix the problem, I for one give up for now.

  • Global Report Attributes

    Marc:
    Is there a way to specify Global Report Attributes that would apply to all report regions on any page in the application?
    For example, I would like all columns with an alias of, say customer_name to be assigned to a CSS class of customer_name. This way, I can style that class in a custom CSS file and any report anywhere in the app would get that style. Currently, I have to open up each Report Attributes page, specify the CSS Class on each column. This gets to be a pain.
    Thanks

    Vikas,
    You might get answers quicker, if you don’t address a specific person but ask all forum participants. This question seems like something that others might haven an idea about as well.
    One thing you could try would be using the #COLUMN_HEADER_NAME# substitution string in your report column template, e.g.:
    <td class="#COLUMN_HEADER_NAME#">#COLUMN_VALUE#</td>
    Regards,
    Marc

  • 9.0.3 Bug Report:Attribute Wizard:Control Hints

    I've run into a major bug in 9.0.3 Preview.
    I was editing the display hints for an EO. I double-clicked on the last attribute in the list and nothing happened for a little while (2 seconds?). So I double-clicked the attribute again. When the Attribute Wizard came back up, it had an unexpected error dialog. Since I'm not on the computer that has the error (not connected to Internet), I'll give you a brief overview of the trace:
    java.lang.NullPointerException
    java.util.HashMap oracle.jbo.dt.jotx.JtJot.getMapFromMsgBundle(oracle.jdeveloper.jot.JotClass)
    JtJot.java:2254
    java.util.HashMap oracle.jbo.dt.jotx.JtJavaUtil.getMapFromMsgBundle(java.lang.Object)
    JtJavaUtil.java:889
    java.util.HashMap oracle.jbo.dt.objects.JboObject.readResourceStrings()
    JboObject.java:597
    java.lang.String oracle.jbo.dt.objects.JboObject.getResourceString(java.lang.String)
    JboObject.java:632
    void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)
    EventDispatchThread.java:93
    void java.awt.EventDispatchThread.run()
    EventDispatchThread.java:85
    Since the Hints "tab" was pre-selected, I received this error for all further Attributes I tried to open via the Attribute Wizard.
    When I exited and re-started JDev 9.0.3, I was able to see other properties of all Attributes except the Hints properties (same error as before). Once the Hints "tab" is selected, moving to any other "tab" reports the error.
    If you need further information, please feel free to contact me via e-mail or telephone.
    Is there any workaround or fix for this, once it has happened?
    Thanks, George

    No upgrade. I started an entire new project from scratch in 9.0.3.
    Just checked an un-compromised Attribute in an un-compromised Entity. Same problem. Trace follows:
    java.lang.NullPointerException
         java.util.HashMap oracle.jbo.dt.jotx.JtJot.getMapFromMsgBundle(oracle.jdeveloper.jot.JotClass)
              JtJot.java:2254
         java.util.HashMap oracle.jbo.dt.jotx.JtJavaUtil.getMapFromMsgBundle(java.lang.Object)
              JtJavaUtil.java:889
         java.util.HashMap oracle.jbo.dt.objects.JboObject.readResourceStrings()
              JboObject.java:597
         java.lang.String oracle.jbo.dt.objects.JboObject.getResourceString(java.lang.String)
              JboObject.java:632
         java.lang.String oracle.jbo.dt.objects.JboAttribute.getAttributeResourceWithSuffix(java.lang.String)
              JboAttribute.java:1689
         void oracle.jbo.dt.ui.main.misc.ControlHintsPanel.processFormattingOnEnter()
              ControlHintsPanel.java:326
         void oracle.jbo.dt.ui.main.misc.ControlHintsPanel.initializeControlsFromContext()
              ControlHintsPanel.java:126
         void oracle.jbo.dt.ui.main.misc.ControlHintsPanel.enter(oracle.jbo.dt.objects.JboNamedObject)
              ControlHintsPanel.java:401
         void oracle.jbo.dt.ui.main.dlg.DtuWizard.selectPage(oracle.jbo.dt.ui.main.dlg.DtuWizardPanel)
              DtuWizard.java:567
         void oracle.jbo.dt.ui.main.dlg.DtuWizard.newMddPageSelected(oracle.jbo.dt.ui.main.dlg.DtuWizardPanel)
              DtuWizard.java:580
         void oracle.jbo.dt.ui.main.dlg.DtjMddTraversable.onEntry(oracle.ide.panels.TraversableContext)
              DtuWizard.java:1677
         void oracle.ide.panels.MDDPanel.enterTraversableImpl(oracle.ide.panels.Traversable, oracle.ide.panels.TraversableContext)
              MDDPanel.java:649
         void oracle.ide.panels.MDDPanel.enterTraversable(oracle.ide.panels.Traversable)
              MDDPanel.java:630
         void oracle.ide.panels.MDDPanel.access$7000571(oracle.ide.panels.MDDPanel, oracle.ide.panels.Traversable)
              MDDPanel.java:86
         void oracle.ide.panels.MDDPanel$Tsl.updateSelectedNavigable(javax.swing.JTree, javax.swing.tree.TreePath)
              MDDPanel.java:928
         void oracle.ide.panels.MDDPanel$Tsl.actionPerformed(java.awt.event.ActionEvent)
              MDDPanel.java:803
         void javax.swing.Timer.fireActionPerformed(java.awt.event.ActionEvent)
              Timer.java:150
         void javax.swing.Timer$DoPostEvent.run()
              Timer.java:108
         void java.awt.event.InvocationEvent.dispatch()
              InvocationEvent.java:154
         void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)
              EventQueue.java:337
         boolean java.awt.EventDispatchThread.pumpOneEventForHierarchy(java.awt.Component)
              EventDispatchThread.java:131
         void java.awt.EventDispatchThread.pumpEventsForHierarchy(java.awt.Conditional, java.awt.Component)
              EventDispatchThread.java:98
         void java.awt.Dialog.show()
              Dialog.java:380
         void java.awt.Component.show(boolean)
              Component.java:946
         void java.awt.Component.setVisible(boolean)
              Component.java:903
         void oracle.jbo.dt.ui.main.dlg.DtjDialog.setVisible(boolean)
              DtjDialog.java:137
         void oracle.jbo.dt.ui.main.dlg.DtjMddWizardDialog.setVisible(boolean)
              DtuWizard.java:1774
         boolean oracle.bali.ewt.dialog.JEWTDialog.runDialog()
         boolean oracle.jbo.dt.ui.main.dlg.DtjDialog.showDialog()
              DtjDialog.java:115
         boolean oracle.jbo.dt.ui.main.dlg.DtjMddWizardDialog.showDialog()
              DtuWizard.java:1735
         void oracle.jbo.dt.ui.main.dlg.DtuWizard.createMddWizard()
              DtuWizard.java:386
         void oracle.jbo.dt.ui.main.dlg.DtuWizard.setVisible(boolean)
              DtuWizard.java:276
         boolean oracle.jbo.dt.ui.main.dlg.DtuWizard.showDialog()
              DtuWizard.java:254
         void oracle.jbo.dt.jdevx.ui.JdxMenuManager.invokeEOAttributeDialog(java.awt.Frame, oracle.jbo.dt.objects.JboApplication, oracle.jbo.dt.objects.JboAttribute)
              JdxMenuManager.java:798
         void oracle.jbo.dt.jdevx.ui.JdxMenuManager.invokeAttributeDialog(oracle.jbo.dt.objects.JboAttribute)
              JdxMenuManager.java:789
         void oracle.jbo.dt.ui.main.DtuMenuManager.doEditMenuAction(oracle.jbo.dt.objects.JboNamedObject)
              DtuMenuManager.java:1079
         void oracle.jbo.dt.ui.main.DtuMenuManager.doMenuAction(java.lang.String)
              DtuMenuManager.java:946
         void oracle.jbo.dt.jdevx.ui.JdxMenuManager.doMenuAction(java.lang.String)
              JdxMenuManager.java:533
         void oracle.jbo.dt.ui.main.DtuMenuManager.doAction(java.lang.String)
              DtuMenuManager.java:791
         void oracle.jbo.dt.ui.main.DtuMenuManager.doAction(oracle.jbo.dt.objects.JboApplication, java.lang.Object, java.lang.String)
              DtuMenuManager.java:776
         void oracle.jbo.dt.ui.main.bced.BceTreePanel.doMenuAction(java.lang.Object, java.lang.String)
              BceTreePanel.java:176
         void oracle.jbo.dt.ui.main.bced.BceTreePanel.mouseClicked(java.awt.event.MouseEvent)
              BceTreePanel.java:311
         void java.awt.AWTEventMulticaster.mouseClicked(java.awt.event.MouseEvent)
              AWTEventMulticaster.java:211
         void java.awt.Component.processMouseEvent(java.awt.event.MouseEvent)
              Component.java:3718
         void java.awt.Component.processEvent(java.awt.AWTEvent)
              Component.java:3544
         void java.awt.Container.processEvent(java.awt.AWTEvent)
              Container.java:1164
         void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)
              Component.java:2593
         void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)
              Container.java:1213
         void java.awt.Component.dispatchEvent(java.awt.AWTEvent)
              Component.java:2497
         void java.awt.LightweightDispatcher.retargetMouseEvent(java.awt.Component, int, java.awt.event.MouseEvent)
              Container.java:2451
         boolean java.awt.LightweightDispatcher.processMouseEvent(java.awt.event.MouseEvent)
              Container.java:2230
         boolean java.awt.LightweightDispatcher.dispatchEvent(java.awt.AWTEvent)
              Container.java:2125
         void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)
              Container.java:1200
         void java.awt.Window.dispatchEventImpl(java.awt.AWTEvent)
              Window.java:922
         void java.awt.Component.dispatchEvent(java.awt.AWTEvent)
              Component.java:2497
         void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)
              EventQueue.java:339
         boolean java.awt.EventDispatchThread.pumpOneEventForHierarchy(java.awt.Component)
              EventDispatchThread.java:131
         void java.awt.EventDispatchThread.pumpEventsForHierarchy(java.awt.Conditional, java.awt.Component)
              EventDispatchThread.java:98
         void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)
              EventDispatchThread.java:93
         void java.awt.EventDispatchThread.run()
              EventDispatchThread.java:85
    Since I can't use this, I won't be evaluating 9.0.3 until this is fixed.
    Sorry I can't continue to help find bugs.
    Thanks, George

  • Link column from an interactive report to insert a row in a tabular form

    Hi, I need your help, i'm new on APEX and i really need to make a "link column" from an "interactive report" to insert a row into a "tabular form".
    I mean that when you click the "link column" instantly create a new row in the Tabular form with the information of the linked row on the interactive report. Its something like that.
    I really appreciate your help.
    Ricardo Capuz

    Hi Ricardo,
    You can use the following code as per your requirement (this is just an example),
    (In this case IR report is in Page#1 and Tabular form is in Page#2),
    On Page#1, Create a hidden item (i.e 'P1_ID')
    IR Report query as like the below,
    select empno,
    ename,
    job,
    mgr,
    hiredate,
    sal,
    comm,
    deptno,
    empno "copy"
    from empUse the below JS code in Page HTML Header section,
    function f_insert_row(pSub)
        $s('P1_ID',pSub);
        doSubmit('ADD');
    Edit  Report Attribute -> copy column -> Under Column Link
    Link Text: Select your column name (i.e. #EMPNO#)
    Target: URL
    URL: javascript:f_insert_row(#EMPNO#);
    Then create a process to insert like below,
    BEGIN
    insert into emp_test (select * from emp where empno=:P1_ID);
    END;Process condition as * Request=Expression1* in Expression1 as 'ADD'.
    At last, create a branch to Page#2, Check 'include process success message' and with the same condition as * Request=Expression1* in Expression1 as 'ADD'.
    Thanks,
    Lakshmi

  • How to change report attributes like heading, sort etc programmatically

    Some of the columns from a classic reports using pl/sql as region source should be sortable. Is it possible to change this attribute (sort = yes) using JavaScript or APEX API?
    David
    Edited by: david on Sep 6, 2011 11:56 PM

    There is something I don't understand here. Why do you need to point at the sxd? What is changing? Like I mentioned before. If the contents of the xsd change, all the report will do is - at best - drop the changed fields so you will be missing data. Perhaps some of the following will help;
    [Crystal Reports Guide To ADO.NET|http://www.sdn.sap.com/irj/boc/go/portal/prtroot/docs/library/uuid/401c4455-a31d-2b10-ae96-fa57af5aec20?quicklink=index&overridelayout=true]
    [Crystal Reports For Visual Studio .NET Reporting Off ADO.NET Datasets|http://www.sdn.sap.com/irj/boc/go/portal/prtroot/docs/library/uuid/2091d0c3-da1d-2b10-22be-a3426b183f75?quicklink=index&overridelayout=true]
    [Crystal Reports For Visual Studio 2005 Walkthroughs|http://www.sdn.sap.com/irj/boc/go/portal/prtroot/docs/library/uuid/2081b4d9-6864-2b10-f49d-918baefc7a23?quicklink=index&overridelayout=true] (page 332 on).
    Ludek

Maybe you are looking for

  • How do I send a text from my iphone to an email address and have it be an imessage?

    I am trying to send a text message to my husband's ipad from my iphone via his email address.  He receives the text in his email and not as an imessage.  How can I change this so he receives it as an imessage. Our apple user id is my email address. 

  • Attach files to a Sales Contract (VA42) using ABAP

    Hi Guru´s Hope everybody is doing fine. I have 3 or 4 days trying to find a BAPI or Function Module to attach files to a SAP object, in this case, to a Sales Contract (VA42). This is my first time working in a program to do this. I tried to develop a

  • Viewlink with third party jdbc driver

    Hello, I try to create a viewlink with a Firebird SQL JDBC driver, but the SQL statment JDeveloper generate to test the view is not generic SQL compliant with Interbase, it's rather ORACLE specific : SELECT * from (select * from V_INDIVIDU_CODE_ADH)

  • Mighty Mosue Out of box won't turn on

    Hi, I just purchased a wireless mighty mouse and the thing will not turn on i did what this web site said installed the batteries the way the picture shows. I fliped the cover down and nothing happens. I know i have to pair the bluetooth but it won't

  • Hardware Sizing

    Hi All, I created a web application, this web application can be accessed by 500 users at a time.. but i don't know the hardware specs that i must specify for hosting my application... is there any tool or methodology that can determine the specs of