Export team development features/milestones

Hello
Is it possible to export team development features/milestones ?
Apex 4.1
Kind Regards Erik

Hi,
you should be able to do that via export workspace, check http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21674/deploy_export.htm
Regards.
Bas

Similar Messages

  • Team Development with JDeveloper

    I'd like to know whether JDeveloper is well designed for developing Java applications in a team (at the moment, the team members are working at the same place, but this may change)
    Thanks for your answer!
    Uschi

    But Why can't I check In/Out the file which store in directory named with spaces in WinNT?
    Is there any bug fixes online?
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by JDev Team (Laura):
    Ushchi,
    JDeveloper has recently started working on more team development features. It can be integrated with a source control system using our custom addins, and our 3.2 release will provide support for the Oracle Repository.
    For more information on the custom addins, see the online walkthrough demos available on the JDeveloper OTN page.<HR></BLOCKQUOTE>
    null

  • Team development in Apex 4.0

    Hi,
    I want to know how to get values in Assignee, Release and Application select lists in Features in Team Development in Apex 4.0. In the Application select list i m not getting even the applications which are created in my workspace.
    Please guide.

    So, with the help of Dan...
    ??? I went to Features and it was a popup. I swear I clicke the icon and nothing. Of course I was out with the team last night and may not be at my most reliable.
    Went to Bugs > Create Bug and it Application context is a drop down. My workspace applications were there. Did not create a bug.
    Went back to Features and the popup now had the application....
    I know how a select list works, so I must be wrong...
    However, the filter on the Team Development page must be a select distinct from the features table (WWV_FLOW_FEATURES). The challenge here is that being a lightweight app a user can decide to user milestone or features or both... since milestones don't have app but do have release it seems there is a disconnect in the data flow.
    My idea of the data/process flow.
    Milestones
    -- Features
    ---- To do / Feedback / Bugs
    ---- Feature
    ------ To do / Feedback / Bugs
    ---- Feature N
    ------ To do / Feedback / Bugs
    And all can be stand alone. But almost all need to relate back to an application and application does not seem to propgate down... too much logic if the hierarchy is not set.
    But at least for my lightweight needs at a small client this will be a good tool.

  • How to Export Team Site Site Pages to .aspx and for subsequent upload to other Team Site and Web Part Customisation included. (Powershell)

    Hi guys,
    Can i please technically know how to export an .aspx file (in Site Pages library of a team site) to local file?
    Basically, SharePoint Designer has this feature "Export File"
    i Need exactly the same feature that can be done in Powershell
    I tried the following
    $web = get-spweb "MY URL"
    $folder = $web.GetFolder("SitePages")
    $files = $folder.files
    #trying to download the first file
    [System.IO.File]::WriteAllBytes("C:\\LocalPath",$files[0].OpenRead(),$true)
    The file exported via this method is Clean HTML without the Web Part Customisation!
    I NEED the web part customisation in the exported files.
    Sample downloaded via above script
    <!-- Cropping -->
    <tr>
    <td id="_invisibleIfEmpty" name="_invisibleIfEmpty" valign="top" height="100%"> <WebPartPages:WebPartZone runat="server" Title="loc:LeftColumn" ID="LeftColumn" FrameType="TitleBarOnly"/> </td>
    <td id="_invisibleIfEmpty" name="_invisibleIfEmpty" valign="top" height="100%"> <WebPartPages:WebPartZone runat="server" Title="loc:MiddleColumn" ID="MiddleColumn" FrameType="TitleBarOnly"/> </td>
    <td id="_invisibleIfEmpty" name="_invisibleIfEmpty" valign="top" height="100%"> <WebPartPages:WebPartZone runat="server" Title="loc:RightColumn" ID="RightColumn" FrameType="TitleBarOnly"/> </td>
    </tr>
    <!-- Cropping -->
    I tried using WebRequest, it returns the  End HTML, which is not working too.
    Please if anyone has done this? Or is there any SharePoint Designer Developer here and is willing to share how to perform the export in SharePoint Designer via Powershell? API available?
    Much Appreciated!
    Cheng

    Hi,
    According to your post, my understanding is that you wanted to export Team Site Site Pages to .aspx and for subsequent uploaded to other Team Site and Web Part Customisation included using Powershell.
    You can export a specific file or object from the Export-SPWeb context.
    Export-SPWeb -identity "http://sharepoint" -ItemUrl "/default.aspx"  -Path "c:\default.aspx"
    Import-SPWeb -identity "http://sharepoint" -Path "C:\default.aspx"
    Here is a similar thread for you to take a look at:
    http://sharepoint.stackexchange.com/questions/56664/how-to-download-a-sharepoint-aspx-page-from-server-using-powershell
    More information:
    http://technet.microsoft.com/en-us/library/ee428301(v=office.14).aspx
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Team Development with Subversion

    Hallo,
    we have a model with nearly 1,900 tables. We were on Oracle Designer before and now started with a fresh reverse engineered Data Modeler model. Since Data Modeler does not have a database repository like Designer had, we use integrated subversion for team development.
    However, we encounter some serious problems when working like that. Please consider the following example:
    - First, I do a checkout on the subversion repository to build my initial working copy. I do that whithin SQL Developer (the integrated modeler)
    - Second, I model one new table in the modeler and save the whole design.
    - Afterwards I look at pending changes (outgoing) and see, that I seem to have altered a lot of other tables, that I did not touch.
    - We saw changes from merely username to switches between not-null and nullable columns.
    - The issue is not always reproducable, but it occurs very often.
    This behaviour makes it nearly impossible for us to develop a model in the team. If I comitted that state, it would have led to a faulty model.
    I'd like to ask you if anyone also saw those problems. Am I alone with that? Any ideas on how to solve the issue?
    I'd be able to provide details for the development team.
    Thanks in advance,
    Ralf

    Meanwhile we found some regularities.
    1. scenario: Compound foreign keys (mandatory or not is unclear).
    Create the following in a db-schema of your choice:
    drop table modeler_a;
    create table modeler_a
    a_id number ,
    a_id2 number,
    constraint a_pk primary key (a_id,a_id2) enable );
    drop table modeler_b;
    create table modeler_b
    ( b_id number ,
    b_a_id number not null,
    b_a_id2 number null,
    constraint b_pk primary key (b_id) enable,
    constraint a_fk foreign key (b_a_id , b_a_id2) references modeler_a ( a_id , a_id2) enable );
    create index modeler_b_a_fk_idx on modeler_b
    b_a_id,
    b_a_id2
    I am not sure if you need the index, but do it.
    Now perform a reverse engineering via Import-Functionality in the modeler.
    Do not save the design, see first if you find b_a_id number not null, you will find it. And you will find b_a_id2 null.
    Now save the design, maybe close and reopen it. Look at table modeler_b again. You'll find both fk columns not mandatory, which means nullable.
    This is why a versioned save would have outgoing changes though the user changed nothing.
    I understand, that from the modeler-perspective it is not ok to have a mandatory foreign key with one column mandatory and the other not. In my opinion the change should be the other way round: It should make the nullable column not null and the foreign key mandatory. And it should inform the user about the change.
    2. scenario: Changes of changed_by though nothing was changed.
    I could not produce a simple testcase yet. The thing is, that I checkout a fresh working copy, save the design (changing nothing) and see outgoing changes because the changed-by-field has changed to my user name. Not all tables are affected.
    Other scenarios will follow.
    Best regards,
    Ralf
    Edited by: duenker on Oct 4, 2011 9:15 AM

  • Using Quicktime's "Export for Web" feature in iWeb?

    Greetings,
    Does anyone know if this is possible within iWeb, that is, to use movies created using Quicktime's "Export to Web" feature, which really seems to deliver superior movie quality?
    Much appreciated,
    DaveB

    Thanks, good stuff, though I'm still having a small problem with this. I'm getting a gray line around the top and left of my movie and the right side of the player is getting cut off. When I try to make the width larger, it just moves the gray line further to the left.
    Any ideas?
    http://www.brianderr.com/brianderr/copythis3.html
    *This is the script that I added to the html snippet in iWeb.* I changed the height to 505px because it was cutting off the bottom of the player at 496.
    <iframe src="http://idisk.me.com/brianderr/Public/KANYE%20PT%201/kanye1.html"
    style="width:720px; height:505px";
    scrolling="no">
    </iframe>
    *This is the script from my read me file that I kept:*
    <?xml version="1.0" encoding="utf-8" ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html>
    <head>
    <title>QuickTime Pro - Export for Web - KANYE PT 1</title>
    <script src="http://www.apple.com/library/quicktime/scripts/ac_quicktime.js" language="JavaScript" type="text/javascript"></script>
    <script src="http://www.apple.com/library/quicktime/scripts/qtp_library.js" language="JavaScript" type="text/javascript"></script>
    <link href="http://www.apple.com/library/quicktime/stylesheets/qtp_library.css" rel="StyleSheet" type="text/css" />
    </head>
    <body><script type="text/javascript"><!--
    QTWritePosterXHTML('Click to Play', 'KANYE%20PT%201-poster.jpg',
    'KANYE%20PT%201.mov',
    '720', '496', '',
    'controller', 'true',
    'autoplay', 'true',
    'bgcolor', 'black',
    'scale', 'aspect');
    //-->
    </script>
    <noscript></body>
    </html>

  • Flex Builder 3 - Export Release Build Feature

    Just bought the Flex Builder 3 prof version and imported my
    project from Flex Builder 2 to 3. All compiled OK and I see all
    .html wrappers and swf (debug and release versions) in the bin
    folder. However when I run the "Export Release Build Feature" only
    index.swf (my main application file) along with its wrapper
    index.html and my images directory gets copied to "bin-release"
    folder. Not sure why remaining.swf files corresponding to the .mxml
    files are not copied. Do I need to copy these manually???
    Appreciate any help with this.
    Thanks in advance.

    The problem is that:
    all the images do not appear in the "Select the output files to include in the exported AIR or AIRI file" section of the Export Release Build. I see only 30 files with the rest of the files missing.
    As a work around, what I did is manually copy all the resources/images from bin-debug to bin-release directory and then make the export release build. In this air package after installation, I see now all the images.
    so, the original problem with flex builder not being able to include all the images in release build still persists.
    thanks,
    Sunil

  • Date format in Team Development

    Hi,
    Is it possible to customize date format in interactive reports being a part of Team Development? It is preset to MM-DD-YYYY.
    Cheers
    Arek

    Hi Arek,
    not that I'm aware of. But you could try to define your own column with "Action > Format > Compute" and use
    TO_CHAR(XX, 'DD-MON-YYYY')Just an idea.
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Feedback/Team Development module in Runtime environment

    Hello Apex experts,
    I couldn't find anything about this in documentation. The apex application I am working on has Dev, Test (run time only), Prod(run time only). I just enabled feedback page on development application, planning to move it to test. So when a user submits a feedback from test or prod, how can I access it since there are no Team development module in run time environments.
    Thanks in advance,
    Apexsan

    Hi there,
    not yet.
    The next strange thing is: My old LR4 installation has the same error now.
    But I may found the issue. A wrong color profile in the Microsoft windows color management. I ran process monitor in the background while running LR and recognized that LR tries to load this profile again and again (as if it where stuck in a loop).
    Will change the profile now and test again.
    /EDIT:  It is the color profile of the monitor. LR is working again :-)

  • Export of development objects

    Hello everybody,
    I need some help with my SAP BW 3.1 WAS 6.20. I would like to export a development object with all the contained elements into a file so that I can import this development object into another SAP system. I have searched the SAP help and the internet but unfornutaly without any success. I will appreciate any help or hint on how I can do this.
    Thanks in advance,
    Daniel

    Hi Alec,
    I think that of the 3 you mentioned Crystal Reports is your best bet. WebI & DeskI do not schedule to XML using the standard scheduler.
    You might also consider Query As A Web Service which will retrieve your data in XML format.
    Regards
    Alan

  • How to export RAW/developed jpegs to jpeg, while keeping unmodified jpegs as originals?

    Hi all,
    I'm new to LR and can't work out how to get the export setting working as I want. What I want to be able to do is:
    1. Import a number of photos into a collection (a mix of RAW and jpeg)
    2. Develop the photos that I deem necessary
    3. Export the whole collection to a specific folder on my hard drive as jpeg, but for the jpegs in the collection that I have not developed, I want to keep as original
    I realise I could just export the developed versions as jpegs, and then manually add the unmodified jpegs, but this seems a bit fiddly and unnecessary. Is it possible to do what I'm trying? I'm using LR 4.1.
    Many thanks in advance!

    I want to create a collection in LR. Then after developing certain images, I want to export the whole collection to different location on my hard drive, while converting the developed files as jpeg, but keeping the non-developed files as originals (but still exporting them to the location). So I would have my 'master' folder in which I keep all my originals, and then a separate folder just for a specific collection, all in jpeg. The reason I want a separate physical location is that I have that location set to automatically sync with cloud storage, so others can view it.
    What I was hoping to see when exporting my collection as jpeg was an option for something like 'keep undeveloped jpegs as original'.
    Doesn't look l;ike I can do exactly what I want to. I'll find a way I can work with.
    thanks for all your help!
    Sam

  • Turn Windows Features on or off Application Development Features

    I am having an issue where the windows features under Internet Information Services/World Wide Web Services/Application Development Features will not install.  Specifically those which are clicked on when one clicks on ASP.NET.  All necessary versions
    of ASP.NET are installed.  IIS 7 is installed.
    In the Event Log there are two errors which are shown in conjunction with this problem.
    1. Unable to install counter strings because the SYSTEM\CurrentControlSet\Services\ASP.NET_64\Performance key could not be opened or accessed. The first DWORD in the Data section contains the Win32 error code.
    The error code is: 020000000E0E0000
    2. Installing the performance counter strings for service ASP.NET_64 (ASP.NET_64) failed. The first DWORD in the Data section contains the error code.
    The error code is: 02000000C9120000
    I am thinking that the performace key is somehow not accessable due to some security feature.

    Jerry and Andre,
    I too was receiveing these errors in my event log regarding iis and ASP.NET:
    1. Unable to install counter strings because the SYSTEM\CurrentControlSet\Services\ASP.NET_64\Performance
    key could not be opened or accessed. The first DWORD in the Data section contains the Win32 error code.
    The error code is: 020000000E0E0000
    2. Installing
    the performance counter strings for service ASP.NET_64 (ASP.NET_64) failed. The first DWORD in the Data section contains the error code.
    The
    error code is: 02000000C9120000
    I
    am thinking that the performace key is somehow not accessable due to some security feature.
    I wanted to let others know that I have confirmed Jerry's solution works. Simply turn off and on IIS in Windows Features. :)  Thanks, Jerry!!!

  • Tab controls and team develop enviroment

    I just tried to insert a control to the form and I realised that there is tab controls available to insert.
    I would like to know does DW have tab control, if yes, any way to access it?
    by the way, does DW have version control for team develop enviroment?
    Your information is great appreciated,
    iccsi

    Thanks for the message,
    Do you mean that I need plug in a version control or CF has its own version controls?
    If it has how can I access it?
    Thanks again for helping,
    iccsi

  • Conversion of subscription seats after FormsCentral Team admin feature is retired.

    When the FormsCentral Team admin feature is retired, and there will be no more subscription seats,
    what type of account will the existing subscription seats be converted to?
    Will it be the Plus Account? Or an extension of the Trial Account?
    What will happen to the unassigned subscription seats?
    With the "complimentary use of Adobe FormsCentral individual subscriptions for one year."
    when does that one year subscription begin? At January 15, 2014?
    Thank you.

    OK - Here you go:
    Team Subscription Seats:
    Q1. On January 15th, 2014, team subscriptions will be converted to a complimentary individual subscription for 1 year. Would this be the annual or monthly subscription plan?
    There will no longer be subscription plans (annual or monthly) available for team.  We will grant the buyer and all assigned delegates complimentary access to the service for one year from this date.  The service level is "Plus" - unlimited forms with up to 5,000 responses per form
    Q2. We have unassigned team subscription seats. Will they be converted to the complimentary individual subscriptions?
    To take advantage of the complimentary seats, confirm or update seat assignments by January 15, 2014. 
    Q3. Will the owner/user of the team subscription be directly notified of this change? Will they need to take any action at all?
    Owners of the team subscription were sent an email on 12/12/13 notifying them of this change.  The seat holders did not receive an email.  The Buyer and Users do not need to take action unless they want to assign or reassign any of the current seats.
    Individual Subscriptions (annual):
    Q4. Can individual subscriptions be transferred to another Adobe ID user?
    All assigned seats must be updated by January 15, 2014 in order to be converted into an individual subscription.
    Q5. Are there any controls available for the individual subscriptions? Can we suspend/remove individual subscriptions?
    The subscription will be converted to a complimentary individual subscription. At that point, it’s under the control of the individual. The individual cannot suspend/cancel a complimentary subscription, but the individual can contact Adobe later if he no longer wishes to have the complimentary subscription and we can revert it to Free.
    Q6. After the 1 year complimentary individual subscription expires, will each user need to purchase a subscription plan? Or can they be grouped togther for a mass purchase?
    Users will need to purchase an individual subscription plan.  Mass purchase is not available.
    Thanks,
    Josh

  • Project Considerations for Team Development not work

    Dear All
    how can tell the responsible of this site "Oracle ADF Insider" about any link is not working ?
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/adfinsider-093342.html
    i try many times to see this sample but it not work
         Project Considerations for Team Development April 2011
    regards

    you can mail [email protected] regarding this.
    who has created this video.
    Edited by: Nikhil Gokhale on Apr 29, 2011 7:45 PM

Maybe you are looking for

  • Songs not playing in itunes

    I recently upgraded to iTunes 7.5 and whenever I attempt to play music nothing will play. Music in my library, podcasts, shared libraries, and itunes store previews will not play. I have tried restarting my computer and reinstalling intunes, but noth

  • Import addresses into previous recipients but not into address book

    I would like to import a list of email addresses into the previous recipients list. I know how to import them into my address book but I don't want them all in my address book. I just need them to be available to auto complete when I start typing the

  • How do I erase sender info when forwarding e mails

    I want to forward emails but i do not want to have them see where it came from. It does not allow me to erase sender info when forwarding it.

  • "Login Options" in "System Preferences"- Accounts gone.

    Hello, on some of our machines the "Login Options" can not be clicked any more. These machines are special: - They came preinstalled (and or are freshly installed) with Leopard - They are mostly Laptops without Network-homedirectories - They have (so

  • How to invoke a funtion on a custom tag value?

    Hello, I have a custom tag used in my code. It is used as follows: <b:testtag name="Title"/> This outputs a String value. This is used in my HTML as follows: <b:testtag name="Title"/> This part of the code works fine. However i now want to invoke som