Lock only a few records in a VIEW_MAINTENANCE_CALL.

Hello,
I want to update one View using the FM: VIEW_MAINTENANCE_CALL, restricting the value of one field.
Using the the FM with the restricting field it’s easy, no problem. The problem is controlling the lock of those records, I just want to lock those records, not lock all records table view to the other users.
Any help to this issue...
Regards,
Duarte
Duarte

Hi,
You can not lock single record.
Regards,
Satish

Similar Messages

  • BAPI execution in webdynpro returns only a few records

    Hi,
            I'm executing a BAPI in my webdynpro application and it is returning only a few records from backend table. When i execute the BAPI in R/3 with the same input i'm getting all the records. In webdynpro i'm getting only 22 records for different set of inputs while in R/3 i'm getting all records(37,41 etc). Any help in this regard will be valuable.
    Regards,
    Shabeer

    Hi,
         I am invalidating the output node after execution of BAPI. The BAPI is executing properly and it is returning records also.But the problem is with the number of records returned by BAPI. As i've mentioned earlier it is always returning 22 records, eventhough the actual output contains more than 22 records(I checked this in R/3). I was told that the BAPI is calling a transaction(i don't know whether it is the problem since i am not familiar with ABAP and R/3 that much).Is it possible that webdynpro is fetching records even before the BAPI execution is complete in R/3 and hence returning partial output(I'm not sure about this thing) ?
    Any help in this regard will be valuable.
    Thanks and regards,
    Shabeer

  • Getting only a few records at a time.

    Using a Select * from. Is there an option where I get only so many records. This is for a console application. I wanted some thing where it will display only 3 records at a time. And then I have the option of viewing the next 3 and then the next 3 records
    and so on.
    Any one have any ideas.
    Merry Christmas EVERY ONE and thanks to all the members on msdn forums for helping me with my code.
    Joe Moody
    http://www.starfiresoft.com
    Pro-Forums
    Delta Force Barracks
    On the Frontlines

    Thanks. It doesn't matter as long as I can get it to work. The idea is to display 3 records at a time. Then the user should be able to go backward or forward in the list. Let me show you what I have. This will give you some idea on how I have it displaying
    the info.
    SqlCeCommand cm = new SqlCeCommand("SELECT * FROM users", cn);
    //cm.Parameters.AddWithValue("@tooid", num);
    //cm.Parameters.AddWithValue("@fromid", Id);
    SqlCeDataReader rd = cm.ExecuteReader();
    try
    while (rd.Read())
    Door.CursorRight(10);
    Door.WriteLn("|0C___________________________________________________");
    Door.CursorRight(10);
    Door.WriteLn("|0FId |04: |03" + rd["Id"].ToString() + " |0FName |04: |03" + rd["username"].ToString());
    Door.CursorRight(10);
    Door.WriteLn("|0FStatus |04: |03" + rd["status"] + " |0FDate Jointed |04: |03" + rd["joindate"]);
    Door.CursorRight(10);
    Door.WriteLn("|0C___________________________________________________");
    catch (Exception e)
    throw new Exception(e.Message);
    cn.Close();
    This is inside of a do loop. and at the bottom I have it waiting for user input. or the user can quit and return to the main menu.
    Door.WriteLn();
    Door.Write("|07Page |0F<|04||0F> |0FQ|09)|0BQuit |07Choice |04: |0C");
    cc = Char.ToUpper(Door.ReadKey());
    Above is my prompt. This waits for user input. and I use a switch to tell the software what to do. Any way if you want to know what Door.writeLn() is, Think of it like this "Console.Writeline()". This is just a library I use for the kind of programming I
    do.Any help would be great. Thanks and have a safe Xmas.
    Joe.
    http://www.df-barracks.com Delta Force Barracks
    http://www.starfiresoft.com Starfire Software

  • Locking only a few apps?

    Is to lock only specific applications? Instead of locking the whole iPod touch, is it possible to only lock Mail, Contacts, and some apps store apps? I don't want to have to unlock the iPod every time I want to change songs, rewind 30s, change the volume (I have a 1Gen iPod)... But if i loose the iPod, I don't want who ever found it to see my contacts, send email as me ...

    Thank you the the hint, the double-tap of the home button is going to be really useful. I wish I had known that for a while. The controls don't show the back 30s, but it will help a lot. Is there a way I can suggest the half-lock setup to Apple? Basically, have the full lock, but also setup a half-lock where you can configure a list of applications that are locked instead of the whole iPod. The iPod touch behave as if it is unlock until you try to use one of apps on the list at which time the lock/unlock screen shows up.

  • Showing only a few records in a region

    Hi Guys,
    I am creating a shopping page using OA F/w.
    In this page i have created a search screen and there is a shopping cart at the upper right corner.
    Now my requirement is to show shopping cart like this
    Shopping Cart
    Number of items: x
    item1 qty1
    item2 qty2
    item3 qty3
    item4 qty4
    item5 qty5
    more...
    what i have achieved so far is
    i have created a content container.
    I have got the items and quantities (using child attribute feature in a stach layout region)
    now my requirement is
    1. to show number of items
    2. to show only 5 records (not using table region)
    3. to show more link which will take to complete shopping cart.
    can u please help me out with this
    Thanks
    Husain

    instead of creating so many VOs, try something like this
    1. From CO call a method in AM, something like public Vector getAllItems()
    2. In that method in the AM, have a VO bring the items in the cart (VO.executeQuery())
    3. Loop your VO and form a Vector of the items and return this vector to the CO.
    4. In CO, when the method has returned , you have a Vector of all items.
    5. size() method will give you the number of items
    6. loop the vector, and paste the data in a bean in your content container
    7. if loop becomed > 5 (means 6th row - i.e 5 items are already painted), then break; the loop and paint a more.. link instead of the item from the vector.
    8. Clicking on the more link takes you to another page, navigate there and retain the AM while you go, so your VO also is present, you dont need to query again.
    Thanks
    Tapash

  • Master - some records : Detail - for only a few i(not all)records in master

    Hi
    I have a requirement like master and detail. However I do not wish to see the details of everything that is there in the master but only a few records (based on some criteria). Example:
    Id Desc Col3 Col4
    1 1 desc 1col3 1col4
    2 2 desc 2col3 2col4
    3 3 desc 3col3 3col4
    id col5 col6 col7
    3 abc def ghi
    4 4 desc 4col3 4col4
    How can I have such a layout in which detail shows details of only selected records present in the master?
    Any help appreciated big time.
    Thx!

    1. create two queries. master and detail and link on the fields of interest.
    2. on the layout, have repeating frames. one for the master and inside the master frame, a repeating frame for the detail.
    hope this is what you are looking for..

  • When updating to target only few records got added to the target

    When updating to target only few records got added to the target from the transferred recordsu2026what could be the reason?
    Edited by: MohanDP on Jun 28, 2010 7:44 PM

    Hi Mohan,
    When updating to target only few records got added to the target from the transferred recordsu2026what could be the reason
    There might be a routine in your Transformation which might be filtering few records(or)
    It is possible that you will have multiple records for one keyfield in PSA. But when you try loading the same to datatarget like Cube, the result will be added.
    For ex, say you have Profit center US00000593 in PSA with two rows with keyfigure(say some ABC) values 100 & -50.
    Then when you load the data to datatarget, you will have only one row in it with Profit center US00000593 & values for keyfigure ABC=50 (i.e 100-50=50). So most of the times we will be having added records less than transferred records.
    Hope it is clear!
    Regards,
    Pavan

  • Report takes long time for few records

    hi frends,
    I m facing one problem with my Web based erp application which is developed in .net , in my application when i open the  report from my applicaiton , in my temp folder there one file gets created name is "rpt conmgr cache"
    bcoz of this for few records also my report takes too much time and opens very slow and it takes long time, and it happens in some of the reports only , other reports are working cool and its not creating any file in temp folder,,, so can u guide me whats this file and what can be the solution for it,
    Thanks
    Mithun

    hi sabhajit,
    i have already checked the sql query it is taking less then seconds.
    any other steps u want me to check then pls let me know?
    thanks mithun

  • How to only update existing records when loading master data ?

    Hello experts, I need your lights one more time.
    Here is my need :
    I have created an infoobject (IO) which is a very simple version of 0material, let's call it Znewmat --> Znewmat has material type and trademark as attributes, those two fields are available in 2 different datasources :
    - 0MATERIAL_ATTR for material type (field MTART)
    - 0MAT_SALES_ATTR for trademark (field MVGR2)
    When loading my new IO from 0MATERIAL_ATTR I use a filter (at DTP level) to get only a few material types (I get something like 1000 records),
    here is my issue : when I load from 0MAT_SALES_ATTR the field "material type" is not available to keep the same filter as for 0MATERIAL_ATTR and existing records are updated with the trademark, but I also get 5000 records I don't need, and my master data is "polluated" with useless lines.
    *and my question : is there a way while performing the second loading to ONLY UPDATE EXISTING RECORDS AND NOT ADD ANY
    NEW RECORDS ? (i didn't find anything in main options of my DTP)*
    (I'd like to avoid the solution to update the 0MAT_SALES_ATTR datasource to add the missing field)
    Thanks in advance for any help, points will be distributed.
    Guillaume P.
    Still no idea ?

    in the start routine of transformation from 0MAT_SALES_ATTR to znewmat do the following:
    select materials from /BIC/PZNEWMAT into i_mat
    for all entries in source_package where material eq source_package-material.
    loop at source_package.
    p_ind = sy-tabix.
    read table i_mat with key material = source_package-material.
    if sy-subrc ne 0.
    delete i_mat index p_ind.
    endif.
    this way you'll only update records that have previously been loaded by 0MATERIAL_ATTR DS
    loading sequence:
    first load ZNEWMAT from 0MATERIAL_ATTR. then activate ZNEWMAT. then load 0MAT_SALES_ATTR to ZNEWMAT.
    M.

  • Installed Itunes: New PC, Windows 7 x64, updated ipod software, click to eject ipod, PC goes to blue screen, dumps data, restarts; songs do not play correctly on ipod. IE: play a song - only first few seconds will play. Some songs play fully, some do not.

    Installed Itunes: New PC, Windows 7 x64, updated ipod software, click to eject ipod, PC goes to blue screen, dumps data, restarts; songs do not
    play correctly on ipod. IE: play a song - only first few seconds will play. Some songs play fully, some do not.

    Hi just wanted to let you know I solved most of my XP problems with my new IPOD. It won't recognise the IPOD or driver and froze and locked up and then the battery died. After hours of trying different things here is what I did. I completly closed computer down. Waited 15 minutes turned on and reloaded everything. I put the usb cable in but not hooked up to IPOD. I turned off Mcaffee (all of it). After my computer came on. I then went and closed everything I didn't need in the bottom toolbar. (taskbar). I then reloaded the software and waited. Took forever to reload and I don't know why but whatever it worked but I DID NOT HOOK UP THE IPOD LIKE IT SAID! I instead shut down the computer after loading the software and waited 5 minutes and turned it back on. I again waited and shut of mcaffee. It loaded everything fine this time and said new hard ware and drivers detected. I plugged my IPOD in and YES I WAS UP AND RUNNING (THIS IS AFTER 6 HOURS OF PLAYING WITH OTHER THINGS!) I am able to load and play, burn, watch movies, see pictures and everything your suppose too! The only thing I see different than the instructions is I left my usb cable plugged in and when it said to eject the disk I didn't. I also didn't plug in the IPOD (5th Gen) and then I shut down waited and then restarted the computer. I hope this helps others because I know the feeling of wanting to return something you paid dearly for and worked hard at saving money to buy one and it doesn't work. My only thing I dislike about apple is they didn't supply a ac adapter for the IPOD and the instructions say to plug it up when trying to charge battery. DUHHHHHH, ya can't do that if ya don't have one and stores are closed and won' open until Monday! But at least I am up and running. I just hate having to plug up IPOD to computer daily to charge the battery which only last a half a day1

  • Does anyone know how you can play video with the screen locked and not just recorded video. Like downloaded video?

    So I want to be able to play video mp4 for my kids and lock the screen so that they don't disable or stop the video. Is there anyway you can lock the screen and play video? I've seen an app that tries to do this, but it only plays video recorded from the device. Also, it's not very good. I've also looked at IOS 5, but it only seems to support audio, not video, unless I am not doing something correctly? What happened to the simple old manual 'hold' switches that most devices have, like the PSP etc? It seems like all of the touch devices have neglected a simple touch disable button? Anyway, please provide any enlightenment here. 

    actually nevermind, it's working now. I closed iTunes, then waited a little, then double clicked one of my iTunes video files from my documents, which opened up iTunes again and the video started playing. I tried restarting iTunes before and that didn't work, so maybe for those who have similar problems, just try clicking on the video file in your documents/desktop of your computer, rather than directly from iTunes.

  • Lock specific number of records using ENQUEUE & DEQUEUE

    Hi,
    Is it possible to lock a group of records in R/3?
    My requirement is to update a set of records in VBAP table. I'm not using a BAPI here. Instead, I use a direct UPDATE.
    In this case, i know i can lock individual records by passing VBELN and POSNR. But what if i have to lock 10 records?
    Is this possible in any way?
    Thanks in advance.
    The current solution is:
    1) LOOP at ITAB
    2) LOCK each entry
    3) UPDATE VBAP for that entry
    4) UNLOCK the entry
    5) Endloop
    I thought this solution might work: (Assume 10 records are present in ITAB)
    1) LOOP at ITAB (Lock all 10 entries)
    2) LOCK that entry
    3) ENDLOOP
    4) UPDATE VBAP from ITAB (Updates all 10 entries in one databae access)
    5) LOOP at ITAB(Unlock all 10 entries)
    6) UNLOCK that entry
    7) ENDLOOP
    Any help will be appreciated.
    Tabraiz.

    Hello,
    Both of your solutions will work.
    With solution 1 there will always be only 1 enqueue object created, because you always enqueue, perform the update and dequeue.
    This means that in SM12 you will only see 1 enqueue entry on your user ID at the same time when your program runs.
    Solution 2 is also possible but there you will have different enqueue objects that will be created, because you enqueue everything, then perform the updates and then dequeue everything.
    In SM12 (lock entries) this will result in more enqueue records on your user ID the time your program runs.
    You have to pay attention that lock entries (SM12) are stored in a queue that is limited, so make sure with solution 2 that you don't overflow the enqueue queue ! ! !
    Via tcode RZ11 you can check parameter enque/table_size (Size of lock table).
    Check the parameter value but also its documentation and you will understand why you should limit the number of open lock records.
    Success.
    Wim Van den Wyngaert

  • Select query-ignoring a few records

    if not int_ekko_list[] is initial.
    SELECT ebeln vgabe shkzg dmbtr INTO TABLE int_ekbe_data1
    FROM ekbe FOR ALL ENTRIES IN int_ekko_list
    WHERE ebeln = int_ekko_list-ebeln AND   " PO number
          vgabe IN r_vgabe.
    endif.
    SORT int_ekbe_data1 BY ebeln vgabe shkzg.
    Here it is fetching only 8 entries ie 3 entries were missing.When the subsequent records is
    having the same amount it is ignoring a few records.
    if not int_ekko_list[] is initial.
    SELECT ebeln vgabe shkzg belnr dmbtr INTO TABLE int_ekbe_data1
    FROM ekbe FOR ALL ENTRIES IN int_ekko_list
    WHERE ebeln = int_ekko_list-ebeln AND   " PO number
          vgabe IN r_vgabe.
    endif.
    SORT int_ekbe_data1 BY ebeln vgabe shkzg.
    EBELN        VGABE BELNR      DMBTR            SHKZG
    0002000059   1     5402073016          100.00  S
    0002000059   1     5402073033          500.00  S
    0002000059   1     5402073041        2,500.00  S
    0002000059   1     5402073045          500.00  S       
    0002000059   1     5402073046          500.00  S
    0002000059   1     5402073301          500.00  H
    0002000059   9     0001386428          100.00  S
    0002000059   9     0001386429        2,500.00  S
    0002000059   9     0001386430            0.00  S
    0002000059   9     0001386431          500.00  S
    0002000059   9     0001386432          500.00  S
    But when I add belnr also in the query it is fetching all the 11 entries.With this change the purpose is served but I am curious to know the reason behind it.Any idea ....?
    Thanks,
    Kiran.

    Hi,
    I think that the entries:
    0002000059   1     5402073045          500.00  S
    0002000059   1     5402073046          500.00  S
    0002000059   9     0001386432          500.00  S
    ..do not are selected beause they are repeted (wihout considering BELNR).
    See your DATA: definition of int_ekbe_data1... is "unique" ?
    Best regards,
    Leandro Mengue
    The response from the colleague about the "FOR ALL ENTRIES" that don´t generate duplicate lines is correct and is very more common.
    Edited by: Leandro Mengue on May 17, 2010 9:10 PM

  • Some colors in the HP tri-color cartridges dry up and stop working only a few weeks after purchase

    HP Deskjet 4180
    Genuine HP Tri-Color #22 ink cartridge and Black #21 ink cartridge
    Windows 7
    Test printing from Photoshop, Windows Picture Viewer and GIMP.
    Some colors in the HP tri-color cartridges dry up and stop working only a few weeks after purchase.
    The experience that I'm having currently contradicts very good, accurate color from HP cartridges in the past from RGB images that I've printed successfully with this printer.  I've previously got excellent color from the true HP ink cartridges on this Deskjet 4180 printer.
    But today it is obvious that the yellow is not flowing from this cartridge that was installed only a few weeks ago.  And my ink levels are at 50 percent, and they were even higher when I started today... see the screenshots below.
    I'm printing from Photoshop, but for some tests I tried printing from two other applications today but I'm always getting these results that indicate that there is no yellow printing... this is much worse than just a bad color profile.  I'm an experienced photo retoucher and I have a long history of dealing with inkjet printing in the work place with all kinds of printers.
    I know that inks can dry up in their cartridges if they don't get printed with every few weeks and if the printer isn't maintained.  I purchased these new cartridges only about three weeks ago and the first test prints and some prints two weeks ago came out perfect.
    But today this is the result I'm getting... screenshots below show the original RGB image and an actual scan of the bad print results I'm getting, indicating that no yellow is flowing from the HP tri-color cartridge.  And a screenshot of the ink level indicator panel is at the bottom.
    Why is the yellow ink drying up and not flowing so quickly?  How can I prevent this besides doing semi-weekly prints to keep the inks from drying up?  I'm in a fairly humid climat, so dry air is not the problem.  The contact points on the cartridge are clean.
    Does HP guarantee their cartridges for this kind of thing?
    Good color - original RGB image...
    Bad color - actual scan of bad print with no yellow, below...
    Ink levels after test printing...
    Thanks for any help.
    digi

    Well, here is the answer I was looking for, only arrived at by way of my own further investigation and experimentation.
    It seems that no matter who I asked about this problem, I always got the same questions and answers.
    For example, the people at the HP 800 number for consumer help, where it seemed I was not talking to someone who was actually familiar with the product, because they came to the conclusion that I need to buy a new HP printer... wow, isn't that a big surprise for an HP employee to say, "Just buy a new one!".
    No one, and I mean no one, would seem to be able to listen to or understand what I wrote in my original question on this thread about how this printer prints fine when I first put in a new ink cartridge, and then just a few weeks later one or two of the colors seem to be dried up and they won't print.
    And it seems that somewhere I read that you need to print a test maintenance print every month or so to keep the inks from drying up... but the inks seem to be drying up in less than three weeks now, even though I used to be able to go for months without doing a print and the inks would still be fine.
    So when I was talking to someone in India, Malaysia or the Philippines at the HP 800 customer phone support number, after going through so much crap about whether this printer was still in warranty just to have a simple question answered you'd think I was trying to launch nuclear missiles and my launch codes weren't current.
    And it was much the same situation to get on HP's "Live Chat" customer service on the net, and then they'd go through the same line of questions and answers as the support people on the HP 800 phone line...
    Q: "Do you have dirty nozzles on your ink cartridges?"
    A: "No, like I said in my original statement, I cleaned those and they weren't dirty to begin with."
    Response: "Because you need to clean those every so often, you know."
    Q: "Did you try cleaning the contacts on the cartridges?"
    A: "Yes, like I said in my original statement, I already did that."
    Response: "Because you need to clean those contacts every so often, you know."
    Q: "Did you try putting in a new cartridge?"
    A: "Yes, like I said in my original statement, this cartridge is nearly new and it shows a 90% ink level."
    Response: "Because you need to put in new cartridges when the ink runs out, you know."
    Q: "Did you do a test print?"
    A: "Yes, like I said in my original statement, I did a test print and that's what is telling me that the yellow and magenta are not printing any longer."
    Response: "Because that's how you can tell if any colors aren't printing, you know."
    So is anyone else seeing a pattern here?  It's not like I'm talking or live chatting with a real human being, but maybe an automated voice prompt system that only has an A, B, C   or   1, 2, 3   type of response system that it's working from. 
    The people hear a answer, and regardless of what that question was in the troubleshooting category that they are in, they just have a stock response that seems to bypass what the customer's answer was, so it's like I'm talking or live chatting with a machine that is uttering its responses in a fixed pattern, regardless of what I'm saying.
    HP customer service is like talking to someone who isn't listening, so often they ask their next question, but I just answered that question with my previous answer.
    Like I said, the way it used to be, HP or even after market ink cartridges could sit for months without doing a maintenance print and I would still get a perfect print every time.  And that's pretty typical for maybe an older person who isn't printing prints that often, but they just want to print one every few months or so, like my mom, with her HP printer, who I've been troubleshooting this problem for.
    Or even with my own large format Epson printer or any of the pro level inkjet printers and even IRIS printers that I've used in the workplace over the course of the last 20 years... you could do a print every two months and there was no problem with dried up inks.
    And I know somewhere in the past  I read that the maintenance print that the instructions was recommending be printed only needed to be done every 4 to 6 weeks to keep the inks from drying up, although when I go through the entire full blown PDF instruction manual now I can't find ANYTHING about how often a maintenance print needs to be done... that's right, nothing!
    But on Christmas eve I once again exchanged my last, dried up HP tri-color ink cartridge at a Walgreens store where my mom had purchased it months prior (and the guy was nice enough to exchange it even after 5 months)  which was yet another HP tri-color ink cartridge that had at least two of it's colors dry up after only a few weeks.  At that Walgreens they had been nice enough to replace three prior HP tri-color ink cartridges with the same problem in the last year, and before that three different after market, off brand tri-color ink cartridges from another store had dried up after only a few weeks.
    So the guy at Walgreens told me that now  with HP cartridges you need to do a maintenance test print EVERY WEEK in order to keep the inks from drying up... THAT'S EVERY WEEK YOU ARE NOW SUPPOSED TO DO A TEST PRINT FOR MAINTENANCE.
    Now, you DO NOT need to do one of the test prints where it prints a photo of a pear, which uses quite a bit of ink, but you can just do one of the self test prints where you hold down on the CANCEL button and then press the COLOR COPY button and it prints a quick test page with just a little color and a lot of B&W text, and that's apparently enough.
    And that seems to be enough to keep the ink cartridges from drying up, the way they seem to be otherwise doing so quickly now, as opposed to how HP and other brand ink cartridges used to.
    And in fact, now after about a month, after doing weekly self test prints, the ink cartridges are still flowing well and they just did some full color prints quite nicely... ALERT THE MEDIA AND ANYONE WHO CONSIDERS THEMSELVES HP PRINTING EXPERTS!
    So the questions I would ask myself are these...
    First, why is it that NO ONE at HP customer service knew this, whether it be on the HP 800 phone support or on the HP "Live Chat" with people in India, Malaysia and the Philippines, or even here on the HP Help Forum with so-called EXPERTS from HP?
    Second, how have the inks changed so that in the past, you didn't need to do maintenance prints every week, but maybe every two months at the most, in order to keep the inks from drying up, but now the inks dry up in a matter of less than two weeks unless a maintenance print is done once a week?
    Have HP and other ink makers changed the formula of their inks so they dry up much faster, forcing people to buy new cartridges when the last ink cartridge is still at a 90% level with dried up ink?
    And as a result, are people on the HP 800 customer phone support line and on HP "Live Chat" telling people that they need to buy a new printer, when in actuallity their ink cartridges are just drying up within a new record short period of time?
    You tell me, HP experts.

  • In my Apple Macbook Air, most of the USB Flash/Thumb Drives are not shown in the Finder Window. Only a few Brands of USB /Flash Thumb Drives are shown or compatible or shown in the Finder. How do I use any Flash/Thumb Drive with my Apple MacAir?

    In my Apple Macbook Air, most of the USB Flash/Thumb Drives are not shown in the Finder Window. Only a few Brands of USB /Flash Thumb Drives are shown or compatible or shown in the Finder. How do I use any Flash/Thumb Drive with my Apple MacAir?

    Yes, junker thumb drives pour like rain in the market.  
    Which makes are working on your Air, and which arent?
    Stick to Sandisk and a couple of other reliable mfg. of memory sticks

Maybe you are looking for