API to create a new Workplan Version

Hi,
We are trying to Create a new workplan version in Oracle Projects Suite .Can anybody please guide me as which API can be used for creation of a NEW WORKING version of workplan for the project.
This is urgent and your input is highly appreciated.
Thanks,
Manjula

Can you specify the name of the API in PA_PROJECTS_PUB to create a new Work plan version for a given Budget.

Similar Messages

  • Is there a http api to create a new Firefox Hello conversation?

    A new conversation in Firefox Hello until now can be created via button click as described here:
    https://support.mozilla.org/en-US/kb/firefox-hello-video-and-voice-conversations-online#w_start-a-conversation
    Is there already a http api to create a new conversation? If not: Are there plans to create one?
    The api should accept a POST request and respond with the newly created conversation url.

    found it: https://docs.services.mozilla.com/loop/apis.html#post-rooms
    please notice: docs depict v1 but endpoint https://loop.services.mozilla.com is currently still running at v0

  • Exist any API to Create a new Costing for employee?

    I want to add new Costing for employees using API's ,
    Exist any API to Create a new Costing for employee?

    Hi
    there are no public APi's to create the costing in Oracle,
    u can use CST snapshot interfaces and run the standard import costs concurrent program

  • API to create a new shipment line

    Hi,
    Is there any public/private API to create a new shipment line on a purchase order line?
    Thanks & Regards,
    Nagesh.

    Check "Oracle Integration Repository" Site
    http://irep.oracle.com/index.html

  • API to create a new user from custom code

    Hi, do we have an API to create a new AquaLogic portal user, which I can call from my custom Java code? I want to make user creation process dynamic.
    Edited by technical_stuffs at 05/01/2007 2:20 PM

    yes, I gone through the code and it seems like I need to have some modification over there because it is taking some parameters that I dont have control on or I create those objects as what portals' create user process is doing and pass it down to that method and rest would be fine.

  • API for creating a new folder in Shared Queries through C # in TFS 2013

    Hi ,
              Is it possible to create a new folder in "Shared Queries" in Team foundation Server 2013 by using C#. I'm able to access the queries and even modify them by using the StoredQuery class and
    the QueryText function . We had a case to create a new folder in the Shared Queries part of the project.
              I have been and I am still looking for classes / api's that will enable me to do this .Any pointers to help me would be greatly appreciated.
             Do let me know if I have to provide more information.
    Regards,
    Arun

    Hi Arun,  
    Thanks for your post.
    To create new folder under Shared Queries, you can try below code snippet:
    TfsTeamProjectCollection tfs =
    new
    TfsTeamProjectCollection(new
    Uri("collectionURL"));
    tfs.EnsureAuthenticated();
    WorkItemStore workitemstore = tfs.GetService<WorkItemStore>();
    var queryHierarchy = workitemstore.Projects["teamprojectname"].QueryHierarchy;
    QueryFolder currentLocation = queryHierarchy["Shared
    Queries"]
    as
    QueryFolder;
    var folder =
    new
    QueryFolder("foldername");
    currentLocation.Add(folder);
    currentLocation = folder;
    queryHierarchy.Save();
    For more information, please refer to the example in this article:
    http://bzbetty.blogspot.in/2012/12/tfs-automation-automatically-creating.html.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I had to restrore my IPad 1 after loading 5.0.1 as it crashed whilst trying to re-sync. Now I have re-synced 4 times. ITunes just creates a new backup version each time but won't move on. It keeps prompting me to restore from backup

    This is the problem I have and what it looks like. Everytime I hit continue I restore from a back up, create a new back up (as time stamped) and then end up back at the same starting point

    Having tried various things (backing up to a different Mac, restoring the iPad to its original settings - thus wiping all content from the iPad-, trying to restore from an older backup predating the problem etc), all to no avail, I took the plunge and chose "Set Up as a new iPad".
    This seems to have fixed the problem and turned out to be a fairly minor pain:
    all GoodReader documents, recent photos/videos taken with the iPad and app groups were reinstated following a USB-cable sync with my main Mac.
    but I had to re-select which music, photos, podcasts.
    Now everything seems to be back to normal.
    Good luck!

  • Have deleted firefix and then tried to looad a clean version but it reloads the older header with two google searcxhes etc that I just cannot get rid of. How do I create a new clean version please/

    I had two tool bars with google search in the header part . Cannot delete them even if I delete firefox and relaod. Am not sure where any other details I have could be stored that I haven't found. I now assume it is on the firefox web site. I just want to download a clean (new) copy of firefox and none of the stuff I had as add ons in the one I have just deleted (twice because it will not disappear so there are files somewhere I can't find. Please tell me how to get a clean version with no old stuff from previous load.

    You can uninstall the relevant extensions from Tools>Addons to remove those toolbars. Also there may be some unwanted plugins which you may want to disable. This should solve your problems.
    If you still want a clean profile, uninstall firefox with the "Remove my Firefox personal data and customizations" checkbox enabled. Alternatively you may remove your firefox profile folder which (on Window7) is stored in C:\Users\<your-username>\AppData\Roaming\Mozilla\Firefox\Profiles folder with a randomly name. You may delete this folder before installing a new version to get a clean profile.

  • Update and create a new version of a PO

    Hi all experts,
    I'm doing a simple report to synch POs between an R3 and the SRM system. In order to do this, the report (who's running on the SRM) does as follows:
    1) given a PO number, retrieves from the backend all the PO-related tables (and translate them into SRM-like structures, but this is a minor note);
    2) retrieves details for the PO specified in SRM (BBP_PD_PO_GETDETAIL);
    3) perform a mapping between SRM items and corrispective R3 ones.
    4) update eventually some fields from the R3.
    5) then, finally, tries to do an update. And here the mess begins... I can't manage the update phase to do what I want...
    First of all; I retrieve all the data I need from the SRM system as follows:
    CALL FUNCTION 'BBP_PD_PO_GETDETAIL'
        EXPORTING
    *     I_GUID                           =
          I_OBJECT_ID                      = p_ebeln
    *     I_ATTACH_WITH_DOC                = ' '
          I_WITH_ITEMDATA                  = 'X'
    *     I_READ_BE_DATA                   = ' '
    *     I_ITEM_SORTED_BY_HIERARCHY       =
    *     I_WITHOUT_HEADER_TOTALS          =
        IMPORTING
          E_HEADER                         = srm_header
    *     ET_ATTACH                        =
        TABLES
          E_ITEM                           = srm_item
          E_ACCOUNT                        = srm_account
          E_PARTNER                        = srm_partner
          E_CONFIRM                        = srm_confirm
          E_LONGTEXT                       = srm_longtext
          E_LIMIT                          = srm_limit
          E_ORGDATA                        = srm_orgdata
          E_TAX                            = srm_tax
          E_PRIDOC                         = srm_pridoc
          E_MESSAGES                       = srm_messages
          E_ACTVAL                         = srm_actval
          E_ACC_ACTVAL                     = srm_acc_actval
          E_VERSION                        = srm_version
          E_HEADER_REL                     = srm_header_rel
          E_ITMLIM_REL                     = srm_itmlim_rel
          E_STATUS                         = srm_status.
    Then, since the modifications required are just at item granularity, I work on the srm_item table (i.e., let's say that the X item has its description changed).
    The problem is the UPDATE task: basically, I tried to use the BBP_PD_PO_UPDATE as follows:
    CALL FUNCTION 'BBP_PD_PO_UPDATE'
        EXPORTING
         i_park                       = 'X'
         i_header                     = s_headeru
         I_SAVE                       = ''
    *   IV_REJECT                    =
    *   IT_ATTACH                    =
        IV_WITH_CHANGE_VERSION       = ''
    * IMPORTING
    *   E_CHANGED                    =
    *   ES_HEADER                    =
       TABLES
         i_item                       = v_item
    *   I_ACCOUNT                    =
    *     i_partner                    = t_partner
    *   I_CONFIRM                    =
    *   I_LONGTEXT                   =
    *   I_LIMIT                      =
    *   I_ORGDATA                    =
    *   I_TAX                        =
    *   I_PRIDOC                     =
         e_messages                   = t_messages    .
    CALL FUNCTION 'BBP_PD_PO_SAVE'
    EXPORTING
    *    IV_WORKITEM_ID               = srm_header-object_id
    *     IV_USERTYPE                  =
         IV_HEADER_GUID               = srm_header-guid
         IV_CREATE_HIST_VERSION       = 'X'
    COMMIT WORK AND WAIT.
    where s_headeru is simply an adeguate structure for the FM (MOVE-CORRESPONDING srm_item TO s_headeru), so nothing new.
    Issues: this code actually updates the PO. I can see on the SRM web interface that the order's been updated (e.g. modified description)... BUT there's no trace of the previous version. Calling the UPDATE FM in this way pratically overwrites the order on SRM.
    IV_WITH_CHANGE_VERSION field seems not working: if I flag this field ('X') the update fm seems not working.
    Can anybody help me understanding how these FM calls and parameters works?
    I'd like to manage 3 different cases:
    - overwrite the version in update (OK, I got it),
    - overwrite the version in update and try to distribute (OK, got it just flagging the 'iSave' param);
    - don't overwrite, but create a new active version and don't distribute (that's still missing.. )
    Thanks in advance and forgive this huge post
    EDIT: sorry, I forgot to specify that if I flag the IV_WITH_CHANGE_VERSION input parameter for the UPDATE FM, the update doesn't work. More precisely, it terminates without any error message but the effect is that nothing seems to be done.
    Edited by: Matteo Montalto on Feb 27, 2009 5:55 PM

    Well, I'm now back on the system I was working on and can confirm that the version management is active in SRM.
    Maybe I can formulate the question in a simpler way...
    My task is quite simple: retrieve a Purchase Order in SRM (using the BBP_PD_PO_GETDETAIL function module), do some modifications on it (this step has been already tested) and then simply create a new version of the same purchase order (that obviously, will become the active version).
    What I have in hand are the structures I got from the BBP_PD_PO_GETDETAIL, eventually modified.
    Any hint? The solution posted above allows me to overwrite the PO active in SRM, I'd like to manage also the case in which the user wants to create a new version of the PO .

  • Error Creating New Form Version

    OIM 9.0.1.5 Build 1600.10
    Whenever I try to create a new Form Version for an Object Form or Process Form I am getting an error.
    The Form Version has Lookup Queries as properties and this seems to be causing the issue. We did not see this in the past but are now seeing it.
    Anybody else see this issue? Know of a workaround? Know what the validateLookupQuery is actually doing?
    DEBUG,23 Jun 2010 13:22:00,646,[XELLERATE.ADAPTERS],Class/Method: tcSDCProperties/validateLookupQuery entered.
    // Then 1207 seconds later...
    ERROR,23 Jun 2010 13:42:06,139,[XELLERATE.DATABASE],Class/Method: tcDataBase/loadResultSet encounter some problems: Unexpected exception while enlisting XACon
    nection java.sql.SQLException: Transaction rolled back: Transaction timed out after 1207 seconds
    BEA1-07D6DE952A951F3DAFC5
    at weblogic.jdbc.jta.DataSource.enlist(DataSource.java:1548)
    at weblogic.jdbc.jta.DataSource.refreshXAConnAndEnlist(DataSource.java:1456)
    at weblogic.jdbc.wrapper.JTAConnection.getXAConn(JTAConnection.java:206)
    at weblogic.jdbc.wrapper.JTAConnection.checkConnection(JTAConnection.java:83)
    at weblogic.jdbc.wrapper.ResultSet.preInvocationHandler(ResultSet.java:68)
    at weblogic.jdbc.wrapper.ResultSet_oracle_jdbc_driver_OracleResultSetImpl.wasNull(Unknown Source)
    at com.thortech.xl.dataaccess.tcDataBase.getVariant(Unknown Source)
    at com.thortech.xl.dataaccess.tcDataBase.loadRow(Unknown Source)
    at com.thortech.xl.dataaccess.tcDataBase.loadRows(Unknown Source)
    at com.thortech.xl.dataaccess.tcDataBase.loadResultSet(Unknown Source)
    at com.thortech.xl.dataaccess.tcDataBase.readPartialStatement(Unknown Source)
    at com.thortech.xl.dataobj.tcDataBase.readPartialStatement(Unknown Source)
    at com.thortech.xl.dataaccess.tcDataSet.executeQuery(Unknown Source)
    at com.thortech.xl.dataobj.tcDataSet.executeQuery(Unknown Source)
    at com.thortech.xl.dataaccess.tcDataSet.executeQuery(Unknown Source)
    at com.thortech.xl.dataobj.tcDataSet.executeQuery(Unknown Source)
    at com.thortech.xl.dataobj.util.tcSDCProperties.validateLookupQuery(Unknown Source)
    at com.thortech.xl.dataobj.tcSDP.isPropertyValid(Unknown Source)
    at com.thortech.xl.dataobj.tcSDP.eventPreInsert(Unknown Source)
    at com.thortech.xl.dataobj.tcDataObj.insert(Unknown Source)
    at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
    at com.thortech.xl.dataobj.tcTableDataObj.save(Unknown Source)
    at com.thortech.xl.dataobj.tcSDL.eventPostInsert(Unknown Source)
    at com.thortech.xl.dataobj.tcDataObj.insert(Unknown Source)
    at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
    at com.thortech.xl.dataobj.tcTableDataObj.save(Unknown Source)
    at com.thortech.xl.dataobj.tcSDK.createNewVersion(Unknown Source)
    at com.thortech.xl.ejb.databeansimpl.tcSDKBean.createNewVersion(Unknown Source)
    at com.thortech.xl.ejb.beans.tcSDK_jmpkyy_EOImpl.createNewVersion(tcSDK_jmpkyy_EOImpl.java:2472)
    at com.thortech.xl.ejb.beans.tcSDK_jmpkyy_EOImpl_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.activation.ActivatableServerRef.invoke(ActivatableServerRef.java:90)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:435)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:430)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:35)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)

    Try to increase the size of the table column.

  • BAPI to checkin file as new content version

    Hi,
    I am looking for a BAPI that allows me to checkin an original as a new content version via SAP JCo (similar to the "Check In as New Version" UI feature). I couldn't get it to work using the standard BAPIs BAPI_DOCUMENT_*
    Is there a remote capable standard BAPI that does the job?
    Regards
    Michael

    Hi Thierry,
    thanks for your quick response.
    I tried that one. I found it to checkin new files.
    With BAPI_DOCUMENT_CHECKIN_REPLACE2 I can replace originals.
    But I failed to create new content version of an existing orginal.
    Could you provide me with an example, of how to fill the BAPI parameters in order to create a new content version?
    Many thanks
    Michael

  • Trying to create a new movie.  It tells me to name my movie, and the only event choice is the last movie I made.  I don't want it there.  I'm lost and I'm just starting.  Not sure I like the new version.  Any help out there?

    I'm trying to create a new movie.  It tells me to name my movie, and the only event choice in the drop down menu is the last movie I made. IMovie Library is greyed out. I'm lost and I'm just starting.  Not sure I like the new version.  Any help out there?

    peggy818 wrote:
    … I'm lost and I'm just starting.  Not sure I like the new version.  …
    have a read in the Manual:
    http://help.apple.com/imovie/mac/10.0/?lang=en#mov755717b21

  • The new updated version of iMovie 10 won't let me open my previous files I created before the update today. I have a wedding that I'm trying to finish and deliver and now I can't because that file version won't open. I keep getting an error message

    Hello,
    Please help me figure this out. I'm very unhappy at the moment. I'm fustrated and don't have any idea how to revert to the original version before the update was done on iMovie 10. I NEVER hated APPLE until NOW!! I love APPLE products and apps so please help me stay in that mindset. So I worked on some movie projects when I got my macbook pro 6 months ago. I update reguarly. I saw the update prompt and honestly, I did not think I would have ANY issuess with opening my previous files that I created only a few months ago with this updated version.The new updated version of iMovie 10 won't let me open my previous files I created before the update today. I have a wedding that I'm trying to finish and deliver and now I can't because that file version won't open. I keep getting an error message and the iMovie app closes. Last night I saw the file and tried to open it but no luck. Error message came up again. I reboot and turned off my laptop for the evening and tried again just now but nothing!! I need that video. My job depends on it! I worked so hard on this wedding video and now it's lost and won't open. I work another job and don't have much time. I really don't want to start all over again. Please help me. Thanks so much for your assistance.
    Fustrated APPLE customer
    Jolly A. Rupp

    I also have Jolly's problem. I found the iMovie 9.0.9 folder and tried to launch the older version of iMove. It would not launch. I removed all of the iMovie preferences from the Preferences folder, removed iMove 10 from the applications folder, and restarted my Mac. iMove 9.0.9 still won't launch and I can't access my videos created with the older version of iMovie. Is there a way to uninstall iMovie 10 and reinstall iMovie 9.0.9?
    I am running Yosemitie on a  iMac.
    Paul

  • I just restored my 13" MBP i5 at the apple store to the newest version of Lion after issues with a previous Time Machine backup from Snow Leopard- this time I created a new account and just ported files and folders, and now MS Office doesn't work. Help?

    I just restored my 13" MBP i5 at the apple store to the newest version of Lion after issues with a previous Time Machine backup from Snow Leopard- this time I created a new account and just ported files and folders, and now MS Office doesn't work.
    ^^ that's the main problem. Here's the full history.
    I bought a new 13" i5 MBP, early 2011 edition. I had an old white Macbook 2.14 ghz core2duo on Snow Leopard. I attempted to port over my time machine backup, but encountered problems in that my User was inaccessible from the new computer after the import finished, and I had to go in and change the root password, etc, and for some reason or another, I couldn't install any programs at all from that administrator's account. By "couldn't" I mean I could install them, but upon installation they would never boot. So, I took it to the apple store and did a clean install from the most up to date Lion OSX. Then, I created a brand new admin account, instead of trying to import the old one, and things seemed great. Then, I just imported my old files from the TM backup, but not any system settings, permissions, or user data. Just my Docs, pics, vids, apps, and itunes stuff.
    Here's where things get weird again. I imported this stuff under the name "old", but all of these folders have a red negative sign on them, marking them as restricted. So, from my main admin account, I cannot even peruse these folders. Since I didn't import user data, I can't sign in to the "old" account to change permissions. I already tried to change the permissions from system preferences, but that didn't change anything. And now, for whatever reason, of all the apps that were imported then, MS Office is the only set of apps that does not work. When I click on it, it just says there was a problem and asks if I'd like to send a report to apple. I tried reinstalling it to no avail. I'm an English student, so i really need access to Word. Can anyone help? The Apple store is a major detour for me and would like to fix this issue myself.

    Most likely you have Office 2004 which are PPC-only applications and will not work in Lion. Upgrade to Office 2011. Other alternatives are:
    Apple's iWork suite (Pages, Numbers, and Keynote.)
    Open Office (Office 2007-like suite compatible with OS X.)
    NeoOffice (similar to Open Office.)
    LibreOffice (a new direction for the Open Office suite.)

  • I have bought a dvd of photoshop elements 12. I have installed it both as the licensed version and again as a trial version. I can open organiser but when I try to open editor it asks me to sign in. Ive tried it with my ID and also tried creating a new ID

    I have bought a dvd of photoshop elements 12. I have installed it both as the licensed version and again as a trial version. I can open organiser but when I try to open editor it asks me to sign in. Ive tried it with my ID and also tried creating a new ID with another email address. However i cant get past this screen  - it just freezes and wont load or do anything.

    Hi,
    Can you please elaborate what happens when you try to Sign in?
    Also , Can you please share the following logs at [email protected]:
    Go to %temp% folder and share PDApp.log , oobelib.log and amt3.log
    Thanks,
    Shikha

Maybe you are looking for