OWSM 11g in EM behaving different than documentation

Hi everyone,
I'm trying to get OWSM 11g working so I just installed Soa suite 11gR1(11.1.1.2.0). All I need is to attach a predefined policy to an existing web service which exists incide an EJB in an EAR application. I'm following the instructions from http://download.oracle.com/docs/cd/E12839_01/web.1111/b32511/attaching.htm#CEGDGIHD , in the session "Viewing the Policies That are Attached to a Web Service". Unfortunately I'm expecting different screens than those shown in the Manual. In the documentation the figure 8.1 shows the tabs Operations / Policies / Chart / Configuration, but in my case the same screen shows only the operations Tab, making it impossible to attach the policies I need. Here's what I see at my environment: http://img203.imageshack.us/img203/751/erroowsm.png . I don't know if I missed something but it still not works as the documentation says (figure 8.1). Please, any help will be appretiated !
Thanks,

Rajesh wrote:
Is it going above 1GB ?No, current memory utilization is 503MB, but it keeps increasing. Support specialist told me it is OK for agents with large number of targets to utilize up to 1GB of memory even if I told him I have only 11 targets on this host. I do not think 11 targets is "large number" and I do not want to wait until agent will use 1GB of memory.
You can also check MOS note :
How To Effectively Investigate & Diagnose Grid Control Agent High Memory Utilization Issues? [ID 1092466.1]I have read this note and did not find solution for my problem and that is why I contacted Oracle Support. I think this agent is leaking memory, but Support specialist suggests reinstalling this agent on other host.
I do not think he understands problem and that is why I looking for other opinions.

Similar Messages

  • BI Content Install Different than Documentation

    Hi, I installed InfoCube 0PCA_C01 from Business Content and noticed that the below InfoObjects are in the InfoCube, but not in the Documentation for InfoCube 0PCA_C01.  I'm looking at recent documentation.
    http://help.sap.com/saphelp_nw70/helpdata/EN/ff/686a373638445ce10000009b38f842/content.htm
    Any ideas why these would be missing out of the documentation?
    0PCOMP_CODE
    0MOVE_TYPE

    I always look at the SAP Help Portal with some skepticism because sometimes it omits certain things and sometimes it's just outright incorrect. As you've seen, this is a case of ommission and they have never corrected it.
    Source --> Target
    0EC_PCA_1-S_COMP_CODE --> 0PCA_C01-0PCOMP_CODE
    0EC_PCA_1-RMVCT --> 0PCA_C01-0MOVE_TYPE

  • XPath expressions in aggreation functions behave different than I expect

    Hi,
    I'm having the following very simple schema:
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="a" type="AType" />
    <xs:complexType name="AType">
    <xs:sequence>
    <xs:element name="b" type="BType" />
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="BType">
    <xs:sequence>
    <xs:element name="c" type="CType" minOccurs="1" maxOccurs="unbounded" />
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="CType">
    <xs:all minOccurs="0">
    <xs:element name="d1" type="xs:double" />
    <xs:element name="d2" type="xs:double" />
    <xs:element name="d3" type="xs:double" />
    <xs:element name="d4" type="xs:double" />
    <xs:element name="d5" type="xs:double" />
    <xs:element name="d6" type="xs:double" />
    </xs:all>
    </xs:complexType>
    </xs:schema>
    Which I loaded using the following code:
    declare
    l_bfile bfile;
    begin
    l_bfile := bfilename('DIR_TEMP', 'simple.xsd');
    dbms_lob.open(l_bfile);
    dbms_xmlschema.registerschema('http://localhost/simple.xsd',l_bfile);
    dbms_lob.close(l_bfile);
    end;
    Then I created the table "simple" as follows:
    CREATE TABLE simple OF XMLTYPE XMLSchema "http://localhost/simple.xsd" ELEMENT "a";
    And I loaded the following XML document:
    <?xml version="1.0"?><a>< b>
    <c><d1>0</d1></c>
    <c><d1>1</d1></c>
    <c><d1>2</d1></c>
    <c><d1>3</d1></c>
    <c><d1>4</d1></c>
    <c><d1>5</d1></c>
    <c><d1>6</d1></c>
    <c><d1>7</d1></c>
    <c><d1>8</d1></c>
    <c><d1>9</d1></c>
    </b></a>
    Which was loaded by the following code:
    DECLARE
    file bfile;
    charContent clob := ' ';
    targetFile bfile;
    charset_id number := 0;
    src_offset number := 1;
    dst_offset number := 1;
    lang_ctx number := DBMS_LOB.default_lang_ctx;
    warning number;
    BEGIN
    DBMS_OUTPUT.enable(10000);
    file := bfilename('DIR_TEMP','simple.xml');
    targetFile := file;
    DBMS_LOB.fileopen(targetFile,DBMS_LOB.file_readonly);
    DBMS_LOB.loadclobfromfile(charContent,targetFile,DBMS_LOB.getLength(targetFile),src_offset, dst_offset, charset_id, lang_ctx, warning);
    DBMS_LOB.fileclose(targetfile);
    INSERT INTO simple VALUES (xmltype(charContent));
    END;
    The function to be executed is the avg of d1. The solution if of course 4.5.
    The following queries give the correct answer:
    SELECT XMLQuery('for $i in /a return avg($i//d1)' PASSING OBJECT_VALUE RETURNING CONTENT) FROM simple;
    SELECT XMLQuery('for $i in /a return avg(//d1)' PASSING OBJECT_VALUE RETURNING CONTENT) FROM simple;
    SELECT XMLQuery('for $i in /a let $t := //d1 return avg($t)' PASSING OBJECT_VALUE RETURNING CONTENT) FROM simple;
    However, when I execute any of the following expressions, they return nothing (or to be exact: an empty row):
    SELECT XMLQuery('for $i in /a return avg($i/b/c/d1)' PASSING OBJECT_VALUE RETURNING CONTENT) FROM simple;
    SELECT XMLQuery('for $i in /a return avg($i//c/d1)' PASSING OBJECT_VALUE RETURNING CONTENT) FROM simple;
    SELECT XMLQuery('for $i in /a return avg(//c/d1)' PASSING OBJECT_VALUE RETURNING CONTENT) FROM simple;
    SELECT XMLQuery('for $i in /a let $t := //c/d1 return avg($t)' PASSING OBJECT_VALUE RETURNING CONTENT) FROM simple;
    I'm expecting that avg($i//c/d1) selects all d1 elements contained in a c element within the context of $i and return the average of those d1s. However, it doesn't seem to do so.
    When I remove the "avg" in the last query:
    SELECT XMLQuery('for $i in /a let $t := //c/d1 return $t' PASSING OBJECT_VALUE RETURNING CONTENT) FROM simple;
    it does return a list of all d1 elements, as I expect. However the aggragation function doesn't return the value as expected. I've tested with more aggregation functions (eg. min, max) and all are having the same effects.
    Can anyone explain me what I'm missing here, or point me to some documentation which explains it?
    I'm running:
    SQL*Plus: Release 10.2.0.3.0 - Production
    on
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Production
    With the Partitioning, OLAP and Data Mining options
    null
    Message was edited by:
    Tijink

    Did you also try to create the XMLSchema and the table and run the queries against that?Still, no difference for me:
    michaels>  declare
       l_clob   clob
          := '<?xml version="1.0" encoding="ISO-8859-1" ?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="a" type="AType" />
    <xs:complexType name="AType">
    <xs:sequence>
    <xs:element name="b" type="BType" />
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="BType">
    <xs:sequence>
    <xs:element name="c" type="CType" minOccurs="1" maxOccurs="unbounded" />
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="CType">
    <xs:all minOccurs="0">
    <xs:element name="d1" type="xs:double" />
    <xs:element name="d2" type="xs:double" />
    <xs:element name="d3" type="xs:double" />
    <xs:element name="d4" type="xs:double" />
    <xs:element name="d5" type="xs:double" />
    <xs:element name="d6" type="xs:double" />
    </xs:all>
    </xs:complexType>
    </xs:schema>';
    begin
       dbms_xmlschema.registerschema (schemaurl      => 'http://localhost/simple.xsd',
                                      schemadoc      => l_clob,
                                      gentypes       => false
    end;
    PL/SQL procedure successfully completed.
    michaels>  create table simple of xmltype xmlschema "http://localhost/simple.xsd" element "a"
    Table created.
    michaels>  insert into simple
         values (xmltype
                    ('<?xml version="1.0"?><a><b>
                <c><d1>0</d1></c>
                <c><d1>1</d1></c>
                <c><d1>2</d1></c>
                <c><d1>3</d1></c>
                <c><d1>4</d1></c>
                <c><d1>5</d1></c>
                <c><d1>6</d1></c>
                <c><d1>7</d1></c>
                <c><d1>8</d1></c>
                <c><d1>9</d1></c></b></a>'
    1 row created.
    michaels>  select xmlquery('for $i in /a return avg($i//d1)' passing  object_value returning content).getnumberval() res from simple
    union all
    select xmlquery('for $i in /a return avg(//d1)' passing  object_value returning content).getnumberval() res from simple
    union all
    select xmlquery('for $i in /a let $t := //d1 return avg($t)' passing  object_value returning content).getnumberval() res from simple
    union all
    select xmlquery('for $i in /a return avg($i/b/c/d1)' passing  object_value returning content).getnumberval() res from simple
    union all
    select xmlquery('for $i in /a return avg($i//c/d1)' passing  object_value returning content).getnumberval() res from simple
    union all
    select xmlquery('for $i in /a return avg(//c/d1)' passing  object_value returning content).getnumberval() res from simple
    union all
    select xmlquery('for $i in /a  let $t := //c/d1 return avg($t)' passing  object_value returning content).getnumberval() res from simple
           RES
           4,5
           4,5
           4,5
           4,5
           4,5
           4,5
           4,5
    7 rows selected.

  • 3.1 IRR download CSV behaves different than 3.0.1 CSV download

    I am generating some links dynamically in the select statements for some of my reports (i.e. select decode(REGULAR_EXPRESSION_KEY,
    null,'-NO RE-',
    "a href="f?p=&APP_ID.:2:... )
    Note: I changed the example a bit so that it would display and not be interpreted...
    The download to CSV in my 3.0.1 automatically stripped this HTML out of the download to CSV.
    The CSV Download in the Interactive Reports of 3.1 did not strip the html. All of this HTML is downloaded into the CSV file.
    Is there a way to get this 3.1 Interactive download to CSV to behave the same way it worked with the 3.0.1 download to CSV?
    Thanks,
    Steve

    Hi Gurus,
    I updated one of my small apex application to use interactive report, but I also encountered this kind of
    'cannot export to CSV' problem, it is so bad, we need to export to Excel all the time! I have to give up my upgrading and remade it with classic report, though many cool stuffs with interactive report, pitty!
    Ok, I will try to use your method to work around this problem, that may give me some kind of hope.
    Hope you can improve this much more in the later release.
    Anyway, 3.1 is very cool though, but also if you can more simply the Blob founction .
    Peter

  • "include dataset" syntax functions differently than documented

    Please reference http://docs.oracle.com/cd/E14812_01/doc/doc.103/e12838/dataset_lang.htm#CIHHCHBB
    Running OSB 10.4.0.2.0 (did not find dataset language reference. Created a dataset directory and placed my two default datasets in it; one dataset for default includes, one for default excludes. If the datasets are referenced by name such as "include dataset directoryname/includes", backup works just fine. If referencing by the directory name, as shown in the documentation, such as "include dataset directoryname", the backups always fail with error "no data to backup described by dataset".
    Doing a dataset check for the dataset using the includes reports no errors. Only error in the referenced datasets are " include host directive missing from dataset". Do note that the example in the documentation is also missing the host directive. The error appears to be a misnomer, as the backups will complete successfully, as mentioned above. However, referencing the directory name also produces no error during dataset check, but the backup will fail, as mentioned above.
    Should I file a bug report? If so, where and how?

    You're absolutely right! Yes this is a bug so I will open a bug for you and keep this post updated as there is progress.
    Obviously you have the workaround, to create the dataset as :
    include dataset richtest/includes.ds
    include dataset richtest/excludes.ds
    include host tvpbkp01
    Thanks
    Rich

  • HTMLB iterator - listbox behaving different than dropdownlistbox

    So, my turn for a question again:
    I've read through a lot of material, all the BSP blogs (each at least once, some of them over and over again ...), searched the forum to the best I could, but I'm still facing this problem:
    In my iterator, the listbox just won't display ...
    Now, using the dropdownlistbox everything works fine (like in blog 213 from Brian), but changing to listbox comes up with that empty cell ...
    Is there some different behaviour between these two elements that I should not know about?
    Have any of you used a listbox (not dropdown) in an iterator successfully? If so, examples would be appreciated!
    Best regards,
    Max

    I have it working now.  My problem was at first that I forgot to give the ListBox a pointer to my table that holds the values.  Then while debugging I actually fixed that problem but set the listbox size to 1.  Both of these options caused an error in the Runtime_IS_Valid method and stopped all rendering.  And here I was thinking there was a problem in the output HTML. 
    I finally found it when I set a breakpoint in the DO_AT_BEGINNING method of both my listbox and my dropdown listbox.  I never hit the breakpoint in the listbox.  So after debugging all the way through to the IFUR=>D2~Render method I finally found it.  The following code does work for me now in the Render_Cell_Start method of my Iterator class:
            data listbox type ref to cl_htmlb_listbox.
            create object listbox.
            listbox->id = p_cell_id.
            GET REFERENCE OF me->i_model->iusers_values INTO listbox->table.
            listbox->nameofkeycolumn = 'key'.
            listbox->nameofvaluecolumn = 'value'.
    *       listbox->onselect = 'OnUpdateUserClick'.
            listbox->selection = get_column_value( 'BNAME' ).
            listbox->width = '100%'.
            listbox->size = '2'.
            p_replacement_bee = listbox.
            p_style = 'font-size:0.9em'.
    That just goes to show you that when something is not rendering at all, you should start with a breakpoint in the Runtime_Is_Valid method.

  • Smart Objects in CS5 behave differently than in CS4?

    I've just upgraded from CS4 to CS5, and I've noticed, what is to me, a BIG change in the way Smart Objects work.
    Imagine this simplified hypothetical scenario...
    I create a document in Illustrator, with two layers.
    On one layer would be a 800x600 solid rectangle. On another layer I'd put a small 50x50 circle.
    The import thing here is that the circle would be positioned roughly in the top-left corner in relation to the rectangle.
    I'd select both objects, go over to Photoshop, create a new 800x600 document, and paste what I've just copied into the document as a Smart Object.
    Photoshop would treat both Illustrator layers as one Smart Object of course, and they would get pasted together, and they would look exactly how they did in Illustrator - that being the circle positioned in the top left corner of the rectangle.
    Now I decide I want to hide the solid rectangle in my Smart Object, but I want to keep the circle exactly as it is now in the Photoshop document.
    So I simply double-click to edit the original Illustrator file, and then I hide the layer with the rectangle on it, save the file, close it, and go back to Photoshop.
    In CS4, the file would update to show the changes I had made, so the rectangle would disappear and only the circle would remain - and importantly, the circle would maintain its position. It would stay in the top-left corner of my Photoshop document (the rectangle still exists in the original Illustrator file, but the layer it's on is simply hidden).
    However, when I do this exact same process in CS5, when I update the Smart Object after hiding the rectangle layer in Illustrator, the Smart Object seems to ignore the rectangle that is hidden in the file, and the solitary circle that remains gets totally shifted into the centre of the 800x600 Photoshop file. So it is now no longer in the top-left corner where it was before.
    This is causing me HUGE problems, because I have painstakingly positioned many many various objects in my Illustrator files which then get shifted out of place whenever I make an adjustment!
    Is there any way to get CS5 to treat Smart Objects in the same way that CS4 did before it?

    Regards your comments above, yes I am aware of that discrepancy, but I very carefully make sure not to change the size or position of the largest object. In other words, when ALL objects on ALL layers are selected, I make sure that the OVERALL X/Y co-ordinates AND X/Y dimensions do not change between adjustments of various isolated objects.
    (I actually deliberately keep a "spare" oversized rectangle on a bottom layer to maintain overall size, and it's this layer that I normally switch off in my final Smart Object.)

  • Any idea why the sissor cut tool would behave differently than it has. It makes the cut several seconds in advance of my marker-now. Previously it was precise. Thx..

    The sissor tool is making arbitrary cuts, in areas I have not specified. I have  used this tool alot. Has previously worked as desired.
    Any idea what might be controling it to act this way?
    Thank you.

    Hi
    Snap value set to something like Bar/Beat?
    CCT

  • After release the release version different than debug version ????

    Hello guys,
    I am having a HUGE issue with my release build version of my application, when i run my application through eclipse it runs perfectly, however after making a release build of the application and running it behaves different than the version run from eclipse ???????? has anyone ever had this problem before and if so what can you do to prevent this behavior. thank you for any advice on this issue

    Hello,
    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    More information about reinstalling Firefox can be found [https://support.mozilla.org/en-US/kb/troubleshoot-and-diagnose-firefox-problems?esab=a&s=troubleshooting&r=3&as=s#w_5-reinstall-firefox here].
    <b>WARNING:</b> Do not run Firefox's uninstaller or use a third party remover as part of this process, because that could permanently delete your Firefox data, including but not limited to, extensions, cache, cookies, bookmarks, personal settings and saved passwords. <u>These cannot be recovered unless they have been backed up to an external device!</u>
    Please report back to see if this helped you!
    Thank you.

  • Multiple idocs in Single Job behaves differently (RBDAPP01)

    Hi,
    How to debug the background Job for Program RBDAPP01 which already posted the Idocs in 53 status from 64.
    I wanted to analyze why multiple idocs in same job behave differently than the single idoc in a job. In case of multiple idocs in a single job i put packet size 1, but no help.
    Thanks,
    Asit Purbey.

    I found the solution, so closing this Post.

  • 'Play Full Screen' looks different than 'play'  (makes timing errors)

    In iMovie, 'Play Full Screen' behaves differently than 'Play'  Makes timing errors, cuts off the beginning of commentaries, etc.

    You can't disable tap/zoom scaling. What happens if you add a margin and disable thumbnail?
    Can you convert them to a Keynote presentation (Hype?)?
    One option would be to reduce the original video dimensions and add a frame/mask around it before adding into a book, that way when it is expanded, it sits at a smaller size. Bunch of work, maybe, so unless you have higher rez video, that may be your best option.

  • Insert Stmt behaving differently within a PL/SQL block than independently

    I have an INSERT INTO statement that is behaving different within a PL/SQL block than it does if ran as an independent SQL query. When executed within a PL/SQL block the INSERT statement does insert rows, but only less than 50% of the rows returned by the SELECT statement used by the INSERT. There are no constraints and the only check on the destination table is a NOT NULL for supplier_id column.
    BEGIN
        INSERT INTO suppliers (supplier_id, supplier_name)
        SELECT account_no, name FROM customers WHERE city = 'Newark';
    END;Can anyone help me with this?
    Thanks

    Thought this sounded familiar:
    INSERT INTO statement that is behaving different within a PL/SQL block

  • HTML Tag formatting is behaving differently in CC than CS6?

    Why is HTML Tag formatting is behaving differently in CC than it did in CS6, even though the settings are set the same?!??!
    I've double-checked the tag settings - they are absolutely the same between both versions, but when I use APPLY formatting to a page in CC, it completely mangles the tags formatting on ANY html file...
    What's going on?  Any way to get CC to act properly like it does in CS6??

    Can you provide code examples of what you mean by mangled?
    It could be that your code contains errors which DW is attempting to reconcile. 
    CSS - http://jigsaw.w3.org/css-validator/
    HTML - http://validator.w3.org/
    JavaScript - http://www.jslint.com/
    PHP -  http://phpcodechecker.com/
    Or perhaps your code format is not set-up the same in both apps.  Edit >  Tag Libraries.
    Nancy O.

  • OWSM 11g: Message Protection

    Hi All,
    I have earlier woked on OWSM 10g and implemented XML encryption and decryption. Now,I am trying to implement message protection(encryption and decryption) using OWSM 11g policies. The sample scenario consists of two web services OWSM_11g and OWSM_11g_client. The message send from OWSM_11g_client should be encrypted and signed and OWSM_11g needs to verify the signature and decrypt the message.
    Here is what i have done so far.
    a.) I have attached oracle/wss10_message_protection_client_policy to OWSM_11g and oracle/wss10_message_protection_service_policy to OWSM_11g_client.
    b.) I have configured a keystore for weblogic domain exactly as explained in the following article http://www.ora600.be/node/5000
    c.) I have enabled the logging assertion for oracle/wss10_message_protection_client_policy & oracle/wss10_message_protection_service_policy.
    The message flow between the services is proceeding without any errors. There are two problems that I am facing here:
    a.) I cannot view SOAP message in the message logs to verify the encrytion and decryption.
    b.) It seems that I may be missing out some configuration parameters as specified in the documentation required to apply above policies.
    Any inputs regarding this would be greatly helpful.

    Hi there,
    I can suggest the following to you and hopefully it should work:
    a.) Instead of using the default keystore you should set up a new keystore for the weblogic domain. You may follow the guidelines as described in the following article: http://www.ora600.be/node/5000
    b.) Specify the keystore.recipient.alias (public key which maps to client_key according to the above article) at per-client basis using the Security Configuration Details and keystore.enc.csf.key (private key which again maps to client_key according to the above article).
    c.) message_protection_client_policy and message_protection_service policy are made up of assertion templates. So, Go to the web services policy page and enable the loggin assertion for each of the policies. Here, in case both the composites are on the same soa server then, you need to turn off the local optimization. Read the above post by Ronald which explains this lucidly. On this page you may change setting for the request and response messages.
    d.) You need to check the following log file to view the soap messages logged by the assertions to verify encryption and decryption domains\soa_domain\servers\AdminServer\logs\owsm\msglogging\diagonstic.log
    Here I was able to encrypt and sign the message when both the composites were in the same soa server. However when they were in different soa server some server side error was occuring. You may try the same as an addtional exercise and update me in case you succeed.
    In case you still face any problems I will be glad to help you out.
    Regards,
    Shomit

  • How can I have a topic name different than the filename of a linked Word document?

    I've encountered multiple issues with linking to Word files ...here's another one: If a Word document is entitled Feature_ABC, then upon generating the HTM after linking it, the HTM's filename and topic name are both Feature_ABC. As underscores are ugly in topic names and features can be renamed, I would hope that I could rename the topic to be different than the filename.
    The Help documentation suggests this is possible by editing the Topic Name Pattern in the Word Conversion Settings dialog of Project Settings. However, reagardless of the Pattern entered, every time I generate or update from the context menu of a linked Word document the topic name remains the same as the filename.
    Because the topic name is shown in the Search panel and browser tabs, it will be a little ugly and may even be confusing. It is possible to edit the HTML directly, but then the HTML is overwritten each time the Word documents are update and the great advantage of using linked documents is lost.
    Is there a way to solve this problem?
    Thanks in advance for any help you might be able to provide.

    Thank you for your quick reply - just checked Multifox out.
    It seems it still forces me to open a new window, while preventing the need for a new profile.
    Why isn't it in the addons.mozilla.org ? Looks dangerous ...

Maybe you are looking for