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

Similar Messages

  • Get variable in Target currency under currency conversion Tab for Key Figure

    Hi Experts,
    In one of the query in BEx Designer, for particular set of key figures I am unable to edit Target Currency under currency conversion.
    We created user exit and using a variable in BEx.
    When I chose currency conversion parameter in "Currency Conversion", Value in Target currency is empty but I am expecting the variable to get displayed over there.
    Please suggest me how to get variable in target currency. or how to edit property of key figure "Target Currency"
    Thanks,
    Saravanan.

    HI,
    which parameter you maintained in conversion type that is currency translation type which is maintained at T-code RSCUR and see which info object you maintained at currency tab after defining the currency translation type i.e at Target currency -> Info object  for determining Target currency which  is FROM INFO OBJECT in Target currency .
    Hope this will help you.

  • No messages under the 'Messages' tab for imported WSDL in External Definitions

    Dear All,
    I import this WSDL to the External Definitions but it is not showing any messages in the 'Messages' tab while WSDL clearly has message interfaces in it. Attached is the WSDL. You help is very much appreciated.
    Regards,
    Adil Khalil

    Hi, imported wsdl shouldn't have any import instruction.
    All import instruction should be changed to content of importing file.
    I see the code <xsd:import namespace="http://ouaf.oracle.com/"/> in your file.
    Hmm. but I imported you file and everything is fine
    Message was edited by: Mikhail Koshkin

  • Adding item data in Product tab for sales contract (crm_order_maintain)

    Hi, can I use crm_order_maintain to add line items under the product tab for a sales contract while creating or modifying an order. Is there any sample code to add the line items, I could look at.  I tried calling this FM from my custom tab and then called CRM_ORDER_SAVE but that did not add the line item. I guess I need to call it from the order_save badi and then call the crm_order_save FM as well from within the BADI. If someone could send me some sample code then I can double check if I am missing something.Am I on the right track to be using this FM for adding a line item under the product tab for the sales contract? Please help. thanks

    Hi, I've encountered the same problem while I was creating a Sub-Contract from a Master Contract.
    In my case the solution was:
    first create the Sub-Contract,
    CALL FUNCTION 'CRM_ORDER_MAINTAIN'
          CHANGING
            ct_orderadm_h     = i_ctorderadm_h
            ct_input_fields   = i_ctinput_fields
            ct_doc_flow       = i_ctdoc_flow
          EXCEPTIONS
            error_occurred    = 1
            document_locked   = 2
            no_change_allowed = 3
            no_authority      = 4
            OTHERS            = 5.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
        READ TABLE i_ctorderadm_h INTO wa_ctorderadm_h INDEX 1.
        APPEND wa_ctorderadm_h-guid TO i_objects_to_save.
    in wa_ctorderadm_h-guid now we have the guid of the newly created Sub-Contract.
    SELECT SINGLE it_type_to
                 INTO  v_it_type_to    " --> target item type
                 FROM  crmc_it_copy_ma
                 WHERE it_type_from = wa_out_orderadm_i-itm_type.
         Prepare tables
            wa_ctorderadm_i-header =
            wa_out_orderadm_i-header.   "Retrieved from CRM_ORDER_READ
            wa_ctorderadm_i-handle = '0000000001'.
            wa_ctorderadm_i-number_int = '0000000001'.
            wa_ctorderadm_i-product = wa_out_orderadm_i-product.
            wa_ctorderadm_i-ordered_prod =
            wa_out_orderadm_i-ordered_prod.
            wa_ctorderadm_i-description = wa_out_orderadm_i-description.
            wa_ctorderadm_i-itm_type = v_it_type_to.
            wa_ctorderadm_i-order_date   = sy-datum.
            wa_ctorderadm_i-itm_language = sy-langu.
            wa_ctorderadm_i-mode = c_a.   "c_a = 'A'
            wa_ctorderadm_i-header = wa_ctorderadm_h-guid.
            APPEND wa_ctorderadm_i TO i_ctorderadm_i.
            wa_input_fields-ref_handle = '0000000001'.
            wa_input_fields-objectname = 'ORDERADM_I'.
            REFRESH i_input_field_names.
            wa_input_field_names-fieldname = 'DESCRIPTION'.
            APPEND wa_input_field_names TO i_input_field_names.
            wa_input_field_names-fieldname = 'HEADER'.
            APPEND wa_input_field_names TO i_input_field_names.
            wa_input_field_names-fieldname = 'ITM_TYPE'.
            APPEND wa_input_field_names TO i_input_field_names.
            wa_input_field_names-fieldname = 'MODE'.
            APPEND wa_input_field_names TO i_input_field_names.
            wa_input_field_names-fieldname = 'NUMBER_INT'.
            APPEND wa_input_field_names TO i_input_field_names.
            wa_input_field_names-fieldname = 'ORDERED_PROD'.
            APPEND wa_input_field_names TO i_input_field_names.
            wa_input_field_names-fieldname = 'ORDER_DATE'.
            APPEND wa_input_field_names TO i_input_field_names.
            wa_input_field_names-fieldname = 'PRODUCT'.
            APPEND wa_input_field_names TO i_input_field_names.
            wa_input_fields-field_names = i_input_field_names.
            APPEND wa_input_fields TO i_ctinput_fields.
    After that I've called function 'CRM_ORDER_MAINTAIN', to copy the Items from the Master Contract.
    CALL FUNCTION 'CRM_ORDER_MAINTAIN'
            EXPORTING
              it_sales          = i_sales
              it_schedlin_i     = i_schedlin_i
            CHANGING
              ct_orderadm_i     = i_ctorderadm_i
              ct_input_fields   = i_ctinput_fields
            EXCEPTIONS
              error_occurred    = 1
              document_locked   = 2
              no_change_allowed = 3
              no_authority      = 4
              OTHERS            = 5.
    Maybe if you're not working with Contracts, the procedure is not properly correct.
    I suggest to put a break-point into crm_order_maintain and try to add the Item manually.
    If you reproduce exactly the standard, I'm shure it will work.
    Lorenzo

  • Class and release group and code in release strategy??

    hi experts ,
    Can some body explain me..
    I have created Characteristics and Class for for release strategy.
    But while creating release group , i should assign my class with release group , after doing this when i save , its giving error as check the release classes????
    I m using the same class what i have created for my company..
    So how to over come this issue
    Thanks

    Release Prerequisites
    Definition
    The release prerequisites indicate the sequence in which a purchase requisition or an external purchasing document must be approved via the release codes. The release prerequisites are defined in the Purchasing Customizing facility (in the release strategy).
    The approval procedure for purchase requisitions in an enterprise may be set up in such a way that a department manager must approve a requisition item before the next level of authority (e.g. the cost center manager). In this case, approval by the department manager is a prerequisite for approval by the cost center manager.
    Release Indicator
    Definition
    When a requisition or an external purchasing document has been processed via a release code, a release indicator is assigned to it.
    When the system sets which release indicator is defined in the Customizing facility for Purchasing (in the release strategy via the release statuses).
    What does the release indicator determine?
    Requisitions...
    External purchasing documents....
    Whether the item may be changed by Purchasing or Materials Planning and Control after the start of the release procedure
    Whether a new strategy is determined and whether existing releases must be cancelled in the event of changes
    Whether an RFQ or a PO may be created with reference to the item
    Whether the document may be changed by Purchasing after the start of the release procedure
    Whether a new strategy is determined and whether existing releases must be cancelled in the event of changes
    Whether the purchasing document is released for transmission
    Alternative Release
    Definition
    Within the release sequence, you can define alternatives. This means that several employees can effect release (signify approval) at a certain point in the sequence. If just one of these employees has effected release, the next release status is reached. The other employees thus need take no action.
    Five release codes are defined for purchase requisitions in an ascending hierarchy. The requisition item can be converted into either an RFQ or a PO if release has been effected either with the release codes 01, 02, 03 and 04 or - alternatively - with release code 05.
    The box with the information on the release strategy also offers you the possible alternatives for selection (see Displaying Release Information).
    An alternative release cannot be a prerequisite for the next release code. In the above example, the releases with codes 01, 02, 03 and 04 could not be prerequisites for release with 05.
    Release w. Classification (PReqs./Ext. Pur. Docs.)
    Use
    The aim of this procedure is to replace manual written authorization procedures using signatures by an electronic one, while maintaining the dual control principle.
    The person responsible processes the requisition or other purchasing document in the system, thereby marking it with an "electronic signature" which can give the document legal force.
    This release procedure can be used to approve requisitions and the external purchasing documents RFQ, PO, contract, scheduling agreement, and service entry sheet.
    Purchase requisitions are released either at item level or in total. There is no provision for item-wise release (i.e. partial approval) in the case of the external purchasing documents. The latter can only be released in their entirety.
    If you set up the release procedure with classification for purchase requisitions, the procedure without classification is deactivated.
    Prerequisites
    The release procedure with classification must have been set up in Customizing for Purchasing. In addition, a class with characteristics must have been created for each document (requisition, purchase order, etc.).
    If you wish to set up both the overall release procedure and the item-wise procedure for requisitions, you must create one class for each procedure.
    How to do this is outlined in the Implementation Guide (IMG) for Purchasing in Define Release Procedure for the relevant documents and in Set Up Release Procedure with Classification for purchase requisitions. You will find detailed information on classification in the R/3 Library in the documentation CA Characteristics and CA The Classification System.
    This procedure offers a wide range of possible combinations of release criteria. Should you nevertheless have other requirements, use the enhancement provided by SAP.
    Operation of Release Procedure w. Classification
    The characteristic values from a requisition or external purchasing document are passed on to the classification system.
    The system checks whether the values correspond with release conditions. If so, it assigns a release strategy.
    The persons responsible for the release codes process the document in the sequence defined in the release strategy.

  • Purchase Requisition release WF with multi-level release strategy

    Since it has been "a while" from my WF course and i lack experience with WF's (this is supposed to be the 1st one i implement, finally)...
    The problem I'm facing is really in planning phase of sketching up how my scenario should look like. I have to create couple of WFs for a project that involve purchase requisitions and purchase orders.
    The problem i'm trying to solve is logic concerning release strategy steps for this documents. They are set-up and well-deffined in customizing, but there are couple ofrelease steps for particular strategy.
    Scenario:
    1. someone creates a purchase requisition (event for BUS2009 is triggered, and workitem appears for release of Purch. Req. in their workplace)
    2. initiator of workflow executes his workitem and selects one of the release codes (this workitem is now complete) - i'd like for new workitem to appear in supervisors inbox automatically...
    3. now i need supervisor of initiator to release same purch. requisition with another release code (how to do it?)
    4. supervisor of supervisor (mentioned in step 3.) needs has the authorisation for final release with final release code.
    5. now the initiator from step 1. has to be notified that requisition has been released by overall head of department.
    Org structure i created looks like this:
    ORG. UNIT. Level 0 for Purch. Req. (with Head CEO of Plant as final approver)
    ORG.Unit.  Level 1 for Purch. Req. (with Head of level 1)
    ORG.Unit.  Level 2 for Purch. Req. (with Head of level 2 and Clerks 2a,b,c)
    So these guys (Clerk) 2a,b,c create Purch.Req. They or their Head of level 2 releases their requisitions with his release code Z1,
    Head of level 1 should recieve workitem in his inbox to be able to release it with his release code Z2.
    Director of the plant should recieve workitem for final release Z3, after Head 2 did his release with Z2, and then guys 2a,b,c should get notifications that their PR's are released.
    I managed to get the SAP's standard for Purch. Req. Release working but it's just not enough...
    Please advise me, guide me, if u have any idea, how could this be done, because i'm loosing a lot of time here, just searching and not seeing it. The problem is that we don't have any WF experienced guys that could help, so i'm kinda' stuck.
    Could standard be used here at all?
    Is it possible that the same task (for example. TS00007986 - Release requisition) appears more than once in the sam WF with different agent asignments?
    I dont have an idea how this scenario should be built in WF builder.
    BTW, i'll have 12-15 plants, does that mean 15 different WFs and Org Units?
    Help WF gurus.
    Thank you in advance,
    BaX

    Its' a while since I last time worked with PRs, but I'll give a try...
    This part is a bit confusing:
    >1. someone creates a purchase requisition (event for BUS2009 is triggered, and >workitem appears for release of Purch. Req. in their workplace)
    >2. initiator of workflow executes his workitem and selects one of the release >codes (this workitem is now complete) - i'd like for new workitem to appear in >supervisors inbox automatically...
    >3. now i need supervisor of initiator to release same purch. requisition with >another release code (how to do it?)
    Why do you want that the initiator (the creator of the PR) needs to go the business workplace and release the PR (or select the release code). Isn't this an unncessary step? Shouldn't it worked like this:
    1. Someone creates a PR
    2. PR "gets" a release code automatically with some logic defined in customization
    3. PR release work item apears in the supervisor's  workplace
    4. Initiator gets the mail
    If I recall correctly, the standard solution works like this, or has quite similar approach.
    Whatever way you decide to build your workflow, you won't most probably need a workflow for each plant, but you'll need several org units. But this all really depens on how you decide to do it...

  • Is Developer 2000 release 2.1 works under Oracle 9.2.05.

    Is Developer 2000 release 2.1 works under Oracle 9.2.0.5.
    If anyone can answer this will be real help.
    Thanks in advance.

    It may be available through Oracle Support depending on the platform you need. You will need a valid Support Contract and access to MyOracleSupport (http://support.oracle.com)
    Here is the info for Windows.
    Oracle Developer Server Release 2.1 for Microsoft Windows NT
    Part number: A63484-01
    Oracle Developer/2000 Release 2.1 for Windows NT and Windows 95
    Part number: A63486-01
    The following should be considered before attempt to request or use the above:
    1. This product was desupported long ago and is not entitled to any Technical or Development support.
    2. This product version was not Y2K compliant. As a result it likely will not install correctly as the installer is sensitive to the date.
    3. This product was never intended to work correctly on the current operating systems. So, even if you are able to get it installed, it likely will not work correctly.

  • Xcode target names only 'release' and 'debug'

    Hi,
    We like to create more build targets in our project, at the moment we have the standard 'release' and 'debug'. For a new version we need targets like 'release 4.1' and 'release 5.0' now. I duplicated the target entry, but if I try to build a target with a name different from 'debug' or 'release', I got an error: "file not fount: @executable_path/WidgetBinLib.dylib". If I change the target name to 'release' or 'debug' it works.
    Any idea, how we can use the other target names? Any settings we must change?
    thanks
    Klaus

    I think is something wrong with  .fr.rsrc/.fr files of duplicated target, Make sure the new target doesn't have an included from source target.
    HTH,
    -Kamran

  • Hi,I have uploaded an app build for pre release  and its still under processing So i uploaded a new build but still the issues is not resolved.Please help...Thanks

    Hi,
    I have uploaded an app build for pre release  and its still under processing So i uploaded a new build but still the issues is not resolved.
    Please help...
    Thanks

    Hi smithin, 
    Thanks for visiting Apple Support Communities. 
    It sounds like you've submitted an iOS application to the App Store, which is being processed, but there's an unresolved issue.
    For additional help with this situation, Apple Developers can use the contact methods on this page:
    https://developer.apple.com/contact/
    All the best,
    Jeremy 

  • Processor Name for Purchase Orders

    Hi All
    For my SAP Report I need to pick the processor name  it is showing in purchase Order Release Strategy Tab.
    How can i find the table name of that value....
    Rgds
    Pramod

    Hi Kiran
    PROC Is not a table....
    Rgds
    PP

  • TS2776 iPhone 5, Outlook 2013, Windows 7.0 64-bit.  Every time I connect my phone to my computer via USB, iTunes opens with the "accept our terms and service" then deselects the boxes checked under the INFO tab to sync my calendars, contacts...help?

    I am connecting my iPhone 5 to my Windows computer via USB.  This should open iTunes and start the sync process.  Instead of iTunes opening, I get the iTunes service agreement to which I must agree.  Then iTunes opens and begins to back up my phone.  It is syncing my photos and music (although the music thing is another nightmare), but under the "info" tab in iTunes, the boxes of which functions I want to sync are no longer selected.  Hence the computer and the phone are not sharing information.  When I select the functions I want to sync, I must either replace or merge.  If I replace, I lose the information I recently put into my phone.  If I choose to merge, then I have duplicates of everything.
    How can I resolve this problem? Why is iTunes acting like it doesn't know my phone?
    I'm using an iPhone 5 iOS 6.1.4, Windows 7 64-bit, Outlook 13, and the must current version of iTunes (because I've removed and reinstalled it twice already).
    Thanks for any help!
    Christine

    After you'd run the Configure Classic instance did you run in the statement as stated in 'Oracle® Fusion Middleware Installation Guide for Oracle Portal, Forms, Reports and Discoverer 11g Release 1 (11.1.1) Part Number E10421-05'?
    java -classpath ORACLE_HOME_DIR\discoverer\lib\disco-config.jar;ORACLE_HOME_DIR\oui\jlib\OraInstaller.jar;ORACLE_HOME_DIR\opmn\lib\iasprovision.jar -Djava.library.path=ORACLE_HOME_DIR\oui\lib\win32 oracle.disco.install.config.DiscoUtil -oraclehome ORACLE_HOME_DIR -tnsadmin TNS_ADMIN_DIR
    I've completed an installation with the same steps (although I ran the config.bat file in as_1/bin rather than from the program files list and also I've the jrockit jdk installed)
    I've found that this fails with the error;
    INFO: This tool works only on Windows Platform. Exiting the program
    Which is strange considering this is Windows Server 2008 R2 64-bit
    DISCO is running in the EM console but the URLs (as defined in the installation summary report) do not resolve properly. I was just interested to hear if you're installation was the same, this isn't the first installation I've done, they've all had a similar issue

  • Blank Screen in Import Manager under Import Status Tab

    Hi Experts,
    Problem: Blank Screen in Import Manager under Import Status Tab.
    I have opened import manager with source file(excel & xml) and i have also did mapping from source fields to destination fields and also seleted display/key field in match records tab and refreshed it. when I select Import Status tab. I am not able to see any details/status regarding the map which i have done. when i click on excute button.. the source file is sucessfully import and pop up dailogue box shown. I have also checked in Data Manager and data was visible.
    But.. at Import Status Tab in import manager.. i am not able to see any details.. it is just showing as white blank screen.
    If any one know the solution could you please help me out.
    Thanks
    Bharat

    Hi Bharat,
    As per New MDM Release we have to Install MDM 7.1 servers on 64 bit machine and GUI's can be installed on 32 machine, whreas if you are using MDM 5.5 Version then 32 bit machine can be used.
    Now as you said that you have sucessfully imported the excel file and then you have mapped the filed after that without any error you got the ready to import screen to import the data into MDM database then processwise there is no problem as far as screens are concern i will suggest you please un-install MDM Import Manager GUI and then again install it, your problem would be solved.
    If it doesnt please do let us know.
    Thanks and Regards
    Praful.

  • Release Procudure - Problem while creating Release Group:Reg-

    in release procedure char. were created and class also created and the char. were assigned to the class too.
    But when i am creating release group the below error was coming..
    Please check release classes (see long text)
    and if i am see long text the below is the error
    Please check release classes (see long text)
    Message no. ME492
    Diagnosis
    Here you can assign release groups to release classes. Only one release class should be used within the release groups for overall release and the release groups without overall release in each case. However, in this instance several release classes have been used.
    Procedure
    Assign the release groups that were created for overall release to one release class only. Assign the release groups that were not created for overall release to a different release class.
    Example:
    Rel. group Rel. obj. Overall rel.    Class       Description
    01 1 _   FRG_EBAN      Group 01
    02 1 _   FRG_EBAN      Group 02
    S1 1 X   FRG_GF_EBAN Group S1
    S2 1 X   FRG_GF_EBAN Group S2
    please see what can i do to solve the issue.
    Thanks and Regards,
    Rajesh.

    HI,
    It is not possible to have more than one class define in the release
    strategy but it is possible to define difference characterics within
    the same class.
    Please verify the following:
    1) As the long text of the message says, first check that one release
      class only is used within the release groups for overall release and
       the release groups without overall release in each case. However, in
       this instance several release classes have been used.
       This means you have to have one release class only for all the
       release groups for overall release.
       Assign the release groups that were not created for overall release
       to a different release class.
    Example:
    Rel. group,   Rel. obj.,   Overall rel.,  Class ,     Description
    01,,1,,_,    FRG_EBAN,      Group 01
    02,,1,,_,    FRG_EBAN,      Group 02
    S1,,1,,X,    FRG_GF_EBAN,   Group S1
    S2,,1,,X,    FRG_GF_EBAN,   Group S2
    2) If you have followed all the indications of the long text of the
       message and the error is still displayed, please try to create the
       new release group via the 'New Entries' button.
    3) If you tried to create the release group via this button and the
       error is still been displayed, please verify the implementation of
       note 125316 in you system.
    Best Regards,
    Arminda Jack

  • Can't get acces to manage extensions/ plugins under the Help tab.

    I'm working on a Windows OS 8.0 desk top computer. Under the Help tab I can't get acces to the line 'manage extensions', it's the one just below the legal notifications. I'm dutch so I don't really know if this is the right translation. I'm using PS CC.

    I suspect you are talking about CC 2014
    2014 release of Photoshop CC: FAQ

  • I can't find my podcasts in my iTunes app. I've checked under the 'more' tab but they aren't there. Help!

    I've looked under the 'more' tab in iTunes and the podcasts aren't there. The only way I can find them is if I search the individual podcasts. How do I get them back into my iTunes app?

    Well, in the iTunes app on my iPhone 4, I was able to search for "podcast" and get back a huge list of podcasts.  Once I selected one of them, it offered to "Open in PodCasts app", so that seems to work.  In the PodCasts app, it is fairly easy to search for podcasts, but I can't say that the app is the most intuitive to use.  I've struggled through with it since iOS 6 was released, and it seems to be workign better now with the latest few updates, but I have still found a few issues with it...

Maybe you are looking for