Regarding creating task using BAPI_ACTIVITYCRM_CREATEMULTI

*w_partner-REF_GUID           = g_guid.
*w_partner-REF_HANDLE         = c_ref_handle.              "reference handle '0000000001'
w_partner-REF_KIND           = c_ref_kind.                " object type A(admin header),B,C,D,E
w_partner-REF_PARTNER_HANDLE = '0001'.                    " count parmameter
w_partner-REF_PARTNER_FCT    = '00000009'.                " partner function for activity partner
w_partner-REF_PARTNER_NO     = '0000000742'.              " sales prospect /activity partner bp no
w_partner-REF_NO_TYPE        = c_type.                    " ref no type BP , EX ,O .........
w_partner-REF_DISPLAY_TYPE   = c_type.                    " display type BP.......
w_partner-KIND_OF_ENTRY      = c_kind_entry.              " kind of entry a,b,c......
w_partner-MAINPARTNER        = c_update.
APPEND  w_partner to t_partner.
CLEAR  w_partner.
*w_partner-REF_GUID           = g_guid.
*w_partner-REF_HANDLE         = c_ref_handle.
w_partner-REF_KIND           = c_ref_kind.
w_partner-REF_PARTNER_HANDLE = '0002'.                    " count parmameter +1
w_partner-REF_PARTNER_FCT    = '00000015'.                " partner function for contact person
w_partner-REF_PARTNER_NO     = '0000000743'.              " contact person bp no
w_partner-REF_NO_TYPE        = c_type.                    " ref no type BP , EX ,O .........
w_partner-REF_DISPLAY_TYPE   = c_type.                    " display type BP.......
w_partner-KIND_OF_ENTRY      = c_kind_entry.              " kind of entry a,b,c......
w_partner-MAINPARTNER        = c_update.
APPEND  w_partner to t_partner.
CLEAR  w_partner.
*w_partner-REF_GUID           = g_guid.
*w_partner-REF_HANDLE         = c_ref_handle.
w_partner-REF_KIND           = c_ref_kind.
w_partner-REF_PARTNER_HANDLE = '0003'.                    " count parmameter +1
w_partner-REF_PARTNER_FCT    = '00000014'.                " partner function for employee responsible
w_partner-REF_PARTNER_NO     = '0000000746'.              " employee responsible bp no
w_partner-REF_NO_TYPE        = c_type.                    " ref no type BP , EX ,O .........
w_partner-REF_DISPLAY_TYPE   = c_type.                    " display type BP.......
w_partner-KIND_OF_ENTRY      =  c_kind_entry.              " kind of entry a,b,c......
w_partner-MAINPARTNER        = c_update.
APPEND  w_partner to t_partner.
*w_PARTNERX-REF_GUID            = c_update.
*w_PARTNERX-REF_HANDLE          = c_update.
w_PARTNERX-REF_KIND            = c_update.
w_PARTNERX-REF_PARTNER_HANDLE  = c_update.
w_PARTNERX-REF_PARTNER_FCT     = c_update.
w_PARTNERX-REF_PARTNER_NO      = c_update.
w_PARTNERX-REF_NO_TYPE         = c_update.
w_PARTNERX-REF_DISPLAY_TYPE    = c_update.
w_PARTNERX-KIND_OF_ENTRY       = c_update.
w_partner-MAINPARTNER        = c_update.
APPEND w_PARTNERX to t_partnerx.
CLEAR w_PARTNERX.
*w_PARTNERX-REF_GUID            = c_update.
*w_PARTNERX-REF_HANDLE          = c_update.
w_PARTNERX-REF_KIND            = c_update.
w_PARTNERX-REF_PARTNER_HANDLE  = c_update.
w_PARTNERX-REF_PARTNER_FCT     = c_update.
w_PARTNERX-REF_PARTNER_NO      = c_update.
w_PARTNERX-REF_NO_TYPE         = c_update.
w_PARTNERX-REF_DISPLAY_TYPE    = c_update.
w_PARTNERX-KIND_OF_ENTRY       = c_update.
w_partner-MAINPARTNER        = c_update.
APPEND w_PARTNERX to t_partnerx.
CLEAR w_PARTNERX.
*w_PARTNERX-REF_GUID            = c_update.
*w_PARTNERX-REF_HANDLE          = c_update.
w_PARTNERX-REF_KIND            = c_update.
w_PARTNERX-REF_PARTNER_HANDLE  = c_update.
w_PARTNERX-REF_PARTNER_FCT     = c_update.
w_PARTNERX-REF_PARTNER_NO      = c_update.
w_PARTNERX-REF_NO_TYPE         = c_update.
w_PARTNERX-REF_DISPLAY_TYPE    = c_update.
w_PARTNERX-KIND_OF_ENTRY       = c_update.
w_partner-MAINPARTNER        = c_update.
APPEND w_PARTNERX to t_partnerx.
getting errors 151     Enter mandatory partner
119     Enter   Employee Responsible

Hi,
Could you please check whether the Partner you are passing is having a role of Employee responsible, also check the Access Sequence for this partner function for your transaction type.
Hope this helps..
Thanks
Arun Kumar

Similar Messages

  • Date Issue while creating Activity using BAPI_ACTIVITYCRM_CREATEMULTI

    Hi,
    I'm creating an activity using BAPI BAPI_ACTIVITYCRM_CREATEMULTI and this is working fine. The only thing which is not reflecting in the activity is the date which I'm passing to this BAPI. The system  always puts the default date, which is system date.
    Below are the parameters I'm passing in DATE and DATEX parameters of BAPI_ACTIVITYCRM_CREATEMULTI. Let me know if I'm doing something wrong.
    Can someone help me? Any help in resolving this would be appreciated and rewarded with points. Thanks!
        lt_date-ref_handle = lt_header-handle. "handle for activity
        lt_date-ref_kind   = 'A'. "Adm header
        lt_date-appt_type  = 'ORDERACTUAL'. "Order actual date type
        lt_date-date_from  = '20060120'. "e.g.
        lt_date-time_from  = '1200000'. "e.g.
        lt_date-date_to    = '20060120'."e.g.
        lt_date-time_to    = '1200000'. "e.g.
        lt_date-show_local = 'X'.
        lt_date-mode       = 'A'."Create
        lt_datex-ref_handle = 'X'.
        lt_datex-ref_kind   = 'X'.
        lt_datex-appt_type  = 'X'.
        lt_datex-date_from  = 'X'.
        lt_datex-time_from  = 'X'.
        lt_datex-date_to    = 'X'.
        lt_datex-time_to    = 'X'.
        lt_datex-show_local = 'X'.
        lt_datex-mode      = 'X'.
        append: lt_date, lt_datex.
    Regards,
    Sandeep

    Hi,
    Here is a sample code for you.
    *& Report  YAM_TEST_CONT_END_DATE                                      *
    REPORT  yam_test_cont_end_date                  .
    DATA: lit_header_guid TYPE crmt_object_guid_tab,
          lit_appointment TYPE crmt_appointment_comt,
          lit_status_comt TYPE crmt_status_comt,
          wa_status_comt  LIKE LINE OF lit_status_comt.
    DATA : lit_ret          TYPE TABLE OF bapiret2,
           lit_obj_to_save  TYPE TABLE OF bapibus20001_guid_dis,
           lit_saved_obj    TYPE TABLE OF bapibus20001_object_id.
    DATA: lv_header_guid   TYPE crmt_object_guid,
          lv_item_guid     TYPE crmt_object_guid,
          lv_timestamp(15) TYPE c.
    DATA: lit_fname TYPE crmt_input_field_names_tab,
          wa_fname  TYPE crmt_input_field_names.
    DATA: lit_input TYPE crmt_input_field_tab,
          wa_input  TYPE crmt_input_field.
    DATA: wa_appointment      TYPE  crmt_appointment_com,
          wa_logical_date_key TYPE  crmt_date_logical_date_key.
    CONSTANTS: lc_end       TYPE crmt_apptype     VALUE 'CONTEND',
               lc_appt      TYPE crmt_fieldname   VALUE 'APPT_TYPE',
               lc_from      TYPE crmt_fieldname   VALUE 'TIMESTAMP_FROM',
               lc_to        TYPE crmt_fieldname   VALUE 'TIMESTAMP_TO',
               lc_obj       TYPE crmt_object_name VALUE 'APPOINTMENT',
               lc_tzone_from(13) TYPE c           VALUE 'TIMEZONE_FROM',
               lc_tzone_to(11)   TYPE c           VALUE 'TIMEZONE_TO'.
    PARAMETER: p_objid TYPE crmt_object_id.
    START-OF-SELECTION.
    * Get the HEADER GUID for the Contract Number
      SELECT SINGLE guid
        INTO lv_header_guid
        FROM crmd_orderadm_h
       WHERE object_id EQ p_objid.
      CHECK sy-subrc EQ 0.
    * Get the Item GUID for the HEADER GUID
      SELECT SINGLE guid
        INTO lv_item_guid
        FROM crmd_orderadm_i
       WHERE header EQ lv_header_guid.
      CHECK sy-subrc EQ 0.
      APPEND lv_header_guid TO lit_header_guid.
      APPEND lv_header_guid TO lit_obj_to_save.
    * Convert System date and time to timestamp
      CONCATENATE sy-datum sy-uzeit INTO lv_timestamp.
    * Setting Contract End Date
      MOVE: lv_item_guid          TO wa_appointment-ref_guid,
            'B'                   TO wa_appointment-ref_kind,
            'CONTEND'             TO wa_appointment-appt_type,
            lv_timestamp          TO wa_appointment-timestamp_from,
            lv_timestamp          TO wa_appointment-timestamp_to,
            sy-zonlo              TO wa_appointment-timezone_to,
            sy-zonlo              TO wa_appointment-timezone_from.
    * Filling the Input Fields for Appointment
      wa_fname-fieldname = lc_appt.
      INSERT wa_fname INTO TABLE lit_fname.
      CLEAR: wa_fname.
      wa_fname-fieldname = lc_from.
      INSERT wa_fname INTO TABLE lit_fname.
      CLEAR: wa_fname.
      wa_fname-fieldname = lc_to.
      INSERT wa_fname INTO TABLE lit_fname.
      CLEAR: wa_fname.
      wa_fname-fieldname = lc_tzone_from.
      INSERT wa_fname INTO TABLE lit_fname.
      CLEAR: wa_fname.
      wa_fname-fieldname = lc_tzone_to.
      INSERT wa_fname INTO TABLE lit_fname.
      CLEAR: wa_fname.
      wa_logical_date_key-appt_type = lc_end.
      MOVE: lv_item_guid          TO wa_input-ref_guid,
            'B'                   TO wa_input-ref_kind,
            lc_obj                TO wa_input-objectname,
            wa_logical_date_key   TO wa_input-logical_key,
            lit_fname             TO wa_input-field_names.
      APPEND wa_input TO lit_input.
      CLEAR: wa_input, wa_logical_date_key.
      APPEND wa_appointment TO lit_appointment.
      CALL FUNCTION 'CRM_ORDER_MAINTAIN'
        EXPORTING
          it_appointment    = lit_appointment
          it_status         = lit_status_comt
        CHANGING
          ct_input_fields   = lit_input
        EXCEPTIONS
          error_occurred    = 1
          document_locked   = 2
          no_change_allowed = 3
          no_authority      = 4
          OTHERS            = 5.
      CHECK sy-subrc EQ 0.
    * Saving the items alone
      CALL FUNCTION 'BAPI_BUSPROCESSND_SAVE'
        TABLES
          objects_to_save = lit_obj_to_save
          saved_objects   = lit_saved_obj
          return          = lit_ret.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          wait = 'X'.
    <b>Reward points if it helps.</b>
    Regards,
    Amit Mishra

  • Creating a Scheduled Task using PowerShell v4

    So here is my question.  I'm trying/wanting to create a scheduled task using PowerShell v4 on Server 2012R2.  I want to task to run on the 1st day of every month.  The parameter for -Monthly -Day is not available.  I need to use PowerShell
    to create the Scheduled Task because the Task will be running with a group Managed Service Account credentials so the Scheduled Task can not be created via the Task Scheduler GUI.
    Thanks in Advance

    Here is a functioning task It can be easily edited in PowerShell or in notepad to alter the timing
    <?xml version="1.0" encoding="UTF-16"?>
    <Task version="1.1" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
    <RegistrationInfo>
    <Author>W8TEST\user01</Author>
    </RegistrationInfo>
    <Triggers>
    <CalendarTrigger>
    <StartBoundary>2014-06-04T21:31:32.0459499</StartBoundary>
    <Enabled>true</Enabled>
    <ScheduleByMonth>
    <DaysOfMonth>
    <Day>1</Day>
    <Day>12</Day>
    <Day>24</Day>
    </DaysOfMonth>
    <Months>
    <January />
    <February />
    <March />
    <April />
    <May />
    <June />
    <July />
    <August /
    <September />
    <October />
    <November />
    <December />
    </Months>
    </ScheduleByMonth>
    </CalendarTrigger>
    </Triggers>
    <Principals>
    <Principal id="Author">
    <RunLevel>LeastPrivilege</RunLevel>
    <UserId>W8TEST\jvierra</UserId>
    <LogonType>InteractiveToken</LogonType>
    </Principal>
    </Principals>
    <Settings>
    <DisallowStartIfOnBatteries>true</DisallowStartIfOnBatteries>
    <StopIfGoingOnBatteries>true</StopIfGoingOnBatteries>
    <IdleSettings>
    <StopOnIdleEnd>true</StopOnIdleEnd>
    <RestartOnIdle>false</RestartOnIdle>
    </IdleSettings>
    <Enabled>true</Enabled>
    <Hidden>false</Hidden>
    <RunOnlyIfIdle>false</RunOnlyIfIdle>
    <WakeToRun>false</WakeToRun>
    <ExecutionTimeLimit>P3D</ExecutionTimeLimit>
    <Priority>7</Priority>
    </Settings>
    <Actions Context="Author">
    <Exec>
    <Command>notepad.exe</Command>
    <Arguments>test.txt</Arguments>
    <WorkingDirectory>c:\temp</WorkingDirectory>
    </Exec>
    </Actions>
    </Task>
    I have edited and reloaded the XML many, many times.  It works very nicely.
    ¯\_(ツ)_/¯

  • Using BAPI_ACTIVITYCRM_CREATEMULTI for creating sales order in CRM

    Hello Experts,
    I am creating a sales order using BAPI_ACTIVITYCRM_CREATEMULTI, But I am getting the following errors:
    1. Reference Object Type (ORGMAN) not allowed
    2. Reference Object Type (PARTNER) not allowed
    3. Incomplete interface data - No reference specified
    4. Item was not found
    Can you please help me with the mandatory fields, that has to be filled in the BAPI, and do I need to use Commit BAPI after this BAPI.
    Please I am in critical postion,
    Now I am able to create a sales order there is no data it like the partner number and Item.May be I am missing some important fileds.
    Please help.
    Thanks,
    Suma
    Edited by: Suma B on Aug 8, 2008 1:05 PM

    Hi,
    I am passing data using SE37 T-Code.
    I was told by the fucntioal guys that GUID will be generated by CRM, so we dont need to send that as an input.
    Still facing the same error...
    These are my input fields:
    REF_HANDLE
    REF_GUID
    R
    OBJECTNAME
    LOGICAL_KEY
    FIELDNAME
    C
    |
    0000000000
    ORDERADM_H
    PROCESS_TYPE
    0000000000
    ORDERADM_H
    POSTING_DATE
    0000000000
    ACTIVITY_H
    CATEGORY
    0000000000
    ACTIVITY_H
    PRIORITY
    0000000000
    ACTIVITY_H
    DIRECTION
    0000000000
    PARTNER
    000000000022XXXXXXX
    REF_PARTNER_FCT
    0000000000
    PARTNER
    000000000022XXXXXXX
    REF_PARTNER_NO
    0000000000
    PARTNER
    000000000022XXXXXXX
    PARTNER_FCT
    0000000000
    PARTNER
    000000000022XXXXXXX
    PARTNER_NO
    0000000000
    ORGMAN
    DIS_CHANNEL
    0000000000
    ORGMAN
    DIVISION
    0000000000
    ORGMAN
    SALES_ORG
    0000000000
    ORDERADM_I
    PRODUCT
    0000000001
    B
    SCHEDLIN
    00000000000000000000000000000000
    QUANTITY
    |
    This is error log:
    T
    ID
    NUM
    MESSAGE
    LOG_NO
    LOG_MS
    MESSAGE_V1
    MESSAGE_V2
    MESSAGE_V3
    MESSAGE_V4
    PARAMETER
    ROW
    FIELD
    SYSTEM
    |
    W
    CRM_ORDER
    004
    Referenced object type (ORGMAN) not allowed
    $000001
    000001
    ORGMAN
    ORDER
    0
    CR5CLNT100
    W
    CRM_ORDER
    004
    Referenced object type (PARTNER) not allowed
    $000001
    000002
    PARTNER
    ORDER
    0
    CR5CLNT100
    W
    CRM_ORDER
    005
    Incomplete interface data - No reference specified
    $000001
    000003
    ORDER
    0
    CR5CLNT100
    E
    CRM_ORDERADM_I
    006
    Item  was not found.
    $000001
    000004
    ORDER
    0
    CR5CLNT100
    E
    CRM_ORDER
    005
    Incomplete interface data - No reference specified
    $000001
    000005
    ORDER
    0
    CR5CLNT100
    S
    CRM_MESSAGES
    005
    A log has been generated for single document
    $000001
    000006
    MESSAGES
    0
    CR5CLNT100
    E
    COM_PARTNER
    119
    Enter   Sold-To Party
    $000002
    000001
    Sold-To Party
    PARTNER
    0
    PARTNER_NO
    CR5CLNT100
    E
    COM_PARTNER
    119
    Enter   Ship-To Party
    $000002
    000002
    Ship-To Party
    PARTNER
    0
    PARTNER_NO
    CR5CLNT100
    E
    COM_PARTNER
    119
    Enter   Bill-To Party
    $000002
    000003
    Bill-To Party
    PARTNER
    0
    PARTNER_NO
    CR5CLNT100
    E
    COM_PARTNER
    119
    Enter   Payer
    $000002
    000004
    Payer
    PARTNER
    0
    PARTNER_NO
    CR5CLNT100
    E
    COM_PARTNER
    119
    Enter   Sold-To Party
    00000000000000047612
    000001
    Sold-To Party
    PARTNER
    0
    PARTNER_NO
    CR5CLNT100
    E
    COM_PARTNER
    119
    Enter   Ship-To Party
    00000000000000047612
    000002
    Ship-To Party
    PARTNER
    0
    PARTNER_NO
    CR5CLNT100
    E
    COM_PARTNER
    119
    Enter   Bill-To Party
    00000000000000047612
    000003
    Bill-To Party
    PARTNER
    0
    PARTNER_NO
    CR5CLNT100
    E
    COM_PARTNER
    119
    Enter   Payer
    00000000000000047612
    000004
    Payer
    PARTNER
    0
    PARTNER_NO
    CR5CLNT100
    |
    Thanks,
    Suma

  • How to create tab pages in Human task Using Wizard

    hi,
    how to create tab pages in Human task Using Wizard.i need to display the personal details and the offical details in the same page with different tabs for each.it is possible to do lika this.if yes,how can we do this.
    Regards

    Stuart,
    Within a SAP Portal Tabs are not used like you want them to
    By default Tabs are used inside an iView and not to "tab" between iViews on a page...
    The most straightforward solution would be creating a custom PageLayout that you can assign to your page.
    I would sugest to implement this custom PageLayout with DIV layers and trigger "tabbing" via JavaScript eventing.
    For more infor on how to create a custom PageLayout take a look at here:
    [http://help.sap.com/saphelp_nw70/helpdata/en/42/efbac120711a71e10000000a422035/frameset.htm|http://help.sap.com/saphelp_nw70/helpdata/en/42/efbac120711a71e10000000a422035/frameset.htm]
    Good Luck,
    Benjamin Houttuin

  • Creating Windows Basic Task using powershell

    Hello Everyone,
    Please help me out in the below situation:
    I have to create a basic windows task using powershell to run a script on a specific date and time.
    Let me make it even clear :
    I have a csv say,
    D:\xyz.csv
    ServerName ,  Date  , Time
    Random1,   11/15/2014,01:00:00PM
    Random2,   12/01/2015,03:00:00PM
    ...and so on
    I also have a script at E:\TestingServer.ps1
    I need to create list of windows tasks to invoke TestingServer.ps1 with parameters as servername and Time of task as given date and time in csv.
    Task1- with input as ServerName at Date and time from CSV
    Task2-with input as ServerName at Date and time from CSV

    Well here is a good article showing howto do this:
    http://blogs.technet.com/b/heyscriptingguy/archive/2012/09/18/create-a-powershell-scheduled-job.aspx
    ¯\_(ツ)_/¯

  • Could not create task file

    We are installing SAP R3 4.7 sr1 on Linux SuSE SLES9, 32/bit.
    Problem: During the installation of DI, phase Database Load (Pst Processing), installation stopped , and in the log file said
    Could not create task file tmp/sapinst_instdir/.../SAPREPOS.TSK
    Anyone with the similar problem? Solution?
    Best regards,
    Igor Kokai

    Hello:
    I do not know exactly what of the following elements contributed to fix the problem, but
    following is the list of changes we did in a 3rd try to install R/3 on Sun Solaris.
    1.  Get latest SAPINST.
    2.  Use a different installation directory, which is permitted by the use os a new SAPINST.  We used something outside /tmp, which is used by default by the SAPINST that comes with the CDs.
    3.  Delete the whole installation and start again, because by just using SAPINST in the middle of the installation, the problem was not fixed.
    4.  Change the SID from DEN to DE1.
    5.  There was an answer in sdn about the problem telling a linux user to use another environment variable that was for HP-UX, but since it was suggested for them, we took it, just in case. That was also done in the middle of the installation when the problem was happening, but did not fix the problem.
    6. We did not install the oracle patch 9.2.0.7 because the patch is the one that looks for a bunch of sun patches, that although we already had them, since the error we were getting was oracle related, it was decided not to do that for now.
    7.  Smile and go ahead without desperation.
    Regards,
    Juan

  • Error while creating Routing using LSMW

    Hi Guys ,
    I am trying to create LSMW using Direct Input Method .
    My structures are ::
    RC271_DS   Work center structure for direct input (for datasets)
    RC27M_DS   Material master view DIRECT INPUT routing for datasets
    PLKO_DI_DS Header structure for direct input (for datasets)
    PLPO_DI_DS Routing/item structure for direct input (for datasets.
    I getting correct data from multiple flat files .
    It's converting the data also .
    But while executing start direct input method i am getting the followig error ....
    You cannot edit the task list object with activity type
    Please let me know problem guys .
    Regards,
    Raj

    Hi Naveen,
    It means you have to assign  the task list type to  material type ZPRD. Then it will carry its job:
    The path is:
    Go To-> SPRO-> IMG Activity-> Production-> Basic Data-> Routing-> General Data---> Define Material Type Assignments. T-Code: OP50
    I hope it will work.
    Regards,
    Madhu.G

  • How to remove channel from DAQmx create Task.vi

    Vikas H. Kumthekar
    ASE
    Tata Consultancy Services
    Pune-1

    How are you using the DAQmx Create Task.vi? Are you using it to include a global channel or copy a task that was previously created in Measurement and Automation Explorer (MAX)? If this is the case the only way to remove a channel would be to delete the global channel or modify the physical channels for that task in MAX. If you are creating a new task you can use the DAQmx Create Channel.vi to specify the physical channels that you would like to include or exclude.
    Regards,
    Andy F.
    Applications Engineer
    National Instruments
    National Instruments

  • Enterprise Portal - Create Task throws exception

    Hi All,
      I'm working on MDM 7.1, NW 7.01. Click on the 'Create Task' from Universal worklist page throws the following exception. Any thoughts what might be causing this.
      500   Internal Server Error
              SAP NetWeaver Application Server 7.00/Java AS 7.00
    Failed to process request. Please contact your system administrator.
    [Hide]
    Error Summary
    While processing the current request, an exception occured which could not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator. To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).
    Root Cause
    The initial exception that caused the request to fail, was:
       java.lang.NullPointerException
        at com.sap.ip.collaboration.core.impl.ume.manager.UMRepositoryManager.getResource(UMRepositoryManager.java:212)
        at com.sapportals.wcm.repository.RMAdapter.getResource(RMAdapter.java:228)
        at com.sapportals.wcm.repository.runtime.CmAdapter.findResource(CmAdapter.java:1349)
        at com.sapportals.wcm.repository.runtime.CmAdapter.findManagerAndResource(CmAdapter.java:1322)
        at com.sapportals.wcm.repository.runtime.CmAdapter.getResourceImpl(CmAdapter.java:979)
        ... 57 more
    See full exception chain for details.
    System Environment
    Client
    Web Dynpro Client Type     HTML Client
    User agent     Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11
    Version     null
    DOM version     null
    Client Type     ns7
    Client Type Profile     nn7
    ActiveX     disabled
    Cookies     enabled
    Frames     enabled
    Java Applets     enabled
    JavaScript     enabled
    Tables     enabled
    VB Script     enabled
    Server
    Web Dynpro Runtime     Vendor: SAP, build ID: 7.0103.20081111115141.0000 (release=NW701_03_REL, buildtime=2008-12-07:13:19:14[UTC], changelist=51958, host=pwdfm246), build date: Tue May 12 20:39:49 MDT 2009
    J2EE Engine     7.01 PatchLevel 56102.
    Java VM     IBM J9 VM, version:2.3, vendor: IBM Corporation
    Operating system     Linux, version: 2.6.16.60-0.37_f594963d-xen, architecture: amd64
    Session & Other
    Session Locale     en_US
    Time of Failure     Wed Jul 01 09:01:10 MDT 2009 (Java Time: 1246460470781)
    Web Dynpro Code Generation Infos
    sap.com/tceujwfuiwizardtask
    SapDictionaryGenerationCore     7.0103.20071003090459.0000 (release=701_SP_REL, buildtime=2008-11-05:19:55:10[UTC], changelist=463950, host=PWDFM201.wdf.sap.corp)
    SapDictionaryGenerationTemplates     7.0103.20071003090459.0000 (release=701_SP_REL, buildtime=2008-11-05:19:55:16[UTC], changelist=463950, host=PWDFM201.wdf.sap.corp)
    SapGenerationFrameworkCore     7.0103.20071003090713.0000 (release=701_SP_REL, buildtime=2008-11-05:19:48:07[UTC], changelist=463957, host=PWDFM201.wdf.sap.corp)
    SapIdeWebDynproCheckLayer     7.0103.20080730170941.0000 (release=701_SP_REL, buildtime=2008-11-05:20:00:15[UTC], changelist=494993, host=PWDFM201.wdf.sap.corp)
    SapMetamodelCommon     7.0103.20071003091208.0000 (release=701_SP_REL, buildtime=2008-11-05:19:48:51[UTC], changelist=463971, host=PWDFM201.wdf.sap.corp)
    SapMetamodelCore     7.0103.20071003091208.0000 (release=701_SP_REL, buildtime=2008-11-05:19:48:46[UTC], changelist=463971, host=PWDFM201.wdf.sap.corp)
    SapMetamodelDictionary     7.0103.20071003090530.0000 (release=701_SP_REL, buildtime=2008-11-05:19:52:58[UTC], changelist=463951, host=PWDFM201.wdf.sap.corp)
    SapMetamodelWebDynpro     7.0103.20080730170953.0000 (release=701_SP_REL, buildtime=2008-11-05:19:57:29[UTC], changelist=494995, host=PWDFM201.wdf.sap.corp)
    SapWebDynproGenerationCTemplates     7.0103.20081105123737.0000 (release=701_SP_REL, buildtime=2008-11-05:20:06:40[UTC], changelist=507414, host=pwdfm201)
    SapWebDynproGenerationCore     7.0103.20080730170941.0000 (release=701_SP_REL, buildtime=2008-11-05:20:00:20[UTC], changelist=494993, host=PWDFM201.wdf.sap.corp)
    SapWebDynproGenerationTemplates     7.0103.20081105123737.0000 (release=701_SP_REL, buildtime=2008-11-05:20:06:40[UTC], changelist=507414, host=pwdfm201)
    sap.com/tcwddispwda
    No information available     null
    sap.com/tckmcbc.uwl.ui~wd_ui
    SapDictionaryGenerationCore     7.0103.20071003090459.0000 (release=701_SP_REL, buildtime=2008-11-05:19:55:10[UTC], changelist=463950, host=PWDFM201.wdf.sap.corp)
    SapDictionaryGenerationTemplates     7.0103.20071003090459.0000 (release=701_SP_REL, buildtime=2008-11-05:19:55:16[UTC], changelist=463950, host=PWDFM201.wdf.sap.corp)
    SapGenerationFrameworkCore     7.0103.20071003090713.0000 (release=701_SP_REL, buildtime=2008-11-05:19:48:07[UTC], changelist=463957, host=PWDFM201.wdf.sap.corp)
    SapIdeWebDynproCheckLayer     7.0103.20080730170941.0000 (release=701_SP_REL, buildtime=2008-11-05:20:00:15[UTC], changelist=494993, host=PWDFM201.wdf.sap.corp)
    SapMetamodelCommon     7.0103.20071003091208.0000 (release=701_SP_REL, buildtime=2008-11-05:19:48:51[UTC], changelist=463971, host=PWDFM201.wdf.sap.corp)
    SapMetamodelCore     7.0103.20071003091208.0000 (release=701_SP_REL, buildtime=2008-11-05:19:48:46[UTC], changelist=463971, host=PWDFM201.wdf.sap.corp)
    SapMetamodelDictionary     7.0103.20071003090530.0000 (release=701_SP_REL, buildtime=2008-11-05:19:52:58[UTC], changelist=463951, host=PWDFM201.wdf.sap.corp)
    SapMetamodelWebDynpro     7.0103.20080730170953.0000 (release=701_SP_REL, buildtime=2008-11-05:19:57:29[UTC], changelist=494995, host=PWDFM201.wdf.sap.corp)
    SapWebDynproGenerationCTemplates     7.0103.20081105123737.0000 (release=701_SP_REL, buildtime=2008-11-05:20:06:40[UTC], changelist=507414, host=pwdfm201)
    SapWebDynproGenerationCore     7.0103.20080730170941.0000 (release=701_SP_REL, buildtime=2008-11-05:20:00:20[UTC], changelist=494993, host=PWDFM201.wdf.sap.corp)
    SapWebDynproGenerationTemplates     7.0103.20081105123737.0000 (release=701_SP_REL, buildtime=2008-11-05:20:06:40[UTC], changelist=507414, host=pwdfm201)
    sap.com/tcwdcorecomp
    No information available     null
    Detailed Error Information
    Detailed Exception Chain
    java.lang.NullPointerException
         at com.sap.ip.collaboration.core.impl.ume.manager.UMRepositoryManager.getResource(UMRepositoryManager.java:212)
         at com.sapportals.wcm.repository.RMAdapter.getResource(RMAdapter.java:228)
         at com.sapportals.wcm.repository.runtime.CmAdapter.findResource(CmAdapter.java:1349)
         at com.sapportals.wcm.repository.runtime.CmAdapter.findManagerAndResource(CmAdapter.java:1322)
         at com.sapportals.wcm.repository.runtime.CmAdapter.getResourceImpl(CmAdapter.java:979)
         at com.sapportals.wcm.repository.runtime.CmAdapter.getResource(CmAdapter.java:192)
         at com.sap.ip.collaboration.core.impl.ume.so.SOUser.<init>(SOUser.java:86)
         at com.sap.ip.collaboration.core.impl.ume.so.SOUserFactory.getSOUser(SOUserFactory.java:89)
         at com.sap.ip.collaboration.core.impl.ume.so.SOPeopleFactory.getSOPeople(SOPeopleFactory.java:104)
         at com.sap.ip.collaboration.coreui.api.people.util.State.identifyPeopleApplicationList(State.java:939)
         at com.sap.netweaver.kmc.people.wdpicker.PeoplePickerView.initializePeopleSelection(PeoplePickerView.java:510)
         at com.sap.netweaver.kmc.people.wdpicker.PeoplePickerView.wdDoInit(PeoplePickerView.java:145)
         at com.sap.netweaver.kmc.people.wdpicker.wdp.InternalPeoplePickerView.wdDoInit(InternalPeoplePickerView.java:189)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.doInit(DelegatingView.java:61)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.view.View.initController(View.java:445)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:709)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bindRoot(ViewManager.java:579)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.init(ViewManager.java:155)
         at com.sap.tc.webdynpro.progmodel.view.InterfaceView.initController(InterfaceView.java:43)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:709)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bind(ViewManager.java:555)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:724)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bindRoot(ViewManager.java:579)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.init(ViewManager.java:155)
         at com.sap.tc.webdynpro.progmodel.view.InterfaceView.initController(InterfaceView.java:43)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:709)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bind(ViewManager.java:555)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:724)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bindRoot(ViewManager.java:579)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.init(ViewManager.java:155)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.doOpen(WebDynproWindow.java:295)
         at com.sap.tc.webdynpro.clientserver.window.ApplicationWindow.show(ApplicationWindow.java:182)
         at com.sap.tc.webdynpro.clientserver.window.ApplicationWindow.open(ApplicationWindow.java:177)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:364)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:754)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:289)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:713)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:666)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(AccessController.java:219)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    Appreciate all your help!
    Regards,
    VSingh
    Edited by: VSingh on Jul 1, 2009 10:03 AM

    Hi,
    The error message tells you that something is referencing a NULL value in the code of the UMRepositoryManager class. This is generally a sign of poor error detection in the code and not checking for NULL's before trying to use them! If I were you I would try the following:
    1. Check your User Management Engine (UME) configuration
    2. Check the KM UM Repository Manager configuration
    I would say that because the code is standard SAP code the problem is somewhere in the configuration of your system (i.e. the code is expecting something to be configured but it is not). I would also recommend checking SAP OSS notes for a possible solution.
    Hope this gets you started towards finding the solution.
    BRgds,
    Simon

  • Create Tasks Due dates

    Hi All,
    I'm new to SharePoint, I'm having requirement of setting a Project Management tool in which the start date, end date of task to be calculated automatically based on few parameters. For example lets take a Project called Project A which has list of tasks, lets
    say *Task A, Task B, Task C etc. The start date of Task is*Project confirmation date + 1 and the end date is 2 days from the start date.*
    *Now if a create a custom field called Project confirmation date can we calculate the start date and end date of the task automatically, Similarly there are other parameters for Task B, C etc. Is this kind of a set feasible in SharePoint? Please help.
    Thanks and Regards,
    Goutami

    create task list which is available oob in sharepoint then use calculated columns as below links reference:
    http://msdn.microsoft.com/en-us/library/office/bb862071(v=office.14).aspx
    http://sharepoint.stackexchange.com/questions/59504/calculated-column-to-calculate-date
    http://sharepoint.stackexchange.com/questions/74474/get-the-month-from-a-date-column-with-the-calculated-column
    =DATE(YEAR([project confirmation date]),MONTH([project confirmation date
    ]),DAY([project confirmation date
    ])+1)
    =DATE(YEAR([start date
    ]),MONTH([start date
    ]),DAY([start date])+2)
    Please mark as answer if you find it useful else vote for it if it is close to answer..happy sharepointing

  • Workflow creating task for user in Outlook

    Is it possible to create a task in outlook for a specific user via workflow? My Boss want to have every user informed via mail that there is a new element in a list (that works fine) and one User should have a task (even better a complete to do list) in
    his outlook task tab.

    Hi Elite,
    Based on your description, my understanding is that you want to create the tasks for users in Outlook with workflow.
    I recommend to use workflow to create tasks in a task list in SharePoint and then sync the task list with outlook by clicking the button Connect to Outlook in the ribbon of the task list.
    After that, the tasks created in the task list will be automatically synced to Outlook.
    Please refer to the link below for detailed steps:
    http://netizenapps.com/blog/?p=6
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Warning: "No terminating events defined for the task used"

    Dear all,
    I created a task with ABAP class and method as its object method. This task is a background task. The ABAP class inherits the IF_WORKFLOW interface but doesn't implement any method of the interface.
    When I try to confirm the task settings in transaction SWDD, a message shows up "No terminating events defined for the task used" and I cannot continue the work. Does anybody have any idea what I should do?
    Thanks + Best Regards
    Jerome

    Hi Jerome,
    If you set a background task in your workflow, and if it is asynchronous, then you need some way to tell the template if it is finished and what happened.  In this case you set terminating events - that is events which are published in the system as a result of your method (ie document.posted etc).
    Either use a synchronous method for your task or set appropriate terminating events in your task setup.
    Regards
    Gareth

  • Encoutered ABAP ShortDumps Error When Create task in cProjects

    Hi all,
    When i tried to create tasks in cProjects, the following error pages exists.
    I believed it was issues related with authorization.
    my authorization was assigned as composite role SAP_CPR_PROJECT_LEAD
    +++++++++++++++++++++++++++++++++++++
    Error when processing your request
    What has happened?
    The URL http://rabr3dci.rab.erp:8000/SAP/BC/BSP/SAP/CPROJECTS/root.do was not called due to an error.
    Note
    The following error text was processed in the system RD1 : The current application triggered a termination with a short dump.
    The error occurred on the application server RABR3DCI_RD1_00 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Form: ON_TRANSACTION_FINISHED of program CL_DPR_TRANSACTION_MANAGER====CP
    Form: RAISE_TRANSACTION_FINISHED of program CL_SYSTEM_TRANSACTION_STATE===CP
    Form: %_AFTER_ROLLBACK of program SAPMSSY0
    Form: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_HTTP_EXT_BSP===============CP
    Form: EXECUTE_REQUEST_FROM_MEMORY of program CL_HTTP_SERVER================CP
    Function: HTTP_DISPATCH_REQUEST of program SAPLHTTP_RUNTIME
    Module: %_HTTP_START of program SAPMHTTP
    What can I do?
    If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system RD1 in transaction ST22.
    If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server RABR3DCI_RD1_00 in transaction SM21.
    If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 0 in transaction ST11 on the application server RABR3DCI_RD1_00 . In some situations, you may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-http -c: 100 -u: TESTS -l: E -s: RD1 -i: RABR3DCI_RD1_00 -w: 0 -d: 20080507 -t: 222343 -v: RABAX_STATE -e: MESSAGE_TYPE_X
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    +++++++++++++++++++++++++++++++++++++++++++++++
    Below thread was quite similar with problem that I encountered however i
    am doubtful how could i proceed with proper solution.
    Can a project creator in cProjects Assign himself a role?
    Thanks.
    Point awards if its was helpful.
    BR,
    Tow

    ABAP Dump Error logs
    +++++++++++++++++++++++++++++++++++++++++++++
    Runtime Error          MESSAGE_TYPE_X
    Date and Time          07.05.2008 21:11:19
    ShrtText
         The current application triggered a termination with a short dump.
    What happened?
         The current application program detected a situation which really
         should not occur. Therefore, a termination with a short dump was
         triggered on purpose by the key word MESSAGE (type X).
    What can you do?
         Print out the error message (using the "Print" function)
         and make a note of the actions and input that caused the
         error.
         To resolve the problem, contact your SAP system administrator.
         You can use transaction ST22 (ABAP Dump Analysis) to view and administer
          termination messages, especially those beyond their normal deletion
         date.
         is especially useful if you want to keep a particular message.
    Error analysis
         Short text of error message:
         ROLLBACK WORK during ON COMMIT or ON ROLLBACK
         Technical information about the message:
         Message classe...... 00
         Number.............. 086
         Variable 1.......... " "
         Variable 2.......... " "
         Variable 3.......... " "
         Variable 4.......... " "
         Variable 3.......... " "
    How to correct the error
        Probably the only way to eliminate the error is to correct the program.
        You may able to find an interim solution to the problem
        in the SAP note system. If you have access to the note system yourself,
        use the following search criteria:
        "MESSAGE_TYPE_X" C
        "CL_DPR_TRANSACTION_MANAGER====CP" or "CL_DPR_TRANSACTION_MANAGER====CM009"
        "ON_TRANSACTION_FINISHED"
        If you cannot solve the problem yourself and you wish to send
        an error message to SAP, include the following documents:
        1. A printout of the problem description (short dump)
           To obtain this, select in the current display "System->List->
           Save->Local File (unconverted)".
        2. A suitable printout of the system log
           To obtain this, call the system log through transaction SM21.
           Limit the time interval to 10 minutes before and 5 minutes
           after the short dump. In the display, then select the function
           "System->List->Save->Local File (unconverted)".
        3. If the programs are your own programs or modified SAP programs,
           supply the source code.
           To do this, select the Editor function "Further Utilities->
           Upload/Download->Download".
        4. Details regarding the conditions under which the error occurred
           or which actions and input led to the error.
    Information on where terminated
        The termination occurred in the ABAP program "CL_DPR_TRANSACTION_MANAGER====CP"
         in "ON_TRANSACTION_FINISHED".
        The main program was "SAPMHTTP ".
        The termination occurred in line 17 of the source code of the (Include)
         program "CL_DPR_TRANSACTION_MANAGER====CM009"
        of the source code of program "CL_DPR_TRANSACTION_MANAGER====CM009" (when
         calling the editor 170).
    Directory of Application Tables
    Name                                     Date       Time       Lngth
        Val.
    Program  SAPMHTTP
    SYST                                       .  .       :  :     00004608
        5\0\0\0\x0001\0\x0008\0\0\0\0\0\x0001\0\0\0\0\0\0\0\0\0\0
    Program  SAPLHTTP_RUNTIME
    ICFMEMORY                                  .  .       :  :     00003024
        IC0/SAP/BC/BSP/SAP/CPROJECTS/root.do
    Program  SAPLLANG
    T002                                       .  .       :  :     00000010
        ES1EN|
    Program  SAPLSDEX
    DD07L                                      .  .       :  :     00000118
        SPERS_TYPE                    A00030000
    Program  SAPLSSCU
    USR02                                      .  .       :  :     00000380
        100CPROJECTS   &#15543;&#12420;&#35106;&#47457;0000000000000000A            \0
    Program  SAPLPRGN
    AGR_DEFINE                                 .  .       :  :     00000266
        100Z_CPROJECTS_COMP
    AGR_TEXTS                                  .  .       :  :     00000238
        100SAP_CPR_USER                  E00000cProjects User
    +++++++++++++++++++++++++++++++++++++++++++++++++++
    Affected Program Source Code
    METHOD ON_TRANSACTION_FINISHED.
      DATA:
        LR_APPL_OBJECT_MANAGER TYPE REF TO CL_DPR_APPL_OBJECT_MANAGER.
    */Transaction supervision snaps only if changes are made
      LR_APPL_OBJECT_MANAGER = CL_DPR_APPL_OBJECT_MANAGER=>GET_INSTANCE( ).
      IF LR_APPL_OBJECT_MANAGER->HAS_CHANGES( ) EQ CL_DPR_CO=>SC_FALSE.
        RETURN.
      ENDIF.
    */With the help of this event handler unauthorized transactional
    */statements are detected
      IF KIND EQ CL_SYSTEM_TRANSACTION_STATE=>COMMIT_WORK.
        MESSAGE X085(00).
      ELSE.
        MESSAGE X086(00).
      ENDIF.
    ENDMETHOD.
    +++++++++++++++++++++++++++++++++++++++++++++++++
    User (SAP_ALL profiles) Assigned with the following roles:
    SAP_CFX_ADMINISTRATOR
    SAP_CFX_COL_CREATOR
    SAP_CFX_USER
    SAP_CPR_PROJECT_ADMINISTRATOR
    SAP_CPR_USER

  • CHaRM : unable to create Task List

    Hi All,
    we are trying to configure Charm in our Solman 7.0 sp16.
    when i create a project and and click on "Create Task List" under SystemLandscapte>>ChangeRequests Tab
    error "The Project is not released. Hence cycle cannot be released.
    Now when i click on the check button. the following errors are displayed
    Check Logical Components
            No Consolidation System found for XXX-XXX(SM2-200) (Project Charm_Test)
            +No Tract for Project Charm_test with log. system SM2/200
    Check Consistency of project CHARM_TEST
          + CTS Projects in production systems for project CHARM_TEST+
    can anyone help me out here.
    Thanks!
    Regards,
    Pradeep L

    Hi Pradeep,
    This issue is because of Solution Manger TMS is not configured properly.
    Use this blog for STMS configuration: /people/dolores.correa/blog/2008/07/26/first-steps-to-work-with-change-request-management-scenario
    OR
    Better use SPRO to configure STMS, Just follow SPRO step by step process.
    SPRO->SAP Solution Manager->Configuration->Scenario-Specific Settings->Change Management
    ->Change Request Management->Standard Configuration->Transport Mnaagement System(TMS)
    1. Do you try to activate ChaRM for any satellite system landscape(DEV->QAS->PRD?
    OR
    2. Do you try to test ChaRM in Solution Manager itself(SM100(DEV)->SM200(QAS)->SM300(PRD)?
    If your test belongs to point 2, then follow the blog that i mentioned above. It gives a step by step details.
    Note:
    1. For anycase, DEV to QAS should be consolidation route and QAS to PRD should be delivery route.
    2. SM TMS should have SAP transport layer as well as atleast one customized transport layer.
    3. ChaRM supports only client specific transport management system.
    Let me know if you need more help on this.
    Regards,
    Sanjai

Maybe you are looking for

  • MacBook Pro 15'' retina mid-2012 - "ghosting"

    Hello, I need your help to solve the following problem. I have a MacBook Pro 15'' retina mid-2012, purchased in August 2012, and in the last 6 months I had attended the "ghosting" (aka "burn in") phenomena on my computer monitor, which is getting wor

  • TP-Link TD-W8961ND Wireless-N ADSL2+ Modem Router ...

    has or are anyone using this TP-Link TD-W8961ND Wireless-N ADSL2+ Modem Router - Version 2 instead of the bt home hub 3?  i need some help because all i get is dropouts after i have set the settings up in the device i use the defualt settings advised

  • Ios 7 help?

    Hello., I have downloaded ios7 to my iphone4. Since then I can no longer access iMessage. When I turn iMessae on, it asks for my Apple id and password which I enter and then decides to time out and gives me a message to say it cannot connect. Any ide

  • Order as Direct material Tab activation

    Hi Guys, I select some materials from catalog and transfer them to SRM system and some materials I find a tab with ORDER AS DIRECT material. where as for some material I do not find, when I click on the Order as direct material this goes into a stock

  • Where is Distiller?

    I upgraded to a new Mac Pro and reinstalled Acrobat Pro v. 8. Where is Distiller? I cannot find it anywhere.