Transform versions into masters

How to transform versions into masters ? is it using reprocess masters ? cos I select the image and press that n it stated nothing can be reprocess.
since i export the version the file size is too small compare to the masters one, could any one help me with this please
thxxx
Message was edited by: william7939

When you go to file>export, there are options to to choose any size and or quality you want. Master files can be exported by going to File in the top left, choose Export from the drop down list, then Master. From the next drop down, select were you want them to go. Then click Export Masters, in the bottom right corner. Done.
You do the same with versions but there are a lot of options for file size etc. Allan

Similar Messages

  • How can I convert an version into a master?

    I just upgraded to Ap3 from Ap2. I have lost the reference to master files on hundreds of my images. There doesn't seem to be any rhyme or reason as to which master images disappeared. I have tried all three options for repairing the library and they have failed. I have never segregated versions and masters in different locations--they've always been in the library. So, I think my next best move is to convert all of my versions into masters. Is there a way to do this?

    You'll be better off tying to find the masters and correcting the problem. If you don't have the masters you don't have the versions either, all you have are the previews.
    Depending on your preferences settings for the size and quality of the previews you may get something expectable for viewing on your screen or the web but that would be it.
    Also if all you have are the previews then you won't be able to export them, you'll have to drag them out of Aperture into a folder on your HD.

  • Transforming XML  into Internal Table

    Hi guys, I have tried a simple nested code but i fail to write in the Name, Phone and Email portion ... I manage to get to the header level... Can any one gimme some pointers?
    PS: I have read to those threads posted here already before I got this far
    <b><u>MAIN CODE</u></b>
    REPORT  ZTESTJASON11.
    TYPES: BEGIN OF T_HEADER,
            NAME(140),
            PHONE(23),
            EMAIL(100),
           END OF T_HEADER,
           D_HEADER TYPE T_HEADER OCCURS 0.
    TYPES: BEGIN OF T_ITEM,
            HEADER TYPE D_HEADER,
           END OF T_ITEM,
           D_ITEM TYPE T_ITEM OCCURS 0.
    TYPES: BEGIN OF T_LIST,
            ITEM TYPE D_ITEM,
           END OF T_LIST,
           D_LIST TYPE T_LIST OCCURS 0.
    TYPES: BEGIN OF TYPE_DATA,
            LIST TYPE D_LIST,
           END OF TYPE_DATA.
    DATA: RESPONSE TYPE TABLE OF TYPE_DATA.
    DATA: XMLOUT TYPE STRING.
    DATA: ITAB LIKE SOLI OCCURS 0 WITH HEADER LINE.
    DATA: HEADER_WA    TYPE T_HEADER,
          HEADER_LN    TYPE D_HEADER,
          ITEM_WA      TYPE T_ITEM,
          ITEM_LN      TYPE D_ITEM,
          LIST_WA      TYPE T_LIST,
          LIST_LN      TYPE D_LIST.
    MOVE:   'JIM BEAN' TO HEADER_WA-NAME,
            '+6512345678' TO HEADER_WA-PHONE,
            '[email protected]' TO HEADER_WA-EMAIL.
    APPEND HEADER_WA TO HEADER_LN.
    ITEM_WA-HEADER = HEADER_LN.
    APPEND ITEM_WA TO ITEM_LN.
    LIST_WA-ITEM = ITEM_LN.
    APPEND LIST_WA TO LIST_LN.
    myXML-LIST = LIST_LN.
    PERFORM UPLOAD_XML.
    FORM UPLOAD_XML .
    REFRESH ITAB.
    clear RESPONSE.
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    filename = 'C:test11.XML'
    filetype = 'BIN'
    TABLES
    data_tab = ITAB.
    LOOP AT ITAB.
      CONCATENATE XMLOUT ITAB-LINE INTO XMLOUT.
    ENDLOOP.
    CALL TRANSFORMATION ('ZTEST11X2A')
    SOURCE XML XMLOUT
    RESULT RESPONSE = RESPONSE.
    BREAK-POINT.
    ENDFORM.
    <b><u>XML CODE (test11.xml)</u></b>
    <?xml version="1.0" encoding="iso-8859-1"?>
    <myXML>
      <LIST>
        <ITEM>
          <HEADER>
            <NAME>JIM BEAN</NAME>
            <PHONE>+6512345678</PHONE>
            <EMAIL>[email protected]</EMAIL>
          </HEADER>
        </ITEM>
      </LIST>
    </myXML>           
    <b><u>XSLT CODE (ZTEST11X2A)</u></b>
    <xsl:transform version="1.0"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
      xmlns:sap="http://www.sap.com/abapxml"
    >
    <xsl:template match="/">
    <asx:abap xmlns:asx="http://www.sap.com/abapxml">
    <asx:values>
        <RESPONSE>
          <myXML>
           <LIST>
           <ITEM>
            <xsl:for-each select="ITEM">
                <I>
                    <HEADER>
                        <NAME> <xsl:value-of select="NAME"/> </NAME>
                        <PHONE> <xsl:value-of select="PHONE"/> </PHONE>
                        <EMAIL> <xsl:value-of select="EMAIL"/> </EMAIL>
                    </HEADER>
                </I>
             </xsl:for-each>
             </ITEM>
            </LIST>
            </myXML>
        </RESPONSE>
    </asx:values>
    </asx:abap>
    </xsl:template>
    </xsl:transform>

    Thanks a million in advance Raja, thanks for ur help, realli appreaciate it! ")
    Here it is...
    <u><b>MAIN CODE (itab declaration)</b></u>
    REPORT  ZTESTJASON11.
    TYPES: BEGIN OF T_HEADER,
            NAME(140),
            PHONE(23),
            EMAIL(100),
           END OF T_HEADER,
           D_HEADER TYPE T_HEADER OCCURS 0.
    TYPES: BEGIN OF T_ITEM,
            HEADER TYPE D_HEADER,
           END OF T_ITEM,
           D_ITEM TYPE T_ITEM OCCURS 0.
    TYPES: BEGIN OF T_LIST,
            ITEM TYPE D_ITEM,
           END OF T_LIST,
           D_LIST TYPE T_LIST OCCURS 0.
    TYPES: BEGIN OF TYPE_DATA,
            LIST TYPE D_LIST,
           END OF TYPE_DATA.
    DATA: RESPONSE TYPE TABLE OF TYPE_DATA.
    DATA: XMLOUT TYPE STRING.
    DATA: ITAB LIKE SOLI OCCURS 0 WITH HEADER LINE.
    DATA: HEADER_WA    TYPE T_HEADER,
          HEADER_LN    TYPE D_HEADER,
          ITEM_WA      TYPE T_ITEM,
          ITEM_LN      TYPE D_ITEM,
          LIST_WA      TYPE T_LIST,
          LIST_LN      TYPE D_LIST.
    MOVE:   'JIM BEAN' TO HEADER_WA-NAME,
            '+6512345678' TO HEADER_WA-PHONE,
            '[email protected]' TO HEADER_WA-EMAIL.
    APPEND HEADER_WA TO HEADER_LN.
    ITEM_WA-HEADER = HEADER_LN.
    APPEND ITEM_WA TO ITEM_LN.
    LIST_WA-ITEM = ITEM_LN.
    APPEND LIST_WA TO LIST_LN.
    myXML-LIST = LIST_LN.
    PERFORM UPLOAD_XML.
    FORM UPLOAD_XML .
    REFRESH ITAB.
    clear RESPONSE.
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    filename = 'C:test11.XML'
    filetype = 'BIN'
    TABLES
    data_tab = ITAB.
    LOOP AT ITAB.
      CONCATENATE XMLOUT ITAB-LINE INTO XMLOUT.
    ENDLOOP.
    CALL TRANSFORMATION ('ZTEST11X2A')
    SOURCE XML XMLOUT
    RESULT RESPONSE = RESPONSE.
    BREAK-POINT.
    ENDFORM.
    <u><b>XML CODE (test11.xml)</b></u>
    <?xml version="1.0" encoding="iso-8859-1"?>
    <myXML>
      <LIST>
        <ITEM>
          <HEADER>
            <NAME>JIM BEAN</NAME>
            <PHONE>+6512345678</PHONE>
            <EMAIL>[email protected]</EMAIL>
          </HEADER>
        </ITEM>
      </LIST>
    </myXML>          
    <u><b>XSLT CODE (ZTEST11X2A)</b></u>
    <xsl:transform version="1.0"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
      xmlns:sap="http://www.sap.com/abapxml"
    >
    <xsl:template match="/">
    <asx:abap xmlns:asx="http://www.sap.com/abapxml">
    <asx:values>
          <RESPONSE>
          <myXML>
           <LIST>
            <ITEM>
            <xsl:for-each select="ITEM">
                <dataset1>
                        <HEADER>
                        <xsl:for-each select="HEADER">
                        <dataset2>
                                <NAME>
                                    <xsl:value-of select="NAME"/>
                                </NAME>
                                <PHONE>
                                    <xsl:value-of select="PHONE"/>
                                </PHONE>
                                <EMAIL>
                                    <xsl:value-of select="EMAIL"/>
                                </EMAIL>
                       </dataset2>
                       </xsl:for-each>
                       </HEADER>
                </dataset1>
             </xsl:for-each>
            </ITEM>
            </LIST>
            </myXML>
            </RESPONSE>
    </asx:values>
    </asx:abap>
    </xsl:template>
    </xsl:transform>

  • Export versions into project

    For a set of photos I want to be able to change the color profile from Adobe RGB to sRGB, then upload them into MobileMe, email them to friends, etc.
    I'm trying to find the most efficient way to do this. Ideally I would select the photos, then export them to a new or existing album, and change the color profile during export. After export to the album, I could do some sharpening and upload to MobileMe or web, email, etc.
    I am having trouble doing this, as I cannot find out how to export versions into an album. I believe AP only allows me to export into a project / folder. With this approach, I believe I will have multiple files of the same photo, which is not my preference.
    Can I export versions into an album? If not, how can I have multiple versions of the same file - one with AdobeRGB, the other with sRGB?
    Thank you.

    bix106 wrote:
    ... how can I have multiple versions of the same file - one with AdobeRGB, the other with sRGB?
    You can't. You can only change the color space on export or by round tripping to another application and changing it there. Either method involves creating a new master of the image. AFAIK there is no way to assign a different color space within Aperture.
    It's really a moot point though: images are automatically converted to sRGB when uploaded to MobilMe, and you can set the export settings (in Preferences) to anything you like when using Aperture's email function. So you don't need multiple versions (in this case masters) in your library in order to accomplish your goal.
    DLS

  • Versions and Masters, size and trying to save space

    I am looking at my Library and trying to get rid of duplicates - In a List view I see an image and then its Version2. The image master is 9.58 mb; the version is also. I thought versions were supposed to be just the tweaks of the masters and not themselves all that large? I'd like to delete the original and keep the version but know I can't do thatt; if you delete a Master it deletes a version so you can't convert the Version into a new Master
    BUT - would this work - export the Versions - delete the Masters - reimport the Versions which then become Masters?
    Of course the other option is to offload them all anyway but before going that route, I'm trying to come up with another idea. Or a better idea.
    Message was edited by: Victoria Herring

    What William said +
    You can turn off auto preview generation for new projects, you can turn off "maintain previews" for existing or old projects, you can delete all of the previews and then just generate them for your rated images.
    You can also take a some of your images either by project or by any other criteria and then use move masters to an external drive.
    More here:
    [Aperture previews|http://photo.rwboyer.com/2009/01/aperture-2-quick-tip-managing-preview s>
    [Aperture file management|http://photo.rwboyer.com/2009/01/aperture-2-file-management>
    RB

  • Transforming XML into nested Internal Table via Call Transformation XSLT

    Hi guys!
    I am relatively new to this XML transformation to Abap Internal table. Hence I got help some help from this thread ABAP Development as well as referencing Txn SSTDEMO1 and SSTDEMO2
    But I tried to attempt on my prog it failed. Heres my sample XML, XSLT & as well as Internal Table.
    The good news is I am able to read in a BID item under bidlist BUT with no fields filled in the table.... Pls help....
    <b><u>XML</u></b>
    <?xml version="1.0" encoding="iso-8859-1"?>
    <myXML>
      <BIDLIST>
        <BID>
          <HEADER>
            <DOC_CODE>4000000343</DOC_CODE>
            <RESPONSE_NO>80000003</RESPONSE_NO>
            <RESPONSE_DATE>2006-10-01</RESPONSE_DATE>
            <SUPP_CODE>44</SUPP_CODE>
            <SUPP_SITE_ID>44</SUPP_SITE_ID>
            <SUPP_CONTACT_NAME>JIM BEAN</SUPP_CONTACT_NAME>
           <SUPP_CONTACT_PHONE>+6512345678</SUPP_CONTACT_PHONE>
            <SUPP_CONTACT_EMAIL>[email protected]</SUPP_CONTACT_EMAIL>
            </HEADER>
          </BID>
        </BIDLIST>
    <myXML>
    <u><b>XSLT</b></u>
    <xsl:transform version="1.0"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
      xmlns:sap="http://www.sap.com/abapxml"
    >
    <xsl:template match="/">
    <asx:abap xmlns:asx="http://www.sap.com/abapxml">
    <asx:values>
        <BID_RESPONSE>
            <xsl:for-each select="myXML/BIDLIST/BID">
            <LBID>
                <xsl:for-each select="HEADER">
                <LHEADER>
                            <DOC_CODE> <xsl:value-of select="DOC_CODE"/> </DOC_CODE>
                            <RESPONSE_NO> <xsl:value-of select="RESPONSE_NO"/> </RESPONSE_NO>
                            <RESPONSE_DATE> <xsl:value-of select="RESPONSE_DATE"/> </RESPONSE_DATE>
                            <SUPP_CODE> <xsl:value-of select="SUPP_CODE"/> </SUPP_CODE>
                            <SUPP_SITE_ID> <xsl:value-of select="SUPP_SITE_ID"/> </SUPP_SITE_ID>
                            <SUPP_CONTACT_NAME> <xsl:value-of select="SUPP_CONTACT_NAME"/> </SUPP_CONTACT_NAME>
                            <SUPP_CONTACT_PHONE> <xsl:value-of select="SUPP_CONTACT_PHONE"/> </SUPP_CONTACT_PHONE>
                            <SUPP_CONTACT_EMAIL> <xsl:value-of select="SUPP_CONTACT_EMAIL"/> </SUPP_CONTACT_EMAIL>
                </LHEADER>
            </xsl:for-each>
            </LBID>
            </xsl:for-each>
        </BID_RESPONSE>
    </asx:values>
    </asx:abap>
    </xsl:template>
    </xsl:transform>
    <u><b>Internal Table</b></u>
    TYPES: BEGIN OF T_HEADER,
            DOC_CODE(17),
            RESPONSE_NO(8),
            RESPONSE_DATE(10),
            SUPP_CODE(16),
            SUPP_SITE_ID(15),
            SUPP_CONTACT_NAME(140),
            SUPP_CONTACT_PHONE(23),
            SUPP_CONTACT_EMAIL(100),
           D_HEADER TYPE T_HEADER OCCURS 0.
    TYPES: BEGIN OF T_BID,
            HEADER TYPE D_HEADER,
           END OF T_BID,
           D_BID TYPE T_BID OCCURS 0.
    TYPES: BEGIN OF T_BIDLIST,
            BID TYPE D_BID,
           END OF T_BIDLIST,
           D_BIDLIST TYPE T_BIDLIST OCCURS 0.
    TYPES: BEGIN OF TYPE_DATA,
            BIDLIST TYPE D_BIDLIST,
           END OF TYPE_DATA.
    DATA: BID_RESPONSE TYPE TABLE OF TYPE_DATA.

    hi
    good
    go through these links, i hope these ll help you to solve your problem.
    http://sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/15ecdf90-0201-0010-d792-941a3c3c30a4
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/d-f/from%20xml%20to%20abap%20data%20structures%20and%20back%20bridging%20the%20gap%20with%20xslt
    thanks
    mrutyun^

  • Transform data into columns

    hello
    i would like to transform rows into columns and need your help
    i have
    table orders
    where we have two columns
    orderid,orderdate
    orderid     order_date
    1234     9/10/2009
    4555     10/1/2009i have order_codes
    have 3 columns
    orderid
    desc
    value
    data for order _codes
    orderid     desc     value
    1234     ch_code1     5789
    1234     ch_date     10/20/2009
    1234     ch_miscval     678.9
    1234     ch_charge     765
    4555     ch_code1     9999
    4555     ch_date     10/0/2009
    4555     ch_miscval     78.9now
    i need to transform data like this
    orderid ==     ch_code1      ==ch_date ==     ch_miscval ==     ch_charge ==     order_date
    1234 ==     5789 ==     10/20/200  ==    678.9 ==     765      == 9/10/2009
    4555 ==     9999 ==     10/1/2009      == 78.9 ==     ---      == 10/1/2009any help is appreciated
    thank you
    Edited by: vg on Nov 2, 2010 9:47 AM

    try this. Hope this helps
    /* Formatted on 2010/11/02 13:29 (Formatter Plus v4.8.8) */
    WITH order_desc AS
         (SELECT 1234 orderid, 'ch_code1' descp, '5789' VALUE
            FROM DUAL
          UNION ALL
          SELECT 1234, 'ch_date', '10/20/2009'
            FROM DUAL
          UNION ALL
          SELECT 1234, 'ch_miscval', '678.9'
            FROM DUAL
          UNION ALL
          SELECT 1234, 'ch_charge', '765'
            FROM DUAL
          UNION ALL
          SELECT 4555, 'ch_code1', '9999'
            FROM DUAL
          UNION ALL
          SELECT 4555, 'ch_date', '10/0/2009'
            FROM DUAL
          UNION ALL
          SELECT 4555, 'ch_miscval', '78.9'
            FROM DUAL),
         order_t AS
         (SELECT 1234 orderid, SYSDATE order_date
            FROM DUAL
          UNION ALL
          SELECT 4555, SYSDATE
            FROM DUAL)
    SELECT   a.orderid, MAX (DECODE (descp, 'ch_code1', VALUE, NULL)) ch_code1,
             MAX (DECODE (descp, 'ch_date', VALUE, NULL)) ch_date,
             MAX (DECODE (descp, 'ch_miscval', VALUE, NULL)) ch_miscval,
             MAX (DECODE (descp, 'ch_charge', VALUE, NULL)) ch_charge,
             MAX (DECODE (descp, 'order_date', VALUE, NULL)) order_date
        FROM order_desc a, order_t b
       WHERE a.orderid = b.orderid
    GROUP BY a.orderid
    Output
       ORDERID CH_CODE1   CH_DATE    CH_MISCVAL CH_CHARGE  ORDER_DATE
          1234 5789       10/20/2009 678.9      765                 
          4555 9999       10/0/2009  78.9                            Edited by: new learner on Nov 2, 2010 10:30 AM

  • How to transform DOM into String

    Hi,
    Can any one provide an example of transforming DOM into String using TransformationFactory or any other API of JAXP?
    Regards...
    Shamit

    And for finer output:
          * Prints a textual representation of a DOM object into a text string..
          * @param document DOM object to parse.
          * @return String representation of <i>document</i>.
        static public String toString(Document document) {
            String result = null;
            if (document != null) {
                StringWriter strWtr = new StringWriter();
                StreamResult strResult = new StreamResult(strWtr);
                TransformerFactory tfac = TransformerFactory.newInstance();
                try {
                    Transformer t = tfac.newTransformer();
                    t.setOutputProperty(OutputKeys.ENCODING, "iso-8859-1");
                    t.setOutputProperty(OutputKeys.INDENT, "yes");
                    t.setOutputProperty(OutputKeys.METHOD, "xml"); //xml, html, text
                    t.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "4");
                    t.transform(new DOMSource(document.getDocumentElement()), strResult);
                } catch (Exception e) {
                    System.err.println("XML.toString(Document): " + e);
                result = strResult.getWriter().toString();
            return result;
        }//toString()

  • Contract versioning into SRM 5.0

    Hi experts
    i've actived Versioning into SRM 5.0 without Badi.
    I know that into BBPD_COMP_FIELDS i can see the fields with which a new contract version can be created. But i don't understand if the name of the group related to Contract Version is really Version Comparition for Contract Distribution.
    I'm asking this becouse i've modified the table like desired by me...but nothing changes: version are always created.
    am i loosing something?
    regards
    andrea

    Generally speaking table BBPD_COMP_FIELDS is used for comparison between two documents in SRM. So the main usage of this table is in FM 'BBP_PROCDOC_GET_DIFF', which is used by many routines including BBP_PROCDOC_CREATE_VERSION for version creation. The "Compare Method" defines the feature where different areas wants to make use of this table. "CRV" is for version control feature. "Compare Kind" has only two values, "Inclusive" or "exclusive". The value "E" indicate that the field does not want to be compared. So for example if you have an entry such as the following in table BBPD_COMP_FIELDS :
    COMPARE_METHOD = CRV
    STRUCTURENAME = BBP_PDS_HEADER
    FIELDNAME = TOTAL_VALUE
    COMPARE_KIND = E
    This would mean that if you ONLY change the total value in your document and release it, no new document version would be created. Give it a try.

  • Can i turn my french photoshop cs6 version into an english version

    can i turn my french photoshop cs6 version into an english language version?
    by downloading? whatever! need quick help
    thanx folks and a happy new year!

    Reddogz you are welcome to request that the license for Photoshop CS6 be switched to the English version.  Please see Order product | Platform, language swap - http://helpx.adobe.com/x-productkb/policy-pricing/order-product-platform-language-swap.htm l for additional details.

  • I edited clips and then re uploaded the rendered versions into the organizer and now the thumbnails aren't showing up. how do i generate the thumbnails?

    I edited clips and then re uploaded the rendered versions into the organizer and now the thumbnails aren't showing up. how do i generate the thumbnails?

    neuron113
    Thanks for the reply with the very helpful details.
    Export from Premiere Elements 12/12.1 Publish+Share/Computer/MPEG with Presets = HDTV 1080p29.97 High Quality
    I suspect that we are in a no win situation here - an Elements Organizer 12 issue.
    With Elements Organizer 11, 10, and 9, I can bring your MPEG2.mpg into the Elements Organizer with thumbnail with
    image. I cannot for Elements 12. And, I am working with the same MPEG2.mpg in Elements Organizer 9.0/9.0.1, 10, 11,
    and 12 on the same computer. In the morning, I will look Elements Organizer 13 as well.
    In my work with 12, this MPEG2.mpg consistently crashed the Elements Organizer 12.
    It is difficult to explain these results by invoking a missing codec theory since all was done with the same sample on the
    same computer.
    More later.
    ATR

  • Transforming jsp into xml

    Hi,
    I have some *.jsp files wich I have to transform into xml and xsl pages.
    Can anyone help me with his advice?
    And maybe someone knows a handy tool to transform jsp into xml?

    Refer to
    http://developer.java.sun.com/developer/technicalArticles/xml/WebAppDev2/

  • What programs or apps are  needed to transform photos into drawings?

    What programs or apps are needed to transform photos into drawings, and then send back and forth to the iPad2?

    http://itunes.apple.com/us/app/photosketcher/id463633845?mt=12

  • When I bought my D800, lightroom would not read my big files, so I had to transform them into DNG .. should I keep the DNG or the NEF files? Now, I started working only with the NEF, so I don't have this problem anymore -

    when I bought my D800, lightroom would not read my big NEF  files .. I went crazy…. so I found out I had to transform them into DNG .. should I keep the DNG or the NEF files? Now, I tried again and I am being able to work with the NEF files … don't understand…. anyway … I have to throw away some files … they are to big … should I throw the NEF or the DNGs? (as the DNGs are not edited yet…)

    Hard to say why you couldn't open them first time around...possibly low memory?
    In any event, as to the question about which to keep. This is a topic that is argued long and hard here and in other forums.
    For myself, I use only the NEF files and don't bother with DNG at all. Just can't see any long term advantage to force me to do all that extra work. Others feel that the "universal" format of DNG make it worthwhile.
    Either way, it's hard to justify keeping both (though a few people do).
    good luck
    tom

  • Placing an Illustrator file from a newer version into an older version of InDesign

    Is posible to place an Illustrator file from a recent version (like Illustrator CS6) into an older version of InDesign (like InDesign CS5)?. I don't have the software right now to test it so I want to be sure.

    Should be fine.

Maybe you are looking for