Approval Substitution Functionality in SRM portal.

Hi All,
We need to activate approval substitution scenario with respect to PO and shopping cart. But the standard workflow seems to be having an issue with validation. It doesn't validate the substitute and accept any substitute irrespective of its PO value limit. We developed a function module which checks the PO value limit for the substitute with respect to the approver. But the problem is we could not link the function module to the portal as we are unaware of BHTML code and the process of implementing it.
Our requirement is to have the validation in portal and not in the SRM system. The client recommended us to go for a change in the ITS object of approval BBPAPPROVAL. We are also not sure about modifying ITS object.
Would request you to kindly give us suggestions about proceeding in this scenario. Also if you have some standard codes kindly send us across.
Regards,
Koushik

Hi Koushik,
I assume you are creating the "Inbox Substitution" from portal.
Goto SE80 - Select Function Group - and give BW02. In that you have screens - go to 1382 screen.
Goto Module 1328_handle_action.
Goto Perform 1328_Handle_Substitution.
Goto Perform d1328_find_deputies.
     This is the sap standard code which gives list of users based on the search criteria when we create substitution in portal.
gt_deputies is the standard internal table which stores the user list.
I have used "Enhancement Operations" and created a custom code to delete the users from gt_deputies who are having less than the approval limit of the user who is trying to create the substitute.
So the final gt_deputies table will have only the users who are having approval limit more than the user who is creating the substitute.
Basically, the code written in enhancement gets executed after the standard sap code is executed. In this way we are not modifying the standard code but restrict the output list of the sap table using our enhanced code.
I am not aware of the ITS object specified by your client.
Regards,
PR.

Similar Messages

  • Mass approval functionality for SRM work items

    Hi,
    We want to implement mass approval functionality for SRM workflow, so that any user is able to approve/reject multiple requests at one go through UWL.
    Please guide if it is possible to implement this functinality for task id TS40007952.
    Regards,
    Avantika

    Hi Avantika,
    The mass approval functionality can be implemented for simple workflow items which have decisions to complete the work item. (User Decision Type)
    In SAP Business Workflow, user can define a task as a decision task by assigning DECISION as the underlying business object type. The task definition allows user to create two or more decision options to complete the task.
    The idea is to simply create a custom view/subview for the UWL item and configure it according to your needs.
    Have a look at this blog:
    Mass/Batch Processing of Work items in UWL
    and also check the documentation:
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/4e/72112bc9ea484196f2a5fdc68f5f5f/frameset.htm
    Let me know if you have any questions.
    Thanks,
    Shanti

  • Workflow Approver Substitution

    In SRM system , when the approver is going on vacation , he can set substitute approver for the specified time period. Questions are
    1) whether this substitution can be done by workflow administrator .
    2) what is the difference between active substitution and passive substitution .
    Request comments from the experts having experience with this Scenario.
    Regards
    Mani

    Hi,
    See these related threads /links for active/passive substituion diffrences:
    Re: Want to know about substitute functionality in SRM
    Re: Passive Substitute and Default Approver's Inbox
    http://help.sap.com/saphelp_srm30/helpdata/en/ee/8804050393ea4596330fe181092003/content.htm
    BR,
    Disha.
    Do reward points for useful answers.

  • SRM Portal not loading properly

    Hello SAP Community,
    I implemented a whole SRM System for multiple backendu2019s.
    We are using SRM 7.0 and ECC 6.0 combined with SAP Netweaver.
    We installed the SRM Portal Layer on the Netweaver client as well.
    All required Services are activated and posted.
    All required set ups are finished and checked twice.
    When I access SRM directly in Netweaver everything is working fine. I can create Shopping Carts and check the reports or approve Shopping Cart. I can access all screens.
    When I access SRM in the portal I canu2019t do anything. Once I clicked on any tab the system will just open the home screen in the home screen where the shopping cart creation part shot appear.
    When I then click on any function SRM is logging me off.
    Did anybody of you came across this problem before and can help me to solve this issue.
    Thank you!

    Hi Stephan ,
    After installing SRM 7.0  and ECC 6.0 EHP 5 you need to install SAP EP and you need to deployee all the SRM  , MDM , ERP business packages afer deploying business packages you need to do some configuration like  system object , system alias , SSO , LDAP etc .
    All the SRM 7.0 applications are in webdynpro ABAP no  need of ITS configuration .
    if you use  NWBC HTML instead of SAP EP then on need of business packages you need to activate the service in SICF tocde .
    Thanks & Regards
    Pradeep Kumar Dondeti

  • Error when signing on SRM portal

    Hi, i have this problem, when user signs on in the SRM portal (SRM 3.0) and the shopping cart page suppossed to appears (after enters user and pwd), the following error displays:
    ITS System Information
    Interpreter Failed
    The Internet Transaction Server failed to generate the response for current request.
    Please contact the system administrator.
    Internal error code: 0x2101
    In an already existent imlementation for badi BBP_DOC_CHECK_BADI i've added this code  just to check some error messages from the document and if founded, add a custom message to the internal table
    Data declaration
    Variable
    data:
      lv_guid  type CRMD_ORDERADM_H-GUID.
    Constants
      constants:
        lc_slash(1)  type c value '/',
        lc_015       type bbp_pds_messages-msgno value '015',
        lc_000       type bbp_pds_messages-msgno value '000',
        lc_fmavc     type bbp_pds_messages-msgid value 'FMAVC',
        lc_zebp      type bbp_pds_messages-msgid value 'ZEBP'.
    Internal tables & Structures
      data:
        ls_messages type          bbp_pds_messages,
        lt_messages type table of bbp_pds_messages.
    First, check the SC
        call function 'BBP_PD_SC_CHECK'
          exporting
            i_guid     = lv_guid
         TABLES
           E_MESSAGES  = lt_messages.
    Look for the right message
      read table lt_messages into ls_messages with key msgid = lc_FMAVC
                                                       msgno = lc_015.
      if sy-subrc = 0.
    Message founded, build custom message
    Add the message to table
      read table it_account into wa_account index 1.
        wa_error-msgty = 'E'.
        wa_error-msgid = lc_zebp.
        wa_error-msgno = lc_000.
        concatenate wa_header-posting_date+0(4)  " Year
                    lc_slash
                    wa_account-funds_ctr         " Funds center
                    lc_slash
                    wa_account-fund              " Fund
                    lc_slash
                    wa_account-func_area         " Functional area
                    lc_slash
                    wa_account-cmmt_item         " Commitment item
               into wa_error-msgv1.
        APPEND wa_error TO et_messages.
      endif.
    but in the call for 'BBP_PD_SC_CHECK' the systems generates a dump, if i comment the fm call, the page displays correctly, the parameters for fm are the right type.
    The dump appears as follows:
    Errores tiempo ejec.   UNCAUGHT_EXCEPTION
    Excepción              CX_BBP_PD_ABORT
           ocurrido el     26.12.2007 a  19:42:04
    Es ist eine Ausnahme aufgetreten, die nicht abgefangen wurde.
    ¿Qué ha sucedido?
    Die Ausnahme 'CX_BBP_PD_ABORT' wurde ausgelöst,
    sie wurde aber entlang der Aufrufhierarchie nirgendwo abgefangen.
    Da Ausnahmen Fehlersituationen darstellen und auf diesen Fehler nicht
    adäquat reagiert wurde, mußte das laufende ABAP-Programm 'SAPLBBP_PDH'
    abgebrochen werden.
    ¿Qué puede hacer?
    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.
    Anál.errores
    Es ist eine Ausnahme aufgetreten, die weiter unten näher erläutert wird.
    Die Ausnahme, der die Klasse 'CX_BBP_PD_ABORT' zugeordnet ist,
    wurde nicht abgefangen und führte deshalb zu einem Laufzeitfehler.
    Der Grund für die Ausnahme ist:
    Übernehmen
    Notas para corregir errores
    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:
    "UNCAUGHT_EXCEPTION" CX_BBP_PD_ABORTC
    "SAPLBBP_PDH" or "LBBP_PDHU08"
    "BBP_PD_ABORT"
    If you cannot solve the problem yourself, please send the
    following documents to SAP:
    1. A hard copy print describing the problem.
       To obtain this, select the "Print" function on the current screen.
    2. A suitable hardcopy prinout of the system log.
       To obtain this, call the system log with Transaction SM21
       and select the "Print" function to print out the relevant
       part.
    3. If the programs are your own programs or modified SAP programs,
       supply the source code.
       To do this, you can either use the "PRINT" command in the editor or
       print the programs using the report RSINCL00.
    4. Details regarding the conditions under which the error occurred
       or which actions and input led to the error.
    Entorno sistema
    SAP-Release.............. "620"
    Applikationsserver....... "ebpqas"
    Netzwerkadresse.......... "144.127.70.32"
    Betriebssystem........... "SunOS"
    Release.................. "5.9"
    Hardwaretyp.............. "sun4u"
    Zeichen-Länge............ 8 Bits
    Pointer-Länge............ 64 Bits
    Workprozess-Nummer....... 0
    Kurzdump-Einstellung..... "full"
    Datenbankserver.......... "ebpqas"
    Datenbanktyp............. "ORACLE"
    Datenbankname............ "EBQ"
    Datenbank-User-Id........ "SAPEBP"
    Zeichensatz.............. "es"
    SAP-Kernel............... "640"
    hergestellt am........... "Jul 4 2005 21:14:29"
    hergestellt auf.......... "SunOS 5.8 Generic_108528-16 sun4u"
    Datenbankversion......... "OCI_920 "
    Patch-Level.............. "80"
    Patch-Text " "
    Unterstützte Umgebung....
    Datenbank ............... "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE
    10.2.0.."
    SAP-Datenbankversion..... "640"
    Betriebssystem........... "SunOS 5.8, SunOS 5.9, SunOS 5.10"
    Usuario, transacción....
    Mandant............. 010
    Benutzer............ "CRARIABR"
    Sprachenschlüssel... "S"
    Transaktion......... "BBPSC02 "
    Programm............ "SAPLBBP_PDH"
    Dynpro.............. "SAPLBBP_SC_UI_ITS 2000"
    Dynprozeile......... 4
    Info posición de cancelación
    Der Abbruch trat im ABAP-Programm "SAPLBBP_PDH" auf, und zwar in
    "BBP_PD_ABORT". Das Hauptprogramm war "SAPLBBP_SC_UI_ITS ".
    Im Quelltext befindet sich die Abbruchstelle in Zeile 67
    des (Include-)Programms "LBBP_PDHU08".
    (bei Anwahl des Editors: 670) der ABAP-Source "LBBP_PDHU08".
    Detalle código fuente
    000370                   LS_CALLSTACK1-EVENTNAME LS_CALLSTACK1-PROGNAME
    000380                   INTO LV_MSGARG2 SEPARATED BY SPACE.
    000390
    000400     READ TABLE LT_CALLSTACK INTO LS_CALLSTACK2 INDEX 4.
    000410     CONCATENATE   '/' LS_CALLSTACK2-EVENTTYPE
    000420                   LS_CALLSTACK2-EVENTNAME LS_CALLSTACK2-PROGNAME
    000430                   INTO LV_MSGARG3 SEPARATED BY SPACE.
    000440
    000450     CALL FUNCTION 'BBP_ALERT_INTERNAL_OT'
    000460       EXPORTING
    000470         MSGID   = GC_MSGID_BBP_PD
    000480         MSGNO   = 047
    000490         MSGARG1 = LV_MSGARG1
    000500         MSGARG2 = LV_MSGARG2
    000510         MSGARG3 = LV_MSGARG3.
    000520
    000530     MESSAGE ID GC_MSGID_BBP_PD TYPE C_MSGTY_I NUMBER IV_MSG_NO
    000540             WITH LS_CALLSTACK1-EVENTTYPE
    000550                  LS_CALLSTACK1-EVENTNAME
    000560                  LS_CALLSTACK1-PROGNAME.
    000570
    000580   * get the messages from the application log
    000590     TRY.
    000600         CALL FUNCTION 'BBP_PD_LOG_GET_MESSAGES'
    000610           TABLES
    000620             E_MESSAGES = LT_MESSAGES.
    000630       CATCH CX_BBP_PD_ABORT.
    000640         REFRESH LT_MESSAGES.
    000650     ENDTRY.
    000660
        RAISE EXCEPTION TYPE CX_BBP_PD_ABORT EXPORTING
    000680         WORKED_ON_DOCUMENT = LV_GUID
    000690         T100_MSGID = GC_MSGID_BBP_PD
    000700         T100_MSGNO = IV_MSG_NO
    000710         T_APPL_LOG_MESSAGES = LT_MESSAGES.
    000720
    000730   ENDFUNCTION.
    Thanks in advance for your help.

    Hi
    It seems some mandatory System configuration settings are missing.
    For time-being, please Try de-activating the active customer implementations of the BADIs BBPDOC_CHANGE / BBP_DOC_CHECK_BADIs and then try again the Shop process._
    Please try to look into RZ20, ST22, RZ10, and SLG1 transactions for any error logs generated.
    Also, Please Check the SAP OSS Notes ->
    Note 673372 - Short dumps UNCAUGHTEXCEPTION in SRM 3.0, 4.0, and 5.0_
    Note 833442 Data inconsistency due to termination when you save
    bbp_pd_sc_check_is_pd
    "Buffer table not up to date"
    Re: ITS Template not found
    Re: CX_BBP_PD_ABORT error selection itens in SC
    DUMP with transaction BBPSC02 :'UNCAUGHT_EXCEPTION      CX_BBP_PD_ABORT'
    Re: Error while adding items to shopping cart
    Note 851825 Copying a reference without ship-to address ==> error
    Note 847427 Error when you copy template without ship-to address
    Note 746569 CX_BBP_PD_ABORT in routine CHECK_CF_QUANTITY
    Note 651994 PO with several hierarchy levels causes termination
    Hope this will definitely help. Do let me know.
    Regards
    - Atul

  • Attach files to a Shopping Cart in SRM portal using a ABAP program.

    Hello.
    We need to attach files to a Shopping Cart using a ABAP program and see them in SRM portal.
    Currently we know how to attach files in the backend using the function Xxxxxxxxxx but with this function we can not see the attachment in the SRM portal.
    Do you know someway to attach files direclty in the front-end using a program?
    Maybe i have to attach first in the back-end and after that transfer to front-end?
    I have seen some thread but the solution provided is in the other way arround (transfer from front-end to backend) and then is not useful for my proble.
    Thanks in advance.
    Kr,
    Angel.

    Hello Angel,
    You can attach a file to SC ,and it is a standard functionality provided in SRM.
    While creating a Shopping cart,under Documents and attachements tab,there is an option to select a local file and attach it to a SC
    If you are looking at attaching the document in SRM and sending it to BE system.(R/3 system), then have a look at SAP note Note 1057932 - FAQ: Atachment transfer to backend, Required Configurations.
    The Following BADI’s will have to be implemented to allow the above functionality
    For transfer of attachments in PO , activate the BADI BBP_CREATE_PO_BACK. Set the values of the following parameters in the
    method BBP_CREATE_PO_BACK~Fill_PO_INTERFACE
    CV_ATTACH_TRANSFER_ACTIVE = 'X'
    CV_ATTACH_BE_STORAGE_CAT = 'DMS_C1_ST'
    CV_ATTACH_BE_DOC_TYPE = 'SRM'.
    For transfer of attachments in PR, activate the BADI
    BBP_CREATE_REQ_BACK. Set the values of the following parameters in the method BBP_CREATE_REQ_BACK~FILL_REQ_INTERFACE
    CV_ATTACH_TRANSFER_ACTIVE = 'X'
    CV_ATTACH_BE_STORAGE_CAT = 'DMS_C1_ST'
    CV_ATTACH_BE_DOC_TYPE = 'SRM'.
    Award points if useful.
    Thanks
    Arshad

  • How to disable Purchase Order Print Preview function in the Portal

    We wish to expose some purchase order functions in our SAP Portal 7.0. The problem is that when we run any of the purchase order transactions as SAPGUI for HTML, the Print Preview function displays the full purchase order. This means that any user who wishes to short cut processes can display and then print a purchase order before it has been approved if they use the Portal to display the purchase order.
    If the purchase order transaction is run from the normal SAPGUI, the Print Preview function only displays the top of the purchase order and the print function is disabled. Has anyone tackled this problem before and worked out a way of stopping users from using the Print Preview function to display purchase orders in the Portal and then print them?
    Regards,
    Tom Maggs

    hi,
    DATA: w_compop    TYPE ssfcompop.
    w_compop-tdimmed   = ' '.     "Print Immediately control parameter should be empty..
    Then only print preview pop-up will come..
    then call your smartform like this..
    CALL FUNCTION fnam
        EXPORTING
          control_parameters = w_ctrlop
          output_options     = w_compop
              TABLES
          it_vbdkr           = it_tvbdkr[]
          it_vbdpr           = tvbdpr[]
          it_zglentitycode   = it_zglentitycode[].
    regards
    vijay

  • Data entered in the custom field in the SRM portal not getting saved..

    Hi Experts,
    I have added a custom field in Contract Screen of the SRM portal by adding the field as an append structutre in structure INCL_EEW_PD_HEADER_CSF_CTR.
    The custom field now appears in the header (basic data ) of the 'Process contract' screen.
    NOw It allows me to enter data in the custom field .
    The problem is ..
    When I  'CHECK' or "RELEASE'   the contract, the value entered in the custom field disappears..
    How do i capture the data entered in the custom field ...please HElp!!!
    Thanks in Advance.
    Vidya

    Hi Pradeep,
    Thanks for the reply!!
    We have upgraded our SRM system from 3.0 to 5.5
    I have added the custom field in structures INCL_EEW_PD_HEADER_CSF_CTR  and
    INCL_EEW_PD_HEADER_CSF  as the field has to appear in the basic data tab of 'Process Contract'.
    Regarding debugging:
    1. I tried to debug in BBP_DOC_CHECK_BADI by calling the FM BBP_PD_CTR_GETDETAIL. inside the badi and the parameter e_header of the function module contained the custom field but had no value...!!
    2. I tried to debug the badi BBP_CUF_BADI_2  method MODIFY_INPUT..
       The import variable iv_fieldname contains the field name amd the variable iv_value has the value entered in the custom field .........but another import structure ls_header also contains the custom field but no value....
    Method  MODIFY_INPUT has only one export parameter ev_value,,,,,,,,,,,,,,,,!!!!!!!!!!!!
    Edited by: vidya vidya on Apr 24, 2009 6:06 PM

  • How to call the windows popup  on SRM  portal

    Hi ,
    how to call the windows popup on SRM portal.
    For example when I hit "Check" on the shoppoing cart screen I get a popup  saying  that "Shopping cart Test has no errors and can be orderd".
    I am looking to thorw a popup which has got "yes" and "no" options ( like function module POPUP_TO_CONFIRM in GUI ) and based on the users choice the logic follows through.
    Thanks,
    krishna.

    Is this thread still valid? If not, please close the thread.
    If so, as no response has been submitted, please rephrase your question and/or provide further information to describe your requirement.
    Thanks
    Jason
    SDN SRM Moderator Team

  • BW Reports in SRM Portal

    Hi experts,
    How i can bring BW Reports in to SRM Portal?
    We have EP, BW and SRM system in our Landscape. Currently EP and BW are using BW as Datasource.
    We have a new requirement in which we need to build some SRM related Reports in BW and bring to SRM Portal.
    Please suggest me the best method.
    Regards
    Baby

    srm has very limited functionality on reporting part. please allign yourr self. SRM 5.0 7.0 7.0.2 Procurement Account Assignment Overview of Purchase Order Value per Requester Self-service, plan driven and service procurement 0SR_C02_Q001 MM* and SRM SRM 5.0 7.0 7.0.2 Procurement Account Assignment Cost Center Overview Self-service, plan driven and service procurement 0SR_C02_Q002 MM* and SRM SRM 5.0 7.0 7.0.2 Auctions Auctions Analysis Sourcing with Live Auction 0SR_LAC1_Q0001 SRM SRM 5.0 7.0 7.0.2 Auctions Auction Items Analysis Sourcing with Live Auction 0SR_LAC1_Q0002 SRM SRM 5.0 7.0 7.0.2 Auctions Bidders Analysis Sourcing with Live Auction 0SR_LAC1_Q0003 SRM SRM 5.0 7.0 7.0.2 Procurement Overview (multicube aggregate) Procurement Value Analysis Self-service, plan driven and service procurement. Spend Analysis 0SR_MC01_Q0001 MM* and SRM SRM 5.0 7.0 7.0.2 Procurement Overview (multicube aggregate) Procurement Values per Service Provider Self-service, plan driven and service procurement. Spend Analysis 0SR_MC01_Q0002 MM* and SRM SRM 5.0 7.0 7.0.2 Procurement Overview (multicube aggregate) Supplier Information Self-service, plan driven and service procurement. Spend Analysis 0SR_MC01_Q0003 MM* and SRM SRM 5.0 7.0 7.0.2 Procurement Overview (multicube aggregate) Key Performance Indicators Self-service, plan driven and service procurement. Spend Analysis 0SR_MC01_Q0004 MM* and SRM SRM 5.0 7.0 7.0.2 Procurement Overview (multicube aggregate) Price Trend Analysis per Product Self-service, plan driven and service procurement. Spend Analysis 0SR_MC01_Q0005 MM* and SRM SRM 5.0 7.0 7.0.2 Procurement Overview (multicube aggregate) Number of Suppliers per Country Self-service, plan driven and service procurement. Spend Analysis 0SR_MC01_Q0006 MM* and SRM SRM 5.0 7.0 7.0.2 Procurement Overview (multicube aggregate) ABC Analysis for Suppliers (Lorenz Curve) Self-service, plan driven and service procurement. Spend Analysis 0SR_MC01_Q0007 MM* and SRM SRM 5.0 7.0 7.0.2 Procurement Overview (multicube aggregate) ABC Supplier Self-service, plan driven and service procurement. Spend Analysis 0SR_MC01_Q0008 MM* and SRM SRM 5.0 7.0 7.0.2 Procurement Overview (multicube aggregate) Success of an SRM Project Self-service, plan driven and service procurement. Spend Analysis 0SR_MC01_Q0009 MM* and SRM SRM 5.0 7.0 7.0.2 Procurement Overview (multicube aggregate) Sales Values (for Supplier) Self-service, plan driven and service procurement. Spend Analysis 0SR_MC01_SUS_Q0001 MM* and SRM SRM 5.0 7.0 7.0.2 Procurement Overview (multicube aggregate) Sales Values per Service Provider (for Supplier) Self-service, plan driven and service procurement. Spend Analysis 0SR_MC01_SUS_Q0003 MM* and SRM SRM 5.0 7.0 7.0.2 Procurement Document Overview (Multicube) Purchase Order Document Analysis Self-service, plan driven and service procurement. Spend Analysis 0SR_MC02_Q0001 MM* and SRM SRM 5.0 7.0 7.0.2 Procurement Document Overview (Multicube) Maverick Buying Analysis Self-service, plan driven and service procurement. Spend Analysis 0SR_MC02_Q0002 MM* and SRM SRM 5.0 7.0 7.0.2 Procurement Document Overview (Multicube) Workload per Purchasing Group Self-service, plan driven and service procurement. Spend Analysis 0SR_MC02_Q0003 MM* and SRM SRM 5.0 7.0 7.0.2 Procurement Document Overview (Multicube) Pareto Analysis According to Purchase Order Volume (Chart) Self-service, plan driven and service procurement. Spend Analysis 0SR_MC02_Q0004 MM* and SRM SRM 5.0 7.0 7.0.2 Procurement Document Overview (Multicube) Pareto Analysis According to PO Volume per Category Self-service, plan driven and service procurement. Spend Analysis 0SR_MC02_Q0005 MM* and SRM SRM 5.0 7.0 7.0.2 Procurement Document Overview (Multicube) Confirmation Document Overview Self-service, plan driven and service procurement. Spend Analysis 0SR_MC02_Q2001 MM* and SRM SRM 5.0 7.0 7.0.2 Procurement Document Overview (Multicube) Open Items (Confirmations) Self-service, plan driven and service procurement. Spend Analysis 0SR_MC02_Q2002 MM* and SRM SRM 5.0 7.0 7.0.2 Procurement Document Overview (Multicube) Invoice Document Overview Self-service, plan driven and service procurement. Spend Analysis 0SR_MC02_Q3001 MM* and SRM SRM 5.0 7.0 7.0.2 Procurement Document Overview (Multicube) Excessive Invoices Self-service, plan driven and service procurement. Spend Analysis 0SR_MC02_Q3002 MM* and SRM SRM 5.0 7.0 7.0.2 Procurement Document Overview (Multicube) Sales History (for Supplier) Self-service, plan driven and service procurement. Spend Analysis 0SR_MC02_SUS_Q1002 MM* and SRM SRM 5.0 7.0 7.0.2 Attributes of bids List of Bid Invitation Attributes Sourcing with RFx 0SR_QUODA_Q002 SRM SRM 5.0 7.0 7.0.2 Vendor Evaluation w. purchasing volume Vendor Portfolio with PO Value and Overall Score Supplier Evaluation 0SR_VE_M1_Q001 MM* and SRM SRM 5.0 7.0 7.0.2 Vendor Evaluation w. purchasing volume Total Eval. / Purch. Order Value of Vendor over Time Supplier Evaluation 0SR_VE_M1_Q002 MM* and SRM SRM 5.0 7.0 7.0.2 Vendor Evaluation - Vendor Evaluation of Vendor by Product Category Supplier Evaluation 0SR_VE_M2_Q001 MM* and SRM SRM 5.0 7.0 7.0.2 Vendor Evaluation - Vendor Evaluation of Vendor by Product Category and Product Supplier Evaluation 0SR_VE_M2_Q002 MM* and SRM SRM 5.0 7.0 7.0.2 Vendor Evaluation - Vendor Submitted Evaluations (Vendors) Supplier Evaluation 0SR_VE_M2_Q003 MM* and SRM SRM 5.0 7.0 7.0.2 Auction Details Detailed Analysis of Bids by Category Sourcing with Live Auction 0SRM_LADS1_Q0001 SRM SRM 5.0 7.0 7.0.2 Auction Details Auction Details Sourcing with Live Auction 0SRM_LADS1_Q0002 SRM SRM 5.0 7.0 7.0.2 Vendor Evaluation - Invoice Mandatory Evaluations for Invoices Supplier Evaluation 0SRV_IS1_Q001 MM* and SRM SRM 5.0 7.0 7.0.2 Vendor Evaluation - Invoice Optional Evaluations for Invoices Supplier Evaluation 0SRV_IS1_Q002 MM* and SRM SRM 5.0 7.0 7.0.2 Vendor Evaluation - Invoice Open Evaluations (Invoices) Supplier Evaluation 0SRV_IS1_Q003 MM* and SRM SRM 5.0 7.0 7.0.2 Vendor Evaluation - Goods Receipt/Service Confirmation Mandatory Evalns for Goods Receipts/Service Confirmations Supplier Evaluation 0SRV_IS2_Q001 MM* and SRM SRM 5.0 7.0 7.0.2 Vendor Evaluation - Goods Receipt/Service Confirmation Optional Evalns for Goods Receipts/Service Confirmations Supplier Evaluation 0SRV_IS2_Q002 MM* and SRM SRM 5.0 7.0 7.0.2 Vendor Evaluation - Goods Receipt/Service Confirmation Open Evaluations (Goods/Service Confirmations) Supplier Evaluation 0SRV_IS2_Q003 MM* and SRM SRM 5.0 7.0 7.0.2 Vendor Evaluation - Vendor Submitted Evaluations for Suppliers Supplier Evaluation 0SRV_IS3_Q003 MM* and SRM. regards Muthu br muthu mail to business id for spread sheet format of ythose reports

  • Shopping Cart Approval Preview Issue in the Portal

    Hi Everbody
    In My SRM Portal, when the approver changes any text or any date like that in the shopping cart it should come for the accept changes to the creator inbox, and when he sees the approval preview it is showing the creators name, but my functinal guy says that the approval person should be there but not the creator person in the preview and when the creator of the sc accepts the changes it is showing that it is approved by the creator name but he says that it should be approver name not the creator name.
    so can boby please suggest me in this, thanks in advance.

    Hi ,
    Which WFL are you using, AC or PC? It is Badi approval WFL?
    What is your system version ans Support Pack?
    Thanks,
    Melina

  • When approving a PO through SRM inbox, the 'Back to Approval' link ismissin

    When approving a PO through SRM inbox, the 'Back to Approval' link ismissing

    The issue that you have reported is not a bug, but a strandard. Once the
    application is integrated to the Portal, the navigation between screens/
    transaction is handled differently and should not be compared to ITS.
    In EP, you will have to use the Portal's 'Back' button to navigate back.
    Please refer to note # 933450 as the correction is the same for this
    issue also.
    The link has been removed because navigation in EP is handled
    differently as compared to ITS. In EP you use the EP's navigation and
    not ITS links like ('Back to Sourcing') or ('Return to Change Version')

  • Substitution functionality of OSS also needed for B1 messages

    Version:
    SAP Service Marketplace / SAP Business One Customer Portal as of today
    Description of Requirements:
    The substitution functionality of the OSS doesn’t apply for B1 messages so it is impossible to share work on the same OSS ticket with several people.
    It is necessary that a defined stand-in can share information with SAP on an OSS ticket opened by a colleague.
    Valid as of:
    This is not a legal requirement that is applicable at a distinct date, but it is currently a big problem to our daily business.
    It worked till some weeks ago then suddenly the functionality was gone. On reporting it as a bug to the OSS (ticket 254736 / 2008) we were told to raise a development request for something that had already been working before.
    Business Needs:
    We have a big installation with several systems and 200 out of planned 400 users are already live with B1. We are in an international rollout. We have several developers, application supporters, consultants and system administrators working exclusively on our B1 landscape. So we always have several OSS messages for B1 open at the same time, some of them in high priority.
    We work in shifts, and urgency as well as time delay when we get support from SAP Asia often requires that the person currently working on an OSS ticket is not the one who opened the message.
    Yet if we stand-in for each other, we cannot share information with SAP via OSS on messages a colleague reported in the first place, because the substitution functionality of the OSS doesn’t work.
    Sometimes just people get ill or are on vacation and it still has to be possible that the work is continued by a colleague. OSS makes this impossible for B1 messages.
    Examples:
    Case 1:
    Colleague A works the early shift, colleague B the late shift (both in Europe). B opens an OSS ticket for some problem and informs A about it. SAP support is transferred to India. India works in shifts according to European time slots so that would be fine except the fact that the time during the first shift is ‘lost’ because A can’t take over the OSS ticket from B – annoying in high priority cases. But then SAP development in China is drawn into the case. Time delay makes it necessary that a webex session is scheduled during the early shift. So A – prepared by B about the problem - will do the webex. Yet A can’t share information with SAP via the OSS ticket because he hasn’t opened it. They resort to direct e-mail and phone. The OSS ticket is missing crucial information. B as well as SAP India has to be informed separately.
    Case 2:
    Colleague A opens an OSS ticket. There is some activity going on but it takes weeks because the problem can’t be solved easily. Then A goes on (long before planned) vacation. Colleague B is there as a stand-in and prepared to take over daily business from A. Yet the OSS ticket can’t be worked on by B because the substitution functionality in OSS is missing. Work comes to a halt until A is back from holidays.
    Both examples are taken from real life! We experienced this during the last weeks.
    Things would get even worse if A opens a ticket and then gets really ill for a long time or leaves the company. Nobody could access his pending OSS tickets to continue the work.
    Current Workaround:
    In complex and / or very urgent cases there is direct contact with SAP not via the OSS, but then information can be lost easily in the process.
    Sometimes work comes to a halt.
    When a colleague is absent for longer a new OSS message about the same problem is opened so that somebody else can work on the problem. But then often another colleague from SAP gets assigned to the new ticket, not the one who had already worked on the problem before. This means additional work at SAP and ours’ because of the need to explain a known issue again to another person.
    Proposed Solution:
    Give us back the substitution functionality! It has worked before and is still working for our R/3 messages! Can’t be that big of a deal!

    ujjwal wrote:To shutdown/reboot from within slim, use "halt" or "reboot" as the username and enter the root password. And to enable the options in XFCE, add your user to the "power" group (gpasswd -a user power)
    Oh, now I rememeber to have read somewhere about those commands as username, but surely a chooser would be the better functionality.
    I think I'll remove Slim again, and just use the console login with .xinitrc to automatically start XFCE4, because there isn't really any difference (having bootsplash on vc1 can also be a nice thing), and it speeds up booting a little.

  • Bidding functionality in SRM

    Hi All,
    I have couple of queries on Bidding. To go with Bidding functionality
    1. Is SUS is manadatory for Bidding ?
    2.How Bidder will give RFX reponse with out SUS?
    Abdul Raheem

    Hi,
    We are on SRM 7.0 only.
    we dont need SUS for bidding funcationality.
    if we create bidder in SRM with Bidder role, bidder can logon to SRM portal and can perform bidding. Corect me if i am wrong.
    In that case for bidder creation do we need to mark Portal bidder flag for that?
    Abdul Raheem

  • Decision Buttons for SC Approval without functionality

    Dear Experts,
    in SRM 7.0 Classic, we are facing the following problem:
    When an approver logs on to the SRM Portal, he sees a work list with the shopping carts that are open for approval.
    At the bottom of the list there are so called decision buttons where it should be possible to approve or reject a shopping cart without entering it.
    Unfortunately these buttons are not working in our system. When the approver klicks on such a button, e.g. the button Approve or Reject, the following error is shown on the screen:
    "Exception type:com.sap.netweaver.bc.uwl.connect.ConnectorException
    Message:Wed Aug 11 10:42:17 CEST 2010
    (Connector) :com.sap.netweaver.bc.uwl.connect.ConnectorException:Wed
    Aug 11 10:42:17 CEST 2010
    (Connector) :com.sap.mw.jco.JCO$Exception:Access via 'NULL' object
    reference not possible."
    Can you please help me understand the root cause for this failure?
    Thank you very much.

    Hi,
    You can handle it in the BADI BBP_SRC_DETERMINE. Approved SC goes to Sourcing Cockpit and PO is not generated.
    Regards,
    Masa

Maybe you are looking for