How assign own customer iView tag layout to your iViews

HI all,
I try to create a customer lay-out for my iView. When I search over sdn I find a lot about how to create a tag lay-out for your iView. I followed the instructions in the blog and sap help and I up loaded the created par file in the portal.  What next. I can not find any sample or instructions how to combine my new created layout to my iviews. Can some one explain this to me?
Kind Regards,
Richard

HI all,
I try to create a customer lay-out for my iView. When I search over sdn I find a lot about how to create a tag lay-out for your iView. I followed the instructions in the blog and sap help and I up loaded the created par file in the portal.  What next. I can not find any sample or instructions how to combine my new created layout to my iviews. Can some one explain this to me?
Kind Regards,
Richard

Similar Messages

  • How to render custom JSP tags

    We have our own custom JSP tag libraries (some of them extend the Struts tags, but many do not) and want those to render correctly in the design view.
    Is that supported by NitroX Struts, or will it only work with built-in Struts tags?
    If it is supported, how does one get NitroX to run the custom tags?

    It is possible to customize many aspects of the rendering of a custom tag. This is done using a combination of an M7 specific metadata, and standard css rules.
    For example, you can change the label, icon and border of a custom tag by doing the following steps:
    1) Create a folder named "nitrox" where your tld file is located. For example if you have "/WEB-INF/app.tld" then create a
    folder "/WEB-INF/nitrox/".
    2) In the nitrox folder created above, create a file named "app.tlei" (for Tag Library Extra Information). The file name used here should match the name of the tld file. In this case "app".
    3) Paste the following content in the app.tlei file:
    <taglib-extrainfo>
    <css-uri>app.css</css-uri> <!-- an optional css file relative to this tlei file -->
    <tag name="myTag">
    <display-name>My Tag</display-name> <!-- The name displayed in the Tag Libraries view -->
    <rendering-label>{tag-name} ({name})</rendering-label> <!-- This will display the value of the "name" attribute in addition to the tag name in the tag view in the JSP design editor. -->
    <small-icon>images/myTag.gif</small-icon> <!-- The image uri relative to this tlei file. This is used in the Tag Libraries view and in the JSP design editor.-->
    </tag>
    </taglib-extrainfo>
    All customization tags are optional.
    4) Create the css file referenced from the tlei file above (in this example app.css in the same directory containing the tlei file).
    5) Paste the following content in the app.css file:
    myTag {border: 1 solid red; display: "inline"}
    This will render the tag as inline (i.e as one graphical object) even if the tag has nested content.
    In addition, you can use any standard css style property.
    You can customize other tags in the same fashion.
    If a custom tag inherits from a Struts tag, then the tag can inherit the full built-in tag customization as shown in the following example:
    Suppose you have a tag named "myText" that extends the Struts html:text form field tag. To inherit the NitroX html:text customization you follow the steps:
    1) insert the following in the tlei file described above:
    <tag name="myText">
    <inherit taglib-uid="http://jakarta.apache.org/struts/tags-html" tag-name="text" />
    </tag>
    2) Insert the following css rule in the css file referenced from the tlei file:
    myText {m7-inherit: "input-text"; display: inline}
    This will inherit the built-in css style for form text fields.
    Likewise, you can inherit the other Struts tags css styles by using the following rules:
    myPassword {m7-inherit: "input-password"; display: inline}
    myCancel {m7-inherit: "input-submit"; display: inline}
    myCheckbox {m7-inherit: "input-checkbox"; display: inline}
    myRadio {m7-inherit: "input-radio"; display: inline}
    mySelect {m7-inherit: "select"; display: inline}
    myTextarea {m7-inherit: "textarea"; display: inline}
    3) The inherited tag library file (in this example the struts-html.tld), must also be present under the WEB-INF directory.
    M7 Support

  • How to use custom defined tags in uix in jdevloper 10g production

    can any one give me sample application for how to work with custom defined tags in uix with jedevloper 10g production
    thanks Venkat

    Hi Venkat,
    Maybe the reason for no one answering is because of lack of information in your post? What are you trying to do? Are you using JSP or UIX XML? Have you checked the online jdeveloper documentation? Have you checked the doc available in the JDeveloper release? Before we have more information we can't help you. Sorry
    Thanks,
    Jonas
    JDev Team

  • How to create Customized Iview in MSS

    Hi Gurus ,
    we are currently using MSS, as per requirement we need to create a custmized IVIEW in MSS using JavaWEBDYNPRO .
    Please let me know .
    1) where i can create javawebdynpro,is anywhere i can sample programs of JavaWebdynpro to check how SAP tables and FM being used in the Java code ...?
    2) How to create Iview in the MSS ?
    3) How do i Call Javawebdynpro in the MSS?
    ViswaRani

    1. the simplest solution to your requirement is create a webdynpro(abap) application using following function modules.
    HRMSS_RFC_STRUCTURE_GET
    PT_ARQ_ACCOUNTS_GET
    BAPI_ABSENCE_CREATE
    The effort of above will be 2-3 days
    2. If you want to develop an applicaiton that can be integrated to the team viewer then its simple,
    build an application with above RFCs either in abap or java and just integrate the iview to the team viewer as per note 1112733.
    with new release all the team viewer iviews throw portal event that passes a string and your application can catch that string. so if you select an employee as a manager then that is passed from the team viewers to all the iview that are covered under the page. read note 1112733 its really good.
    these approches are already implemented for various customers and working absolutely fine. Discuss with your customer before you decide on the approach.
    Edited by: Barin Desai on May 8, 2009 1:41 PM

  • Flash CS5.5[Publish Settings]: How to include custom Metadata tags in swf?

    In Flash CS5, the 'Publish Settings' for the fla had an 'Export SWC' checkbox that took care of that.
    The option is missing. Why was it removed and how can  that be done in 5.5?

    Thanks sinious, but, it doesn't work.
    Let me elaborate on what I want to do:
    I'm trying to create a swf in Flash CS5.5, that's using a flex library (swc) that relies on Metadata tags (anotations).
    I need to use the metadata tags in my as3 code (in the fla), and They need to be compiled into the swf (by Flash CS5.5 compiler...).
    Although, when I load that swf, the metadata tags aren't compiled into it (I'm using describeType to check if tags are available in the swf).
    In flex, I would use the '-kepp-as3-metadata+=' compiler setting to do that, in Flash CS4 & CS5 I used the 'Export SWC' in the publish settings, but that's removed (WHY???).
    Checking XMP Metadata didn't change that, the tags are still not included in the compiled swf.
    Anyone?

  • How to insert customized HTML tags?

    Hi
    I insert a lot of tags like <p class="foo"> or say <span onmouseover=”doAction(this);”>.
    Is it possible in Dreamweaver CS5 to extend a list of insertable tags with my customized tags and do steps like
    select some text (say “some text”),
    them choose a tag from the list (say <span onmouseover=”doAction(this);”>.)
    A fragment “<span onmouseover=”doAction(this);”> some text</span>” will be inserted into the file instead of  selected “some text”.
    Thank you in advance.

    Have you used the Snippets folder to store reusable code fragments?
    I use my snippets folder often. Go to an insertion point in your document and double click on the Snippet.
    http://webdesign.about.com/cs/dreamweaver/ht/htdwusesnip.htm
    Another option is to create and use commands from History steps:
    http://help.adobe.com/en_US/dreamweaver/cs/using/WSc78c5058ca073340dcda9110b1f693f21-7780a .html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Integration of webdynpro abap custom iview into standard ESS/MSS portal

    Hello all,
    Could anybody please throw light on how to integrate custom iview which is developed in Webdynpro ABAP into standard tab in MSS (Webdynpro java)
    For example.I want to add few custom fields(which are mapped to infotype 0041) into general information link of MSS.these fields will be created in webdynpro abap.
    or.
    I want to create a new link under general information which pops up as a custom iview (which is create in webdynpro abap) .
    please let me know how can i meet the above requirements.
    Thanks in advance.

    I am not really sure about your requirement. With my limited understanding of that , i think that you have few possibilities.
    1. You can let the ess/mss application communicate with WDA application via a Poral event.
    2. You can enhance the ESS WDJ component and use RFC destination to get the data from info type and build your own view in WDJ.

  • UWL in custom iView

    Hi,
    Is there a way to include UWL in our own custom iView.
    Thanks,

    Hi Rem,
    I am relatively new to this, but from my understanding of the note, it's useful if I need to integrate third party applications.
    Is there a way I can use SAP's code or API's to code and use the UWL xml to create my own inBox which only shows 2 or 3 messages plus the total number of messages with a link to goto my inbox.
    I can get the total no of message but don't know how to integrate it, with which shows only a preview like 2 or 3 messages.
    Thanks,

  • Calling custom CF tag from javascript

    Could someone please help me by posting some psuedo code to
    call a custome cf tag from javascript? I am feeling pretty dumb but
    can't figure it out...
    Thanks bunches!
    Va.

    > ... call a custome cf tag from javascript...
    > ...Press button, call tag to export to excel ...
    Doing it with Javascript defeats the purpose of a custom tag.
    A custom tag is your own custom Coldfusion tag, hence to be used as
    a tag in a cfm or cfc page. I would instead have Javascript
    open the cfm page directly, thus
    <html>
    <head>
    <title>Opening excel page with
    Javascript</title>
    <script type="text/javascript">
    function openIt () {
    window.open("excelExport.cfm","_blank","height=300,width=500,status=yes,menubar=yes,resiz able=yes,scrollbars=yes");
    </script>
    </head>
    <body>
    <FORM>
    <BUTTON name="btn" onclick="openIt();">open
    it</BUTTON>
    </FORM>
    </body>
    </html>
    excelExport.cfm
    ================
    <cfheader name="Content-Disposition" value="attachment;
    filename=testPage.xls">
    <cfcontent type="application/vnd.msexcel"
    file="C:\CFusionMX7\wwwroot\testPage.xls">
    Here follows code that does it the custom tag way. You will
    get the feel of redundancy immediately.

  • Layout Set for custom Iview

    Hi Experts,
           I have created jspdynpage application for getting documents fron Km Folder. i have done this, but i want to set "Context Menu" for link (documents) in that iview. How can i do this.. I have added property called Layout Set for my iview and assign layout Set , but no effect. How to assign layout set for custom developed iview???
    Thanks Advance....
    Regards,
    Kumar.

    Hi praveen,
    is possible to show context menu for portal development iview (custom iView)?.
    I cant use KM Navigation iView, because I am listing members, each member should be a link.. this link is not possible in KM navigation..
    Albert
    Amjeth
    Bala
    Praveen
    Senthil
    I will show like above, here if i click the albert it will get the Albert details. and other members can rate the albert (so we need context menu)..
    how can i achieve this?.
    Regards,
    Kumar

  • Can i assign one customer to more than one company code how?

    can i assign one customer to more than one company code how?

    Hi
    First Create the Customer Centrally in XD01 and then extend the same Customer in FD01 for the required company codes.
    Regards
    Venkat

  • How to use custome tag lib in the JSP page?

    How to use custome tag lib in the JSP page?...with JDeveloper

    http://www.oracle.com/webapps/online-help/jdeveloper/10.1.2/state/content/navId.4/navSetId._/vtTopicFile.working_with_jsp_pages%7Cjsp_ptagsregistering~html/

  • How to use custom tag in jsp

    sir
    plz tell me how to use custom tag in jsp.plz describe it.
    i will be thankful to u

    Do you want to use taglibs or develop custom tags? Either way take a look at these:
    http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/JSPTags.html
    http://www.stardeveloper.com/articles/display.html?article=2001081301&page=1
    http://www.onjava.com/pub/a/onjava/2000/12/15/jsp_custom_tags.html
    http://jakarta.apache.org/taglibs/tutorial.html
    http://www.ibm.com/developerworks/edu/j-dw-java-custom-i.html
    http://www.herongyang.com/jsp/tag.html

  • How to publish custom web site with own domain name?

    Hey out there. I wonder if anyone can give me any tips on how to publish a web site with my own domain name.
    I have a web site I'm building and I want to purchase a domain name and then publish the site using that domain name.
    I know how to buy a domain name. I have a .mac account so I'm hoping that .mac can host the site. What I don't quite understand how to do is get .mac to host the site using that domain name. I looked through Apple Support but couldn't find what I was looking for. Just wondering if anyone has been in this situation. Thanks in advance.
    Dave
    [email protected]

    Dave ~ Welcome to the discussions. .Mac was re-branded as MobileMe last July. If you're not building your site with iWeb, it's considered to be a "custom" website. These Apple docs may help:
    MobileMe: How to publish a custom website
    iWeb ’08: Using your own domain name
    ...Use this search page to find such documents:
    http://support.apple.com/kb/index?page=search
    Note that you don't need to have iLife '08 to be able to direct your domain name to your custom website published to MobileMe. As someone wrote on another thread:
    "My personal domain is linked to my MM but i don't even have ilife on my mac. When you go to the options in MM to link your personal domain to your MM it provides directions that will guide you with setting up your godaddy settings."
    ...Where "MM" is MobileMe here:
    http://me.com/account
    ...+Personal Domain+ tab, and "godaddy" is wherever your domain name is registered.

  • How to create own customized screensaver on Windows 7 Embedded Standard sp1

    Hi Support,
                      How to create own customized screensaver on Windows 7 Embedded Standard sp1 OS.
    Regards
    YASH PAL SINGH

    This forum is for POSReady. wES7 forum can be found here:
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=quebecmisc
    Create the screen saver in Windows 7 first and then put the file in the distribution share to be included in the image. There are tools that can help create a custom screen saver:
    http://download.cnet.com/windows/screensaver-editors-and-tools
    www.annabooks.com / www.seanliming.com / Book Author - Pro Guide to WE8S, Pro Guide to WES 7, Pro Guide to POS for .NET

Maybe you are looking for