In my company, we are using Oracle Agile PLM 9.3.5. So far we never did any customisation. Now we want to customise the standard product. I am new to this product. Does anybody have any idea how to proceed with customisation?
Requirement:
In the ECO, there is a tab called "Affected Items". We want to add a button to print out the changed items as part of that ECO.
Thank you
This can be done by using External URL PX, tied to Action Menu event. This will create a menu item in the Action menu of the ECO. Upon clicking the link, it will open the web page in a different window where you can use Agile SDK to display what needs to be printed out.
Related
I designed a menu using Java language and now I want each menu item to go to the desired page when clicked.
And one more thing is that I want to have a light and dark mode in my menu, how do I do it?
But I don't know, can you please introduce me the pages that have this trainingenter image description here
I have made the menu but I don't know how to add day and night mode
and opening each menu item in a separate page
It is called Navigation Drawer, you can follow tutorial in this link to learn how to create it:
https://guides.codepath.com/android/Fragment-Navigation-Drawer
I am new to plugin development using eclipse with RCP and Java. I am developing a plugin for a email Client software.
I am trying to find users clicks on target platform, whether it is clicked on texts or hyperlinks using my plugin code.
As of now, I am getting the clicked object as follows,
IWorkbenchPart part = PlatformUI.getWorkbench().getActiveWorkbenchWindow()
.getActivePage().getActivePart()
ISelection selection = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getSelectionService().getSelection();
System.out.println(selection .toString());
But this shows only same thing for all the clicks even though it is text or links.
Can anyone assist here on how to differentiate these.
Thanks in advance.
The selection returned by the part selection provider gives you the selected object in whatever model the current part is using. So if the part is showing a list of files the selection might be the file.
The selection does not tell you anything about the UI the part is using or what caused the selection to happen.
Eclipse does not provide a general API to determine what happened to cause the selection. Some individual parts may provide a specialized API but this is not common.
I am trying to create a view in eclipse. I want my view to contain a Textfield and a button. the action is triggered by clicking on the button and some processing will be done on the inserted query in the textfield. can anyone suggest me a link to a tutorial or example doing that?
Thanks
You can create two quick samples that together show you what you've asked for. You do that by using the new project wizard to create a plugin project. One of the last wizard pages has a list of templates to choose from. If you create a plugin using the "with a view" template, you'll see how to create a view. Go back and create a second plugin with the "multi-page editor" template and you'll see examples of buttons, their event handlers and text fields. It should be easy to see how to code up the buttons and texts in the view.
I am trying to implement Internationalization in my application. I have text files from which I am reading translate to each language, then there is Options menu, from which user can select some Language, and choose that language as default. Here is the image of that: http://www4.slikomat.com/11/0316/gd7-inter.jpg
But I have one problem, when user select some language and click to button Save, it doesn't localize application. So user must close application, and start it again to localize it.
Is there any idea how to solve that problem? Maybe somehow to update, or refresh Stage?
A coworker has been struggling with this problem.
The desired result is an installable plugin for Notes that will add a button emails with attachments that will let users save the attachment to a document management system.
Finding documentation on doing this for Notes has been an uphill battle to say the least.
Writing the actual java to do the work isn't a problem, but figuring out how to extend Notes is.
So, is there a way to add a button/icon to the toolbar, or is it just a matter of adding a new toolbar? If we add a new toolbar then can we make it only visible (or just grey it out otherwise) when no email is open?
Both Lotus Notes 8+ and Lotus Symphony use the IBM Lotus Expeditor Toolkit.
If you get the Lotus Symphony SDK here.
Their are one or two examples dealing with adding button's to the symphony toolbar.
They should translate almost identically to Notes.
Good Luck,
Brian Gianforcaro
I had to do this once in Notes for a plugin I was developing. What I ended up doing was editing the Notes template in the designer, and then writing some LotusScript behind it that called a .NET class via a DLL. So when you clicked the button, it triggered the event in the LotusScript, and then called the DLL, and passed the item information to it.
I should also note that it was a freakin' bear to figure out because Notes documentation is terrible.
Depending on what access you have to the system the task can be fairly easy. Typically you customize your mail template to include a button in the inbox folder and the all documents view (for safety precautions see this entry). You customize ($Inbox) ($All) if you want to have the buttons only on the view level or additionaly the forms (there is a shared header subform you can use.
Give the button a meaningful label and add this code:
#Command([ToolsRunMacro];"(ExportDocumentsTo[yourSystemNameHere])")
The round brackets are actually important. Your code (Java I presume) the goes into an agent. You select "Create Agent" and Java as language. You specify "selected documents" to run against and agent list selection as trigger (this puts the () around your name). You can can get them from the Session class.
If your users are ok using a menu instead of a button you can simply select Action list as trigger and the agent will be listed in the action menu.
From your question I gather you want this for the Eclipse client. Please peruse Mikkel Heisterberg's site LekkimWorld.com
It contains tons of material. Start by reading his presentations and search the site. It has a lot of useful material.