PR Release Strategy tab processor field is not getting displayed

Hi Experts,
While creating Purchase Requisition, In the Release Strategy tab processor field is not getting displayed which should be showing the name of the user id which has been configured in the SPRO.
SPRO--> Rel Proc for PR > Rel Group> Rel Code--> Object type (US) and --> Agent (User id who has to approve the PR).
release strategy - Release code  -work flow 1
That processer name is not displaying
Thanks
chandoo

This is the workflow forum.

Similar Messages

  • Data carrier & application field are not getting displayed in CV04N

    Hi Guru's
    In TCode : CV04N,  data carrier & application field are not getting displayed.
    While i compare with my IDES system, data carrier & application fields are getting displayed in CV04N.
    Let me know is there any configuration that has been missed out.
    Regards
    Bhanu

    Hi Bhanu,
    Please note that the fields 'Data carrier' & 'Application field'  are visible only if no document type is entered.
    Suppose you enter a document type and press ENTER then these fields disappear. This is because the field 'Application' was designed when only the storage is archive, vault or SAP-SYSTEM was possible and the number of added originals was limited.
    Currently DMS allows storage of originals on Content Server and there is no limit on the number of added originals, the system behavior was changed due to performance reasons. To avoid performance problems if you search for a document with a lot of originals attached this field gets invisible if you enter a document type which uses the KPRO storage.
    Regards,
    Pradeepkumar Haragoldavar

  • Condition tab in STO is not getting displayed

    Hi,
    While creating STO, the Condition tab in Line Item is not getting displayed.
    Why it is not getting displayed? Where do I need to change the configuration?
    Do I need to maintain any Pricing Procedure in MM?
    Please guide.
    Regards,
    PK

    Hi,
    Check whether you have maintained Schema determination for respective document type and STO.
    below mentioned is the navigation path to maintain the same.
    > spro - materials management - purchasing - conditions - define price determination process - define schema determination - Determine Schema for Stock Transport Orders
    Here maintain the Purchasing Schema group , Document type & pricing procedure for STO.
    Standard Pricing procedure for STO is RM2000.
    Hope this is helpful..
    Regards,
    Vamshi

  • Xpath field details not getting displayed

    Hi all,
    I am working on a idoc to file scenario, where I want to refer the receiver to be determined based upon certain condition or values that get populated for a particular field (using receiver determination). But the problem is that when I click on the condition tab on receiver determination I get a warning "Problem loading schema description"
    with message as
    "Message interface does not exist in any software components installed on this business system"
    But since it is an Idoc at the source we dont have any msg interfaces, further if i neglect this warning message and go further, I am not getting the fields or details of the Idoc structure getting displayed in the xpath.
    But the same when I use for a file scenario(file as sender) I get the details of the context object if any.. Let me know how to resolve this..
    Thanks in advance
    Regards,
    Nithiyanandam

    Hi,
    Yes you coudl add the missing Software component as per below steps
    Even if you open Business system in Integration Directory, at last tab "Other Attributes" --> you will find the list of software components.
    Press the tab Third Party service to verify the list against SLD.
    If its not avaialbel in SLD
    1. Goto System Landscape Directory
    2. select Business Landscape and slect the apporpriate Business system and open it. (Click the name of BS)
    3. There you will get the list of Software components added in it.
    4. Verify the technical system name.
    5. Also verify if same technical system name is used after importing the software component in Integration Repository (IR).
    Goto IR -- > Explore the SCV -->Double click on name of software component version -->Check Interface Import as Import of RFC and have the same details  in Connection data as per technical system
    If everything is setup just refresh the SLD_CACH and import the scenario once again in Integration Directoy and process it.
    You will see the IDOC in Business system.
    Thanks
    Swarup
    Edited by: Swarup Sawant on Feb 4, 2008 8:00 AM

  • Time From field is not getting displayed in correct format in Activities

    Hello Experts ,
    We are facing one problem in UI , when we search for Activities in Web UI . In the field "Time From" we are not getting the time in correct format , ie is instead of  getting time as say 13::38 we are getting time as 13::3 , but when we place cursor on it the field it shows correct format say 13::38.
    Can any one suggest how to display in correct format ?
    Regards
    Vinayak

    Hi,
    Its an SAP Product error.
    Please check note 1151821 ,if you facing the greyed button in time.Also the other note 1136402 needs to be applied for time display issue
    - Bobby

  • Adobe field values not getting displayed in UWL workitem

    Hi,
    We filled a ISR Adobe form and submitted it and generated the corresponding notification number.
    On clickng the 'display and print form', the form is gettin displayed properly.
    But on checking the form at the approvers UWL, the field values are not getting properly filled.
    The form is getting properly displayed at R/3  through IQS22 and also the data values are properly attached to the notification number( checked through ISR_PROCESS_EVENT ).
    Kindly help.
    Thanks and Regards,
    Anto.

    Thanks for publishing your own solution!
    Cheers,
    Noë

  • Ouput field is not getting displayed

    Hi All,
    I created an object type in BOB which gives me ernam field of MARA table on testing.
    I need to use that object type in the new workflow in which user inserts a material number and should get ernam (Created by) as an output field.
    I tied doing that but on testing , it shows task's status 'COMPLETED' but does not display the ERNAM.
    What else I need to do to make it displayed on the screen?
    Thanks in advance
    Shweta

    Hi Vidya,
    I used 'SAP_WAPI_CREATE_EVENT' to pass the values. Also , I created an event parameter 'MATERIAL' so that the value can be passed as the event gets triggered then I did the binding of event parameter and workflow container parameter of material.
    after that i run the following code in se80.
    DATA : MATERIAL like SWR_STRUCT-OBJECT_KEY,
           lv_matnr TYPE mara-matnr.
    DATA : wa_event like  SWR_STRUCT-EVENT,
           wa_obj LIKE swr_struct-object_typ.
    DATA : lv_user TYPE SWC_ELEM VALUE 'INITUSER',
           LV_MATERIAL TYPE SWC_ELEM VALUE 'MATERIAL'.
    DATA : T_MSG TYPE STANDARD TABLE OF SWR_MESSAG.
    DATA : flg(1) TYPE c.
    DATA : it_cont TYPE TABLE OF SWCONT,
           wa_cont like LINE OF it_cont.
    wa_event = 'ZCLICK_EVENT'.
    Wa_obj = 'ZDEMO_BOR1'.
       MATERIAL = lv_matnr.
       wa_cont-element = lv_user.
       wa_cont-value = sy-uname.
       append wa_cont to it_cont.
       CLEAR : wa_cont.
       wa_cont-element = LV_MATERIAL.
       wa_cont-value = LV_MATNR.
       append wa_cont to it_cont.
       CLEAR : wa_cont.
    CALL FUNCTION 'SAP_WAPI_CREATE_EVENT'
       EXPORTING
         object_type             = wa_obj
         object_key              = MATERIAL    "Key field in BOR
         event                   = WA_EVENT
    *   COMMIT_WORK             = 'X'
    *   EVENT_LANGUAGE          = SY-LANGU
    *   LANGUAGE                = SY-LANGU
        USER                    = SY-UNAME
    *   IFS_XML_CONTAINER       =
    * IMPORTING
    *   RETURN_CODE             =
    *   EVENT_ID                =
      TABLES
        INPUT_CONTAINER         = it_cont[]
        MESSAGE_LINES           = T_MSG[].
    *   MESSAGE_STRUCT          =
       READ TABLE T_MSG WITH KEY MSG_TYPE = 'E' TRANSPORTING NO FIELDS.
           IF SY-SUBRC = 0.
             Flg = 'N'.
             MESSAGE E208(00) WITH 'Error initiating Workflow.'.
            ELSEIF SY-SUBRC <> 0.
             MESSAGE 'Workflow initiated.' Type 'S'.
    After this code , I get a message 'Worlflow initiated' but I can not see the value being transferred to the workflow respective container

  • Dynamic mandatory field error message is not getting displayed in webui

    Hi,
    In Appointment if the importance is HIGH i made Location as mandatory.For this i enhanced BT126H_APPT/ApptDetails. In the get_p_location() method of BTACTIVITYYH i have written the code.
    Now the problem is Error message for this dynamic mandatory field is not getting displayed in webui.
    I debugged in DO_FINISH_INPUT error message is getting generated but it is not getting displayed in ui.
    Can anybody tell where the problem is?
    Thanks,
    Hari.

    Hi Hari,
    Really sorry do not know how to convert this nug file to text
    How ever quick solution for your problem would be just keep your validation in 'DO_VALIDATE_INPUT' method of the view controller.
    Means even if the User clicks on SAVE , Since it fails here , it would not allow you to go further.
    Thanks,
    Rajesh P

  • Text not getting displayed in PA40 action.

    Hello All,
    We upgraded from 4.6 to 5.0. When I doing the hiring or any other action, the text for the action type, reason for action or any other field is not getting displayed. Even when I select the entries the text for that is not getting displayed.
    like its displaying only 01- for Action type hiring.
    Thank You all in advance for your reponse!
    Chakri.

    Hello Sharath,
    I checked this and this table is having all the values properly maintained. Language, Action, Name of the action is maintained. Is there any place where we need to activate this in order for us to see the name of the action type also when we select an action in PA40.
    Thanks a lot for your response.
    Chakri.

  • Release Strategy Processor Names under Release Strategy tab for a PReq

    Hello Experts,
    We have situation in Release Strategy for Purchase Requsitions in which we need to display all approvers names under the Release strategy tab for a Purchase Requisition.
    Senerio work as follows.
    Based on the Release strategy customization settings,Purchase Requisition subjected to release strategy selects the approver names from a custom table.
    In the Custom table we have names of the approvers with release codes.
    Purchase Requisition displaying the names of the approvers according to alphabetical order.Hence it displays First one user or approver name under the release strategy according to the approver alphabetical order from the custom table.
    Can we display name of all approvers in one line according to initial investigation there is room for 40 characters under the release strategy tab.
    Let me know if any Standarad OSS notes available for this.
    Amogh

    Hi amogh if you configure with workflow the strategy and the name of the persons are in transaction SU01, you don´t need to put nothing. The release strategy shows the names of the persons that release the document, but if you change one person in the release strategy, the system don´t save history for this, all old documents that have been released for this person, release strategy is blank. You have to do a non standard report that shows what person releases what document.
    I hope that this information help you
    Rose

  • Not able to view release strategy tab in pr(change mode)

    Hi,
    i have created a pr at DEV and i am not able to view release strategy tab in change mode at DEV. please help???

    Hi,
    Please check if you activated the user exit EXIT_SAPLEBND_004
    (Include ZXM06U31) This exit is relevant for the overall release.
    If you activating the userexit, please ensure that you implement
    the coding line E_CEBAN = I_CEBAN. in the include
    . Please refer to point 3) of the attached note 365604.
    BR
    Nadia Orlandi

  • Purchase requisition release strategy tab missing

    Hi all
    I configured purchase requisition release strategy and ME51N is working issuing no error but it is not displaying Release Strategy Tab , please help me where i am wrong.

    hi,
    check few reasons:
    1. There might be more than 1 release strategy using the same class, due to which it is not possible for sap system to determine the unique rel. strategy..this normally happens when you copy the exsisting class and assign it to own new one...
    2. check the release strategy OMGSCK, is there any problem with your release strategy...
    3. Check whether you have maintained all the classified field in the document or not..
    4. check whether the release is assigned to any workflow...if so, then check the inbox pls...
    regards
    Priyanka.P

  • Missing Release Strategy Tab in PO

    Dear All,
    I am using EXIT_SAPMM06E_006 exit and added a new field using SAPLXM06 0101 ( ME21N ).
    Here i am able to see my custom field but unfortunately release strategy tab is missing.
    Can anyone help in this please....
    Thanks in Advance..

    Dear Faheem,
    Thank you very much.
    Your suggestion helped me a lot.
    One more doubt i am having.
    Here i want to use only SAPLXM06    0101.
    But i dont want to use other screens in that exit ( Screen numbers 0111, 0201, 0211, 0301, 0311 ).
    Because of these screens i am getting run time error as  "  The system attempted to use dynpro 0301 in program "SAPLXM06".
    *This dynpro does not exist. " while using RFQ or Quotation transactions.
    How can i deactivate or remove these screens from my exit MM06E005.
    please help me in this.
    Edited by: kalyan varma on Jan 5, 2011 6:17 AM

  • Preq release strategy tab disappears

    We are having an issue where a few odd times, we will find that a Preq is missing its Release Strategy Tab. Here is an example, and my findings so far below the image.
    Checking the Workflow, I see there was a workflow started, so I know the release strategy must have kicked in.
    I see that the workflow went to error, with the error saying "No Authorization to Release"
    However I checked the user, and they do have the correct Release Level Role.
    So I'm not sure where to check next?

    Our release strategies are just on PR value, see screens below.

  • ME29N - Release Strategy tab

    Hi people! I need help.
    When I have an Purchase Order released with 1 message green status and add 1 new message copyng from other and save, the release strategy tab dissapear...somebody can help me?
    thanks a lot!

    Please see the charecteristics in the release strategy if your have User ID or roles defined for the change. If the PO is changed by a user who is not defined as values then the problem occurs.
    Please advise how is your design of the release strategy
    Thanks

Maybe you are looking for