Unable to create a subtask within a task for cProjects

Hi All,
I am unable to create a subtask within a task using BAPI_BUS2175_CREATE. When I pass the GUID of the project definition and fill the corresponding task structures to the BAPI, a task gets created at the phase level. But when I pass the GUID of the task along with the task
information, subtask does not get created. The BAPI returns the following error message:
DPR_SHARED 051: You cannot create Task for (Task Name).
Steps for recreating the error message are:
1. GUID is found out using function module CONVERSION_EXIT_DPRCE_INPUT.
2. GUID and task information is passed to BAPI_BUS2175_CREATE.
3. Task is created if project definition GUID is passed, but if task GUID is passed, there is no subtask created. An error message is displayed:
DPR_SHARED 051: You cannot create Task for (Task Name).
Any help would be appreciated.
Thanks,
Tom

Hi all,
I have used the same and it works absolutely fine.
here is a code sample
CONSTANTS:
   lc_rfc_none        TYPE string VALUE 'NONE'.       " RFC on same server
DATA:
  lv_header_task_guid TYPE bapi_ts_guid-parent_guid, " Header Task GUID
  ls_sub_task TYPE bapi_ts_task,
  ls_sub_task_upd TYPE bapi_ts_task_upd,
  lt_crtask_return TYPE TABLE OF bapiret2,
  ls_extension_in TYPE bapiparex,
  ls_extension_out TYPE bapiparex,
  lv_task_guid TYPE bapi_ts_guid-parent_guid. " Task GUID
* Assign sub-task name. (Task Number is internally generated)
ls_sub_task-task_name = 'ST 1.1'.
ls_sub_task_upd-task_name = 'X'.
* Assign Sort Number
ls_sub_task-sort_number = '00010'.
ls_sub_task_upd-sort_number = 'X'.
* Assign Duration
ls_sub_task-duration = 30.
ls_sub_task_upd-duration = 'X'.
* Assign Work.
ls_sub_task-planned_work = 240.
CALL FUNCTION 'CONVERSION_EXIT_CUNIT_INPUT'
  EXPORTING
    input          = 'H'
  IMPORTING
    output         = ls_sub_task-planned_work_unit
  EXCEPTIONS
    unit_not_found = 1
    OTHERS         = 2.
IF sy-subrc <> 0.
ENDIF.
ls_sub_task_upd-planned_work = 'X'.
ls_sub_task_upd-planned_work_unit = 'X'.
CALL FUNCTION 'BAPI_BUS2175_CREATE'
     DESTINATION lc_rfc_none
     EXPORTING
         iv_parent_guid   = lv_header_task_guid
         is_task          = ls_sub_task
         is_task_upd      = ls_sub_task_upd
         is_extension_in  = ls_extension_in
      IMPORTING
         es_extension_out = ls_extension_out
     TABLES
         return           = lt_crtask_return.
* If task is successfully created,
READ TABLE lt_crtask_return WITH KEY type = lc_success number = '114'.
IF sy-subrc = 0.
* Get task GUID
lv_task_guid = lt_crtask_return-message_v1.
CALL FUNCTION 'BAPI_CPROJECTS_COMMIT_WORK'
  DESTINATION
    lc_rfc_none
  TABLES
    return = lt_bapiret2.
endif.
In order to find the GUID of the header task use function module:
DPR_GET_GUID_BY_ID_FROM_DB
with IV_Number  = task number for the header task and IV_OBJECT_TYPE = TTO
Read the documentation for 'BAPI_BUS2175_CREATE' before using it.
make sure you have maintained IS_TASK_UPDATE structure as well.
Regards,
Reema.

Similar Messages

  • Unable to create SC since commitment already exist for IO

    Hi SAP Guru
    SRM 5.0 / Extended Classic  Scenario / CCM2.0
    1) User has created one shopping Cart  with two line items
    2) Distributed the First Line item to two quantities with different account assignment of internal orders :-
    Quantity 46,090 to IO 20003620
    Quantity 2811 to  IO 20003585
    User has created the credit memo for Quantity 2811 and cancelled the confirmation for this quantity too.
    But still he is saying that seeing the commitment for quantity 2811 in internal order 20003585 and because of that unable to create another SC using this internal order.
    Thanks & Regards
    Jayoti

    Hello Pruthvi ,
    See these threads
    Uninstalling MaxDB
    Work process Ended.
    Thanks
    Chandran

  • Unable to create Keynote Keynote in 2048x1536 px. for iPad w/ retina display. This option doesn't appear under "Slide Size". Keynote 5.1.1.

    I have tried creating a Keynote document for iPad 3 but 2048x1536 does not appear under thre options for slide size.
    The biggest is 1920x1080. I have updated all software and Keynote is on the latest version 5.1.1. I have tried on two different machines but I get the same issue.
    Any ideas what it could be?
    Any help appreciated.
    Thanks.

    you create a custom size:
    inspector > document > slide size

  • Unable to create  followup and view transaction types for InteractionRecord

    Hi,
    We are currently working in crm 7.0 environment.
    we are not able to create followup transaction for Interaction Record -
    Transaction Type -  Business activity(0010).
    We are not even able to view the standard transaction types available
    when we select followup both in UI and GuI.
    Any inputs in this regard are rewarded and appreciated.

    Hi sreenicrm,
    Have you configured anything in the "Allowed Channels for transaction types".
    If not, it may be worth copying the standard transation type and then setting the values in the above screens.
    if you set a values of "interaction Center"(IAC) and "CRM Server"(GUI) then you shoudl see the activity.
    I am using CRM 5.0 but would imaging it is similar in 7.0.
    HTH
    Gaz

  • Unable to create a data base

    Hi
    I'm just trying to create a database in webmatrix by following steps :
    database>new database>filling the fields username : root and password :root >Here I have this error : "unable to connect to any of the specified MySQL hosts"
    I unstalled the mySQL and Installed it agaain , but in any of it's steps It didn't want the user or pass ! :-?
    but my problem didn't fixed 
    I copied the error details here :
    Unable to connect to any of the specified MySQL hosts.
    MySql.Data.MySqlClient.MySqlException (0x80004005): Unable to connect to any of the specified MySQL hosts.
       at MySql.Data.MySqlClient.NativeDriver.Open()
       at MySql.Data.MySqlClient.Driver.Open()
       at MySql.Data.MySqlClient.Driver.Create(MySqlConnectionStringBuilder settings)
       at MySql.Data.MySqlClient.MySqlPool.GetPooledConnection()
       at MySql.Data.MySqlClient.MySqlPool.TryToGetDriver()
       at MySql.Data.MySqlClient.MySqlPool.GetConnection()
       at MySql.Data.MySqlClient.MySqlConnection.Open()
       at Microsoft.WebMatrix.DatabaseManager.MySqlDatabase.MySqlDatabaseProvider.TestConnection(String connectionString)
       at Microsoft.WebMatrix.DatabaseManager.IisDbManagerModuleService.TestConnection(DatabaseConnection databaseConnection, String configPathState)
       at Microsoft.WebMatrix.DatabaseManager.Client.ClientConnection.Test(ManagementConfigurationPath configPath)
       at Microsoft.WebMatrix.DatabaseManager.Client.DatabaseHierarchyInfo.EnsureLoaded()

    My problem changed
    I reinstalled MySQL and proceeded to Excute level
    there had this error
    Unable to create new database.
    Access denied for user 'root'@'localhost' (using password: YES)
    and also in webmatrix :
    Unable to create new database.
    Access denied for user 'root'@'localhost' (using password: YES)
    MySql.Data.MySqlClient.MySqlException (0x80004005): Access denied for user 'root'@'localhost' (using password: YES)
       at MySql.Data.MySqlClient.MySqlStream.ReadPacket()
       at MySql.Data.MySqlClient.NativeDriver.AuthenticateNew(Boolean reset)
       at MySql.Data.MySqlClient.NativeDriver.Authenticate(Boolean reset)
       at MySql.Data.MySqlClient.NativeDriver.Open()
       at MySql.Data.MySqlClient.Driver.Open()
       at MySql.Data.MySqlClient.Driver.Create(MySqlConnectionStringBuilder settings)
       at MySql.Data.MySqlClient.MySqlPool.GetPooledConnection()
       at MySql.Data.MySqlClient.MySqlPool.TryToGetDriver()
       at MySql.Data.MySqlClient.MySqlPool.GetConnection()
       at MySql.Data.MySqlClient.MySqlConnection.Open()
       at Microsoft.WebMatrix.DatabaseManager.MySqlDatabase.MySqlDatabaseProvider.CreateDatabase(String adminConnectionString, String databaseName, String userName, String password)
       at Microsoft.WebMatrix.DatabaseManager.IisDbManagerModuleService.CreateDatabase(DatabaseConnection databaseConnection, String configPathState)
       at Microsoft.WebMatrix.DatabaseManager.Client.DBManagerController.CreateDatabase(ProviderInfo providerInfo, DatabaseConnection databaseConnection)
       at Microsoft.WebMatrix.DatabaseManager.Client.DBManagerController.<>c__DisplayClassa.<AddDatabase>b__6()
       at System.Threading.Tasks.Task.InnerInvoke()
       at System.Threading.Tasks.Task.Execute()
    Hi,
    I am afraid that this is not the proper forum for this issue, since this issue is related to MySQL which belongs to third-party.
    I would suggest you post this issue in the other popular forum or connect with its publisher to get help.
    Reference:
    http://forums.mysql.com/
    In addition, you could check whether you could log with that user account to narrow down this issue.
    Thanks for your understanding.
    Regards.
    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.

  • 2008 Failover cluster unable to create computer account

    Hello,
    I have created a 2008 R2 Failover cluster and I am trying to add a Fail over File server to this.
    I get the dreaded
    Cluster network name resource 'OfMaClusterFS' failed to create its associated computer object in domain 'xxx.domain' for the following reason: Unable to create computer account.
    The text for the associated error code is: Access is denied.
    Please work with your domain administrator to ensure that:
    - The cluster identity 'OFMACLUSTER$' can create computer objects. By default all computer objects are created in the 'Computers' container; consult the domain administrator if this location has been changed.
    - The quota for computer objects has not been reached.
    - If there is an existing computer object, verify the Cluster Identity 'OFMACLUSTER$' has 'Full Control' permission to that computer object using the Active Directory Users and Computers tool.
    I have created clusters frequently in the past, on my own Domains that I am a domain admin of.  Now I am trying to make one on our larger corporate domain that I am not a domain admin of and get this error.
    By default, domain users can not add computer accounts to our domain.  I do however have an limited account that can add computers to the domain... but I have tried all the tricks I can think of to try and add the Network name to AD and no luck.#
    I have tried running the cluster service with this account, but it is still trying to use the OFMACLUSTER$ identity to create the Network name.  I have tried manually creating the network name using my limited account, but that doesn't work either,
    same error.  I don't have the ability to change permissions on the computer name I added for the network name to AD.
    I have raised a ticket to our wintel team to try and get them to help, but they aren't exactly the most responsive bunch.  I'm just wondering what the best way around this problem is if I am not a domain admin and I can't make the changes I need, or
    what concise instructions I can give to the domain admins so that they can help me out without saying that it is a security breach etc.
    I would appreciate any advice on this as it's now urgent and also something I will have to do in the future fairly regularly and don't want to get caught in the situation in the future.

    Hi jogdial,
    To create a cluster, the minimum permission is: Requires administrative permissions on the servers that will become cluster nodes. Also requires
    Create Computer objects and Read All Properties permissions in the container that is used for computer accounts in the domain.
    If you create the cluster name account (cluster name object) before creating the cluster—that is, prestage the account—you must give it the
    Create Computer objects and Read All Properties permissions in the container that is used for computer accounts in the domain. You must also disable the account, and give
    Full Control of it to the account that will be used by the administrator who installs the cluster.
    The related KB:
    Failover Cluster Step-by-Step Guide: Configuring Accounts in Active Directory
    http://technet.microsoft.com/en-us/library/cc731002(v=ws.10).aspx
    More information:
    How to Create a Cluster in a Restrictive Active Directory Environment
    http://blogs.msdn.com/b/clustering/archive/2012/03/30/10289577.aspx
    I’m glad to be of help to you!
    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.

  • DeploymentException: Unable to create folder

    Hello,
    i'm developing some enterprise service on a NetWeaver CE SP1 plattform and sometimes while deploying i encounter a DeploymentException: Unable to create folder. Whats the reason for this exception?
    I can only resolve it with restarting the server and deploy the projects again...
    regards,
    Matthias
    1. Exception has been returned while the '<application>_start_ccbpmear' was starting. Warning/Exception :
    Error occurred while starting application <application>_start_ccbpmear and wait.
    Reason: Clusterwide exception: server ID 14616650:com.sap.engine.services.deploy.container.DeploymentException: Unable to create folder <root>\<application>_start_ccbpmear\EJBContainer\applicationjars
         at com.sap.engine.services.ejb3.container.ContainerInterfaceImpl$Actions.perform(ContainerInterfaceImpl.java:880)
         at com.sap.engine.services.ejb3.container.ContainerInterfaceImpl.makeStartInitially(ContainerInterfaceImpl.java:758)
         at com.sap.engine.services.deploy.server.application.StartInitiallyTransaction.makeStartInitially(StartInitiallyTransaction.java:181)
         at com.sap.engine.services.deploy.server.application.StartInitiallyTransaction.prepare(StartInitiallyTransaction.java:143)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:393)
         at com.sap.engine.services.deploy.server.application.StartTransaction.doStartInitiallyGlobal(StartTransaction.java:428)
         at com.sap.engine.services.deploy.server.application.StartTransaction.doStartInitially(StartTransaction.java:416)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepare(StartTransaction.java:170)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:393)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:418)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.super_MakeAllPhases(ParallelAdapter.java:318)
         at com.sap.engine.services.deploy.server.application.StartTransaction.makeAllPhasesImpl(StartTransaction.java:533)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.runInTheSameThread(ParallelAdapter.java:230)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesAndWait(ParallelAdapter.java:374)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:2955)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:2885)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:2861)
         at com.sap.engine.services.dc.lcm.impl.J2EELCMProcessor.doStart(J2EELCMProcessor.java:98)
         at com.sap.engine.services.dc.lcm.impl.LifeCycleManagerImpl.start(LifeCycleManagerImpl.java:62)
         at com.sap.engine.services.dc.cm.deploy.impl.LifeCycleManagerStartVisitor.visit(LifeCycleManagerStartVisitor.java:31)
         at com.sap.engine.services.dc.cm.deploy.impl.DeploymentItemImpl.accept(DeploymentItemImpl.java:83)
         at com.sap.engine.services.dc.cm.deploy.impl.DefaultDeployPostProcessor.postProcessDeplItem(DefaultDeployPostProcessor.java:70)
         at com.sap.engine.services.dc.cm.deploy.impl.DefaultDeployPostProcessor.postProcess(DefaultDeployPostProcessor.java:58)
         at com.sap.engine.services.dc.cm.deploy.impl.DeployerImpl.doPostProcessing(DeployerImpl.java:646)
         at com.sap.engine.services.dc.cm.deploy.impl.DeployerImpl.performDeploy(DeployerImpl.java:637)
         at com.sap.engine.services.dc.cm.deploy.impl.DeployerImpl.doDeploy(DeployerImpl.java:488)
         at com.sap.engine.services.dc.cm.deploy.impl.DeployerImpl.deploy(DeployerImpl.java:209)
         at com.sap.engine.services.dc.cm.deploy.impl.DeployerImpl.deploy(DeployerImpl.java:154)
         at com.sap.engine.services.dc.cm.deploy.impl.DeployerImplp4_Skel.dispatch(DeployerImplp4_Skel.java:875)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:351)
         at com.sap.engine.services.rmi_p4.server.ServerDispatchImpl.run(ServerDispatchImpl.java:70)
         at com.sap.engine.services.rmi_p4.P4Message.process(P4Message.java:61)
         at com.sap.engine.services.rmi_p4.P4Message.execute(P4Message.java:36)
         at com.sap.engine.services.cross.fca.FCAConnectorImpl.executeRequest(FCAConnectorImpl.java:882)
         at com.sap.engine.services.rmi_p4.P4Message.process(P4Message.java:52)
         at com.sap.engine.services.cross.fca.MessageReader.run(MessageReader.java:59)
         at com.sap.engine.core.thread.execution.Executable.run(Executable.java:108)
         at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:287)
    Caused by: com.sap.engine.services.ejb3.container.ActionException: Unable to create folder <root>\<application>_start_ccbpmear\EJBContainer\applicationjars
         at com.sap.engine.services.ejb3.container.FSMakeFolder.perform(FSMakeFolder.java:48)
         at com.sap.engine.services.ejb3.container.CompositeAction.perform(CompositeAction.java:81)
         at com.sap.engine.services.ejb3.container.ContainerInterfaceImpl$Actions.perform(ContainerInterfaceImpl.java:874)
         ... 37 more

    Hi,
    This usually happens when the undeployment is not done properly. Alternatively, you can undeploy the application through SDM and then deploy it again to solve this problem.
    Thanks,
    S-B

  • Error during BCC base data import:  Unable to create class DeploymentServer

    Unable to create class atg.deployment.server.DeploymentServer for configuration /atg/epub/DeploymentServer java.lang.NoClassDefFoundError
    Hello~~~. Can anyone point me into the right direction
    I had checked my class path it got atg.deployment.server.DeploymentServer.
    and the 'legacy' /atg/epub/DeploymentServe looks like (which is doing nothing...really)
    #/atg/epub/DeploymentServer/
    #/atg/epub/DeploymentServer property allowMissingNonEssentialAgents is set to true. By default, this property is set to false. If set to false, unessential agents are treated like essential agents and must be online and functional during deployment.
    #All agents that are flagged as essential are online and functional.
    #allowMissingNonEssentialAgents     false
    ----------stack trace error ---------------
    [exec] **** info     Wed Mar 07 10:20:01 EST 2012     1331076001656     /DPSLicense     atg.service.ServiceResources->dynamoPrintMaxSessions : Only 20 concurrent sessions can be managed with this license
    [exec] **** info     Wed Mar 07 10:20:01 EST 2012     1331076001656     /DPSLicense     atg.service.ServiceResources->dynamoPrintMaxDynamoServers : Only 3 Dynamo server(s) can be used concurrently with this license
    [exec] **** info     Wed Mar 07 10:20:01 EST 2012     1331076001656     /DPSLicense     DPS is licensed to Hutchison 3G Australia Pty Limited - Development
    [exec] **** info     Wed Mar 07 10:20:01 EST 2012     1331076001656     /DPSLicense     atg.service.ServiceResources->unlimitedLicenseMsg : This product is licensed for an unlimited number of CPUs.
    [exec] **** info     Wed Mar 07 10:20:03 EST 2012     1331076003062     /atg/epub/version/VersionManagerRepository     SQL Repository startup complete
    [exec] **** info     Wed Mar 07 10:20:03 EST 2012     1331076003203     /atg/dynamo/server/SQLRepositoryEventServer     Service /atg/dynamo/server/SQLRepositoryEventServer listening at http://cgi-hxc15q12:3040/
    [exec] **** info     Wed Mar 07 10:20:03 EST 2012     1331076003265     /atg/epub/process/ProcessData-ver     SQL Repository startup complete
    [exec] **** info     Wed Mar 07 10:20:03 EST 2012     1331076003281     /atg/epub/process/ProcessDataRepository     SQL Repository startup complete
    [exec] **** info     Wed Mar 07 10:20:03 EST 2012     1331076003390     /atg/epub/file/PublishingFiles-ver     SQL Repository startup complete
    [exec] **** info     Wed Mar 07 10:20:03 EST 2012     1331076003421     /atg/epub/file/PublishingFileRepository     SQL Repository startup complete
    [exec] **** info     Wed Mar 07 10:20:03 EST 2012     1331076003781     /atg/userprofiling/InternalProfileRepository     SQL Repository startup complete
    [exec] **** info     Wed Mar 07 10:20:03 EST 2012     1331076003890     /atg/dynamo/security/AdminSqlRepository     SQL Repository startup complete
    [exec] **** info     Wed Mar 07 10:20:03 EST 2012     1331076003890     /atg/dynamo/security/AdminAccountInitializer     Initializing account database /atg/dynamo/security/AdminAccountManager from /atg/dynamo/security/SimpleXmlUserAuthority
    [exec] Nucleus running
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004453     /     Unable to create class atg.deployment.server.DeploymentServer for configuration /atg/epub/DeploymentServer java.lang.NoClassDefFoundError: javax/ejb/FinderException
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /     Unable to resolve component /atg/epub/Configuration      java.lang.NoClassDefFoundError: javax/ejb/FinderException
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at java.lang.Class.forName0(Native Method)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at java.lang.Class.forName(Class.java:242)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.PropertyEditors.getPropertyEditor(PropertyEditors.java:254)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.BeanConfigurator.getProperty(BeanConfigurator.java:731)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.BeanConfigurator.configureStateProperty(BeanConfigurator.java:683)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.BeanConfigurator.configureStateProperty(BeanConfigurator.java:594)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.BeanConfigurator.configureState(BeanConfigurator.java:418)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.PropertyConfiguration.configureState(PropertyConfiguration.java:809)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.PropertyConfiguration.configureService(PropertyConfiguration.java:748)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.SingleNucleusConfigurator.configureService(SingleNucleusConfigurator.java:62)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.NucleusNameResolver.configureService(NucleusNameResolver.java:1319)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.NucleusNameResolver.configureAndStartService(NucleusNameResolver.java:1119)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:787)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:569)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:550)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.NucleusNameResolver.resolveName(NucleusNameResolver.java:394)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.NucleusNameResolver.resolveName(NucleusNameResolver.java:1051)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.ConfigurationRef.getValue(ConfigurationRef.java:81)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.ConfigurationRefProperty.getValue(ConfigurationRefProperty.java:82)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.SimpleComponentState.setBeanProperty(SimpleComponentState.java:357)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.SimpleConfigurationState.saveToBean(SimpleConfigurationState.java:218)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.SimpleConfigurationState.configureBean(SimpleConfigurationState.java:241)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.BeanConfigurator.configureBean(BeanConfigurator.java:275)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.PropertyConfiguration.configureService(PropertyConfiguration.java:752)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.SingleNucleusConfigurator.configureService(SingleNucleusConfigurator.java:62)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.NucleusNameResolver.configureService(NucleusNameResolver.java:1319)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.NucleusNameResolver.configureAndStartService(NucleusNameResolver.java:1119)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:787)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:569)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:550)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.NucleusNameResolver.resolveName(NucleusNameResolver.java:394)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.NucleusNameResolver.resolveName(NucleusNameResolver.java:1051)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.ConfigurationRefArray.getValue(ConfigurationRefArray.java:146)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.SimpleComponentState.setBeanProperty(SimpleComponentState.java:357)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.SimpleConfigurationState.saveToBean(SimpleConfigurationState.java:218)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.SimpleConfigurationState.configureBean(SimpleConfigurationState.java:241)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.BeanConfigurator.configureBean(BeanConfigurator.java:275)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.PropertyConfiguration.configureService(PropertyConfiguration.java:752)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.SingleNucleusConfigurator.configureService(SingleNucleusConfigurator.java:62)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.NucleusNameResolver.configureService(NucleusNameResolver.java:1319)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.NucleusNameResolver.configureAndStartService(NucleusNameResolver.java:1119)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:787)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:569)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:550)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.NucleusNameResolver.resolveName(NucleusNameResolver.java:394)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.Nucleus.resolveName(Nucleus.java:2648)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.GenericService.resolveName(GenericService.java:315)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.nucleus.GenericService.resolveName(GenericService.java:367)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.adapter.gsa.xml.TemplateParser.runParser(TemplateParser.java:5498)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /          at atg.adapter.gsa.xml.TemplateParser.main(TemplateParser.java:5072)
    [exec] **** Error     Wed Mar 07 10:20:04 EST 2012     1331076004484     /

    The class that is missing is javax/ejb/FinderException
    Download one of the jars from below site and add it to classpath. Then build the ear again and restart the server.
    http://www.jarfinder.com/index.php/java/info/javax.ejb.FinderException
    Peace
    Shaik

  • Unable to create Human Task and Business Rule in JDeveloper

    Hello,
    I am unable to create Human Task or business rule in my JDev... am getting below error in Feedback tab.
    Previously reported error [NoSuchMethodError in o.mds.internal.dt.config.NamespaceConfigBuilder:397]
    And Below is the message log trace.
    Oct 15, 2012 12:58:51 PM oracle.security.jps.internal.common.util.StrictValidationEventHandler handleEvent
    WARNING: Failed to validate the xml content. SchemaLocation: schemaLocation value = 'http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd' must have even number of URI's. Location: unavailable.
    Oct 15, 2012 12:58:51 PM oracle.security.jps.internal.common.util.StrictValidationEventHandler handleEvent
    WARNING: Failed to validate the xml content. cvc-complex-type.2.4.b: The content of element 'propertySets' is not complete. One of '{"http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd":propertySet}' is expected. Location: unavailable.
    Oct 15, 2012 12:58:51 PM oracle.jps.common
    WARNING: Failed to validate the xml content. cvc-complex-type.2.4.b: The content of element 'propertySets' is not complete. One of '{"http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd":propertySet}' is expected. Location: line 3 column 19.
    Any idea/suggestions would be greatly helpful.
    Thanks,
    Sudheer

    Its due to JDeveloper installation or cache issue...
    I uninstalled completely and installed again. I am able to create Human Task now. Maybe it helps someone.
    -Sudheer

  • Unable to Create Sub Task

    I work for a Government Organization. We have Oracle Projects and Grants
    One of Users wanted to delete a Sub-Task, but by mistake deleted the "TOP TASK" Now when we create the Top task Oracle saves it. But when we create a Sub Task for that, it gives and error "Task Number is not Unique"???
    Can someone tell me how to get around this issue?

    You can use Powershell to create a Feature Pack that will add multiple features to a tenant group.  Here's one for the default Foundation Features.
    http://gallery.technet.microsoft.com/office/SharePoint-2013-Foundation-d3d1637f
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Two related tasklists (Main/sub) with a workflow creating multiple subtasks for each maintask

    Hey folks!
    I'm really a SP-freshmen and i need a no-code solution (the farm doesn't really allow custom-code).
    So this is what I've got:
    A list called "ManagementDB" based on two columns, Work-teams (like HR/Sales) and the current head-manager of the specific work-team.
    - IT will most likely manage this list while others may just read it.
    A task list called Sub-tasks which will contain each subtask for the main ones.
    - A Manager will finnish this task.
    Another task list called Main-tasks, which (obviously) will be occupied by main-tasked referenced to subtasks.
    - A Boss will be creating these tasks.
    A Boss will go in to the Main-task list and create a new Task, for example "Check your employees vacationplans". As the Boss creates the main-task he will choose what teams that should do the task(like Sales/HR, remember this
    is within a lookup from the "ManagementDB" list). Then there's separate task created in the sub-tasklist for each team chosen in the maintask creation.
    As looping isn't possible within a SPD Workflow and as the lookup column containing all the choices is only a string in the workflow(Seperated with ";", like this: "HR; SALES; FINANCE") I'm really not seeing a good way of doing
    this.
    There are 80 different work-teams with managers and the best solution would be if the workflow were "flexible" rather then static (which is so far the only way I've managed to do this).
    Kr,
    Lankus 

    Without code, we're limited in our options in SP2010. If you move to SP2013, we can use loops and this is (fairly) easy to accomplish. Without it, the best option would probably be to do InfoPath. You could create a repeating table within a task that shows
    the subtasks.
    Andy Wessendorf SharePoint Developer II | Rackspace [email protected]

  • Unable to create image buffer after RAM preview

    Running into an odd and frustrating error. Built a comp using the new Ray-traced 3D renderer and now I'm regretting being an early adopter big time with all the problems I've been encountering with it. The latest comes whenever I do a longer RAM preview in an attempt to watch the whole duration of my comp. It will get to about 170 frames or so, at which point I've interrupted by pressing spacebar because I don't need to see all the way to the end of my work area (around 220 frames). It'll play the RAM preview back fine, and even loop it, but as soon as I stop playback, I get this error message: "After Effects warning: Unable to create image buffer." There's only one button: "okay" and as soon as I click it the same error pops up again and it will never go away, forcing me to close AE from the task manager. I've taken to saving before every RAM preview like I used to do with Flash before previewing my buggy swfs for fear I'll lose all my work after previewing. Any ideas about what might be causing this?
    Some more details about my comp:
    1920x1080 @ 29.97
    Ray-traced 3D
    About 70 3D layers (I'm guessing this is my downfall - new renderer not designed for this many layers?)
    Running Windows 7 Professional
    i7 2600K
    32GB RAM
    2x GTX 570 video cards running latest driver (301.42, CUDA 4.2.1)
    508GB free on my 2TB internal drive where the project and cache lives
    From my GPU info window in case it's useful:
    Fast Draft:
    Available
    Texture Memory:
    600.00 MB
    Ray-tracing:
    GPU
    OpenGL
    Vendor:
    NVIDIA Corporation
    Device:
    GeForce GTX 570/PCIe/SSE2
    Version:
    3.0.0
    Total Memory:
    1.20 GB
    Shader Model:
    4.0 or later
    CUDA
    Driver Version:
    4.2
    Devices:
    2 (GeForce GTX 570, GeForce GTX 570)
    Current Usable Memory:
    1.04 GB (at application launch)
    Maximum Usable Memory:
    1.25 GB

    Yeah, some buffer is very likely not flushing when you interrupt the preview and then there is no more memory on the graphics hardware. Consider setting the work area and your preview options to use only the work area. if it finishes the preview "correctly", it may not suffer the issue. Beyond that - raytracing doesn't/ shouldn't care about the number of items. The math is such, that it makes no difference whether you render a million polygons or just one. Of course there are still limitations due to the GPU dependency, but I doubt you ever truly exhaust the cards' geometry buffers. Compared to pixel data that is a small amount...
    Mylenium

  • Unable to create cluster, hangs on forming cluster

     
    Hi all,
    I am trying to create a 2 node cluster on two x64 Windows Server 2008 Enterprise edition servers. I am running the setup from the failover cluster MMC and it seems to run ok right up to the point where the snap-in says creating cluster. Then it seems to hang on "forming cluster" and a message pops up saying "The operation is taking longer than expected". A counter comes up and when it hits 2 minutes the wizard cancels and another message comes up "Unable to sucessfully cleanup".
    The validation runs successfully before I start trying to create the cluster. The hardware involved is a HP EVA 6000, two Dell 2950's
    I have included the report generated by the create cluster wizard below and the error from the event log on one of the machines (the error is the same on both machines).
    Is there anything I can do to give me a better indication of what is happening, so I can resolve this issue or does anyone have any suggestions for me?
    Thanks in advance.
    Anthony
    Create Cluster Log
    ==================
    Beginning to configure the cluster <cluster>.
    Initializing Cluster <cluster>.
    Validating cluster state on node <Node1>
    Searching the domain for computer object 'cluster'.
    Creating a new computer object for 'cluster' in the domain.
    Configuring computer object 'cluster' as cluster name object.
    Validating installation of the Network FT Driver on node <Node1>
    Validating installation of the Cluster Disk Driver on node <Node1>
    Configuring Cluster Service on node <Node1>
    Validating installation of the Network FT Driver on node <Node2>
    Validating installation of the Cluster Disk Driver on node <Node2>
    Configuring Cluster Service on node <Node2>
    Waiting for notification that Cluster service on node <Node2>
    Forming cluster '<cluster>'.
    Unable to successfully cleanup.
    To troubleshoot cluster creation problems, run the Validate a Configuration wizard on the servers you want to cluster.
    Event Log
    =========
    Log Name:      System
    Source:        Microsoft-Windows-FailoverClustering
    Date:          29/08/2008 19:43:14
    Event ID:      1570
    Task Category: None
    Level:         Critical
    Keywords:     
    User:          SYSTEM
    Computer:      <NODE 2>
    Description:
    Node 'NODE2' failed to establish a communication session while joining the cluster. This was due to an authentication failure. Please verify that the nodes are running compatible versions of the cluster service software.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-FailoverClustering" Guid="{baf908ea-3421-4ca9-9b84-6689b8c6f85f}" />
        <EventID>1570</EventID>
        <Version>0</Version>
        <Level>1</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2008-08-29T18:43:14.294Z" />
        <EventRecordID>4481</EventRecordID>
        <Correlation />
        <Execution ProcessID="2412" ThreadID="3416" />
        <Channel>System</Channel>
        <Computer>NODE2</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <EventData>
        <Data Name="NodeName">node2</Data>
      </EventData>
    </Event>
    ====
    I have also since tried creating the cluster with the firewall and no success.
    I have tried creating the node from the other cluster and this did not work either
    I tried creating a cluster with just  a single node and this did create a cluster. I could not join the other node and the network name resource did not come online either. The below is from the event logs.
    Log Name:      System
    Source:        Microsoft-Windows-FailoverClustering
    Date:          01/09/2008 12:42:44
    Event ID:      1207
    Task Category: Network Name Resource
    Level:         Error
    Keywords:     
    User:          SYSTEM
    Computer:      Node1.Domain
    Description:
    Cluster network name resource 'Cluster Name' cannot be brought online. The computer object associated with the resource could not be updated in domain 'Domain' for the following reason:
    Unable to obtain the Primary Cluster Name Identity token.
    The text for the associated error code is: An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client.
    The cluster identity 'CLUSTER$' may lack permissions required to update the object. Please work with your domain administrator to ensure that the cluster identity can update computer objects in the domain.

    I am having the exact same issue... but these are on freshly created virtual machines... no group policy or anything...
    I am 100% unable to create a Virtual Windows server 2012 failover cluster using two virtual fiber channel adapters to connect to the shared storage.
    I've tried using GUI and powershell, I've tried adding all available storage, or not adding it, I've tried renaming the server and changing all the IP addresses....
    To reproduce:
    1. Create two identical Server 2012 virtual machines
    (My Config: 4 CPU's, 4gb-8gb dynamic memory, 40gb HDD, two network cards (one for private, one for mgmt), two fiber cards to connect one to each vsan.)
    2. Update both VM's to current windows updates
    3. Add Failover Clustering role, Reboot, and try to create cluster.
    Cluster passed all validation tests perfectly, but then it gets to "forming cluster" and times out =/
    Any assistance would be greatly appreciate.

  • SRM 7.0  Unable to create PO - Classic Scenario.

    Hello,
    We are able to successfully create the below scenario.
    PR in ECC --> Get PR in SRM --> Start Collective processing -> Transfer to Central System (SC is created for the PR @ this time) --> Create RFx --> Rfx Response --> Create PO. (PO is created in ERP, Classic Scenario)
    We are able to get the PR & we are able to create SC successfully and the PR/ SC is available in Sourcing cocpit.
    Able to create RFx --> Rfx Response.
    Now once the RFx Response is Accepted --> We go for creating PO.
    Classic Scenario.
    The error is due to pricing - debugged and checked as mentioned in my earlier message.
    IPC pricing is switched off and the BADI for simple pricing is activated.
    Error :   " Message A BBP_PD 396 cannot be processed in plugin mode HTTP "
    But this is due to pricing is what i guess.
    Error is raised in FM "BBP_PDPRC_UPDATE".
    Kindly Suggest.
    Unable to Create PO
    Regards.
    Edited by: Purshothaman P on Jul 6, 2010 1:50 PM

    Hi,
    Please check and run the following reports (se38): BBP_CND_CUSTOMIZING_CHECK & RSVMCRT_HEALTH_CHECK and post back the results.
    Note for BBP_CND_CUSTOMIZING_CHECK also run 'Simulation of Pricing with Manual Price' (scroll down after executing the report initially).
    Also the badi information you activated tells us a lot. Although i take it that you executed and read everything that's included in the transaction information. The following sentence gives a prety doubtfull feeling for the CPPR scenario to work for your configuration:
    SAP recommends using this BAdI only in exceptional cases and only after checking thoroughly if it is compatible with the Business Scenarios used.
    Note: From what i've just read IPC has to be disabled, certain badi's etc. need to be disabled. And VMC (sap basis) has to be configured. Please view: [http://help.sap.com/SCENARIOS_BUS2008/helpdata/EN/9C/F90B7CB34A4889935D1733C6756D5B/content.htm]
    Could you also please check and provide whether 'normal' SRM classic scenarios like: SC -> PO do run within your system. Also the error and information you have provided is very little.
    Kind regards,
    Tim

  • Unable to create database error

    Hello all-
    I've been working on a project in Robohelp7/HTML for about a
    week. I come in today and try to open my project and receive the
    error "Unable to create database. Check that the directory is not
    read-only.". I've done the obvious of checking the folders and
    files within and they are not marked read only. When I create a new
    project, I receive the same error. I'm stuck at a standstill and
    can't figure out why Robohelp has decided to deny me access to my
    project or the ability to create new ones. I went so far as to
    uninstall and reinstall, to no avail.
    Has anyone encountered this? Any help would be greatly
    appreciated.
    Thanks

    There is a topic on Opening RoboHelp Projects on my site. Rh allows you to browse to either an XPJ or HHP file but that is only as good as the last time you generated an output.
    When you open with an HHP you get an option to use the XPJ or not, in which case one is created. Either way there should be an XPJ. Not sure how you have lost it.
    Backup?
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

Maybe you are looking for