Custom build of development components

I have a problem working with DC's, i'm working with a DC of the type Java, in this project i made an enhancement to the compiled classes using an incremental builder, but when i sync de DC and someone build that DC the enhancement is lost.
The question is, there is a way to tell how to perform this build to the DC tool ?

Hi Praveen
Thanks for your reply. There is a sub-type entry for 'Portal Content' in componentTypes.xml. Even then I am not able to see that option while creating DC.
<sub-type name="Portal Content" icon="type/EP_Content.gif">
     <wizard pluginid="com.sap.portal.pcd.ide.eclipse.nwdi"
          class="com.sap.portal.pcd.ide.eclipse.nwdi.ui.NewPortalContentWizard"/>
     <build name="tc/bi/bp/pcd" vendor="sap.com" scalias="" ppref="def"/>
</sub-type>
Above lines are there under
<type name="Enterprise Portal" icon="type/EnterprisePortal.gif" selectable="false">
, but not able to see that option while creating DC.
Thanks & regards
Tejo

Similar Messages

  • Custom types for Developing Components

    I am creating the custom component for the LiveCycle and I ran into problems, because there are no sufficient documentation how to define and use a custom data types. I have read your article from the DevNet and you refer to the documentation many times. I was very disappointed, because the documentation isn’t handle the custom data types like you have described it. My problem is how to define the custom data type in the component xml. The structure of the custom data type is
    ScanProperties
    private String virusScanPath
    private Priority priority (Enum type)
    private Action action (Enum type)
    private boolean all
    private boolean allole
    private boolean archive
    private boolean mime
    private boolean mheur
    private boolean pheur
    I will use this custom data type as an input for my service. So my main problem is how I can define the correct set up of the object from the process using the correct editors?
    Posted on behalf of Veijo (last name withheld)

    Usually custom data types (such as the priority and action types you stated) are added to the component.xml file using the data-types element. 
    For example, I have created several custom types (Part, OrderResult, PartsOrdered, Pricing and PartColor) that I want to expose in LiveCycle.  I want the user to be able to select these types from the drop down when they create process variables inside Workbench.  This is done by adding the class’ for each type to the data-types tag:
          <data-types>
                <data-type id="com.adobe.samples.customTypes.Part" title="Part" standard="true">
                </data-type>
                <data-type id="com.adobe.samples.customTypes.OrderResult" title="Part Order Result" standard="true">
                </data-type>
                <data-type id="com.adobe.samples.customTypes.PartsOrdered" title="Parts Ordered" standard="true">
                </data-type>
                <data-type id="com.adobe.samples.customTypes.Pricing" title="Pricing" standard="true">
                </data-type>
                <data-type id="com.adobe.samples.customTypes.PartColor" title="PartColor" standard="true">
                </data-type>
          </data-types>
    The data-type attributes are:
      id - Required. The identifier used to look up a data type globally (across components). Its maximum length is 255.
      title - Short descriptive caption expected to be displayed in any related UI. The title is not defined if id is used in place of title.
      java-class - The underlying Java type for this data type that will be used internally and on the signature of an operation when used as input and output. If java-class is not defined, it is assumed that id is the Java class.
      standard - A Boolean flag specifying whether this data type is a standard data type. If true, it is expected that applications such as Workbench ES will show this data type by default and not require a search across the data type registry. The default is false.
    I also see that you want to use an enumerated type.  I’ll assume that you would like to see a drop down in the properties sheet that allows the user to select from a list of possible values.  To do that you want to use a property-editor with the type Enum in your input parameter section:
    <property-editor editor-id="com.adobe.idp.dsc.propertyeditor.system.Enum" />
    I’ve included a sample component.xml (the same one from my DevNet article) that should supply you with the context of the elements.

  • API for getting the build date of development components

    Hello ,
          we are changing the format of the  <about> screen of our application. We show the version of the main development components that are the part of our application.
    For the version date of the development components, we were earlier showing the deployment date. However we now plan to change it to their build date. We need to know if there is any API to find the build date of the development components.
    Thanks alot in advance for helping!

    Hi do you want all the dates from the back date to sysdate or only the particular back date
    SQL> select sysdate from dual;
    SYSDATE
    22-JUN-09
    SQL> select sysdate-10 from dual;
    SYSDATE-1
    12-JUN-09or if you want all the back dates starting from one particular then
    SQL> select sysdate-10+level from dual
      2  connect by level<=10;
    SYSDATE-1
    13-JUN-09
    14-JUN-09
    15-JUN-09
    16-JUN-09
    17-JUN-09
    18-JUN-09
    19-JUN-09
    20-JUN-09
    21-JUN-09
    22-JUN-09
    10 rows selected.Edited by: oracle_for_dude on Jun 22, 2009 12:11 PM

  • Error during Custom Build - error PRJ0019: A tool returned an error code from "Performing Custom Build Step"

    Hi All,
    I was trying to develop C++ web service using GShop with Visual Studio 2005.I refered a tutorial :-
    http://guruce.com/blogpost/hosting-webservices-on-windows-embedded-compact-windows-ce-using-gsoap .
    AS per the tutorial i proceeded. But, i stuck-up when making a custom build with Helloworld.wsdl.Here is the output :
    1>------ Rebuild All started: Project: HelloWorldWebService, Configuration: Debug Pocket PC 2003 (ARMV4) ------
    1>Deleting intermediate and output files for project 'HelloWorldWebService', configuration 'Debug|Pocket PC 2003 (ARMV4)'
    1>Performing Custom Build Step
    1>'D:\Test' is not recognized as an internal or external command,
    1>operable program or batch file.
    1>Project : error PRJ0019: A tool returned an error code from "Performing Custom Build Step"
    1>Build log was saved at "file://d:\Test Code\HelloWorldWebService\HelloWorldWebService\Pocket PC 2003 (ARMV4)\Debug\BuildLog.htm"
    1>HelloWorldWebService - 1 error(s), 0 warning(s)
    ========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========
    As given in the tutorial i kept my custom build command line as : -
    $(SolutionDir)\gsoap-2.8\gsoap\bin\win32\wsdl2h.exe -s $(InputPath) -o $(ProjectDir)$(InputName).h
    and outpouts : $(InputName).h
    I kept GSHOP in the project filder :- D:\Test Code\HelloWorldWebService
    Kindly help.
    Jyotiranjan

    Hi Jyotiranjan,
    I’m glad to hear that you got it working.
    Thank you for sharing your solutions
    experience here. It will be very beneficial for other community members who
    have similar questions.
    Best regards,
    Lucy
    Lucy Liu [MSFT]
    MSDN Community Support | Feedback to us
    Get or Request Code Sample from Microsoft
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Language Support: Custom Build/Debug actions

    Hi!
    I'm trying to develop a custom language service, but can't find a way how to register custom build action instead of default C# compiler. I followed this two (Language Service,
    Basic Project System) walkthroughs, but unfortunately couldn't find any more additional and up to date resources.
    I am pretty confident that of the problems lies in the line of code bellow, but don't know how to correctly change it to register custom tool or ideally method call on build action.
    <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
    If someone could please point me in the right direction.
    Thanks!

    If your custom language doesn't use the C# or VB.NET compilers but your own compiler then you should provide your own MSBuild .targets and tasks.
    MSBuild has a learning curve so I recommend to read some book or documentation. Then, examine the file Microsoft.Common.CurrentVersion.targets (C:\Program Files (x86)\MSBuild\12.0\Bin folder)
    * My new blog about VSX: http://www.visualstudioextensibility.com * Twitter: https://twitter.com/VSExtensibility * MZ-Tools productivity extension for Visual Studio: http://www.mztools.com.

  • Using Development Components in WebDynpro components - runtime failures

    Hi folks,
    I developed a couple of webdynpro components and those are working fine. As I found out that I had some common functionality ( for example tablesorter class) in there I decided to get that into a common java component that would be "used" by my other webdynpro components.
    Also that works fine as I have build a java component with corresponding public interfaces, attached the java component to the webdynpro components, uses the java classes in there, I can build the webdynpro components without any issues, ...
    But at runtime I get an exception telling me that basically the common class definitions cannot be found ...
    This is what I did :
    (1) Created a JAVA DC with a package with the common classes
    (2) Defined 2 public interfaces - API and Assembly
    (3) Created a J2EE Service Libary, added the JAVA DC Assembly Interface and build/deployed it ... No deployment issues. ( Also tried the same with "An external library" DC when the first one didn't work )
    (4) Added a reference in the WebDynpro DC towards the API public interface ( buildtime ) and to the Assembly public interface ( RunTime ) (-> not sure that one was necessary ).  The DC builds without any issues.
    (5) I run the WD application and get a dump ...
    Any ideas what I forgot or suggestions on solving this ?
    Thanks,
    Steven

    Thanks for your suggestions guys ...
    I deployed the libary JAR seperately with the J2EE Library DC ... that worked fine according to the deployment logs.
    And yes I referenced the project as well in the project configuration but that didn't do alot I am afraid ...
    I did some reading up about JAVA class loaders within J2EE and it seems that by default each J2EE application ( I assume Webdynpro is one as well ) will have a dedicated class loader which only loads the classes needed within the application ( plus the default ones ).  It seems that my library is not considered to be part of the application ... although by creating the link to the public interfaces I would assume it is ...
    Only other thing to remark is that all the components are developed as 'local components' ... I cannot imagine that would have anything to do with it ?
    Steven

  • Any factors that Development Components cannot be imported?

    Dear all experts,
    I am new to Webdynpro development.  I have tried to open a webdynpro program developed by other developer before.
    1. Copy the source code under my documents and settings, e.g. d:\Documents and Settings\xxx\.dtc\LocalDevelopment\DCs\com.xxx.xxx
    2. Select File > Import and then select Development Components and logon my account to server.  Supposing the component would be appeared under Local as usual.  However, this time, I cannot see the component imported.
    May I know do you have any idea for about?  Thank you very much!
    Best regards,
    Anne

    Hi,
    You can export the DC present in the developer system and then import that .sca file into your System.
    Then refresh the Developement Component.
    Now right click the DCs available and select Create Project if it is available.
    In the next step right click on the DC and select sync Used DCs.
    Then Build and Deploy the DCs.
    If you have any problem (errors) while Syncing or Building check the error log for Missing DCs.
    For any guidance on importing and exporting the Development Component follow this link.
    /people/srinivasan.subbiah/blog/2008/03/21/team-oriented-development-without-remote-nwdi-in-ce-71
    Note: The Developement Configuration package should be same in both the systems.
    Regards,
    Gayathri.

  • AP payment custom build program

    I have a requirement to create an AP payment file format specific to a Bank (Oracle 11i). The bank accepts payment file in 2 different formats.
    Format X: to make payment in its own country (Netherlands). i.e. payment for invoices where supplier bank is in Netherlands.
    Format Y: to make payment in all other counties (except Netherlands).
    Standard Oracle Payment SELECT/BUILD program selects Invoices for all countries (for the param given: pay batch, currency..)
    If I create two payment FORMAT programs; one to pick up the Invoices for payment in Netherlands and another to pickup invoices for payment in all other counties; will it be fine ?
    OR
    I have to create a custom BUILD program to build a payment batch considering counties of supplier (and payment FORMAT program to create the flat file)
    Help Appreciated !!
    Thanks
    SM
    Edited by: user13294561 on 27-Sep-2010 00:22

    Define 2 concurrent program to format batch records and create payment file
    (or a single program with technical handling of batch type)
    Define 2 automatic payment format program
    Sample
    NL Foreign Payments Program
    NL Domestic Payments Program
    Define 2 electronic payment formats,
    Sample
    NL Foreign Payments
    NL Domestic Payments
    Select each of your payment format program in this setup
    Go to Internal Bank Account Setup
    Payables Document
    Create 2 payables document
    EFT DOMESTIC,
    EFT FOREIGN
    Payment Format,
    Select the format programs
    Create Batch
    Hope this helps
    Bilal SARIOZ

  • How to update apps in a ZTE Open (with FFOS 2.0 custom build)?

    I have a ZTE Open I regularly update trough custom builds. In particular, I updated it to the 2.0 version by:
    BRANCH=v2.0 VARIANT=user ./config.sh inari
    BRANCH=v2.0 VARIANT=user ./build.sh
    The operation has apparently been successful, and by the test apps being missing I guess that I really built and flashed the user variant.
    Now, I do not expect system updates to work, as I heard that the inari update channel has been shut down.
    Though, I would expect it to at least automatically update the third-part apps from the Market store. This does not seem to happen: I have outdated apps (Loqui IM v3.1, in particular) but the "Check now" button from the Settings has no effect (it says "Checking for updates", but nothing else happens).
    Moreover, I do not remember of having ever received an update with previous build, so I guess it may be not a problem with this particular build.
    Is there something I can do about it?

    Are other ZTE Open users with a custom build experiencing the same problem? Do you receive any app update at all?
    I can't tell whether there is a problem in my build, in some setting or in the device.

  • 15-inch MacBook Pro w/ Retina Custom Build Delay

    On 11/25 I ordered a custom build 15-inch MacBook Pro with Retina display 2.6GHz and 1TB PCIe-based Flash Storage.
    Item still has not been shipped any idea as to the hold up? Is it the Flash storage?
    Be intereseted in hearing from others about their backorder situation.
    Thanks

    Thanks nbar, wish I could it was ordered as a lease through my company's supplier SHI and their 3rd party apple company, twice removed from me. SHI says they have no way of giving me the apple order number which I find hard to believe. All the other apple accessories have arrived.

  • "Performing Custom Build Step"-Reg.

    Dear All,
    I am the new person in Plug-In creation, now i start the "Basic-Dialog" program and compile in VC++ software, but they shows the below error:
    'odfrc' is not recognized as an internal or external command,
    operable program or batch file.
    Project : error PRJ0019: A tool returned an error code from "Performing Custom Build Step"
    So please any one can help me!....
    Regards
    T.R.Harihara SudhaN

    Dear Charles Anderson
    Many Thanks for the informations and useful guide,
    and please help me!
    I added the below as you told paths:
    "Tools | Options. Go to Projects, then VC++ Directories. In the "Show Directories for" dropdown list, select "Executable Files". Add the directory containing odfrc"...
    First I clarify to you... I am using the MicroSoft Visual Studio. NET 2003, using the VC++ compiler...
    I am adding the ODFRC file in the executable files, But same error shown in the Output Window. So please give me the solutions.
    I am waiting for your solutions.
    Thanks & Regards
    T.R.Harihara SudhaN

  • WebDynpro accessing custom-build EJB applications

    Hi there,
    I have a query regarding WebDynpro accessing custom-build applications deployed on web-logic server and J2EE servers.Following is the scenario.
    There is central authentication mechanism deployed in J2EE server. GUI users (in EP) have to be authenticated through this application(EJB).
    In EP, this remote call would happen through the WebDynpro. After successful authentication, calls will be sent to another Weblogic server.
    Too many remote calls. How about the scalability & performance factors with WebDynPro?

    HI,
    Webdynpro and EP are almost same except coustomisation coming to picture in EP, why do you want webdynpro to EP to web logic, Just crate your UI in dynpro convert them to Iviews in EP through EP call wenlogic server/J2ee server i hope there will not be any hindarence to scalability or perfomance.
    when it comes to remote calls after all your going to call weblogic through EP but dynpro UI will be as an Iview
    I hope it helps you
    in case if you need further details let me know
    Regards
    RK

  • Can I write Design-time for JSP custom tag(not JSF components)

    I have some old JSP custom tags(not JSF components), and I want to use them in the IDE through the toolbox.
    Now I have already written the BeanInfos for these tags, and they can be drag from the toolbox; but it will throw a Exception when render the tags, and the properties in the Property Editor are not which I describe in the BeanInfos.
    How can I write Design-time for these tags? or whether it is possible to write the Design-time for these tags?
    the Exception is shown as follow:
    java.lang.ClassCastException
         at com.sun.rave.insync.faces.FacesPageUnit.renderNode(FacesPageUnit.java:1347)
    [catch] at com.sun.rave.insync.faces.FacesPageUnit.renderBean(FacesPageUnit.java:1086)
         at com.sun.rave.insync.faces.FacesPageUnit.getFacesRenderTree(FacesPageUnit.java:993)
         at com.sun.rave.css2.FacesSupport.getFacesHtml(FacesSupport.java:152)
         at com.sun.rave.css2.CssContainerBox.addNode(CssContainerBox.java:373)
         at com.sun.rave.css2.CssContainerBox.createChildren(CssContainerBox.java:354)
         at com.sun.rave.css2.DocumentBox.createChildren(DocumentBox.java:90)
         at com.sun.rave.css2.DocumentBox.relayout(DocumentBox.java:160)
         at com.sun.rave.css2.PageBox.layout(PageBox.java:392)
         at com.sun.rave.css2.PageBox.relayout(PageBox.java:454)
         at com.sun.rave.css2.DocumentBox.redoLayout(DocumentBox.java:313)
         at com.sun.rave.css2.PageBox.redoLayout(PageBox.java:460)
         at com.sun.rave.css2.DocumentBox.changed(DocumentBox.java:634)
         at com.sun.rave.designer.DesignerPaneUI$UpdateHandler.changedUpdate(DesignerPaneUI.java:1012)
         at com.sun.rave.text.Document.fireChangedUpdate(Document.java:851)
         at com.sun.rave.text.Document$5.run(Document.java:631)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:454)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)

    I have some old JSP custom tags(not JSF components), and I want to use them in the IDE through the toolbox.
    Now I have already written the BeanInfos for these tags, and they can be drag from the toolbox; but it will throw a Exception when render the tags, and the properties in the Property Editor are not which I describe in the BeanInfos.
    How can I write Design-time for these tags? or whether it is possible to write the Design-time for these tags?
    the Exception is shown as follow:
    java.lang.ClassCastException
         at com.sun.rave.insync.faces.FacesPageUnit.renderNode(FacesPageUnit.java:1347)
    [catch] at com.sun.rave.insync.faces.FacesPageUnit.renderBean(FacesPageUnit.java:1086)
         at com.sun.rave.insync.faces.FacesPageUnit.getFacesRenderTree(FacesPageUnit.java:993)
         at com.sun.rave.css2.FacesSupport.getFacesHtml(FacesSupport.java:152)
         at com.sun.rave.css2.CssContainerBox.addNode(CssContainerBox.java:373)
         at com.sun.rave.css2.CssContainerBox.createChildren(CssContainerBox.java:354)
         at com.sun.rave.css2.DocumentBox.createChildren(DocumentBox.java:90)
         at com.sun.rave.css2.DocumentBox.relayout(DocumentBox.java:160)
         at com.sun.rave.css2.PageBox.layout(PageBox.java:392)
         at com.sun.rave.css2.PageBox.relayout(PageBox.java:454)
         at com.sun.rave.css2.DocumentBox.redoLayout(DocumentBox.java:313)
         at com.sun.rave.css2.PageBox.redoLayout(PageBox.java:460)
         at com.sun.rave.css2.DocumentBox.changed(DocumentBox.java:634)
         at com.sun.rave.designer.DesignerPaneUI$UpdateHandler.changedUpdate(DesignerPaneUI.java:1012)
         at com.sun.rave.text.Document.fireChangedUpdate(Document.java:851)
         at com.sun.rave.text.Document$5.run(Document.java:631)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:454)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)

  • Import and Export of Webdyn pro development components

    Hi
    I am having a problem in importing a development component.
    When a component has to be transfered from one NWDS to another NWDS i generally export the development component as a zip file. How do i import the Zip file into other NWDS. I tried the import option but the import is not proper.
    Any other way of exporting and importing development components ?
    Regards
    NagaKishore

    Hi Karin,
    I faced a similar problem some time back. I unzipped the project and then imported it. But what i found is that in the webdynpro explorer i could not find the nodes for Public parts and so which are specific to DC projects.
    Regards
    Sidharth

  • MSVC V5.0 IDE and CINs - custom build ??

    Hi everyone,
    does anyone know how to solve the "custom build" problem under NT?
    When I try to build the LVS-file Visual stops at "performing custom
    build step" with an error.
    I've read the CIN reference manual, NI's knowledge base article
    1F3ARTNV, MS's knowledge base article Q191495 and I've tried copying
    various files to directories without long file names (just think about
    it... Windows NT can't handle long filenames...).
    I'd like to avoid postprocessing the DLL manually (so sad, so sad)!
    TIA
    Bernhard
    Sent via Deja.com http://www.deja.com/
    Share what you know. Learn what you don't.

    Ray;
    For some strange reason sometimes the custom step cause a lot of troubles when implemented in VC++. I created a small VI just to implement the custom step. You can downloaded from here:
    http://www.visecurity.com/tools.shtml
    Look for the VI called CIN Custom Step
    I hope this helps.
    Regards;
    Enrique
    www.vartortech.com

Maybe you are looking for

  • Blue screen of death when connecting iPod Touch to PC

    I am getting the BSOD as soon as i connect an iPod Touch to a Dell PC which has been happily running iTunes with an iPod Classic 80Gb for ages; have installed latest software on Touch and also latest iTunes version, have tried uninstalling USB printe

  • Moving library to external drive

    I am helping a client that has an iMac G4 with OS X 10.4. She has a LOT of photos in her iPhoto Library, around 25000 of them, and she is almost out of space on her internal hard drive. She has a new external drive that I would like to move her iPhot

  • Error creating incoming payment. (ODBC -2035)

    The error that I get while creating an incoming payment is: This entry already exists in the following tables (ODBC -2035) Here is the code: public static bool CreatePayment()        DateTime now = DateTime.Now;        Payments pmt = (Payments) m_com

  • Resizing websites to optimize for the most common screen size

    Hi, I have recently designed and produced my first website.  When designing it I looked at the pixel sizes of the range of screens in our office (no widescreen), and I have designed it to suit.  The website fits fine on our screens in our office, but

  • Spinning beach ball at login after 10.5.6 update

    Since I upgraded to 10.5.6, the spinning beach ball would appear every time at startup. At the same time, Finder (and/or the menu bar) is frozen and the Dock doesn't show up. Here are the suspicious error messages in Console: 2008/12/19 上午 1:44:31 Fi