Table range is not working!!

Hello all,
I am using the JHeadstart 10.1.3 production (build 91) and JDeveloper 10.1.3
I have a main group and 2 detail groups (nested) and regions on the main group. I tried to limit the number of rows by the "table rangë", by selecting it and putting the number of rows and its not showing on the page. I am getting the entire rows.
any comments about it
thanks
san

San,
Hmm, very strange. Is this the only page where table range is not working? Can you try creating a new project from scratch and see whether it works correctly there?
Steven Davelaar,
JHeadstart Team.

Similar Messages

  • DB Adaptor import table option does not work with the AS400 DB

    1. The DB Adaptor import table option does not work with the IBM i-series(AS/400) tables(Both in ESB and BPEL).
    2. Also I was not able to import tables from multiple databases into
    the same BPEL project.

    Both of these issues work in preview version. My earlier posting was based on beta version testing.

  • Table Maintenance(SM30) not working for a custom View..

    Hi,
    I have the below case which is not working at the moment.
    we have standard table T024 and the requirement is to update the table directly in production. To update the standard table i have created a custom maintenance view on this table and created a table maintenance generator for custom view.
    In maintenace status tab of view i have maintened below information:
    Access                                                 read, change, delete and insert
    Delivery class                                       A
    Data Browser/Table View Maint.         Display/ Maintenance allowed
    The table maintenace generator has been also created but when trying to modify it is giving below message
    "Client 210 has status 'not modifiable"
    We have two clients in dev server 200 -for development
                                                            210 - for development testing
    In development it is working but in development testing client and in quality it is not working.
    Can you please help me as to why we are getting the above message?
    Best Regards,
    Rajesh

    Hi Rajesh,
    That is coming because of the Table Maintainance Generator Settings. You have to chose no, or user, recording routine then system will not generate any request and you can update the data. This is actually a BASIS settings in SCC4, so that for customizing tables system should not generate any request.
    Thanks & Regards,
    Faheem.

  • Qualified Range is not Working

    Hi,
    I am having issue with Number Range getting crated for my Customer Number.Steps what I took to Acheive .
    In Console  :
    For Remote System R/3 
    Key Genration : Qualified Range
    Lookup Fields : Account Group.
      Even For Account Group  table has Key Mapping set to "Yes"
    Then in the syndication Remote Key Value is mapped to Customer Number .When I syndicate the Records customer number not getting created and also when I check the Edit Kay Mapping,doesn't show anything for the Record.
    Please help us onthis ,do I miss something here.
    Thanks,
    Manju

    Hi,
    after completing MDM Console setting for qualified number range
    kindly Note following points:
    1. make sure main table(for e.g. Product) and account group table key mapping should enable
    2. import main records with specific remote system
    3. open syndication map, and map value field under remote to destination side
    4. in syndication map properties tab select remote system under Remote Key Override
    5. Dstination preview tab will display customer number based upon qualified number range
    Thanks,
    Jignesh Patel

  • Hello experts read table statement is not working properly

    Hello Experts.
    my code is like this.
    sort it_matnr by matnr.
    loop at itab_result.
    read table it_matnr with key matnr = itab_result-matnr  binary search.
    endloop.
    there are nearly 2000 records in it_matnr . The records which satisfy the above condition is there here in this internal table. But it is unable to read the record which matches the condition. One thing is that , there are more than one record with the same material. ie mblnr is different but material is the same. In it_matnr table i have only 1 field ie matnr ,so i need to compare only with the matnr.I also tried by sorting it_result by matnr but of no use. Then finally I used loop at where matnr = it_result-matnr , it is working fine. But due to performance reasons we should not use this. so please tell me what to do and correct the code.

    1. Make sure that the table IT_MATNR is not getting updated inside the loop. Because it will then destroy the sorting.
    2. Secondly, if there are multiple records in IT_MATNR for the same material then it will search for the first record encountered in binary algo. So it is advisable that you may provide further filter criteria if possible. check if ITAB_RESULT & IT_MATNR have any other matching field that can be put in filter criteria.
    3.Thirdly, check if your requirement can be achieved by STABLE SORT.
    <b>SORT <itab> ... STABLE BY <f1>[ASCENDING/DESCENDING].</b>
    It will allows you to perform a stable sort, that is, the relative sequence of lines that are unchanged by the sort is not changed. If you do not use the STABLE option, the sort sequence is not preserved. If you sort a table several times by the same key, the sequence of the table entries will change in each sort. However, a stable sort takes longer than an unstable sort.
    4. Lastly, you can use parallel cursor technique of multiple loops which is given below:
    LOOP AT itab_result.
      READ TABLE it_matnr
        WITH KEY matnr = itab_result-matnr
        BINARY SEARCH.
    Process record
      LOOP AT it_matnr FROM sy-tabix.
        IF it_matnr <> itab_result-matnr.
          EXIT.
        ENDIF.
    Process record based on yuor condition
      ENDLOOP.
    ENDLOOP.

  • Colour Range Tool not Working in CC as it did in CS6.

    Hi,  I'm currently trying out Ps CC and have realised that the Colour Range tool is not working as it did in CS6. Rather than selecting the solid colour sampled by the eye dropper (in this case pink from a blue and pink design) it is selecting fragments of both colours. No amount of playing with the sliders is improving the selection clarity. Does anybody have a solution? Thanks Kayle.

    You will likely get more help in Photoshop General Discussion
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • Table sort is not working for columns.

    Hi,
    I am using TableSort.java class. Followed https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sapportals.km.docs/library/user-interface-technology/wd%20java/wdjava%20archive/developing%20with%20tables%20in%20web%20dynpro.pdf
    to create the action and assigned that to onSort event for the table. When I run, I see the ascending-descending icons besides the columns, but nothing happens when I click them. Here is the context.
    Context
    l
    l
    l ---User_Table
             > Email
             > Name
            |
             > Office
    Here Name is a custom string (last name, first name). Also office is a custom string (office1, office2, ...etc).
    Edited by: srinivas M on Feb 8, 2009 6:03 AM
    Edited by: srinivas M on Feb 8, 2009 6:03 AM

    Hi Srinivas,
      If you want to do an initial sort. You have to add the following method to the TableSorter class.
    public void initialSort(String columnId, IWDNode dataSource) {
              // find the things we need
              String direction = WDTableColumnSortDirection.UP;
              IWDTableColumn column = (IWDTableColumn) table.getView().getElement(columnId);
              NodeElementByAttributeComparator elementComparator = (NodeElementByAttributeComparator) comparatorForColumn.get(column);
              if (elementComparator == null){
                   //not a sortable column
                   column.setSortState(WDTableColumnSortDirection.NOT_SORTABLE);
                   return;
              // sorting
              elementComparator.setSortDirection(WDTableColumnSortDirection.valueOf(direction));
              dataSource.sortElements(elementComparator);
    In your wdDoModifyView() after initializing the tablesorter class you have to call the above method.
    if (firstTime) {
                IWDTable table = (IWDTable) view.getElement("Table");
                wdContext.currentContextElement().setTableSorter(
                   new TableSorter(table, wdThis.wdGetSortAction(), null));
                      wdContext.currentContextElement().getTableSorter().initialSort("Your Column ID", wdContext.nodeUser_Search_Results());
    Can you double check in your code if the table is bound to the node "User_Search_Results" and not "User_Table". If the table is bound to the "User_Table" then the sort will not work since in the code you are sorting the node "User_Search_Results".
    If you want to implement sort on only one column you can use the alternate constructor for the TableSorter class.
    TableSorter(IWDTable table, IWDAction sortAction, Map comparators, String[] sortableColumns)
    You have to give a String array of columns that need to be sort enabled.
    Regards,
    Sanyev

  • Table date filter not working properly

    Hi OTN,
    I have noticed that table date filter not always working properly.
    When I copy actual value from column outputText to column filter and hit Enter - I see an empty table.
    http://imageshack.us/photo/my-images/818/filter.png/
    I suspect the problem to lie among date formats.
    But I tried to delete convertDateTime from outputText or add it under filter inputDate. Nothing helped.
    <af:column sortProperty="Hisdate" sortable="true"
                                     headerText="#{bindings.InformationView1.hints.Hisdate.label}"
                                     id="c8" visible="false" filterable="true"
                                     width="83">
                            <af:outputText value="#{row.Hisdate}" id="ot5">
                              <af:convertDateTime pattern="#{bindings.InformationView1.hints.Hisdate.format}"/> // or without both lines
                            </af:outputText>
                            <f:facet name="filter">
                              <af:inputDate id="id15"
                                            value="#{vs.filterCriteria.Hisdate}"
                                            columns="8">
                                <af:convertDateTime pattern="#{bindings.InformationView1.hints.Hisdate.format}"/> // or without both lines
                              </af:inputDate>
                            </f:facet>
                          </af:column>Nothing special about the attribute. A database table field of type DATE. In database this (see picture) row has exactly "06.06.2006".
    Could you please point me out where to start seeking?
    Thanks.
    JDev 11.1.1.4

    Well, OK. I think I'd better have 2 attributes: truncated date for filter and full date with time for edit.
    What is an attribute type for datetime?
    select trunc(t.HISDATE) AS HISDATE -- date attribute type
        ,to_char(t.HISDATE, 'dd.mm.yyyy hh24:mi') AS HISDATETIME -- timestamp/date attribute type?Something like this?

  • Range Expander Not Working with MAC

    Have been using two WRE54G Range Expanders for over two years.  However, I wanted to add WEP to my system, but when I did that, the Range Expanders lights went RED.  I tried to access the SETUP, but for some reason I am unable to access it.  In any event, made the classic mistake of trying to fix something that really wasn't broken.  Have spent three chat sessions trying to resolve all the issues and of course, after solving one, another cropped up.  Here's where I'm at right now.  Still cannot access the Range Expander SETUP, but more importantly one of the Range Expanders is now no longer working with the MAC's that we have at home.  My wireless PC works fine, but each time I try to log in one of the MAC's, in the expander territory, it tells me that it's a secure connection, which it's not.  For now, I've unplugged one of the expanders and am only using one downstairs and while I have connectivity upstairs, it's not as good as when the expander was working.
    Any thoughts or ideas are appreciated.

    OK, my problem has now shifted to another issue.  I did as 'quack' suggested and got both expanders to apparently work, both had two blue lights.  I tried two of the MAC's we have, the third is out of the house at the moment.  Also tried my PC laptop, that worked as well.
    I then decided to activate WEP on the wireless router Linksys WRT54G.  Here is where it gets confusing.  Both expanders now have one blue light and one red light, but when trying to connect either of the MAC's it does prompt me for the network key, which once entered, both computers get on the Internet.  It took a while and a re-start for the PC to recognize the network as secure, but once it did and I entered the network key, it too worked. 
    What continues to baffle me is that there is no way I'm able to access the web setup for the extenders.  The other routers/etc in my network connect via http://192.168.49.xxx, however when I try this using '240' and/or '241' for the expanders, nothing happens.  If I try to ping those addresses, I get no reply. 
    What furthers confuses me, in that reading some of the other posts it seems that the expander actually showed up in your list of 'AVAILABLE WIRLESS NETWORKS', that is not the way mine is now, nor was it ever in that list.  I guess I should just leave well enough alone, since everything seems to be working, but I get the sense, it's not working properly.

  • Page Range Printing Not Working In Snow Leopard

    I am trying to print multiple pages from the Help menu>User Manual...Selecting a range of pages to print using Reader 9.3.2 and Snow Leopard does not work. I can see the printer briefly accepting data, but no printing occurs. Reader works fine with other PDF documents.
    Chrlz_B

    This isn't quite correct! The 'booklet printing' facility was present (and worked - I've just checked it!) in Leopard (10.5); but, as with some other useful functionality, was lost on installing Snow Leopard (10.6).
    I suspect that it is a print driver function and that (since I'm using an HP laserjet) it will be up to HP as to when, or even if, they choose to reinstate this very useful function.
    Come on HP: let's have it please!

  • Range Extender not working on Wireless 802.11n

    I've started a new topic to ensure this gets the correct attention.  For the back story see this forum topic. http://community.linksys.com/t5/Range-Expanders/Can-t-find-Range-Extender-after-installing-firmware-...
    Long story short the RE1000 Range Extender is not working (connecting, extending) on Wireless 802.11n after the firmware upgrade.  As a result the device is not useful because the devices that attempt to connect to it are NOT expecting the wireless level to change and thus just get stuck in limbo land.
    My wifi network (as of writing this) SSID is called "SeriesOfTubez" and is broadcasting on b/g/n. However as you can see by the wireless network survey (from the router) all other devices connect on "n" but the RE1000 is only connecting/broadcasting on "b/g" (not "n")
    Is there a setting somewhere to force it to use "n" or does Cisco/Linksys need to fix the firmware again to get it right? or do I need to take the unit back to the store and buy another brand that properly supports 802.11n?

    Great to hear that, Steve. Keep your eyes open and observe your connection. Don't worry, Linksys Support is available 24/7. I've had a number of great support experiences from them even at ungodly hours! 

  • Table row selection not working

    Hi,
    I have a context node for a table of value nodes - APTDATES2 (  superclass CL_BSP_WD_CONTEXT_NODE_TV ),  bound to a custom controller context node,
    which I am displaying via the following on the .htm  page :
      <chtmlb:configTable
                           xml                   = "<%= lv_xml %>"
                           id="appt2"
                           headerText = "Available Appointments"
                           navigationMode="BYPAGE"
                           table="//APTDATES2/Table"
                           visibleRowCount = "12"
                           allRowsEditable = "TRUE"
                           downloadToExcel = "FALSE"
                           personalizable = "FALSE"
                           onRowSelection        = "select"
                           selectionMode   = "<%= APTDATES2->selection_mode %>"
                           selectedRowIndex      = "<%= APTDATES2->selected_index %>"
                           selectedRowIndexTable = "<%= APTDATES2->selection_tab %>"
                           showNoMatchText = "TRUE"
                           width="100%"
                           visibleFirstRow       = "<%= APTDATES2->visible_first_row_index %>"
                           HEIGHT = "10"/>
    My problem is that I cannot click in the left-hand column to select a row on the table - it is not  triggering any events (not even triggering a round-trip  - confirmed this by putting a break-point in the view implementation DO_HANDLE_DATA ).   Have similarly checked that APTDATES2->SELECTION_MODE
    contains SINGLESELECT.
    What am I missing ?

    I am able to fix it using a managed variable for the selectionState. Here is the code:
    <af:table emptyText="No items were found"
    value="#{backing_UpdateResult.resultList}"
    var="row"
    rows="10"
    binding="#{backing_UpdateResult.resultsTable}"
    selectionState="="#{backing_UpdateResult.tableSelectionState}"
    id="resultsTable"
    >
    In the backing bean I have a property variable like:
    private RowKeySet tableSelectionState;
    public RowKeySet getTableSelectionState() {
    if (tableSelectionState == null) {
    tableSelectionState = new RowKeySet();
    tableSelectionState.getKeySet().add("0");
    return tableSelectionState;
    }

  • Open HUB ( SAP BW ) to SAP HANA through DB Connection data loading , Delete data from table option is not working Please help any one from this forum

    Issue:
    I have SAP BW system and SAP HANA System
    SAP BW to SAP HANA connecting through a DB Connection (named HANA)
    Whenever I created any Open Hub as Destination like DB Table with the help of DB Connection, table will be created at HANA Schema level ( L_F50800_D )
    Executed the Open Hub service without checking DELETING Data from table option
    Data loaded with 16 Records from BW to HANA same
    Second time again executed from BW to HANA now 32 records came ( it is going to append )
    Executed the Open Hub service with checking DELETING Data from table option
    Now am getting short Dump DBIF_RSQL_TABLE_KNOWN getting
    If checking in SAP BW system tio SAP BW system it is working fine ..
    will this option supports through DB Connection or not ?
    Please follow the attachemnet along with this discussion and help me to resolve how ?
    From
    Santhosh Kumar

    Hi Ramanjaneyulu ,
    First of all thanks for the reply ,
    Here the issue is At OH level ( Definition Level - DESTINATION TAB and FIELD DEFINITION )
    in that there is check box i have selected already that is what my issue even though selected also
    not performing the deletion from target level .
    SAP BW - to SAP HANA via DBC connection
    1. first time from BW suppose 16 records - Dtp Executed -loaded up to HANA - 16 same
    2. second time again executed from BW - now hana side appaended means 16+16 = 32
    3. so that i used to select the check box at OH level like Deleting data from table
    4. Now excuted the DTP it throws an Short Dump - DBIF_RSQL_TABLE_KNOWN
    Now please tell me how to resolve this ? will this option is applicable for HANA mean to say like , deleting data from table option ...
    Thanks
    Santhosh Kumar

  • Table refresh is not working in case of data fetched from OUCM

    Hi All,
    I have created a Content Repository data control for a OUCM connection in an ADF application.
    I have five methods inside that. (advancedSearch, getURI, getAttributes, getItems, search)
    I have dragged and dropped the Return inside search method, as an ADF table in a jspx page. The table displays the list of documents in OUCM.
    The table code looks as follows.
    <af:table value="#{bindings.Return.collectionModel}" var="row"
    rows="#{bindings.Return.rangeSize}"
    emptyText="#{bindings.Return.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.Return.rangeSize}"
    rowBandingInterval="0"
    disableColumnReordering="true"
    selectionListener="#{bindings.Return.collectionModel.makeCurrent}"
    rowSelection="multiple" id="t2"
    binding="#{MyDocumentBean.documentTable}"
    filterModel="#{bindings.ReturnQuery1.queryDescriptor}"
    queryListener="#{bindings.ReturnQuery1.processQuery}"
    filterVisible="true" varStatus="vs"
    immediate="true" partialTriggers="delete"
    columnStretching="column:c2" width="948"
    columnResizing="disabled"
    contentDelivery="immediate" verticalGridVisible="false"
    displayRow="selected" summary="document table">
    I have a remove button with code as follows
    <af:commandButton text="Remove" actionListener="#{MyDocumentBean.deleteDoc}" id="delete" partialSubmit="true">
         </af:commandButton>
    In the MyDocumentBean's deleteDoc method , I am connecting to OUCM using RIDC and then deleting the content from OUCM.
    I have set the partialTrigger on table on partialSubmit of the remove button. But after I remove a document, the content is deleted from OUCM, but the table that shows the list of documents is not refreshed.
    I have to manually click a refresh button to refresh the table's content . The code for refresh button is
    <af:commandButton actionListener="#{bindings.search.execute}" text="Refresh" disabled="#{!bindings.search.enabled}" id="refresh" >
         </af:commandButton>
    I even tried using the below code for the search to be executed in the deleteDoc method
         BindingContext bindingContext = BindingContext.getCurrent();
         BindingContainer bindings = bindingContext.getCurrentBindingsEntry();
         OperationBinding operationBinding = (OperationBinding) bindings.get("search");
         operationBinding.execute();
    But it also didn't work.
    I have even tried the following in the pageDefinition file. But in vain :(
    <methodIterator Binds="search.result" DataControl="OUCMDataControl"
    RangeSize="25"
    BeanClass="OUCMDataControl.search_return"
    id="searchIterator" Refresh="always"/>
    Please let me know how to refresh the table.
    Thanks in advance,
    Harini.

    Hi,
    can you try to refresh table "deleteDoc" action listener method using the below code
    AdfFacesContext.getCurrentInstance().addPartialTarget(tableBinding);if this doesn't work you can try to refresh the whole page (dont know whether its a good practice)
                            FacesContext context = FacesContext.getCurrentInstance();
                            String currentView = context.getViewRoot().getViewId();
                            ViewHandler vh = context.getApplication().getViewHandler();
                            UIViewRoot x = vh.createView(context, currentView);
                            context.setViewRoot(x);~Abhijit

  • Command Link in the af:table Component can not Work in the Request Scope

    Actually, the problem is that when we click on the command link, the action method #{overview.goToLinkAction} is not triggered.
    Here is the codes of action method "goToLinkAction" on the backing bean:
    public String goToLinkAction() {
    String linkString = (String) AdfFacesContext.getCurrentInstance()
    .getProcessScope().get("linkString");
    System.out.println("Link String is: " + linkString);
    return "";
    The data object list "listOfTransefer" for af:table is composed first time when the page is initialized.
    public void onPageLoad() {
    this.listOfTransfers = composeListOfTransfers();
    But when the commandlink or commandbutton is clicked to pose the form, this onPageLoad method is ignored by using PagePhaseListener:
    public void beforePhase(PagePhaseEvent event) {
    FacesPageLifecycleContext ctx =
    (FacesPageLifecycleContext)event.getLifecycleContext();
    if (event.getPhaseId() == Lifecycle.PREPARE_MODEL_ID && needReload()) {
    bc = ctx.getBindingContainer();
    onPageLoad();
    bc = null;
    public final boolean needReload() {
    if (!isPostback())
    return Boolean.TRUE;
    else
    return alwaysReload();
    protected boolean isPostback() {
    return Boolean.TRUE.equals(resolveExpression("#{adfFacesContext.postback}"));
    That means the method "onPageLoad()" may not be invoked when the commandlink is clicked.
    Is there any way to resolve this problem without changing the scope of the backing bean to "session"?
    Your response will be very helpful for us.
    Thanks

    Hi,
    if you implicitly say that this works if the managed bean is in session scope then the problems seems to me that one of your evaluation criterias is reset in the request scope, which I think most likely is the needReload() method. Did you add debug statements to the methods to see where exactly it gets stuck?
    Frank

Maybe you are looking for

  • Memory leak in MAX Preview resolved by build 411

    I was experiencing a memory leak while using the TLF that came as part of Flex 4 MAX Preview. Over the course of several hours, instances of a class called TextAccImpl would rapidly accumulate to the point where they accounted for over 50% of memory

  • Getting garbage when trying to view a report

    I'm trying to get an ASP.NET application onto a new server. I've been playing with permissions and I think I've finally got that dragon licked in every place that it might need to be done. Now, it actually goes to the report without complaining. The

  • TS1398 what the **** is wrong with i pad wifi?????????

    Why won't i pad connect to wifi????

  • Why won't my D300 Raw pictures work properly in iPhoto 7 ?!?!?!?

    I am getting extremely frustrated with my Mac & iPhoto. Just got a Nikon D300 and was trying to upload my first shots in Tiger. No dice, Tiger doesn't support the D300 Raw format. OK, so I upgrade to Leopard. Nope, iPhoto 6 doesn't support the D300 R

  • Conversion of large unit of measures

    Dear Experts, To implement a critical business scenario i need to implement following conversion - 245 X = 1000000 Y, but due to limitation of numerical digits to 5 i am notable to do this, if anybody can suggest for the same please. I shall be great