How to filter a table according to column values in CRM2007 WebUI ie ICWC.

Hi,
I am working in CRM 2007 ICWC.
My question is I need to filter the sales items table according to quantity entered in the sales order.How do I do it.I cannot use Filter = 'server' as it is obsolete in CHTMLB:Tableview tag.
Please suggest a solution.
Thanks,
Ashish.

Hi Ashish,
I think you have to manually iterate the collection and filter them according to the value of quantity in each line.
Regards, Sudeep..

Similar Messages

  • How to create a table with editable column values.

    Hi everyone,
    I think this is very simple but i'm not able to find how to do this. This is my requirement. I need to create a table with n columns and 1 row initially. user should be able to enter data into this table and click of a button should insert data into the data base table. Also there should be a button at the bottom of the table to add 1 row to the table.
    I know how to do the insert to database, but can anyone please let me know how to create a table that allows user to enter data and how to create a add 1 row button?
    Thanks in Advance!

    Raghu,
    Go through the ToolBox tutorial Create Page & Advanced table section of OAF Guide.
    Step 1 - You require to create EO & a VO based on this EO. This EO will be of DataBase table where you want to insert the data.
    Step 2 - Create a Advanced table region. (Refer this Adavanced table section for more on this)
    Step 3 - Attach this VO in the BC4J component of Adavanced Table region.
    Regards,
    Gyan

  • How to get fourthly row (row4) first column value (col1) in matrix

    Hi to all,
    In FMS, how to get fourthly row (row4) first column value (col1) in matrix in document.
    select $[$38.1.4]
    But it display the first row
    Please give me hint.
    Thank you

    Hi Eric,
    FMS may only apply to current row.  There is no way to get any other fixed row.
    Thanks,
    Gordon

  • Create multiple capture processes for same table depending on column value

    Hi,
    is it possible to create multiple realtime downstream capture processes to capture changes for the same table depending on column value?
    Prakash

    i found it - by using subset rules
    prakash

  • How to filter a table using column filter on a date field with time?

    Hi,
    I have a date field where I am inserting a date+time value, for example: 01/01/2012 09:30:00 So, I would like to filter an adf table using a column inputdate filter to filter only by date this field.
    I was testing using formats but with no luck.
    Any Idea?
    Thanks,
    jdev 11.1.2.3
    Edited by: jhon.carrillo on Oct 29, 2012 12:23 AM

    Then, try to add another attribute in your SELECT VO statement, which truncates the original date_and_time field:
       SELECT.... TRUNC(DATE_AND_TIME) as truncated_dateAfter that, put reference to that attribute in the filter facet, as follows
             <f:facet name="filter">
                      <af:inputDate value="#{vs.filterCriteria.TruncatedDate}" id=.../>
             </facet>Do not forget to add the TruncatedDate attribute in the <tree...> binding in the pageDef, along with others VO attributes. Do that manually.

  • How to Filter Report by selecting displayable columns using checkboxes

    Hello, I have a page where the first region 'filter' is to check which columns you want to have displayed in a report. the second region 'report' is the report itself where i want to display only the columns checked from regions 1 'filter'.
    We can make the assumption that there are two checkboxes for simplicity: Part and Part Description. I have created a single item on region 1: filter that is of a checkbox item. the lov is select 'Part' d, 1 from dual union all select 'Part Description' d, 2 from dual
    i have also created a page process to run that creates and adds members to a collection.
    My report then queries the collection table for the columns but nothing is being displayed.
    This is the collection process: (conditional on a submit button)
    begin
    apex_collection.create_or_truncate_collection
    (p_collection_name => 'CHECKBOXES');
    for i in 1..apex_application.g_f01.count
    loop
    apex_collection.add_member(
    p_collection_name => 'CHECKBOXES',
    p_c001 => apex_application.g_f01(i),
    p_c002 => apex_application.g_f02(i));
    end loop;
    END;
    The report is the following:
    SELECT c001, c002, seq_id FROM apex_collections
    WHERE collection_name = 'CHECKBOXES' ORDER BY seq_id
    I have a submit button that then redirects to the same page.
    when the submit is submitted, the report comes back with 'no data found'. Any help is greatly appreciated.

    I should also add...I am using the sql in the report just to display the collection to make sure it is working properly. Once validated, then my sql report will be rewritten to dynamically build the report off of other tables, but it uses the collection to determine which columns to display.
    Thanks Jim

  • Selecting a column in a table according to a value

    Hi,
    I am stuck with a little problem here. I need to fill a column according to a value. I have an xml that will looks like this to make it simple. (Don't worry, I am not managing the status of a stock of Candy ;-))
    I have to build in rtf.
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ROWSET>
    - <ROW>
    <CANDY>Bubble gum</CANDY>
    <SUGAR>SUGARFREE</SUGAR>
    </ROW>
    - <ROW>
    <CANDY>Cinnamon candy</CANDY>
    <SUGAR>SUGARFREE</SUGAR>
    </ROW>
    - <ROW>
    <CANDY>Gummy candy</CANDY>
    <SUGAR>SUGAR</SUGAR>
    </ROW>
    </ROWSET>
    I have a table with two columns. I need to put on the left column the "SUGARFREE" candy and on the right the "SUGAR" candy.
    Is there any condition to make this happen. Or do I have to make two table of one column next to the other and adapt a if condition in the for-each.
    best regards,
    Olivier

    Have the same table structure with two columns and have for-each with conditions in each of your columns.
    Say in column1: <?for-each:ROW[SUGAR='SUGARFREE']?>text to print <?end for-each?>
    column2: <?for-each:ROW[SUGAR='SUGAR']?>text to print <?end for-each?>
    Hope this is what you want

  • How to filter a table?

    Hi ALL,
    I have a table with four columns. One out of them is a unique column. I want to filter the table for 1000 of records w.r.t. the unique column.
    Code snippets will be appreciated.
    Regards
    DK

    Hi,
    create one context value attribute with String datatype for ex. Filter_Value. And bind this attribute to the filterValue property of the table column.
    write the following code in OnFilter event of the table.
    String filterName = wdContext.currentContextElement().getFilter_Value();
    if(filterName!=null && !filterName.equals(""))
    // Here, call the method (or) write the code which is used to load the table.
    IPrivate<View>.I<Table_Node> myNode = wdContext.node<Table_Node>();
    int n = myNode.size();
    HashMap filterMap=new HashMap();
    int val=0;
    for (int i = n - 1; i >= 0; i--)
    String value = (String) myNode.get<Table_Node>ElementAt(i).get<Attribute_Name>();
    if (value.toLowerCase().startsWith(filterName.toLowerCase()))
    IPrivate<View>.I<Table_Node>Element myElement = myNode.get<Table_Node>ElementAt(i);
    filterMap.put("Elem" + val,newElement);
    val++;
    myNode.invalidate();
    for(int j=0;j<val;j++)
    myNode.addElement((IPrivate<View>.I<Table_Node>Element)filterMap.get("Elem" +j));
    regards
    karthik

  • How to filter a table's results

    how can I filter a table's results after the user makes a selection? For example, someone makes a selection on a read-only table which lists usernames; the new page needs to display a new table that shows the username selected and all the tasks that user has ..? any help would be appreciated. thanks.
    Adam

    See chapter 6 in the ADF tutorial:
    http://www.oracle.com/technology/obe/ADFBC_tutorial_1013/10131/index.htm
    They use the setCurrentRowWithKey method to do that.
    You can have a VO with a where clause built-in or you use the setWhereClause method of the VO in a service method you expose in the AM.

  • Sorting table according 2 columns

    Hello,
    I am using the TableSorter object in order to sort Dynpro tables.
    Suppose I have requirement to sort according 2 columns,
    I mean one primary and second secondary.
    The situation now is every click on another column cancel the first sort.
    I'll appreciate any suggestion.
    Thanks,
    Maya.

    Hi Maya,
    Check this links.
    /people/bertram.ganz/blog/2006/03/07/enhanced-web-dynpro-java-tablesorter-for-sap-netweaver-04s
    Re: table column sorting
    Re: execute tableSorter
    Regards,
    Mithu

  • HOW TO CREATE A TABLE WITH 800 COLUMNS?

    I have to create a table with 800 columns.I know the create statement to create a table but it will take more time.
    So tell me the other method.

    If you really think that you have to store 800 values for a given entity, it would be a wise idea if you store you information in columnar fashion. Make a main table and a attribute table, keep the primary identifier in the  main table and store other attributes in the attribute table where you can keep the primary key of the first table as foreign key (not necessary) to maintain the relationship.
    eg.
    emp_id
    emp_name
    dob
    city
    state
    country
    pincode
    1
    Mr X
    01/01/1990
    ABC
    ZXC
    MMM
    12345
    Can be stored as
    Main Table
    emp_id
    emp_name
    1
    Mr X
    Attribute Table
    attr_id
    emp_id
    attr_nam
    attr_value
    1
    1
    dob
    01/01/1990
    2
    1
    city
    ABC
    3
    1
    state
    ZXC
    4
    1
    country
    MMM
    5
    1
    pincode
    12345
    Creating table with large number of columns is bad design as suggested by other Gurus.
    Thanks

  • How to create advance table region with columns by code

    hello friends
    i need to create advance table region and columns dynamically ... for that i want to know any code snippet do you have
    please share with me that would be really great help

    Hi ,
    It is not possible through code but
    1.) U can create a new custom OAAdvanced table under a custom region using JDeveloper.
    2.) Create stack layout bean using personalization on the page ,and in extend property of StackLayoutBean mention the complete path of above custom region .
    Thank
    Pratap

  • How to filter Key Figure according of "Counter"

    I am on BI7 now, I need to set a filter in query, according the counter, means that there are 37 lines in the query, but user only want to show the buttom of 20%, means after sort according the key figure, only show the record from buttom, means number 37 record to 37*0.2 = 7.4, means only show 8 lines from buttom after sort, I can not find any condition fit this, can any one help?

    Hi,
    You have the option of selecting Top N hits in your query May be you can try something out there.
    Regards,
    Pramod

  • How to generate a report group by column value

    I have a table with five columns:
    c1, c2, c3, c4, count.
    I want to generate a report like this
    Total
    c1, c2
    c3, c4
    such as the values inside the table are:
    a1 b1 cc dd 2
    a1 b1 ee ff 3
    a1 b1 gg hh 4
    a1 b2 jj kk 3
    a1 b2 ll mm 4
    a1 b2 nn oo 2
    a3 b3 pp qq 3
    a3 b3 rr ss 4
    the report will be like:
    a1-b1
      cc-dd 2
      ee-ff 3
      gg-hh 4
    Total for a1-b1 9
    a1-b2
      jj-kk 3
      ll-mm 4
      nn-oo 2
    Total for a1-b2 9
    a3-b3
      pp-qq 3
      rr-ss 4
    Total for a3-b3 7
    What is the best way to achieve this?
    Thanks.
    Jen

    Hi Jen,
    Personnaly I would use a PL/SQL region and use MOD_PLSQL (htp.p) to create such a special layout, but then again you should know how to do it.
    Another way would be to create a select statement in which you select the lines you want:
    select c1||'-'||c2 key1, 0 key2, 'category '||c1||'-'||c2 , null count from table
    union
    select c1||'-'||c2, rownum, rpad(' ',5)||c3||'-'||c4, count from table
    union
    select c1||'-'||c2, count(*)+1, 'Total for cat. '||c1||'-'||c2 , sum(count)
    from table group by c1||'-'||c2, 'Total for cat. '||c1||'-'||c2
    union
    select c1||'-'||c2, count(*)+2, ' ',null from table group by c1||'-'||c2 /* empty line */
    order by 1, 2
    You can base a normal report on this.
    good luck,
    Dik

  • How to find out table name for the field in the webUI

    Hi.
    I am in CRM2007.
    So i go to the transaction code    BSP_WD_CMPWB
    In that i provide the component name as CRM_UI_FRAME.
    I press the Test button.
    So, it opend the WebUI.
    I want how to find out table of the particular input field?
    I mean from which table the data is retrived how to find out?
    When i enter some thing in the input field how to find out in which table that data is stored?
    By pressing F2 on the input field it opend View and Component Name.
    I want find out table of that particular field. How to find it?
    If anybody know about this explain it with Screen shorts if possible.
    Thank You.
    Krishna. B.

    hi
    goto tx genil_model_browser. Suppose you want to find fields reated to your order header eg sold to name. In component set write all and press F8. Then goto access object and in access object click on node BTAdminH. Click on attribute structure. Here you will find structure and attributes. If you click relationship then you will see all the relationship wrt btadminh. open any r/s that you require. and click on other object and attribute. You will get to know the structure.
    Best regards
    Pankaj kumar

Maybe you are looking for

  • Is it possible to install PVM without DHCP in local network?

    Hi! We have main DHCP server in our company and i don't have access to it. So, it's difficult to install PVM from Network or i don't understand how to do in. I created kickstart file and shared OEL DVD, also i configured VM as: uuid = '0004fb00-0006-

  • A Parsing problem...

    Hi Guys... I am writing a program that is used to write memos. The memos when stored are writen in XML format, they have a title and the body. The problem is that when the file is read by parsing it using a XML parser the memos dont show the body, th

  • Have error at end of installation for Firefox Plugin.

    Installing the firefox plugin "install_flashplaye11x64_mssd_aih.exe" At the end of the install process, I get this error, and Firefox still can't use flash.

  • WDS Service failed to run

    Hi All, In lab environment, I have DHCP, DNS, ADDS , SQL Server and SCCM 2012 on one box (physical machine not virtual). Whenever I enable PXE, WDS service failed to start. What I have done so far to disabled the PXE >Reboot >Delete RemoteInstall >De

  • Auto batch no creation in prod.order

    Dear gurus,       I have an issue,I am working on STO scenario in that we are creating batch externaly at the time of sales order creation and assign that batch to sales order.       I want that batch number should be assign automaticly to production