Create a UI5 plug-in

Hi all,
I would like to know how to create a plug-in with SAPUI5.
Please share every relevant information on this subject.
Best Regards,
Marc

Or did you mean something like custom controls? Few weeks ago I had a requirement similar as described in Traffic Lights with Custom Controls in SAPUI5. 
http://scn.sap.com/community/developer-center/front-end/blog/2014/03/12/traffic-lights-with-custom-controls-in-sapui5 which was a good starting point for me
Kind regards
Meinrad

Similar Messages

  • New a vmware project (create hello world plug-in project),how to use it as a normal plug-in on orchestrator??

    in use:
    eclipse sdk (indigo 3.7.2) windows 7 64bit
    vcenter orchestrator 5.1 (windows 2008 R2)
    vmware - vco- plug-in SDK 5.1
    i installed vmware-vco plug-in sdk 5.1 to eclipse 3.7.2,then i created a vmware project(choose create hello world plug-in project)
    how to do next??
    I  export the project as a jar file,rename it as .dar ,and put it to the vmware/infrastructure/orchestrator/app-server/server/vmo/plugins,,
    then i upload the .dar file,,it reminds me installed failed....
    thanks so much!!!

    i don't think you have to rename the jar and create a dar. Once you have build successful you should get the dar file.
    Online Documentation - vRealize Orchestrator Plug-in SDK 5.5 - VMware Developer Center

  • Is it possible to Create dynamic outbound plug and it's navigation link?

    Hi,
    i am trying to create an outbound plug in runtime dynamically, is it possible?
    I have found out how to create the outbound plug in wdDoModifyView: "<b>view.getViewInfo().createOutboundPlug()</b>"
    but the problem is how do i set the plug name, and how do i create it's navigation link to bind him to an inbound plug in another view.
    Thanks,
    Carmit

    Hi Carmit,
    the following code snippet creates a link between a newly created outbound plug (outbound plug name is not really necessary) and an already existing inbound plug:
    /* targetViewInfo is the IWDAbstractViewInfo of navigation target
       srcViewInfo is the IWDAbstractViewInfo of navigation source
       Find inbound plug, must exist */
    IWDInboundPlugInfo targetPlug = targetViewInfo.findInInboundPlugs(inboundPlugName);
    /* Create outbound plug with "automatic" name */
    IWDOutboundPlugInfo srcPlug = srcViewInfo.createOutboundPlug();
    /* Create link from out to in */
    IWDNavigationTargetReferenceInfo targetReferenceInfo =
      srcViewUsage.createNavigationTarget(srcPlug.getName(), targetViewUsage, targetPlug.getName());
    /* Fire srcPlug somewhere...*/
    Hope that helps.
    Regards
    Stefan

  • I want to create a different plug-in . Could you please send me an email adress to contact about my questions for plug-ins?

    Dear Sir / Madam,
    First of all my english is not good enough and apologise for that. I want to create a kinda different java plug-in on mozilla . I ve been playin a textbase game for many years. However it takes many hours to play it manually. I d like to create a script for that and think script will work by itself (it will read 3d codes paste them automatically, it will click some words in website automatically etc.) I saw that one on your system its called "omerta rankscript". Could you tell me how i can start to do this and ? is it easy or how long time it takes to create a new plugin like this? also may i see the codes of this plug-in(omerta rankscript)?
    Thank you for your consideration.
    Best Regards,
    Zafer ATABAY

    Depending on what you want to develop, you could consider an ''extension'' or a ''userscript''. A plugin probably is not the right type of add-on to create.
    For suggestions and assistance with these different kinds of add-ons:
    Extensions:
    * http://forums.addons.mozilla.org/
    * http://forums.mozillazine.org/viewforum.php?f=19
    Userscripts:
    * http://userscripts.org/forums
    Good luck with your project.

  • Unable to Create Event handlers , Plugs

    Hello everyone,
    We've just moved to a new development environment and had our existing WebUI enhancements transported from an old one (which was CRM 7.0 EHP1). The new system was also already in EHP1.
    The problem is we couldn't create any new Event Handlers and Inbound and Outbound plugs in an enhanced component via BSP_WD_CMPWB. Even though the component has already been enhanced, the system keeps on asking for an Access Key to edit SAP Standard objects and behaving as though the component hasn't been enhanced at all.
    Has anyone encountered this before? Any SAP OSS Note to fix the problem?

    Hello,
    Thanks for your replies, the issue has been solved. When the enhancements were transported into the new system the database entries used by the enhancement wizards weren't included into the transport. Basically we had to update the ff tables:
    BSP_WD_GEN -> Table with generated classes
    BSP_WD_EXT_HIST -> Mapping Table source controller class to  Z controller class, and source context class to Z context class

  • Error while trying to create a outbound plug

    Hi ,
    I am getting an error message while trying to add an outbound plug to a component .any suggestions

    Hi Vaibhav,
    The best thing to do is to create the desired outbound plug manually.  We do it many times when this error comes, it will not take much time and easy to do, just replicate the exact steps for creating op which is already there in your system or component.
    I strongly suggest you not to delete any existing enhancement. Please let me know if you want me to explain the process of creating op manually.
    Regards
    Bhushan

  • HT4946 I want to sync my iPad with an older backup, not the old created when I plug mt device in.  Following a problem with my iPad I have lost all my data from a game app and I am trying to retrieve it

    Following a problem with my IPad and restoring it, I have lost the data in one of my game Apps ... I can see in ITunes/ pref my iPad back ups and want to try to sync with an older back up to get the data back.  So how can I sync with an oldera back up?

    In that same window - the one where you see your backups - click on the box at the bottom that say -Prevent iPods, iPhones and iPads form syncing automatically. Then click OK and quit iTunes.
    Connect your iPad to the computer and launch iTunes. Right click on the iPad name on the left side under the devices heading and select - Restore from backup. A window will pop up from which you can select any of the backups that you have for the iPad. Select the backup that you want to restore from and then go agreed and restore the iPad. Sync with iTunes when you are done.
    Remember that when you restore from a backup - you restore everything in that backup to the iPad. You cannot selectively restore content. It is all or none.

  • Create NSAPI SAF plug-in equivalent to check-request-limits

    Hi Masters,
    GoodDay. Okay, here's the problem:
    I'm a newbie in writing a custom SAF's, & what I'd like to do is to write a SAF which is closer to this one:
    +PathCheck fn="check-request-limits" monitor="$ip" max-rps="10" specifically the check-request-limits fn.+
    I believe source code of the server is not available so the question is:
    How can I get total request of a specific client in a given time (secs for example) [ip->TOTAL_REQUEST_IN_1_SEC]?
    char *ip = pblock_findval("ip", sn->client);
    //NEED HELP HERE
    if (ip->TOTAL_REQUEST_IN_1_SEC < 10 ) {
         //my logic goes here
    }Any help would do! Thanks in advance!

    Source code is out. Check this thread :
    Announcing Open Web Server [http://forums.sun.com/thread.jspa?forumID=759&threadID=5360537|http://forums.sun.com/thread.jspa?forumID=759&threadID=5360537]

  • How to create new Plug-in

    Hi Experts,
          I'm Indesign Js developer. Now I wish to work with ID SDK. I go through guides in indesign sdk Kit. But there, there are things mentioned and if I tried to execute the sample provided by them and tried to build, It shows some errors that "WriteFishPrice.dll" file missing. I search a lot in google about how to create my owm plug-in & development. But I can't found a clear solution. There is no enough Guide as clear. While I start learning Indesign JS before a long time, It's very clear guide's and easy to learn. But SDK is not clear. Is Getting Adobe License must for creating Plug-in? no other way? Can any one Guide me.....!
    I'm using CS5 & Windows OS.
    Thanks and Regards,
    Vel.

    Hi AidySun,
            Thank you for your kind reply AidySun. I go through your steps. But I think I missed some steps while setting some paths. I've a following error when I opened the WriteFishPrice.vcproj. The screenshot looks like the below. I tried a lot to solve this issue by myself without disturbing anyone. Can u help me!
    Thanks and Regards,
    Vel.

  • Inbound Plug in standard SAP (create as an interface)

    Hi All- I have a standard SAP component that I create an Inbound PLUG at the window level, I'm using that component (standard SAP) in another component (custom) but I don't have access to the inbound plug that I just create in the standard SAP because the check-box for interface is not "CHECKED".
    When I try to enhanced the standard SAP the interface check-box disappear, how can I check that check-box interface box?
    How I can make my custom inbound plug accessible globally?
    thanks!
    Jason PV

    You Can not enhance that.( creating interface  inbound plug) according to the sap enhancement documentation.

  • Cannot create suspend plug in IDE

    Hi,
    perhaps someone can help me. I want to create a link in my WD app that navigates to another page, but in the same window. I think I need to use suspend/resume plugs. My problem is that I can't create a suspend plug in the Window of my application.
    Here is what I did:
    I added sap.suspendable.application=true on application level
    I added suspend/resume plugs on the interface controller. Suspend plug has a string parameter Url
    Now I want to add a suspend/resume plug on the main window of my application. If I don't I get a build error complaining: "Missing inbound plug 'Resume' from interface view 'ErxReportInterfaceView' of interface 'ErxReportCompInterface'." and a similar message about missing suspend plug. However, if I add those plugs, I can only add them as standard plugs, I do not have the possibility to add another type of plug. What am I doing wrong?
    I am using SAP Enhancement Package 1 for SAP NetWeaver Developer Studio 7.1 SP01 PAT0000, Build 200811082206.
    Thanks,
    Kai

    Hi
    Are you using CE 7.1 environment?
    Thanks
    Prasad

  • No startup plug while creating appplication

    Hi,
    while trying to create application from existing component at the last step there is no fields in the start up plug drop down. Can any one tell why is this.
    Regards,
    H.V.Swathi

    Hi
    1. In the interface controller check whether you have the default startup plug. This should be an inbound plug. If it is there then in the Startup plug dropdown you will get that plug, otherwise it will not be displayed.Check whether that inbound plug type in the interface view is startup or not
    2. Check whether this start up plug symbol/entry is there in window or not ,if there then it will work .
    3. It seems that the default startup has been deleted from the corresponding interface view sometime earlier.
    Open the concerned interface view (under Web Dynpro Components -> <Component> -> Component Interface -> Interface Views -> <Component>InterfaceView (double click or choose context menu 'Edit') where <Component> is the component which you have chosen while creation of application.
    Now, create an inbound plug named 'Default' of type Startup. Save using the Global Metadata button.
    Thanks
    Susmita

  • How to Open Multiple Files into One Image with a Format Plug-in?

    Basic overview question:
    I'm interested in creating a format plug-in that will open multiple image files and combine them, then provide one image to Photoshop for further work.
    1.  Can an .8bi plug-in receive notification of multiple files to be opened?  (Not unlike Camera Raw).  Or does one absolutely need to use an .8ba Import plug-in to do this?  I would prefer .8bi.
    2.  Assuming yes, could the latter parts of the plug-in interface be used to open just one combined image?
    Thanks!
    -Noel

    1) An import plugin (8bi) doesn't get file information - it has to provide it's own open dialog.  Only a file format plugin gets a file, but only one at a time.  (ACR has some special magic)
    You might want to take a look at the PhotoMerge and MergeToHDR setups with a script driving a plugin.

  • Is it possible for an Export plug-in to call another plug-in?

    Hi,
    I have an automation plug-in that I want to appear in the 'Export' file menu. Is it possible to create an Export plug-in that doesn't do anything except call the automation plug-in?
    Thanks
    RR

    No, but an automation plugin can call an Export plugin.

  • How to create a Custom Effect?

    First of all, I'm sorry, if I make any mistakes writing this post! I actually am German!
    I would like to know how I can alter the Animation Presets in AE CS5, that are quite messy because they just are a collection of effects, into the much more organised and nicer Custom Effects like Andrew Kramer (from Video Copilot) has on his website for free download.
    I already tried out a tutorial from aetuts+ ("Create Your Own Custom Effects!"), but it just didn't work and told me it couldn't apply my effect when I runned the script (maybe because it actually was written for AE CS4).
    So my question is: Is there an easy way to organize the effects and expressions from an ordinary preset to make the preset friendlier to use? And even if it's not easy, is there a way at all?
    I thank you in advance and hope you can help me!

    (As always: Sorry for mistakes! )
    Rick Gerard schrieb:
    [...] Creating a true plug-in requires knowledge of programming and a good understanding of the AE SDK (Software Development Kit). [...] I think you're looking for some help with scripts, which can look like a plug-in. Some more details about your project will be helpful. [...]
    Mylenium schrieb:
    [...] You can store  a ton of things in a simple animation preset, so whether or not you  turn them into "custom" effects is not of much consequence in the end. [...]
    I might have asked my question badly so I want to say some more things about it:
    I do not want to create a real plug-in like Andrew Kramer's "Action Essentials" for example. Something like his little presets you can download with his projects like the first lightsaber "plug-in" he made was what I thought about. (It might actually be a bad example, because it could have involved some serious programming, but I'm refering more to the way, it is customized than the way it functions.)
    I just want to have one panel (like each individual built-in effect) that controls the effects. I find it really annoying and messy to have to change the values from sliders that are all in their own panel. So I'm not looking to programming any plug-in, just to organizing a preset in a way, it becomes more comfortable to use.
    Mylenium schrieb:
    [...] It's more likely a language isue. [...]
    That's really bad, because that tutorial trained exactly what I wanted! But thank you for the advice!
    Mylenium schrieb:
    [...] I really should think that users have better things to do than waste
    their time with such toyish stuff, but well, I guess some have too much
    time to spare... [...]
    You're right, it's a waste of time to make things more comfortable to use! Imagine After Effects would have a nice interface which by the way also looks kind of cool!

Maybe you are looking for

  • Org.xml.sax.SAXParseException: Content is not allowed in prolog.

    Hi All, Currently i m doing some practice on JSTL and following few examples from this link http://java.sun.com/developer/technicalArticles/javaserverpages/faster/ while doing xml-ex1.jsp This is xml-ex1.jsp code <%@ taglib prefix="c" uri="http://jav

  • PR and PO list-SAP Std. T-Code

    Hi We have an urgent requirement from client  to know the list of purchase order converted from purchase requisition on daily basis .Selection option will be : Plant : USXX Date : Purchase Order Create/Purchase Conversion date Out put should be : Pur

  • Multiple SAP systems in a MSCS

    can someone tell me that he/she installed multiple SAP systems in a MSCS environment? DB:ms sqlserver 2005 OS:windows server 2003 enterprise edition cluster sap: ecc 6.0 and BW

  • PortableRemoteObject.narrow causes NoClassDefFoundError

    I exhaustively searched for this error in this, and other forums, and tried some suggested techniques, but none worked. /* Following causes NoClassDefFoundError */ Entity1RemoteHome printHome = (Entity1RemoteHome)      PortableRemoteObject.narrow( pr

  • How to make a class object  from a string representation of the same

    i have the name of a class whose object i want to make in the form of a string i.e. String s="S1"; i get this name after some prosessing. so what i want to do is to create an object of S1 which is actually one class that i have implemented.plz hlp. i