Single record in PC-UI result list

Hi Experts,
By default in PC-UI result list if there is one single record, the application displays the details for that particular record. I have a requirement to suppress this behaviour and display the record details only when the user selects that particular record.
Any clues on how can this be achieved.
Thanks and Regards
Piyush

Hi Shailajam
Thanks for your reply, I will try to check this out.
On another note, what is the possibility if I want to set the mode of this single record to "Display" mode instead of "Change" mode. This would also be another possible option to achieve this requirement.
Any thoughts on the same??
Regards
Piyush

Similar Messages

  • Getting a list instead of a single record.

    Hello Experts,
    I’m trying to get a record out of a table with the highest amount of money. I’ve used the following query to get the maximum about of money sitting in the table and it gave me the results.
    SELECT MAX(auction_item.item_highest_bid)
    FROM `auction_item`
    I also need two more fields from the same table. Item_id and seller_id. Now what happens is when I write the following SQL I get a list of records instead of a SINGLE record with the highest amount of money.
    SELECT MAX(auction_item.item_highest_bid),
    auction_item.item_id,
    auction_item.seller_id
    FROM `auction_item`
    GROUP BY auction_item.item_id,
    auction_item.seller_id
    Can please somebody shows me what’s wrong with my query and how I can get SINGLE record instead of list.
    Thanks a lot in advance.

    There are several ways to get this information - subqueries, analytical sql. A lot of it depends on the data.
    Is there a possibility that two or more records will have the same MAX(auction_item.item_highest_bid)? And if so, how is this to be handled? I'm making some assumptions about item_id and seller_id...so take with a grain of salt
    As an aside...you need to read up on GROUP BY and aggregation in sql as this scenario is explained in documentation/books.
    Without the benefit of a database to test this, here are a couple of ideas
    SELECT MAX(auction_item.item_highest_bid),
    auction_item.item_id,
    auction_item.seller_id
    FROM auction_item
    WHERE auction_item.item_highest_bid = (SELECT MAX(i_auction_item.item_highest_bid)
    FROM auction_item i_auction_item
    WHERE i_auction_item.item_id = auction_item.item_id
    AND i_auction_item.seller_id = auction_item.seller_id)
    Or
    SELECT i.item_highest_bid, i.item_id, i.seller_id
    FROM (SELECT a.item_highest_bid, a.item_id, a.seller_id
    FROM auction_item a
    ORDER BY a.item_highest_bid DESC) i
    WHERE i.rownum = 1
    Or
    SELECT i.item_highest_bid, i.item_id, i.seller_id
    FROM (SELECT a.item_highest_bid, a.item_id, a.seller_id, ROW_NUMBER() OVER (ORDER BY a.item_highest_bid DESC) bid_rank
    FROM auction_item a) i
    WHERE i.bid_rank = 1

  • How to get latest record on top of the result list

    Hi Gurus,
    How to get latest record on top of the result list when you open the record.
    saved data method in BT120H_CPL of OverView page and result list in ICCMP_INBOX.
    Regards,
    Ravi

    Hi
    Try sort descending by on fileld "changed at ".
    manipulate the sort depends on your requirement
    Regards
    Logu

  • Limit the number of records in result list cartridge

    Hi experts
    I want to use result list cartridge for displaying some products but also want to limit the returned results to some max records.
    Is there any way i can limit the number of results in result list cartridge?
    Thanks

    Results list has a 'recordsPerPage' property that will limit the number of records on the page.
    Are you looking to limit it at some other place?
    HTH,
    Pankaj.

  • Selection screen - see 1 hit in result list

    Hi all,
    I have this problem:
    I want that selection programs like IW28 or IE05 show me result list EVEN if only 1 record is found.
    Default is that if one record is found, system takes me directly into detail (notification or equi) instead of showing it in result list.
    What are possible solutions?
    Using SAP GUI 6.40, ERP 4.6C.
    Thanx.

    Hi
    design a selection screen
    under the this event write code like this
    ***************SCREEN VALIDATIONS *****************
    SELECT SINGLE *
             FROM ekko
             INTO ekko
             WHERE ebeln IN s_ebeln.
    IF sy-subrc <> 0.
      SET CURSOR FIELD 'S_EBELN-LOW'.
      MESSAGE e999 WITH text-005.
    ENDIF.
    ********end of screen validation*****************
    if there are any one record founds the matching then it wil give u that value
    reward if usefull

  • Selecting single record from multiple record based on date

    Hi experts,
    I have a table which contains the multiple records for single ID No. Now i have to select single record which contains the latest date.
    here is the structure
    Name   Null Type        
    ID_P        NUMBER      
    NAME_P      VARCHAR2(12)
    DATE_P      TIMESTAMP(6)
    Records
    1 loosi     22-AUG-13 01.27.48.000000000 PM
    1 nammi  26-AUG-13 01.28.10.000000000 PM
    2 kk        22-AUG-13 01.28.26.000000000 PM
    2 thej      26-AUG-13 01.28.42.000000000 PM
    now i have to select below 2 rows how can write select qurie for this?
    1 loosi     26-AUG-13 01.27.48.000000000 PM
    2 thej      26-AUG-13 01.28.42.000000000 PM

    Hi,
    You can use the analytic ROW_NUMBER function.
    I don't have a copy of your table, so I'll use scott.emp to illustrate.  In scott.emp, there may be multiple rows for a single job.  To display just 1 row per job, the row with the most recent hiredate:
    WITH got_r_num AS
         SELECT  empno, job, deptno, hiredate -- Or whatever columns you want
         ,       ROW_NUMBER () OVER ( PARTITION BY  job
                                      ORDER BY      hiredate DESC
                                    )  AS r_num
        FROM    scott.emp
    --  WHERE ...   -- If you need any filtering put it here
    SELECT   *      -- Or list all columns except r_num
    FROM     got_r_num
    WHERE    r_num   = 1
    What results do you want in case of ties?  Depending on your requirements, you may want to add tie-breaking expressions to the analytic ORDER BY clause, and/or use RANK instead of ROW_NUMBER.
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all the tables involved, and the results you want from that data.
    Point out where the query above is producing the wrong results, and explain, using specific examples, how you get the right results from the given data in those places.
    If you modify the query at all, post your modified version.
    Always say what version of Oracle you're using (e.g. 11.2.0.2.0).
    See the forum FAQ: https://forums.oracle.com/message/9362002

  • Result table data to be populated based on selection in the result list

    Hi,
    We have a parent data source "P" containing all the record types. Further we have two child data sources each having filters on exclusive record types(for ex. child1 containing record types X, Y, Z and child2 containing record types A, B).
    In our page we have a result list associated with data source child1(record types X, Y, Z) and result table associated with data source child2(record types A, B). There exists common attributes among the attributes present in result list and in the result table.
    Rest of the containers in the page namely search, breadcrumbs, guided navigation point to the parent data source("P") containing all the record types.
    Whenever we select a value from the guided navigation using the common attributes both the result list and result table are getting filtered.
    What we require is that, whenever an attribute(common attribute) is clicked in the result list, the data in the result table needs to get filtered based on the value of the attribute that is clicked.
    Is this possible? If so, pl. suggest how.

    Take a look at the Studio release notes for EID 2.4 http://docs.oracle.com/cd/E35976_01/studio.240/RELNOTES.txt a lot of little bugs like the one you describe have been resolved. If you haven't already done so you should upgrade to 2.4.

  • Integrating number of records into a single record

    Hi
    I have a table where we store trainees with certifications, it stores trainees address, id, pass/fail flag, course codes, competetion date and certificate expiration date. WHat I need is to display a single record for each trainee in my query. In this case, what we have currently in the table is we might have 11 certificates for a trainee or 1 or maybe 5 etc. All I need is to display all his information, address, trainee id, courrse code..course code11 in a signle record. Is it possible and how? Please help

    Try this one - it points to the same page and looks like it works:
    Re: How to show the SELECT result in a certain form?

  • IBase search result list not showing in Account Identification

    Hi Gurus,
    I'm new to CRM and we have an upgrade issue. We just migrated to EHP3 for SAP CRM 7.0. After the migration, the installed Base result list is not showing in the Account Identification screen. We have the requirement to show the installed base on the right side of the confirmed account and also the result list in case the customer have multiple equipments. The first part is working correct and it shows the data if there is only one equipment with the customer. But in cases where there are more than 1, the installed base view shows blank and also the result list does not show. Instead the Interaction History is displayed. I have checked all the forums and the config and it all looks correct. Here is the list of config that we have
    1) I have the Account Identification Profile created and assigned the Object Component 'ICCMP_IBASE'  to it with Auto Search checked ON. This I believe is for the IBase Details which is working fine for single equipments.
    2) Function Profile 'BPIDENT' with value of the Account Identification Profile has been assigned to the Business Profile.
    3) The Installed Base Profile 'DEFAULT_TREE' has been updated to UNCHECK 'Display Tree' as we want the result list.
    4) Function Profile 'IBASE' with value 'DEFAULT_TREE' has been assigned to the Business Profile.
    Am I missing something? The exact same config works perfectly in a box that has not yet been upgraded. Any help would be appreciated...

    Hi,
    I tested this issue and I can reproduce it in my environment. However, as far as I know, this behavior won't affect the usage of the address book.
    I searched the internal resource but I cannot find a bug report regarding this issue. If you have any suggestion about this issue, you can submit a feedback via:
    http://office.microsoft.com/en-US/suggestions.aspx
    Best Regards, 
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Add Contact's Email and Phone to the Lead result list on WEB UI

    Hello All,
    My requirement is to add Contact's Phone number and Email on Lead result list.
    Technical details:
    BT108S_LEA(Comp)
    BT108S_LEA/Result (View)
    RESULT (CN)
    I have enhanced context node ' Result ' and added new field through wizard (Ex: ContactPhone) using following details.
    add model attribute:
    BOL entity: BuilContactPerson
    BOL Attribute: TEL1_NUMBR
    After the successful creation, i added ContactPhone field from available fields to display fields.now i could able to see the newly added field on Lead result list.i see message 'BTPARTNER not bound' under telephone colomn for each record.
    Can we add these two fields from standard BOL structure and use it , so that no coding required, system will take care of data retrieval?
    or should i go with adding custom fields and write logic to get the data for each lead's contact?
    please help me with  approach and on above error.
    Thanks
    Gangareddy

    Hi Ganga,
    Since these fields are in a table view, its not possible to bind them with the standard BuilHeader BOL Object. Hence, we need to write the custom logic for these methods.
    You have two options here.
    Option 1:
    Add the fields in the result structure and modify the Genil Search class logic and replace the standard GENIL class with custom class.
    Option 2:
    Create the custom attribute directly in the BOL structure and write the custom logic in getter method.
    Hope this helps.
    Thanks
    Vishal

  • How to access the result list in teststand after execution using labwindows​/cvi

    I am developing a user interface in labwindows/cvi that runs multiple teststand sequence files and would like to combine their reports (generated in teststand) into a single file at the end of a UUT. What is the best way to do this? At the moment, I'm trying to access the result list local variable after the execution has ended using API calls from labwindows/cvi and an end-of-execution callback event but those run-time variables do not exist anymore. How do I get a hold of the result list array at the end of an execution? I would like to grab this variable and pass it along from sequence to sequence using labwindows/cvi and not teststand itself. Is this possible? Any help would be great.
    Thanks in advance,
    Luis

    Hey Luis,
    Check out the response to this thread at the NI TestStand board here!

  • Who's Who - Restrict Result List

    Dear,
    My problem today is that my Who's Who displays all the positions from the backend in the result list.
    For example, if Mr X was in entity A til end of Dec07 and then he changed position and was in entity B. Then Who's who displayed all the results.
    That is to say, i have two records for Mr X in SAP so both records are displayed in my who's who.
    > My question is then the following: how to restrict who's who result? So that i can have only the current record in my result list and NOT ALL the records???
    Thanks a lot
    Regards,
    Cyrielle

    Tim is correct with one rider. If you add a group to the list it will unpack the group membership EXCEPT where the users are members by virtue of it being their primary group.
    Therefore, you can give read and/or write permission to a large group of individuals without including them in the mailing list.
    Note, Apple defaults to putting everyone into GUID 20. So you have to make changes to the users if you want any selectivity, but it works.

  • Group by in Result List

    Hi,
    Is it possible to use Group By in the Result list? I can't find it in the configuration panel, but maybe this is possible in another way.
    Thanks!

    Result Lists can only show data at the grain of the Endeca record, so no.  Usually Results Lists are used to show descriptions or other unstructured portions of the record.   It sounds as if you may have your unstructured data duplicated across multiple records after denormalizing.  Is this the case?  Is there an option to keep the unstructured attribute(s) from duplicating?

  • Time out while reading single record from CRMD_ORDERADM_H table on OBJECTID

    Hi,
    This is the problem i am facing in CRMD_ORDERADM_H.
    if i search for a single record in CRMD_ORDERADM_H Table using SE11 on OBJECT_ID field, it is giving me Time out error.
    CRMD_ORDERADM_H db size would be > 1 Billion records.
    It is having a Secondary Standard index on OBJECT_ID.
    If i search for single record with OBJECT_ID  and PROCESS_TYPE i am able to get the result within seconds.
    But if i take some range in OBJECT_ID and single value in PROCESS_TYPE then i am getting Time out erro.
    we have index (custom) on OBJECT_ID and PROCESS_TYPE combination.
    What would be the cause?
    Thanks in Advance,
    -Kishore

    Hello,
    there is a special table for reading records from orders: CRMD_ORDER_INDEX.
    Regards, R

  • Multiple Selection in Search Result List in PCUI

    Hi,
    Our requirement is to allow creation of new records in list view of the PCUI application CRMM_ACCOUNT. I'm using old floor plan CRM 4.0 to meet this requirement. But this is causing a problem. It's not allowing multi select in the search result list (Event INIT, Screen Element SRMS). If I change the screen element to SRME, it allows multiple selection (thru selection checkboxes) but does not allow creation of new records in list view.
    Also, how to activate the multi-valued search on certain fields. I've already checked the "Multi-Value" check box for the relevant field.
    Any help on this will be much appreciated.
    Regards,
    Vishal

    a®s wrote:
    Hi,
    You can find lot of thread in this for forum for your query.
    example
    a®s
    Thanks ! it's helpful!   But my requirement is a little bit different. (Sorry I didn't make it clear)
    I created a table maintenance (SM30) for a table. The F4 Search help should be applied to a field of the table when a user creates a new entry. I hope it makes clear.
    btw: I have awarded some points! Because it's also good to know some other ways:)

Maybe you are looking for

  • Is it possible to play video directly from my GoPro2 using the connector kit and memorycard?

    Hi, I have the new GoPro2 action cam and a Ipad2. I bought the connector kit for memorycard and USB. I was hoping that I just could take the memorycard and upload the videos to my Ipad2, but I was wrong. I don't work! I have been filming on the highe

  • What to Do Now That I've Got Structured Content?

    Hello FrameMaker Gurus. I've been working as a lone writer for a software company for many years. We have a 1300 page product manual that was originally authored in unstructured FrameMaker. We then use WebWorks to generate "Webhelp" that is both host

  • Modifying Lightroom Flash Gallery Templates

    I have created a Photo Gallery using Lightroom Flash Gallery in Bridge CS5 and have integrated it into a web site so far so good. I would like to replace the file name shown under the image with the Image Title from the Metadata and not to show the T

  • RAM on the new Quad core 2.5ghz G5

    I am thinking about running Logic 7 on one of the new Quad core 2.5ghz G5's. I am currenty running Logic 7 on an 800mhz G4 iMac. I have 1 GB of RAM on my iMac and I was wondering how much RAM I should get if I purchase the Quad core G5. Since there w

  • Blackberry 9220

    Dear sir, My name is Sandeep Arora and i am using blackberry 9220.I complaint this phone in blackberry service centre three times but they doesn't solve this. I update my software from service centre. service centre employee said that this model is n