Error coming  " A   BS   001  No status object is available for SDI 0 "

Hi Experts,
I am facing a issue.. I am creation a sales order using BAPI " BAPI_SALESORDER_CREATEFROMDAT2 "  
In one scenario,  I am able to create Sales Order with Status Profile..
But For second scenario, its giving error like  "A   BS   001  No status object is available for SDI 0" .
Between both scenario, only difference is Distribution channel and Condition record.
DATA : wa_order_header_in TYPE bapisdhd1,
gt_order_partners TYPE STANDARD TABLE OF bapiparnr,
gs_order_partners TYPE bapiparnr,
gs_order_partners1 TYPE bapiparnr,
gt_order_items_in TYPE STANDARD TABLE OF bapisditm,
gs_order_items_in TYPE bapisditm,
gt_order_conditions_in TYPE STANDARD TABLE OF bapicond,
gs_order_conditions_in TYPE bapicond,
gt_order_schedules_in TYPE STANDARD TABLE OF bapischdl,
gs_order_schedules_in TYPE bapischdl,
*         gt_return TYPE STANDARD TABLE OF bapiret2,
*         gs_return TYPE bapiret2,
gt_error TYPE STANDARD TABLE OF bapiret2,
gs_error TYPE bapiret2,
gt_log TYPE TABLE OF zsd_ecomerr,
gs_log TYPE zsd_ecomerr,
it_item_temp TYPE TABLE OF zst_sfdc_so_items_dom WITH HEADER LINE,
lt_return TYPE STANDARD TABLE OF bapiret2,
ls_return TYPE bapiret2,
lt_order_conditions_in TYPE STANDARD TABLE OF bapicond,
ls_order_conditions_in TYPE bapicond,
ls_sfdc TYPE zsd_sfdc_order .
DATA:  wa_order_header_inx TYPE bapisdhd1x,
gt_order_items_inx TYPE STANDARD TABLE OF bapisditmx,
lt_order_items_inx TYPE STANDARD TABLE OF bapisditmx,
gs_order_items_inx TYPE bapisditmx,
gt_order_schedules_inx TYPE STANDARD TABLE OF bapischdlx,
gs_order_schedules_inx TYPE bapischdlx,
gt_order_conditions_inx TYPE STANDARD TABLE OF bapicondx,
gs_order_conditions_inx TYPE bapicondx,
lt_order_conditions_inx TYPE STANDARD TABLE OF bapicondx,
ls_order_conditions_inx TYPE bapicondx,
ls_order_items_inx TYPE bapisditmx,
lv_kbetr TYPE kbetr VALUE '10',
lv_curr  TYPE waers ,
lv_ihrez  TYPE ihrez ,
lv_knumh  TYPE a005-knumh.
DATA:isrno LIKE vbap-posnr.
DATA: x_orderitemx LIKE bapisdh1x.
TYPES: BEGIN OF ty_vbap,
vbeln TYPE vbap-vbeln,
posnr TYPE vbap-posnr,
mwsbp  TYPE vbap-mwsbp,
END OF ty_vbap.
DATA: lv_lfstk TYPE vbuk-lfstk,
lv_cmgst TYPE vbuk-cmgst,
lt_vbap TYPE TABLE OF ty_vbap,
ls_vbap TYPE ty_vbap,
lv_bstnk TYPE vbak-bstnk.
****// Checking PO Type. This is mandatory from SFDC
IF sfdc-potype <> '' .
****// Checking here, Whether SFDC Order ID already exist or not. ***//
SELECT SINGLE * FROM zsd_sfdc_order WHERE sfdcorder = sfdc-sfdcorder AND land1 = 'IN'.
IF sy-subrc <> 0.
****// SO creation Process
wa_order_header_in-doc_type    = 'ZHOT'.
wa_order_header_in-sales_org   = '2700'.
IF sfdc-potype = 'SFSD'.                        " S & D
wa_order_header_in-distr_chan  = '30'.
wa_order_header_in-division    = '00'.
ELSEIF sfdc-potype = 'SFHO'.                    " Hospitality
wa_order_header_in-distr_chan  = '33'.
wa_order_header_in-division    = '00'.
ENDIF.
wa_order_header_in-purch_date  = sfdc-purch_date.
wa_order_header_in-purch_no_c  = sfdc-sfdcorder.  "SFDC Order ID
wa_order_header_in-doc_date    = sy-datum.
wa_order_header_in-currency    = 'INR'.
wa_order_header_in-ref_1       = sfdc-purch_no. "sfdc-sfdcorder.
wa_order_header_in-po_method = sfdc-potype.
wa_order_header_inx-updateflag  =  'I'.
wa_order_header_inx-doc_type    =  'X'.
wa_order_header_inx-sales_org   =  'X'.
wa_order_header_inx-distr_chan  =  'X'.
wa_order_header_inx-division    =  'X'.
wa_order_header_inx-purch_no_c  =  'X'.
wa_order_header_inx-purch_date  =  'X'.
wa_order_header_inx-doc_date    =  'X'.
wa_order_header_inx-currency    =  'X'.
wa_order_header_inx-ref_1       =  'X'.
***// Ship to party
CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
EXPORTING
input  = sfdc-kunag
IMPORTING
output = sfdc-kunag.
gs_order_partners-partn_numb = sfdc-kunag.
gs_order_partners-partn_role = 'WE'.
CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
EXPORTING
input  = gs_order_partners-partn_numb
IMPORTING
output = gs_order_partners-partn_numb.
APPEND gs_order_partners TO gt_order_partners.
CLEAR: gs_order_partners.
***// Sold to Party
CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
EXPORTING
input  = sfdc-kunnr
IMPORTING
output = sfdc-kunnr.
gs_order_partners-partn_numb = sfdc-kunnr.
gs_order_partners-partn_role = 'AG'.
CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
EXPORTING
input  = gs_order_partners-partn_numb
IMPORTING
output = gs_order_partners-partn_numb.
APPEND gs_order_partners TO gt_order_partners.
CLEAR: gs_order_partners.
***// Clubed all materials
LOOP AT it_items.
it_item_temp-matnr     = it_items-matnr.
it_item_temp-kwmeng    = it_items-kwmeng.
it_item_temp-kwert     = it_items-kwert.
it_item_temp-reg_dis   = it_items-reg_dis.
it_item_temp-add_dis   = it_items-add_dis.
it_item_temp-tann   = it_items-tann.
COLLECT it_item_temp.
ENDLOOP.
***// Saving Line Item data
LOOP AT it_item_temp.
isrno = isrno + 10.
gs_order_items_in-itm_number = isrno.
CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
EXPORTING
input  = it_item_temp-matnr
IMPORTING
output = it_item_temp-matnr.
gs_order_items_in-material = it_item_temp-matnr.
gs_order_items_in-plant        =  sfdc-werks.
gs_order_items_in-currency     =  'INR'.
IF it_item_temp-tann = 'X'.
gs_order_items_in-item_categ   =  'TANN'.
ENDIF.
APPEND gs_order_items_in TO gt_order_items_in.
CLEAR gs_order_items_in.
SELECT SINGLE knumh
INTO lv_knumh
FROM a005
WHERE kappl = 'V'
AND   kschl IN ('ZR04', 'ZR00')
AND   vkorg = '2700'
AND   kunnr = sfdc-kunnr
AND   matnr = it_item_temp-matnr.
IF sy-subrc = 0.
SELECT SINGLE kbetr
INTO it_item_temp-kwert
FROM konp
WHERE knumh = lv_knumh.
ELSE.
gs_order_conditions_in-itm_number  = isrno.
IF sfdc-potype = 'SFSD' .                              " Sales and Distribution
gs_order_conditions_in-cond_type  = 'ZR04'.
ELSEIF sfdc-potype = 'SFHO'.                           " Hospitality
gs_order_conditions_in-cond_type  = 'ZR00'.
ENDIF.
it_item_temp-kwert = it_item_temp-kwert .
gs_order_conditions_in-cond_value = it_item_temp-kwert .
gs_order_conditions_in-currency   = 'INR'.
APPEND gs_order_conditions_in TO gt_order_conditions_in.
CLEAR gs_order_conditions_in.
gs_order_conditions_inx-itm_number   =  isrno.
gs_order_conditions_inx-cond_type    = 'X'.
gs_order_conditions_inx-cond_value   = 'X'.
gs_order_conditions_inx-currency     = 'X'.
gs_order_conditions_inx-updateflag   = 'X'.
APPEND gs_order_conditions_inx TO gt_order_conditions_inx.
CLEAR gs_order_conditions_inx.
IF sfdc-potype = 'SFSD'.
***// Regular Discount to Customer
IF it_item_temp-reg_dis <> '0.00'.
gs_order_conditions_in-itm_number  = isrno.
gs_order_conditions_in-cond_type  = 'ZDID'.
gs_order_conditions_in-cond_value = it_item_temp-reg_dis * lv_kbetr. " 10 .
gs_order_conditions_in-currency   = 'INR'.
APPEND gs_order_conditions_in TO gt_order_conditions_in.
CLEAR gs_order_conditions_in.
gs_order_conditions_inx-itm_number  = isrno.
gs_order_conditions_inx-cond_type    = 'X'.
gs_order_conditions_inx-cond_value   = 'X'.
gs_order_conditions_inx-currency     = 'X'.
gs_order_conditions_inx-updateflag   = 'X'.
APPEND gs_order_conditions_inx

Dear Marthanda,
Is there any Status Profile attachec in to your Sales Order Type in T. Code: VOV8 (Tab: Transaction Flow, Field: Status Profile)?
If yes, remove it.
If not, then...
Check error with:
T. Code: SM13/ ST22
For more info, refer link:
Error in the status table JSTO
Hope, this may help you.
Best Regards,
Amit

Similar Messages

  • Sales order Error No status object is available for SDI 2258674/0

    Dear Friends,
    While creation of sales order I am getting following error.
    No status object is available for SDI 2258674/0
    Message no. BS001
      Diagnosis
         When trying to read the status of an object (SDI 2258674/0), a system
         error occurred: For object number VB0002258674000000 there is no status
         object.
    Procedure
         Please contact your system administrator.
    Regards
    Sasikanth.Ch

    No status object is available
        for SDI 2258674/0
    If your system throws the above error message, then go to VA02, input the sale order reference and execute.
    From top menu bar, click on Goto -- Header -- Status . There again click on Object status  and check whether any lock is there. If so, change it and then retry
    thanks
    G. Lakshmipathi

  • Error "No status object is available for Unknown Object " in Shopping Cart

    Hi all,
    We are getting error "No status object is available for <Unknown Object>" while creating shopping carts of any type .
    Please suggest if any configuration setting needs to be done.
    Thanks and Regards,
    Navdeep Malik

    Dear Navdeep
    The error is likely caused by one or more entries in table BBP_DOCUMENT_TAB that are without objkey or guid.
    did you delete some entries from SRM transaction tables?
    Check table BBP_DOCUMENT_TAB entries to see any GUID which is not present in the system.
    You can verify this by checking whether there is an entry in CRMD_ORDERADM_H (header) table
    with GUID = <guid stored in bbp_document_tab>
    Regards
    Lauren

  • Error importing new version of our app "Application not available for edit"

    Hi,
    We are trying to import an app and get the error: Application not available for edit
    thats it on a clean white background - Application not available for edit shows up at the top left corner of the screen.
    Any clues?
    We tried a new id, tried a custom id.
    Then we tried deleting the existing app so we could insert the new app.
    We can't delete either.
    Help!

    I'm going to hijack this thread and ask a follow up question to Scott (or whoever reads this).
    When we export our application out of DEV it gets exported as Run + Build. When I have the DBA import into test or production on the Import screen I have them set it to Run Only and Reuse the Application ID. After installing it just forwards you to the same white screen with the "Application not available for edit" message on it. Now I understand the actual message since its Run Only, but its not clear that the import actually worked correctly or not.
    So although it does seem to import correctly, they always get nervous when they see this that it didnt import correctly. So is it better to have them import as Run + Build and then go change the build status through the admin front end rather than the way I'm doing it now?

  • Portal error in SRM 7.0 -"There is no iView available for  system "SAP_SRM"

    Hi All,
    We have portal ( SAP EP 7.0) as the front end for SRM 7.0 ,We have integrated SRM with portal through the system alias SAP_SRM.
    With the PDP scenario the users are facing the below issue while they try to open any documents ( let it be RFx/contract).
    "There is no iView available for  system "SAP_SRM": object "cont". For more information, contact your administrator."
    We installed the latest JRE (1.6.0.17) in the machine , but it didn't fix the problem. It appears to be a a lorcal issue with the settings in browser as some people ( very few) are able to open the documents.
    Any pointers?
    Thanks
    Arun

    Hi Arun,
    Pls check the portal content and portal roles with iviews maintained properly or not.
    Pls chek this page for ivew and portal role matrix. and cross check with your portal roles.
    This might help you.
    http://help.sap.com/saphelp_srm70/helpdata/en/27/d1185fd9764001953386c6e10058ab/frameset.htm
    Regards
    Kiran

  • "Error -10452 occurred at AI singlescan, no interrupt level available for use."

    AI sample channel (single point waveform).vi
    Error -10452 occurred at AI singlescan.
    Possible reasons:
    NI-DAQ LV: No interrupt level available for use.
    I have configured 2 virtual channels to use AI chn0 and chn1 in Measurment and Automation explorer, but I get error -10452 in the test panel.

    SS 01,
    In order to better troubleshoot this error, can you tell me what board you are using, what operating system you have, and what versions of NI-DAQ and LabVIEW you have installed?
    Have a great day.

  • BAPI_OBJCL_GET_KEY_OF_OBJECT - Class type 001 requires additional objects

    ABAP'ers
    I am trying to use BAPI's to complete class assignments (mimicking CL20N). 
    I am using BAPI_OBJCL_GET_KEY_OF_OBJECT to get the internal object key that is needed for BAPI_OBJCL_CHANGE_KEY, which I am using to complete the classification.
    When I execute BAPI_OBJCL_GET_KEY_OF_OBJECT for class type 002 I get the internal key needed for the second BAPI.
    When I execute the same BAPI for class type 001 I get the following error:
    "CL669 - Class type 001 requires additional objects"
    I have seen other posts on the forums on how to do this for class type 023, but I need to complete this for class type 001. 
    What are the additional objects needed? 
    Can I use this feature if a material HAS NOT been extended to a plant or storage location?
    I have looked in table INOB and there are no entys for this class type - is this normal?  Is there something that I am missing?
    I have already tried internal and external values, concatenating with the client number and plant number but still get the same error.

    Hey Chris,
    You cannot use the BAPI for class type 001, This BAPI can only be used with class types which have multiple objects enabled.
    For changing the characteristics of material try using  BAPI_OBJCL_CHANGE.
    Here the key of the object will be your material number

  • Error : Transaction not possible to save all objects successfully

    Hi All,
    We are facing the below error after our CRM 7.0 upgrade when we save Service ticket and IR in IC web.
    The flow is unknown, some times when we create a new ticket it comes some times when we edit existing ticket comes.
    Strange thing is we are unable to reproduce the same in our pre prod and also prod environment
    Only our agents are able to reproduce.
    Service Ticket : Error
    ! Transaction not possible to save all objects successfully.
    u221A It was not possible to save all objects successfully
    u221A The predecessor does not exist on the database.
    u221A The predecessor does not exist on the database.
    IR: Error
    Status object not available on Unkonwn object
    [The status dropdown is empty]
    Please help us with any pointers on the same.As we are not able to get to the root cause.
    Thanks
    AMol

    Hello Amol,
    You say that you upgrade your system to CRM7 that means your BADI_SAVE (or ACTIONS etc') are written with Function modules and maybe you add some new coding with BOL/GENIL.
    We had some similar problem  so we rewrite all BADIs ACTIONS PARTNER DETERMINATIONS etc' to work only with BOL/GENIL technology and it solve our problem.
    Hope it helped or at least gave you some direction.
    Good Luck
    Eli

  • Error "soap fault: No operation available for request" in proxy to soap Scenario

    Hi Experts,
    Unable to trace the below error when pushing the message from RWB while testing the PROXY to SOAP interface
      Delivering the message to the application using connection SOAP_http://sap.com/xi/XI/System failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException: SOAP: response message contains an error XIAdapter/PARSING/ADAPTER.SOAP_EXCEPTION - soap fault: No operation available for request {http://schemas.xmlsoap.org/soap/envelope/}Envelope.
    Thank you very much if any one provided the solution
    Regards,
    Yugandhar 

    Hi Yugandhar,
    Check the below thread,
    Connecting from SAP PI To Salesforce
    Regards
    RK N.

  • Error IW351-------System: Status object does not exist

    Hello,
    I am getting bleow error while saving service order.
    System: Status object does not exist. Message Numner IW351
    Actually I have done one enhcement in the User exit of the Sales order in the form Routine...
    USEREXIT_SAVE_DOCUMENT_PREPARE  in MV45afzz.
    When i Try to save the service order i get the error messages which is coming from my validation
    After the error messgae i press ENTER and then try to change the order by clcicking on the advance shipment.
    As soon as i click on that i get a STOP messgae.
    Which i as below.
    System: Status object does not exist
    If I comment all my code and write only error message then it comes.
    but it does't come for information and warning message.
    actually steps are
    1. go to IW51
    2. create notification then service order then sales order
    3. if product hierarchy is different for material then it should display error on saving
    4. it is giving error message(my error message)
    5. if i press enter and then click on advance shipment icon(truck) for change it display standard message.
    which turn me out of transaction.
    but if i click on advance shipment icon without pressing enter its working fine..
    my error message is a normal error message .
    message e038(zcrm)
    " service line must be same".
    pls suggest.
    Regards
    LOKESH

    Hi,
    After MESSAGE add STOP. :
    MESSAGE ixxx(xxx) with param1 param2 param3 DISPLAY LIKE 'E'.
    STOP.
    or If ambiguity with usage of  STOP being obselete use EXIT after message.
    MESSAGE ixxx(xxx) with param1 param2 param3 DISPLAY LIKE 'E'.
    EXIT.
    BR
    Dep

  • Purchase Requsition change Error:current status object ORD 300390  prohibit

    Dear Experts,
    When user changing Purchase requisition for services against internal order 3003910,its giving error message
    current status object ORD 300390 prohibits business transaction.
    procedure:
    to process the business transaction material purchase requisition ,you first have to change
    the status of object"ORD 300390"to allows the transaction of material purchase requisition.
    this gives the overview of the system and the user that effect the transaction.a transaction can be executed 
    if at least there is one status that allows and its no status that forbids.
    please advise me.
    Regards,
    Varun

    Hi,
    Can you please check whether you order is released or not? And please give message number too.
    Regards,
    NNR

  • Exchange Connector 3.0 (Hotfix Release) Error - Error Message=The key value of an object cannot be changed.

    Hello,
    I am running Service Manager 2012 with the Exchange Connector 3.0 RTM (Re-release Version).  The issue I have is that when an e-mail is processed that is trying to update the status or event log of an incident, the Exchange Connector encounters an error
    and will not update the object.  The Operations Manager log denotes: 
    Exchange Connector: Unable to process mail item. Subject="Close Ticket: [IRXXXXX]", Error Message=The key value of an object cannot be changed.
    This will happen on a seemingly random selection of Incident work items.  I cannot correlate them with a specific template, exchange connector, or incident tier queue that could be causing the issue.  I can recreate the way a specific ticket
    was created and update it through e-mail without issue, and the next ticket can cause the error to trigger. 
    I have already opened a Microsoft Support Case using our Software Assurance agreement.  After a few months of troubleshooting the issue and trying different fixes, Microsoft support said they were unable to fix the problem and that we would need to
    purchase Premier support to go further. At this point I thought I would reach out to the community for ideas.
    The setup I have for the Exchange connectors is as follows.
    I have three separate Exchange connectors set up to three different mailboxes.  One Exchange connector processes external support tickets and applies a specific template.  Another processes client support tickets and applies a different template. 
    And the last Exchange connector processes internal tickets and also processes the updates of tickets created by the other two exchange connectors. 
    Here are the fixes I've attempted so far:
    1.  Changed the templates that each Exchange connector applies.
    2.  Changed the management pack that each template is stored in.
    3.  Checked my management pack(s) for extended classes by searching for Extension="true" (This was also checked by Microsoft support)
    4.  Deleted each Exchange connector and recreated each connector
    5.  Deleted each Exchange connector, deleted the management pack, and reinstalled the management pack and connectors
    6.  Repeated Step 5, deleted Microsoft.SystemCenter.ExchangeConnector.dll and Microsoft.SystemCenter.ExchangeConnector.resources.dll and then installed the Exchange connector Re-release version 3.0 Published 10/7/2013 (which is supposed to address this
    issue)
    7.  Deleted the HealthServiceState folder and restarted the Management Service
    I'm not really sure what to do at this point.  I've put many hours into customizing my installation to get it working for my organization so reformatting and starting from scratch would be a nightmare scenario.  This environment is in production.
    I do have a band-aid in place using Orchestrator.  Basically I have a monitor task searching for the error message and when it finds one it searches the mailbox for the offending e-mail and applies either the Resolve or Close status change that is requested
    from the user.  However, I do not have it working to update the ticket if a comment is applied to the incident.  If anyone is in this position and needs to know how to apply this Orchestrator task I am willing to provide my workflow.
    I am new to the community and am already impressed with the amount of help and effort there is in this forum.  I appreciate in advance any help that is provided and am open to any ideas at this point.  I can post more information as needed.
    Thank you,
    John

    Yes that is the whole template.  However, I did confirm that this is only happening to incidents where either of two situations triggers a runbook to fire and modify the incident.  When I remove the activity from the incident it does clear the
    issue.  For some background the first Runbook Activity set's the first response date when an incident is resolved if the first response value is null.  The second assigns the incident to a user upon creation if the title contains assignto:username;
    1.)
    <ObjectTemplate ID="Template.d33b5bbcaf3c49b18d8b72bc1e5e1ee4" TypeID="IncidentManagement!System.WorkItem.Incident.ProjectionType">
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Incident_Library!System.WorkItem.Incident']/Escalated$">False</Property>
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Incident_Library!System.WorkItem.Incident']/NeedsKnowledgeArticle$">False</Property>
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Incident_Library!System.WorkItem.Incident']/HasCreatedKnowledgeArticle$">False</Property>
    <Object Path="$Context/Path[Relationship='CustomSystem_WorkItem_Activity_Library!System.WorkItemContainsActivity' TypeConstraint='CustomMicrosoft_SystemCenter_Orchestrator!Microsoft.SystemCenter.Orchestrator.RunbookAutomationActivity']$">
    <Property Path="$Context/Property[Type='CustomMicrosoft_SystemCenter_Orchestrator!Microsoft.SystemCenter.Orchestrator.RunbookAutomationActivity.Base']/RunbookId$">4085f0da-ab83-48e5-bbe3-1f3b5fa2dc4a</Property>
    <Property Path="$Context/Property[Type='CustomMicrosoft_SystemCenter_Orchestrator!Microsoft.SystemCenter.Orchestrator.RunbookAutomationActivity.Base']/TemplateId$">Template.d33b5bbcaf3c49b18d8b72bc1e5e1ee4</Property>
    <Property Path="$Context/Property[Type='CustomMicrosoft_SystemCenter_Orchestrator!Microsoft.SystemCenter.Orchestrator.RunbookAutomationActivity.Base']/IsReadyForAutomation$">True</Property>
    <Property Path="$Context/Property[Type='CustomMicrosoft_SystemCenter_Orchestrator!Microsoft.SystemCenter.Orchestrator.RunbookAutomationActivity.Base']/PropertyMapping$">&lt;?xml version="1.0" encoding="utf-16"?&gt;
    &lt;ParameterMapping xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;
    &lt;ParameterList&gt;
    &lt;RunbookParameterItem&gt;
    &lt;Name&gt;Get RA Guid&lt;/Name&gt;
    &lt;Id&gt;344b15effc1a44528e517c5b4227179c&lt;/Id&gt;
    &lt;Type&gt;String&lt;/Type&gt;
    &lt;Value&gt;Generic::Id&lt;/Value&gt;
    &lt;Direction&gt;In&lt;/Direction&gt;
    &lt;ContextInfo /&gt;
    &lt;/RunbookParameterItem&gt;
    &lt;/ParameterList&gt;
    &lt;RunbookId&gt;4085f0da-ab83-48e5-bbe3-1f3b5fa2dc4a&lt;/RunbookId&gt;
    &lt;/ParameterMapping&gt;</Property>
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Activity_Library!System.WorkItem.Activity']/ChildId$">1906</Property>
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Activity_Library!System.WorkItem.Activity']/Status$">$MPElement[Name='CustomSystem_WorkItem_Activity_Library!ActivityStatusEnum.Active']$</Property>
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Activity_Library!System.WorkItem.Activity']/Skip$">False</Property>
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Library!System.WorkItem']/Title$">Set First Response on Resolve</Property>
    </Object>
    </ObjectTemplate>
    2.)
    <ObjectTemplate ID="Template.b311e1f9126e4e19bbbbeb65ddb220ba" TypeID="IncidentManagement!System.WorkItem.Incident.ProjectionType">
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Incident_Library!System.WorkItem.Incident']/Escalated$">False</Property>
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Incident_Library!System.WorkItem.Incident']/Status$">$MPElement[Name='CustomSystem_WorkItem_Incident_Library!IncidentStatusEnum.Active']$</Property>
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Incident_Library!System.WorkItem.Incident']/NeedsKnowledgeArticle$">False</Property>
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Incident_Library!System.WorkItem.Incident']/HasCreatedKnowledgeArticle$">False</Property>
    <Object Path="$Context/Path[Relationship='CustomSystem_WorkItem_Activity_Library!System.WorkItemContainsActivity' TypeConstraint='CustomMicrosoft_SystemCenter_Orchestrator!Microsoft.SystemCenter.Orchestrator.RunbookAutomationActivity']$">
    <Property Path="$Context/Property[Type='CustomMicrosoft_SystemCenter_Orchestrator!Microsoft.SystemCenter.Orchestrator.RunbookAutomationActivity.Base']/RunbookId$">ca88b13b-861a-4d39-a3cb-fd912d951e35</Property>
    <Property Path="$Context/Property[Type='CustomMicrosoft_SystemCenter_Orchestrator!Microsoft.SystemCenter.Orchestrator.RunbookAutomationActivity.Base']/TemplateId$">Template.b311e1f9126e4e19bbbbeb65ddb220ba</Property>
    <Property Path="$Context/Property[Type='CustomMicrosoft_SystemCenter_Orchestrator!Microsoft.SystemCenter.Orchestrator.RunbookAutomationActivity.Base']/IsReadyForAutomation$">True</Property>
    <Property Path="$Context/Property[Type='CustomMicrosoft_SystemCenter_Orchestrator!Microsoft.SystemCenter.Orchestrator.RunbookAutomationActivity.Base']/PropertyMapping$">&lt;?xml version="1.0" encoding="utf-16"?&gt;
    &lt;ParameterMapping xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;
    &lt;ParameterList&gt;
    &lt;RunbookParameterItem&gt;
    &lt;Name&gt;RA Activity GUID&lt;/Name&gt;
    &lt;Id&gt;5677d117a0294a2c898a695032f26c72&lt;/Id&gt;
    &lt;Type&gt;String&lt;/Type&gt;
    &lt;Value&gt;Generic::Id&lt;/Value&gt;
    &lt;Direction&gt;In&lt;/Direction&gt;
    &lt;ContextInfo /&gt;
    &lt;/RunbookParameterItem&gt;
    &lt;/ParameterList&gt;
    &lt;RunbookId&gt;ca88b13b-861a-4d39-a3cb-fd912d951e35&lt;/RunbookId&gt;
    &lt;/ParameterMapping&gt;</Property>
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Activity_Library!System.WorkItem.Activity']/ChildId$">1120</Property>
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Activity_Library!System.WorkItem.Activity']/Status$">$MPElement[Name='CustomSystem_WorkItem_Activity_Library!ActivityStatusEnum.Active']$</Property>
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Activity_Library!System.WorkItem.Activity']/Skip$">False</Property>
    <Property Path="$Context/Property[Type='WorkItem!System.WorkItem']/Title$">Execute Orchestrator IR - Autoassign</Property>
    </Object>
    </ObjectTemplate>

  • Error in RFx with user-specified status profile

    Hi experts,
    I am having an issue in SRM 7.0 creating status profile for RFx.
    When I try to create a new RFx, I get an error screen with message "Status profile ZCCP is not allowed for "Bidding Header""
    In order to configure this, I went through the steps described in SAP Library:
    1- Define user-specified status profiles in Customizing for Supplier Relationship Management under SRM Server->Cross-Industry Functions->Application Settings->User-Specified Status->Create Status Profile for User-Specified Status:
    I created status profile ZCCP with the following data:
    10     SUSP     Suspended     10     90     1     1
    90     HABI     Abilities 10     90     1     1
    and I assigned the status profile to object type "Bid Invitation Header (PS_BBP)"
    2- Assign user-specified status profiles to procurement documents in Customizing for Supplier Relationship Management under  SRM Server->Cross-Industry Functions->Application Settings->User-Specified Status->Assign User-Specified Status Profiles to Purchasing Documents
    I created a new entry with:
    BUS2200     H Header     0     ZCCP
    3- Assign user-specified status profiles for each transaction type in Customizing for Supplier Relationship Management under  SRM Server->Cross-Application Basic Settings->Define Transaction Types
    I assigned the status profile ZCCP to all relevant operation types of obj. type BUS2200.
    Does anyone know where this went wrong??
    Thanks in advance!
    Regards,
    Joã

    Hi joa
    http://help.sap.com/saphelp_srm70/helpdata/EN/e8/70ff4187526430e10000000a1550b0/frameset.htm
    You can use Status Management for records and documents. In Customizing, define the status values and the permitted sequence of these values. Users can then set these status values as attributes for records or documents.
    The following Customizing steps need to be performed for Status Management:
    ·        Status value definition
    To perform this step, choose IMG activity Customizing for Status Management -> Define Status For more information, see the online documentation for the IMG activity.
    Status profile definition
    To perform this step, choose IMG activity Customizing for Status Management -> Define Status Profile. For more information, see the online documentation for the IMG activity.
    Status network definition
    To perform this step, choose IMG activity Customizing for Status Management -> Define Status Network. For more information, see the online documentation for the IMG activity.
    ·         Assignment of a status profile to an element type
    For element types whose elements you want to use Status Management for, assign an existing status profile to connection parameter STATE_PROFILE_ID. (The connection parameter is only offered for records and documents.)
    Subsequently, users will be offered the attribute Status in the attribute maintenance dialog box whenever they edit the elements in question. Input help contains the status values that you have created.
    If you want to use Status Management for the API, you require the following authorization objects: S_SRM_STAT, S_SRM_ST_P and S_SRM_ST_N.
    br
    muthu

  • Error coming while launching campaign from UI screen

    Hi All
    We have a problem launching campaign from UI screen,as when we try and launch the campaign from the screen
    following error is coming:
    Cannot display view BSPWD_BASICS/WorkAreaHostViewSet of UI Component CRM_UI_FRAME
    An exception has occurred Exception Class  CX_SHM_OUT_OF_MEMORY - Insufficient Shared Objects Memory Available
    Method:  CL_SHM_AREA=>_ATTACH_WRITE70
    Source Text Row:  2
    Error occurred during navigation
    An exception has occurred Exception Class  CX_BSP_WD_RUNTIME_ERROR -
    Method:  CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW
    Source Text Row:  165
    Cannot display view BSPWD_BASICS/BreadCrumbView of UI Component CRM_UI_FRAME
    An exception has occurred Exception Class  CX_BSP_WD_INV_VA_ASSIGNMENT - Assigned view in view area Root could not be loaded.
    Method:  CL_BSP_WD_HIST_MANAGER_BASE=>GET_VIEW_ASSEMBLY 
    Please suggest what should i do to correct this.
    Any help will be highly appreciated
    Regards
    Ashish

    Hi Rohit
    Thats what i am really surprised off too,what we did was a little bit configuration for changing the skin of the screen,so a configuration request was created,now whatever changes i have done regarding the change in the skin etc. was not actually reflecting in the system & personalise button become ineffective on the main screen of UI.
    So to just go back to previous state ,i deleted that request.
    This is whatever we did,after that when we tried running campaign ,this error is coming,but i am not sure that whether this error is coming after this deletion of request or may be it was coming before too but i did not check campaign before these customisations.
    There is no Z object involved as role applied is Standard SAP Business Role & the probs coming is in the Viewset of standard Role.
    I have tried changing the role & created a Z role and applied it but of no use since the result is same,the error that i have already described.
    I am really clueless.
    Regards
    Ashish

  • While doing PGI.... error coming deficiancy of stock

    Dear Guruz,
    while doing PGI.... error coming deficiancy of stock. In MMBE the stock quantity is 40 and i am trying to issue 1 qty.
    PL discuss
    Edited by: Csaba Szommer on Oct 23, 2011 7:48 PM

    Hi,
    It seems to be u have not done "Transfer order confirmation".
    Pleas do the TO confirmation then try do PGi and let us know the status....
    Regards
    sankar

Maybe you are looking for