Find a specific record in a recordgroup

I am building a recordgroup at runtime of IDNum and Name. (Basically key-value pairs)
I'm able to build the recordgroup. But how do I find a specific record to get a Name value if I have an IDNum?
I know I can just do this with a temp table, but I was trying to do it this way....

Hello,
Use the Get_Group_Record_Number() to retrieve the desired row in the record group (see the on-line documentation).
Francois

Similar Messages

  • Is there a way to find a specific record number in PSA?

    I am using BI 7.0. I am getting an error that record no 7487 is invalid. Yet, I do not find a way to go to this record in PSA. It looks like I have to scroll through the whole PSA table for a request and look for a red status. Is there a faster way?

    Hi,
    here you will find a report:
    PSA error records download
    To few PSA table you can use se16 (you can get the PSA table name by right clicking the Datasource ->manage. On the top you will get the PSA table name)
    Additional check:
    finding the error record in datapackage of psa
    Error in PSA  & Update
    Regards
    Andreas

  • How to get Siri to find more specific things

    This may or may not need to go to Apple feedback, and if it does, sorry.
    I also admit I may be asking a lot.  Yet, here we go.
    Ok, as a sports writer who covers NHL hockey, it's super handy for me to use Siri to find stats really quickly.  I love that I can just ask "Who leads the Hurricanes in total points?" and boom, there it is.  Or get standings imediately.  Indespensible to the point that I am seriously considering writing my 5s off as a business expense.  True story.
    However... Siri has limits.  There's stats like all time record against certain teams, who leads teams or the league in more specific stats, and especially projected lineups.  I'd looooove to be able to ask Siri "Who's starting in goal for the Bruins tonight?" and get an answer boom right there.
    Is learning how to find more specific items a thing Siri can do, and if so, how would I go about teaching Siri this skill?  This is information readily available online, but having Siri fetch it would be fifty shades of awesome.
    Is this possible, or am I just asking way too much?

    It is not possible.

  • Move To A Specific Record

    http://63.134.247.210/searches/doubles.asp
    DW 8.02 Win XP Pro
    How do I get the "Move to specific record" object to work on
    this .ASP
    page? I have been trying for days and can not even get it to
    show up on the
    page.
    Thanks,
    Bobby

    How about something along the lines of this ?
    Ps. you might want to use Scrollable resultsets if you want to move back up the
    resultset.
    regards,
    Owen
    boolean found = false;
    while ( (!found) && (resultset.next()) )
        int id = resultSet.getInt ( "id");
        if (id == 1979 )
           found = true;
    if (found)
        // we're positioned on the right record
    else
       // throw exception... couldn't find the id
    }

  • How to find a specific word in sentence in each line?

    How to find a specific word in sentence in each line and output will show start from the beginning from specific word plus with small description from each sentence?
    For example: I need to find a "+Wednesday+" and "+Thursday+" word in each sentence by line by line from "myfile.txt".
    Go ballet class next Wednesday.
    On the Wednesday is going to swim class.
    We have a meeting on Thursday at Panda's.
    Then it will show the output:
    Wednesday : ballet class
    Wednesday : swim class
    Thursday: meeting at Panda's
    I am going to figure out in Java console to read from a file for specific word from each line and how to make it output in correct way. I know already to make input/file codes.

    I got it and understand much better. Thank you very much. There is a problem with it because I knew how to make
    a specific word in sentence but how I should make Output for specific word and some words from sentence.
    For example:
    Input:
    +"On Thursday go to ballet class"+
    +"Swim class on Friday one time a month at 2 p.m."+
    I used the codes for that:
    class FindSchedule{
         String firstline = "On Thursday go to ballet class ";
         String secondline = "Swim class on Friday one time a month ";
         FindSchedule(){
              System.out.println(firstline + findTheIndex("Thursday", firstline));
              System.out.println(secondline + findTheIndex("Friday", secondline));
         public int findTheIndex(String word, String sentence){
              int index;
              index = sentence.indexOf(word);
              return index;
         public static void main (String[] args){
              new FindSchedule();
    }The output will be:
    Thursday: ballet class
    Friday: 14:00 swim class one time a week
    Notice that time is changing in output complete different from input.
    I need to find out how to extract some words from each sentence for output. Do you know how to do it?

  • Find SAP table records given a list of tables

    Dear all,
    I have been given a list of table names that I require to provide a report a total record counts for these table.
    given such codes I have can't proceed further as the field symbol that I use is invalid. Please advice how to complete this. Or perhaps any standard system reports to find the total record counts given a specified tables.
    here's the code:
    types : begin of w_dd02l,
               TABNAME type TABNAME,
               totalrec like sy-dbcnt,
            END OF w_dd02l.
    data : wa_dd02l type STANDARD TABLE OF w_dd02l with HEADER LINE.
    data : wr_dd02l type w_dd02l.
    data : totalrecord like sy-dbcnt.
    field-SYMBOLS : <f1> type ANY.
    p_tab is a selection field.
    select tabname from dd02l into CORRESPONDING FIELDS OF TABLE wa_dd02l where tabname in p_tab.
    loop at wa_dd02l into wr_dd02l.
       assign wr_dd02l-tabname to <f1>.
       select count(*) from <f1> into totalrecord.
       wr_dd02l-totalrec = totalrecord.
      write : wr_dd02l-tabname, wr_dd02l-totalrec.
    ENDLOOP.
    <f1> being a field symbol is not recognize as in ABAP dictionary. Here's where I can't proceed.. dear gurus please help.
    Thanks and Regards,
    Andrew

    Pl. check, it's working
    types : begin of w_dd02l,
              TABNAME type TABNAME,
              totalrec like sy-dbcnt,
            END OF w_dd02l.
    data : wa_dd02l type STANDARD TABLE OF w_dd02l with HEADER LINE.
    data : wr_dd02l type w_dd02l.
    data : totalrecord like sy-dbcnt.
    field-SYMBOLS : <f1> type ANY.
    PARAMETERS: p_tab like dd02l-tabname.
    * p_tab is a selection field.
    select tabname from dd02l
                   into CORRESPONDING FIELDS OF TABLE wa_dd02l
                  where tabname = p_tab.
    loop at wa_dd02l into wr_dd02l.
      assign wr_dd02l-tabname to <f1>.
      select count(*) from (<f1>) into totalrecord.      " use  like (<f1>)
      wr_dd02l-totalrec = totalrecord.
      write : wr_dd02l-tabname, wr_dd02l-totalrec, <f1>.
    endloop.

  • How to find the longest record in a table?

    Hello,
    Is there a function to find the longest record in a table? Or is there a data dictionary that would tell you which record contains the longest data?
    I have a table with five columns and one million records. I want to find the record (5 columns combined) with the longest data. Thank you.

    Dear watson2000!
    The function "VSIZE" tells you the number of bytes in the internal representation of a column which means the size of a value within a column. An example of vsize can be found here:
    [http://www.adp-gmbh.ch/ora/sql/vsize.html]
    So I think you should try it with this query to get the size of the longest record:
    SELECT MAX(VSIZE(column1)) +
           MAX(VSIZE(column2))  +
           MAX(VSIZE(column3))  +
           MAX(VSIZE(column4))  +
           MAX(VSIZE(column5)) AS "Maximum Row"
    FROM your_table;To identify the longest record try like this:
    SELECT rowid
    FROM   your_table
    GROUP BY rowid
    HAVING  (MAX(VSIZE(column1)) +
             MAX(VSIZE(column2)) +
             MAX(VSIZE(column3)) +
             MAX(VSIZE(column4)) +
             MAX(VSIZE(column5))) = (SELECT MAX(VSIZE(column1)) +
                                          MAX(VSIZE(column2))  +
                                          MAX(VSIZE(column3))  +
                                          MAX(VSIZE(column4))  +
                                          MAX(VSIZE(column5))
                                   FROM your_table;)I hope that these two queries could be of help to you.
    yours sincerely
    Florian W.
    Edited by: Florian W. on 23.04.2009 20:53

  • How to find the particular record in 1000's of workflow jobs are running

    Hi,
    In a data manager -> in workflow tab>IF a record is in CHECK-OUT MODE there are 1000's of jobs are running in that workflow tab. Can anyone tell me how to find that particular record in that workflow jobs.
    Can anyone show me the difference in getting a record in 5.5 and 7.1

    Hello COTI
    Unfortunatly, SAP MDM doesn't have good ability for  WF search.
    All WF clarify by it's status (unlaunched, avialable, Received, complited, error  etc.)
    For each WF SAP MDM assing unique Job ID and this id will be shown in Job ID field in Data Manager WF Tab.
    You can change WF list order by all WF fields like as Job ID, Step, User, Start etc. and try to find your's WF.
    You can use Java API - this is one of the best solution for WF management and WF mass upload  (for example)
    Regards
    Kanstantsin Chernichenka

  • How to find a specific text(string) in a list (100) programs

    Dear All,
    Wish tou a very happy new year 2009!!!
    please let me know how we can find a specific word(eg: "barrel") in a list of programs/reports/bdc/user exits/field exits/function modules.
    Thanks in advance.
    Kumar.

    hi kumar,
    open EWK1 transaction and search for the word or string according to your requirement.
    Cheers
    Gautham

  • Hi, I don't know how to find a specific security patch to apply to my Oracle database version to fix a vulnerability

    Hi, I don't know how to find a specific security patch to apply to my Oracle database version 11.2.0.2.0 (on windows server 2003 32 bits) to fix the following vulnerability:
    Risk: High
    Application: oracle_tnslsnr
    Port: 1521
    Protocol: tcp
    Synopsis:
    It is possible to register with a remote Oracle TNS listener.
    Description:
    The remote Oracle TNS listener allows service registration from a remote host. An attacker can exploit this issue to divert data from a
    legitimate database server or client to an attacker-specified system.
    Successful exploits will allow the attacker to manipulate database instances, potentially facilitating man-in-the-middle, sessionhijacking,
    or denial of service attacks on a legitimate database server.
    Solution:
    Apply the work-around in Oracle's advisory.
    Thank you for your help

    2835604 wrote:
    Hi, I don't know how to find a specific security patch to apply to my Oracle database version 11.2.0.2.0 (on windows server 2003 32 bits) to fix the following vulnerability:
    Risk: High
    Application: oracle_tnslsnr
    Port: 1521
    Protocol: tcp
    Synopsis:
    It is possible to register with a remote Oracle TNS listener.
    Description:
    The remote Oracle TNS listener allows service registration from a remote host. An attacker can exploit this issue to divert data from a
    legitimate database server or client to an attacker-specified system.
    Successful exploits will allow the attacker to manipulate database instances, potentially facilitating man-in-the-middle, sessionhijacking,
    or denial of service attacks on a legitimate database server.
    Solution:
    Apply the work-around in Oracle's advisory.
    Thank you for your help
    that sounds like the "tns poison" vulnerability.  CVE 2012-1675 - Oracle Security Alert CVE-2012-1675
    See MOS note 134083.1  and 1453883.1

  • How to find a specific song?

    I am looking for the song "To Sir With Love" by Lulu with the group The Mindbenders. My problem is that apparently there are two versions? And when I listen to the samples I can't tell if it's has the lyrics I'm looking for. I want the version which is sung in the movie which includes the line Those awkward years... Does anyone know how to find a specific version of a song? Thank you in advance for your help.

    Search the iTunes Store for "to sir, with love"
    One of the songs will contain in the title (from the Columbia movie.....
    No guarantee but I would guess that's the one you are looking for.
    http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?i=193322123&id=19332 1271&s=143441

  • Oracle 10g - To find the corresponding record for a certain row

    Hi all,
    The scenario is like this - Suppose I've got a table with 100+ columns. For a certain row inside, I need to find its corresponding record which is in the same table. The way how I define "corresponding" here is - these two rows should be identical in all attributes but only different in one column, say "id" (primary key).
    So how could I achieve this? What I can think of is to fetch all columns of the first row into some pre-defined variables, then use a cursor to loop the table and match the values of the columns of each row to those variables. But given that we've got 100+ rows in the table, this solution doesn't look practical?
    Any advises are greatly appreciated. Thanks.

    something to play with as Solomon suggested (use some other string aggregation technique if you're not 11g yet)
    you'll have to adjust the column_list accordingly
    select 'select ' || column_list ||
           ' from ' || :table_name ||
           ' group by ' || column_list ||
           ' having count(*) > 1' the_sql
      from (select listagg(column_name,',') within group (order by column_id) column_list
              from user_tab_cols
             where table_name = :table_name
           )Regards
    Etbin
    Edited by: Etbin on 25.12.2011 16:53
    Sorry, I'd better leave the forum: the title says you're 10g :(
    Providing a link for replacing listagg: http://www.sqlsnippets.com/en/topic-11787.html

  • MBP can't find one specific wifi network.

    The hotel where I live offers free wifi (The Cloud) and for months I've been using with full signal.
    Suddenly my MBP (mid 2010) was unable to find this network.
    My iPad and my iPhone (and friend's devices) are still connecting at any time with perfect full signal.
    I've tried holding alt+cmd+P+R at boot to reset PRAM and NVRAM but it still can't find that specif wifi network.

    Update: after another NVRAM and PRAM reset (alt+cmd+P+R) the wifi network shows up but I'm still unable to connect to it. When selected I've got a message of "connection timeout occurred" and the network disappears again.
    *All software is up to date.

  • HT201317 How can I find a specific photo in Photo Stream?

    How can I find a specific photo in Photo Stream?

    Yeah...that's the one thing that's odd about PS Touch; you'll have to browse for your desired images. I'm not sure if it expects for the user to have what could be hundreds of images in a folder (which is why I would prefer to go through Android Gallery; I can open the first image from Android Gallery into PS Touch, but if I want to add any more I have to do it PS Touch's way).

  • I need to update specific records(of variable lengths) in a file. I can get the correct record but when I update it(add info), it overwrites part of the record following it. I am using labview 6.0

    I need to update specific records(of variable lengths) in a file. I can get the correct record but when I update it(add or change info), it overwrites part of the record following it. I am using labview 6.0. I need to be able to insert information into the middle of a file without disturbing the data before and after

    It's hard to give more specifics without more detail, but in general you're going to need to read in the entire file, split it into three pieces (everything before the record of interest, the record itself, and everything after the record of interest), modify the record, reassemble the three pieces in proper order, and write the whole thing back to the file.Of course if the file is very large you might not want to actually implement it this way, but conceptually at least, this is what you are looking at.If this file some sort of proprietary format?Mike...PS: this type of issue is why I really like databases...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

Maybe you are looking for

  • Import/insert data from XML into Oracle database tables?

    Hi. (I am using JDeveloper 10.1.3.3.0 and Oracle 10g) I have been able to export the data from one of my database tables by using a View Object and .writeXML. Now, I want to take an xml file that is formatted in the same way as what is spit out by th

  • Time Machine Weirdness - HELP!

    Using a mid 2010 MacBook Pro with 10.9.4 installed, all updates present. Attached a WD 750GB My Passport to the Macbook Pro, reformatted the passport to MAC OSX Extended Journaled. Check both MacBook Pro and Passport with Techtool Pro 7 latest versio

  • What will I do if my lower screen don't work, What will I do if my lower screen don't work?

    I have this iphone 3g and i bought it second hand. what will i do if the lower screen wasn't able to function. is there any other way to fix this? the iphone was bought in the US, and im living here in Manila Philippines. HELP!

  • How to switch from Japanese keyboard

    Is there any way to reprogram a MacBook with a Japanese keyboard to English chacters?

  • IWorks & iPhone?? How to make 2 photo albums

    So can you use iworks with your iPhone?? or any type of other (not Note) writing program? and how do you make separate albums in iphone photo. every time i load a pic up from my mac it deletes my old album. help me out please. Scruff