How 2 define alias for WD Component / Application

Hi all,
There are methods in IWDDeployableObject to get WD Component / Application (WDDeploableObjectPart) by alias.
But how to define alias for them? Where should definition be placed and what is the format? Could anyone share working example or point to related documentation?
VS

Noufal & Bharathwaj,
Probably there is a confusion here: HTTP aliases are related only to corresponding service, and affects how URL is composed / interpreted.
On other hand, aliases I mentioned are related to  deployment service (in this case: lookup deployable object part by alias). By the way, they cover both WD applications and <b>components</b> (probably component interfaces and more).
Valery Silaev
EPAM Systems
http://www.netweaverteam.com/

Similar Messages

  • Query for License Component Application

    Hi All,
    In OAM we can able to view the "License Component Application" which will give the list of components license.
    I need to get this from sql, can you please let me know which table is it.
    for example, in OAM license manager i can see that the "Project Collaboration" is licensed which is coming under "Projects" --> "Project Costing"
    fnd_product_installations gives the installed products, but not the components.
    I am getting the information which i require through OAM, but it would be useful if some one give the query to find this at backend.
    Thanks & Regards,
    Rakesh

    Hussein,
    All the options in the note is giving only the product/module installed.
    Let me clearly tell the requirement. I have got a request from asset team regarding the license of all the oracle applications.
    In that they have mentioned many oracle components, ex : Oracle Project Collabration.
    I can see this is licensed in the OAM through -> OAM --> License Manager --> Products -> License Component Application < In this all the conponents are displayed >
    From where we can get this infro from database. I am sure there will be some tables which is having these infromation.
    Thanks & Regards,
    Rakesh

  • How to use a portal defined alias for a system

    Hello,
    we have in the portal Netweaver 2004s, sp11, defined systems, which contain SAP-Routerstrings. For Everey System we have given a Systemalias.
    No we want to use the Systemalias managed by the portal use in our Java-Applivcation deployed on the portal-server.
    How to to this?
    Best regards
    Oliver Prodinger

    Oliver,
    From whatever I could understand from your question I would answer that in this way. You need to create a iView out of the application. It will ask for a System parameter. One needs to provide the system alias name into the System paramter.
    If this does not answer your query, plz elaborate your question.
    Warm regards,
    Sukanta

  • Generating pre-defined events for system or applications ?

    I would like to write a script of some kind which generates a series of pre-defined events to the system or an active application: such as "a mouse is clicked on position x,y", a "mouse is dragged to position z, w", a "key is pressed", etc. How do I even approach this? And what exactly it should be (probably not an application...)
    Thanks in advance.

    The short answer: it can be done with Applescript.

  • Defining Alias for Remote server Directory / Path

    Hi All,
             In my process chain I have an open hub process after which I have an abap program which sends out the data to a file on a remote server directory. But when it executes the program, it cannot find the path mentioned although I checked whether it is correct.
    I have also seen in several instances that for the remote server directory / path, the entire path is not typed in the variant's selection screen; instead it seems like an ALIAS. For example, if the path is
    w3n2-s501\javaappserver_test_staging\m234\sapdata on remote server w3n2-s501, then the  selection screen fileds show up like this:
    Remote Server Directory/Path     P               SAPTEST
    Remote Server Name                     P                          w3n2-s501     
    Does anyone know where this SAPTEST would be defined for the remote directory path?
    Thanks!

    Hi
    http://help.sap.com/saphelp_nw04s/helpdata/en/bd/0d6c3db297ff4d8a84e656502531f0/frameset.htm
    Hope it helps

  • How define size for String of Array ?

    Hai,
    How to define a String of array with size ?
    String[] item={"a","b","c"};
    but before this statement i want give the size for the String of Array
    suppose if i give the size 10
    String [10] item;
    but it's give "Not a Statement Error"
    Please give me an idea !
    Thanks & Regards,
    Merilna

    String[] s = new String[10];

  • How to check for the variable passed to a function inside a component

    I'm trying to pass a variable to a function inside of a
    component in a conditional statement.
    How to check the existance of this variable inside the
    function so that I can use the right <CFarguments>:
    in aForm.cfm I have:
    <cfinvoke component="#application.cfcroot#.business.Order"
    method="selOrderItems"
    returnvariable="q_OrderItems"
    OrderItemAbbreviation="Min"></cfinvoke>
    <cfset MCompIDs = ValueList(q_OrderItems.OrderItemID)>
    <cfif listFind(MCompIDs,attributes.CompID)>
    <cfset isM = true>
    <cfelse>
    <cfset isM = false>
    </cfif>
    <cfinvoke component="#application.cfcroot#.business.Order"
    method="selOrderItems"
    returnvariable="q_OrderItems"
    OrderItemAbbreviation="SMEnroll"></cfinvoke>
    <cfset SM_CompIDs =
    ValueList(q_OrderItems.OrderItemID)>
    <cfif listFind(SM_CompIDs,attributes.CompID)>
    <cfset isSM = true>
    <cfelse>
    <cfset isSM = false>
    </cfif>
    <CFIF isSM>
    <cfset temppath = frmcreator.buildFrm(isSMFlag=isSM)>
    <CFELSE>
    <cfset temppath = frmcreator.buildFrm(isMFlag=isM)>
    </CFIF>
    On aFormComp.cfc where the function is,
    I checked the existance of isSMFlag this way and I got error
    saying that :
    Context validation error for tag CFARGUMENT.; The tag must be
    nested inside a CFFUNCTION tag.
    How can I properly check the existance of isSMFlag inside the
    function so I can use the right cfarguments?
    <CFFUNCTION NAME="buildFrm" access="public"
    returntype="String" output="No">
    <cfif StructKeyExists(arguments, "isSMFlag")>
    <CFARGUMENT NAME="isSMFlag" REQUIRED="YES"
    TYPE="NUMERIC">
    <cfelse>
    <CFARGUMENT NAME="isMFlag" REQUIRED="YES"
    TYPE="NUMERIC">
    </cfif>
    ........ etc
    </CFFUNCTION>

    <CFFUNCTION NAME="buildFrm" access="public"
    returntype="String"
    output="No">
    <cfif StructKeyExists(arguments, "isSMFlag")>
    <CFARGUMENT NAME="isSMFlag" REQUIRED="YES"
    TYPE="NUMERIC">
    <cfelse>
    <CFARGUMENT NAME="isMFlag" REQUIRED="YES"
    TYPE="NUMERIC">
    </cfif>
    ........ etc
    </CFFUNCTION>
    NOT this way, that is for sure.
    The <cfargument ...> tag is for defining the arguments
    a function
    accepts either optional or not, but they are not required.
    Give this a
    try to see the differences.
    test.cfc
    <cfcomponent>
    <cffunction name="a">
    <cfdump var="#arguments#">
    </cffunction>
    <cffunction name="b">
    <cfargument name="foo">
    <cfargument name="bar">
    <cfdump var="#arguments#>
    </cffunction>
    </cfcomponent>
    test.cfm
    <cfset something = createObject("component","test")>
    <cfoutput>
    #something.a("blue","green")#
    #something.b("blue","green")#
    </cfoutput>
    Not tested or debugged so watch out for typos.

  • How to specify alias for local filesystem in JBOSS

    hi,
    I want to specify alias for localfilesystem in JBOSS. I know how to do it in Apache_2.0.52-Openssl_0.9.7e-Win32. In this we can specify alias as,
    Alias /icons/ "C:/Program Files/Apache_2.0.52-Openssl_0.9.7e-Win32/icons/" in httpd.conf and futher we can specify the directory access also. So I want to do the same thing in JBOSS. How to do it.
    Thanks.

    JBoss is an app-server, not an HTTP server. The concept of directories is meaningless, as everything is based on contexts. Any of the HTTP server options will be handled by the Tomcat (Catalina) engine that is part of the JBoss installation. You can configure the Tomcat server by editing the jboss-service.xml file in JBOSS_HOME/deploy/tomcat-5.5.sar (or something like that). If you really need to start mapping/rewriting URLs onto your J2EE application, I'd suggest using Apache as the front-end, and connect the Web-tier to Apache via mod_jk. Then you can use all of Apache's URL rewriting and directory aliasing and specify access on a per-location basis. Some of Apache's functionality may be available to the Catalina engine, but there's no sense in trying to make Tomcat as "capable" as Apache, when a means to connect the two already exists.
    Brian

  • How to solve javax.servlet.jsp.JspException: duplicate Id for a component?

    Dear everyone,
    I have built some customized JSF components. In the taglib, there is attribute "id" for my components. There is no problem when the page is run, but when I click submit button, there are errors.
    javax.servlet.jsp.JspException: duplicate Id for a component form1:dojoComboBox1     at com.sun.faces.taglib.jsf_core.ViewTag.doAfterBody(ViewTag.java:191)     at _andychun._jspService(_andychun.java:190)     [andychun.jsp]     at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.1.1) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:598)     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:522)
    Please kindly help solve this problem. Thank you.
    Best Regards,
    David

    Alex,
    my guess is that because you copied content from the
    first page to the next, you created JSF components
    with the same ID. JSF components must have unique IDs
    though.
    FrankHello Frank,
    Thanks for your reply. The thing is in the first page I do not have much id's specified/defined. And in the second page what I did was to take out all id's to see if it was conflicting. When I tried it again I still got the error. So the id's are being generated automatically if seems.
    Also is it that JSF components should have unique id's for a particular page or all pages in the JSF application?
    Any other sugguestions. I hope you understand what I am saying. If you have any questions or uncertainties fell free to ask me.
    Thanks,
    Alex.

  • How to override the renderer for ADF component?

    I want to overide the renderer for ADF components, without using <default-render-kit>, I defined every render class. But It does not work.
    Always told me: Could not find renderer for CoreOutputText[UIXFacesBeanImpl, id=_id0], rendererType = oracle.adf.Text
    How can I config custom renderer for exsiting component or new components?
    Thanks a lot!
    <render-kit>
    <render-kit-id>oracle.adf.core</render-kit-id>
    <renderer>
    <component-family>oracle.adf.Output</component-family>
    <renderer-type>oracle.adf.Formatted</renderer-type>
    <renderer-class>oracle.adfinternal.view.faces.renderkit.core.xhtml.OutputFormattedRenderer</renderer-class>
    </renderer>
    <renderer>
    <component-family>oracle.adf.Choose</component-family>
    <renderer-type>oracle.adf.Date</renderer-type>
    <renderer-class>oracle.adfinternal.view.faces.renderkit.core.xhtml.ChooseDateRenderer</renderer-class>
    </renderer>
    <renderer>
    <component-family>oracle.adf.Input</component-family>
    <renderer-type>oracle.adf.Text</renderer-type>
    <renderer-class>oracle.adfinternal.view.faces.renderkit.core.xhtml.InputTextRenderer</renderer-class>
    </renderer>
    <renderer>
    <component-family>oracle.adf.SelectInput</component-family>
    <renderer-type>oracle.adf.Date</renderer-type>
    <renderer-class>oracle.adfinternal.view.faces.renderkit.core.xhtml.SelectInputDateRenderer</renderer-class>
    </renderer>
    <renderer>
    <component-family>oracle.adf.Object</component-family>
    <renderer-type>oracle.adf.Separator</renderer-type>
    <renderer-class>oracle.adfinternal.view.faces.uinode.UINodeRendererBase</renderer-class>
    </renderer>
    <renderer>
    <component-family>oracle.adf.Command</component-family>
    <renderer-type>oracle.adf.Link</renderer-type>
    <renderer-class>oracle.adfinternal.view.faces.renderkit.core.xhtml.CommandLinkRenderer</renderer-class>
    </renderer>
    <renderer>
    <component-family>oracle.adf.Panel</component-family>
    <renderer-type>oracle.adf.Group</renderer-type>
    <renderer-class>oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelGroupRenderer</renderer-class>
    </renderer>
    </render-kit>

    Seems I need override the encodeSelectItem() method.
    But not sure which class is the renderer for af:selectManyCheckbox. And how to set below
    <component-family>???</component-family>
    <renderer-type>???</renderer-type>
    Edited by: Leon Zeng on Jul 19, 2012 2:18 PM

  • Alias for the url to application.

    I am not sure whether I have titled by subject correctly.
    This is my requirement..
    This is my link to access my application
    http://dbahost:7780/pls/apex/f?p=102:1
    When rolling out this application I want the users just to type cdweb on the url and it should take them to the application. How can I do this?
    Right now I have a dns alias for the host as cdweb --> dbahost.
    Any thoughts?

    Hi
    This might help you
    http://www.inside-oracle-apex.com/nicer-url-for-an-oracle-apex-application/
    Br, Jari

  • Creating Alias for any application which has been integrated into portal

    Hi All,
    How to create Alias for any application which has been integrated into Portal?
    What is portal alias?
    What is URL alias?
    What is the difference between all the three?
    Thanks,
    Jyothi.
    Edited by: Venkata Naga Jyothi on Nov 23, 2011 10:18 AM

    Hi jyothi,
    1. For your first question Regarding How to create Alias for any application which has been integrated into Portal? Can you please be more clear here my question is why do you need to create alias for applications that are integrated into the portal.
    2. For your second and third questions find the below links
    http://help.sap.com/saphelp_nw70/helpdata/en/6e/8590f1d6d349c9adc34c6a8085189b/content.htm
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/10da65ed-615b-2d10-efbc-ed07a5385633?QuickLink=index&overridelayout=true
    Thanks,
    Rahul.
    Edited by: rahul.girmaji on Nov 23, 2011 6:29 PM

  • Creating a application dynamically for a component

    Hi,
    Does any one know how to create an application dynamically for a component, so without using SE80?
    I already found class cl_wdy_md_application, but I do not know if this is the right direction. Maybe somebode already solved this issue.
    Regards,
    Remco

    Hi Thomas,
    In SRM it is possible to call own made webdynpro components and fill them with data, and then process these data into a new shopping card. This can be done by filling a so called HOOK_URL. In SRM you have to do customizing and fill in the URL to be used of the WebDynpro application. So far, still no problems.
    I have built a component by which an user can fill several Z tables and then he can display a form he has made by himself (a so called free order form). So the component will check all Z tables, and generate in one view, the context dynamically as also the layout dynamically. In all Z tables one field has been used as one of the keyfields and that is free order form name and this is also a parameter of the application so that this application knows which data to get from the Z tables to generate a form.
    And because it is possible to generate more then one forms, I have create per form 1 application with the specific parameter, and this URL can be entered in the customizing of SRM.
    This application creation I did myself, but now I want to accomplish, when the user creates a new form by filling specific tabels via webdynpro, that he can generate the application by himself.
    Maybe I can create a FM/BAPI for the BDC recording and then call this from my web dynpro application as there is no API.
    Do you maybe have another solution?
    Regards,
    Remco

  • How to know the Cluster name for Hyperion Planning Application

    Hi,
    We have 2 Hyperion planning clusters in our Planning environment. As per new requirement, we need to make the copy the existing planning application.
    We are not able to get the defined cluster information for existing planning application.
    Please help on how can we find the cluster name for a Hyperion Planning application.
    Quick help will be appreciated!!
    Thank You.
    Mohit Jain

    Hi John,
    Thanks for your quick response!!
    We tried to run this command on Planning system command. but it did not return any record. We found that table "HSPSYS_APP_CLUSTER_DTL" does not have any record.
    is there any other way, where we can check the planning cluster name.
    Please help on this further.
    Thank You.
    Mohit Jain

  • How can I add a popup for right mouse click for anywhere on application?

    I have never used popup menus before but need to add on to my application.
    This is a swing application with several pages that are basically panels that are added and removed as needed.
    I need to have a popup menu that appears anywhere on the application when the right mouse button is clicked,
    no matter which component the cursor is over.
    I have been able to add one for a specific panel, but that is not what needs to be done, since there are dozens
    of separate panels in the application.
    Could someone point me to an example of how to make the popup active for anywhere on the application?
    Thanks.

    You are correct, I have not yet read the tutorial you suggested. I will do so tomorrow and try to move farther up the learning curve.
    My response was intended to acknowledge your reply and let you know where I am in trying to resolve this issue.
    You are also correct in that creating a popup may be a simple task, but, like I stated in my original post, I have never used popups in the past.
    And, like I said, things that are second nature for someone who uses certain components are not always intuitive for people who have not.
    I did do some research before posting my question, but all the examples I found were related to popups tied to a specific panel.
    I am able to create that, but the problem I ran into was that I needed to have a popup menu that was application general, not panel specific.
    It was not obvious to me how to do that and none of the examples I found explained how to do that.
    Hence, my question to the forum, hoping that someone who has gone through this exercise would impart knowledge to help me resolve this issue.
    It is not uncommon for persons to post examples or direct one to web sites that specifically address the issues in question.
    That is what I was hoping for, but I am not adverse to doing follow-up research on leads that are provided.
    My main issue is trying to figure out how to find a parent component (or panel) for the popup.
    You stated that I should be able to get that from the event listener.
    I'm not sure how to do that, but hopefully one of the event listener get methods will provide that information
    Hopefully, I will be able to resolve this with the feedback you provided, but if necessary, I will post code for a simple example to illustrate my problem.
    Thanks again for the feedback.

Maybe you are looking for

  • Wifi connections goes "Limited" frequently.

    So i've had this issue ever since i installed windows 7 ultimate via bootcamp on my mac. When i go in games or even the browser, my ping sky rockets and the internet connections always drops every 3 minutes saying "Limited Access". I cant even browse

  • Creating own list

    I have to create my own list in my application. This is a rule in the application. I need to add, remove and iterate through this list. How to create my own list without extending or implementing any collection classes ? I think i hav to go for "nati

  • Instant Client and DotNet

    I'm hoping someone can help me understand the "client" end of Oracle, specifically, how I use the files in the "instant client" bundle to allow my app to connect and retrieve data. I am developing in Visual Studio Dotnet 2005. I have Oracle Express i

  • How to view the code in MV5AFZZ

    hi, i want to view a code from user exit MV45AFZZ, because i have to restrict list of customers basing on account group and sales area. regards, balaji

  • PR to STO

    Hi, My scenario I have a Plant A with 3 storage location 1000 (Central Warehouse), 2000, 3000, we using reorder point planing for each storage location. 1.  we run CBP for each storage location - for storage location 1000 . A PR is created and conver