Guided procedures-help required

Hi,
I have deployed some updated content in guided procedures. (Deleted the entire ORGINAL content even from the deleted items folder).The problem is other processes have disappeared strangely(folder names are missing the content inside the folder is present) .
Although i did not make any changes in those folders, the folder names are not appearing strangely.
Does the problem lie with deployment of content through SDM(i deployed all .sda files in one go) or any other issue.
Do i need to roll back the changes?
Please suggest.
Regards,
Subodh

Hi David,
Assuming that they are actually blocks in a process (I do not see other possibility of actually handling two different processes instead of two blocks in a process, but I will confirm with the person who brought the issues to my notice), is it possible to specify exit condition for one block that also depends on the exit condition of second block? That means even if the exit condition of one block is met, can it wait for the second block's exit condition?
In BPM we have Fork step where I can specify parallel branches and design the process such that it runs through certain number of branches. Is anything available like this in GP? Can you please provide any documentation which explains the parallel block handling in GP?  As I mentioned in my other response, I am familiar with BPM, but never used GP.
Thank you very much.

Similar Messages

  • Calc procedure help require

    hi all,
    i m using oracle 9i and oracle developer suite 6i for building reports
    i have written a procedure that will do the calculation
    PROCEDURE calc IS
    TALLOW NUMBER;
    TTAKEN NUMBER;
    TPROFIT NUMBER;
    TLOSS NUMBER;
    BEGIN
         SELECT TIMEALLOWED,TIMETAKEN INTO TALLOW,TTAKEN FROM PRTEMPINCENT;
         TPROFIT:=ROUND((GREATEST((ROUND(TALLOW,2) - ROUND(TTAKEN,2)),0)/ROUND(TTAKEN,2)) * 100,2);
         TLOSS:=ROUND((ABS(LEAST((ROUND(TALLOW,2) - ROUND(TTAKEN,2)),0))/ROUND(TTAKEN,2)) * 100,2);
         INSERT INTO PRTEMPINCPL(CARDCODE,JOBCARDNO,SHOP,TIMEALLOWEDHRS,TIMETAKENHRS,
                              TIMESAVED,TIMELOST,PROFIT,LOSS,REMARKS)
                              SELECT '5',JOBCARDNO,SHOP,TIMEALLOWED,TIMETAKEN,TIMESAVED,TIMELOST,TPROFIT,TLOSS
           DECODE(SIGN(TIMEALLOWED - TIMETAKEN),1,'ABN.PRFT',-1,'LOSS')
    FROM PRTEMPINCENT
    WHERE ((PAYPERIOD= :P_1
    AND  (TIMETAKEN )>( TIMEALLOWED ))
    OR((TIMEALLOWED )>(TIMETAKEN )AND(((TIMEALLOWED )  -  
    (TIMETAKEN )  )
    /(TIMETAKEN)*100)>50));
    END;this code fetch the timeallowed and timetaken from the prtempincent table, does the calculation and then i want to insert them to another table and show them in report
    i call this procedure in after paramenter function of report
    but i gives me error ora-1422 extract fetch more then require number of rows
    wht modification should i do in the following procedure that i fetch record on by one and then insert in the other table
    Regards
    Abhi

    HI Manu,
    thanks for your reply
    well i just modified my procedure to my need
    PROCEDURE calc IS
    TALLOWHRS NUMBER;
    TTAKENHRS NUMBER;
    TTAKENMINS NUMBER;
    TALLOWMINS NUMBER;
    TCLOCKHRS NUMBER;
    TCLOCKMINS NUMBER;
    TALLOW NUMBER;
    TTAKEN NUMBER;
    TSAVED NUMBER;
    TLOST NUMBER;
    BTTAKEN NUMBER;
    CURSOR Cur_Cursor IS SELECT C.TIMEALLOWEDHRS,C.TIMEALLOWEDMINS,C.TIMETAKENHRS,C.TIMETAKENMINS,A.TIMECLOCKEDHRS,A.TIMECLOCKEDMINS,B.TIMETAKEN
    FROM PRTRINCH C,PRTRINCG A,PRTRINCE B;
    BEGIN
         OPEN Cur_Cursor;
          FETCH Cur_Cursor INTO TALLOWHRS,TALLOWMINS,TTAKENHRS,TTAKENMINS,TCLOCKHRS,TCLOCKMINS,BTTAKEN;
          CLOSE Cur_Cursor;
    TALLOW:=TO_NUMBER ( FLOOR ((((TALLOWHRS*60+TALLOWMINS)/(TTAKENHRS*60+TTAKENMINS))*
    (TCLOCKHRS*60+TCLOCKMINS)) / 60)) || ':'|| TO_NUMBER ( MOD ((((TALLOWHRS*60+TALLOWMINS)/(TALLOWHRS*60+TALLOWMINS))*
    (TCLOCKHRS*60+TCLOCKMINS)), 60), 'FM00');     
    TTAKEN:=TO_CHAR( FLOOR (BTTAKEN / 60)) || ':'|| TO_CHAR ( MOD (BTTAKEN, 60), 'FM00');
    TSAVED:=      greatest(TO_NUMBER ( FLOOR (((((TALLOWHRS*60+TALLOWMINS)/(TTAKENHRS*60+TTAKENMINS))*(TCLOCKHRS*60+TCLOCKMINS))-
       (TCLOCKHRS*60+TCLOCKMINS))/ 60)) || ':'||
       TO_NUMBER ( MOD (((((TALLOWHRS*60+TALLOWMINS)/(TTAKENHRS*60+TTAKENMINS))*(TCLOCKHRS*60+TCLOCKMINS))-
       (TCLOCKHRS*60+TCLOCKMINS)), 60), 'FM00'),0);
    TLOST:=  greatest(TO_NUMBER ( FLOOR (((TCLOCKHRS*60+TCLOCKMINS)-(((TALLOWHRS*60+TALLOWMINS)/(TTAKENHRS*60+TTAKENMINS))*
    (TCLOCKHRS*60+TCLOCKMINS)))  / 60)) || ':'
                            || TO_NUMBER ( MOD (((TCLOCKHRS*60+TCLOCKMINS)-(((TALLOWHRS*60+TALLOWMINS)/(TTAKENHRS*60+TTAKENMINS))*
    (TCLOCKHRS*60+TCLOCKMINS))) , 60), 'FM00'),0);
    INSERT INTO PRTEMPINCENT(JOBCARDNO,CARDCODE,SHOP,TICKETNO,TIMEALLOWED,TIMETAKEN,TIMESAVED,TIMEWORKED,ALLOCATION,TIMELOST,PAYPERIOD)
                    (select distinct b.jobcardno,'5',b.SHOP,a.TICKETNO,TALLOW,TTAKEN,TSAVED,0,C.WORKORDERNO,TLOST,:P_1
                                             from prtrincg a,prtrince b,prtrinch c
                                where b.payperiod = :P_1
                                  and b.jobcardno = a.jobcardno(+)
                                  and b.shop = a.shop(+)
                                 --and b.ticketno = a.ticketno(+)
                                  and c.jobcardno = b.jobcardno(+)
                                  and c.shop = b.shop(+)
                                  and a.empno=b.empno
                                  and b.filename = 'PRTRINCG');
    END;kindly see it and tell me is it ok?? when i m running my report its giving me ora-6502 error pl/sql numeric or value error
    can u say me wht i m doing wrong??
    Regards
    Abhi

  • Storing the values from a procedure - help required

    Hi All,
    I am having a package which consists of two procedures.
    Both the procedures need to calculate 6 averages of some of my fields based on unique number.
    (These two procedures process different unique numbers).
    Now, as same code is implemented in the two procedures for calculation,
    I want to move the logic into another procedure/function, with IN parameter as the unique number.
    Now how can I get these 6 values from the procedure.
    If I use OUT parameters, how can I get the values inside the procedure.
    Please suggest me a solution.
    Thanks in advance.
    Regards
    Raghunadh

    Example of pipelined function...
    SQL> CREATE OR REPLACE TYPE myrec AS OBJECT
      2  ( col1   VARCHAR2(10),
      3    col2   VARCHAR2(10)
      4  )
      5  /
    Type created.
    SQL>
    SQL> CREATE OR REPLACE TYPE myrectable AS TABLE OF myrec
      2  /
    Type created.
    SQL>
    SQL> CREATE OR REPLACE FUNCTION pipedata(p_str IN VARCHAR2) RETURN myrectable PIPELINED IS
      2    v_str VARCHAR2(4000) := REPLACE(REPLACE(p_str, '('),')');
      3    v_obj myrec := myrec(NULL,NULL);
      4  BEGIN
      5    LOOP
      6      EXIT WHEN v_str IS NULL;
      7      v_obj.col1 := SUBSTR(v_str,1,INSTR(v_str,',')-1);
      8      v_str := SUBSTR(v_str,INSTR(v_str,',')+1);
      9      IF INSTR(v_str,',')>0 THEN
    10        v_obj.col2 := SUBSTR(v_str,1,INSTR(v_str,',')-1);
    11        v_str := SUBSTR(v_str,INSTR(v_str,',')+1);
    12      ELSE
    13        v_obj.col2 := v_str;
    14        v_str := NULL;
    15      END IF;
    16      PIPE ROW (v_obj);
    17    END LOOP;
    18    RETURN;
    19  END;
    20  /
    Function created.
    SQL>
    SQL> create table mytab (col1 varchar2(10), col2 varchar2(10));
    Table created.
    SQL>
    SQL> insert into mytab (col1, col2) select col1, col2 from table(pipedata('(1,2),(2,3),(4,5)'));
    3 rows created.
    SQL>
    SQL> select * from mytab;
    COL1       COL2
    1          2
    2          3
    4          5Although I'm not sure you necessarily need to do it this way. Could you show us the code you are using and more details of what you are trying to do?

  • JDBC Stored procedure help required

    Hi All,
    Please let me know simple blogs how to use JDBC Stored procedure or any other method  in receiver jdbc adapter to insert or select in 2 tables
    Please  let me know simple blogs how to use JDBC Stored procedure or any other method  in sender jdbc adapter to select from 2 tables
    Thanks

    Hi,
    I am also looking for JDBC Stored procedure or any other method in sender jdbc adapter to select data from 2 tables
    Thanks

  • Simple Pricing Procedure Help Required

    I am using following for sales order pricing.
    Conditions Types:
    PR00 for base price
    HA00 for % Discount
    HB00 for Fixed Discount (Value discount)
    MWST for Sales Tax
    Formulas:
    HA00 is calculated (minus) from PR00
    HB00 is calucated (minus) from PR00
    MWST is calculated from total discounted amount (PR00 - HA00 - HB00)
    Pricing Procedure
    Step ........Ctype........desc................from.....to........reqt........bastype........acckey
    10........pr00
    20........ha00....................................10
    30........hb00....................................20
    35................discounted Amount.......20.......30
    40........MWST.................................35..................10..............16..............MWS
    Issues
    1) in sales order, the condition type hb00 has amount 15, but it shows 0 under condition value column
    2) how can i calculated the total Customer A/R Value i.e. discounted amount + MWST

    HB00 is fixed discount and in your pricing procedure you have assigned step no 20 agaist HB00 that means you are offering  fixed discount HB00 to HA00 for % Discount (because step no is HA00) and that is wrong
    A discount is offered on another discount
    Change HB00 from as step 10 from the original 20 (because step is PR00 which is base price and that deserves discount)
    It should look like this
    Pricing Procedure
    Step ........Ctype........desc................from.....to........reqt........bastype........acckey
    10........pr00
    20........ha00....................................10
    30........hb00....................................10........
    35................discounted Amount.......20.......30
    40........MWST.................................35..................10..............16..............MWS
    Make the changes and post back
    Regards
    Raja

  • Step by Step document on Guided Procedures for Benefits.......Help Needed..

    Hello Gurus,
    We are in process of implementing Benefits and for which we are using Guided Procedures, want to have understanding of the process can you please provide the step by step documentation and an example process that will be of great help.
    Appreciate your help.
    Thanks in advance for your time.
    Kind Regards,
    Pramod

    Hi Pramod,
    Please have a look at the below links. You will probably get some help.
    First of all, see the following thread, see the answer by shen peng in the end, explained CAF in very simple terms:
    https://www.sdn.sap.com/irj/sdn/thread?threadID=470956&tstart=0
    Now have a look at the following links for understanding about CAF, :
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/4277f37b-0601-0010-0597-89e792177e2b">Creating Composite Applications with SAP CAF</a>
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/84df3e36-0301-0010-be9d-b99aad8c81e6">Composite Application Framework in SAP NetWeaver</a>
    <a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1122">CAF training material online</a>
    <a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1231">Additional CAF Training material online</a>
    See the following links for understanding CAF GP in detail:
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/0b1c2eda-0c01-0010-b597-b107502cdc71">CAF Guided Procedures Overview</a>
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/39/198141f906040de10000000a1550b0/frameset.htm">CAF Guided Procedures</a>
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/c7/984942da51690de10000000a155106/frameset.htm">Concepts of the Guided Procedures Framework</a>
    Lastly, see the following links for CAF GP Wiki Home Page and CAF Tutorial Center:
    <a href="https://wiki.sdn.sap.com/wiki/display/BPX/Guided+Procedures">CAF Guided Procedures Wiki Home Page</a>
    <a href="https://www.sdn.sap.com/irj/sdn/nw-composition?rid=/webcontent/uuid/d8dbd703-0801-0010-c9bf-c04bc52f562f">Composite Application Framework Tutorial Center</a>
    You can also have a look at the following thread, you can drill down into many more links:
    https://www.sdn.sap.com/irj/sdn/thread?threadID=405517&tstart=0
    https://www.sdn.sap.com/irj/sdn/thread?threadID=314804&tstart=50
    Bye
    Ankur

  • What roles are required to use Guided Procedures?

    Hi ,
    What roles are required to use Guided Procedures?
    Thanks
    Srinivas.K

    Hi,
        Refer this block  https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/3603. [original link is broken] [original link is broken] [original link is broken]
        This blog is very useful to u and in this blog she is explained what roles to needed for Guided Procedure.The Composite Application Framework role is used for the Guided Procedure in the Portal.First create the user and then assign the CAF role for that user.This is way to obtain the Guided Procedure for that user.
    Thanks,
    satheshkumar.R

  • I need Your Help for CAF/EU/GP/API Guided Procedures

    Hi everyone, I need your help about Guided procedures CAF API, I am developing an WEB DYNPRO Callable Object for Guided Procedures, but I need to get the task name of the running proceess on Guided Procedure once time a user initiated it, if is possible? Do you have an examples?
    Thenk you very much

    Hi,
    Yes you can retrieve the task name of the running process. Here is what you need to do.
    1. Get the process instance - IGPRuntimeManager - > getInstance()
    2. Get the IGPActivityInstance(s) from the process instance - processInstance.getChildrenInformation().
    3. Optionaly check if these child activities are Blocks or Actions. If Block drill further to get the Actions using getChildrenInformation().
    4. Retreive the IGPActionInstance(s) from the Block Activities.
    5. Get the IGPActivity object for these Actions using IGPActionInstance.getTemplate() method.
    6.  This object will have a method getTitle() which will retrive you the activity name.
    Hope this helps.
    Thanks
    Kiran

  • How to get app.processId from Guided Procedures? Please I need You help

    Hi everyone, I need your help, I need to recover the processId once time the Procees was started in Guided Procedures
    I found this link from maintenance process in Guided Porcedures administration
    http://host:port/webdynpro/dispatcher/sap.com/cafeugpui~rt/Runtime?app.processId=IDnumber
    the parameter I need is IDnumber, I dont know if it is possible with web dynpros or with web services please I need you help
    How Can I do this?
    Thank you very much my friends
    Regards from Mexico
    Atte Israel

    Hi,
    I am not sure about the version. But you can follow the steps below.
    1. Create a Web Dynpro Poroject (Ideally create a DC , but if you don't have NWDI setup a project will do).
    2. Add reference to com.sap.security.api.jar and sap.comcafeugpapi.jar
    3. Under WebDynpro References -> Library References add sap.com/cafeugp~api
    4. Put following code in wdDoInit()
    public void wdDoInit()
        //@@begin wdDoInit()
         IGPRuntimeManager rtm = GPProcessFactory.getRuntimeManager();
         IWDMessageManager msgMgr= wdComponentAPI.getMessageManager();
         try{
         IWDClientUser wdUser = WDClientUser.getCurrentUser();
         IUser user = wdUser.getSAPUser();
         IGPUserContext userContext = GPContextFactory.getContextManager().createUserContext(user);
         Date startDate = new Date(110,1,1); // Start date as 01-Jan-2010
         Date endDate= new Date(111,12,31); // End date as 31-Dec-2011
         IGPProcessInstanceInfo[] array = rtm.getRunningInstances(GPSearchRole.SEARCH_ROLE_OWNER, startDate, endDate, userContext);
         for (int i=0; i<array.length; i++){
         String instanceId = array<i>.getProcessInstanceID();
    //        Write logic to pass the instance ID to the RFC
    msgMgr.reportSuccess("Instance id =" + instanceId);
         catch(Exception ex)
         msgMgr.reportException(ex.getLocalizedMessage(),false);     
        //@@end
    Let me know if you face any issues.
    Thanks
    Prashant

  • Guided Procedures - Urgent help please

    Hello,
    Can anybody please help me with the information I am looking for?
    Our issues with EP Guided Procedures (GP) are in two spots:
    1) Parameter Passing - Use of  “out”  and “in” parameters from the process context to return / send values from Web Dynpro is not possible using out-of-box functionality.
    2) Eventing / Wait states/ "eventing" - In GP, when multiple parallel processes come to the final decision point, the automated decision point is processed based on the first process that arrives to the decision point. It is not possible to ‘Hold’ a process until the other parallel processes are complete.
    Which of the following statements is true with respect to the issues we are having?
    a) the product has these capabilities, and we've just not properly taken advantage of them;
    b) the functionality doesn't currently exist - but is planned for near releases;
    c) the functionality doesn't exist - nor is it planned to be delivered by SAP.
    Thank you very much.
    Regards,
    Jagadish

    Hi David,
    Assuming that they are actually blocks in a process (I do not see other possibility of actually handling two different processes instead of two blocks in a process, but I will confirm with the person who brought the issues to my notice), is it possible to specify exit condition for one block that also depends on the exit condition of second block? That means even if the exit condition of one block is met, can it wait for the second block's exit condition?
    In BPM we have Fork step where I can specify parallel branches and design the process such that it runs through certain number of branches. Is anything available like this in GP? Can you please provide any documentation which explains the parallel block handling in GP?  As I mentioned in my other response, I am familiar with BPM, but never used GP.
    Thank you very much.

  • Guided Procedures Life & Work Events Help Needed

    Our HR Department recently saw an SAP demo of the ESS Life and Work Events, which uses Guided Procedures.  We are now struggling with the decision to use Guided Procedures for the On-Boarding or if this same type of functionality can be delivered with HCM Processes and Forms.  The biggest draw for the Guided Procedures is the u201Cchecklistu201D type delivery.  Does anyone know if it would be possible to use HCMPF and have a similar u201Cchecklistu201D that the new hire can work through.  I heard somewhere that SAP is moving away from recommending the use of Guided Procedures and is instead recommending using HCMPF.

    did you follow this http://wiki.scn.sap.com/wiki/display/ERPHCM/Reusing+ESS+Java+applications+in+ESS+ABAP+Role?original_fqdn=wiki.sdn.sap.com As such work events are not delivered as such in new releases, you can reuse it however,check above.

  • Error while executing Guided Procedures Action

    Hello,
    We are getting the following error when a user is trying to execute an Action in the Guided Procedures Process:
    "Cannot complete Action: Activity could not be read".
    What can be causing this?
    Any help would be highly Appreciated.

    Hello,
    This is more than likely due to an inconsistency of a GP object at database level. I suggest opening an OSS ticket as this would require detailed analysis.
    Thanks and best regards,
    Carl Connolly
    Senior Support Consultant - Netweaver Web Application Server
    AGS Primary Support, Global Support Centre Ireland
    Guided Procedures trouble shooting guide:
    www.sdn.sap.com/irj/scn/wiki?path=/display/JSTSG/%2528GP%2529Home

  • Creation of Vendor in MDM  using Guided Procedure ...SDA not found

    Hi All,
    We are trying to create Master data Using Guided Procedure.
    After deploying MDM components on Portal we are able to see the standard iViews provided by SAP on Portal.
    We are using the following PDF to create the scenario.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/763845b3-0b01-0010-a1a6-c1763df8f049
    According the PDF we have to deploy following two sda on the portal server to see the GP callable Object.
    H2G_GuidedProcedures.sda
    H2G_SourceCode.zip
    But we are not able to find Follwoing sda on even Service Market Place.
    If anyone knows from wher to download these two SDA, Let us also Know.
    Thanks in Advance for Help.
    Regards
    Shruti.

    Shruti,
    While clicking on link that is given in PDF for these files its saying:
    Error - download expired
    Sorry, the file you want to download, is already deleted or the id is incorrect.
    Perhaps we require a special ID of basis guys because it might be possible we dont have access to these files.
    Just check with your ITICS team.
    BR,
    Alok

  • Interactive form, guided procedure and R3 system

    Hi experts,
    I am working on a project where i am required to create a interactive form (pdf) using SAP NetWeaver. The user is allow to fill up their form before they finally call the SAP guided procedure upon hitting the submit button.
    I have go through some tutorial on guided procedure to perform process control.
    However, the problem now is, after the guided procedure had completed all the different stages of approval, i need it to send the pdf form to the SAP R3 system and insert data to the database.
    So far, i have created an interactive form.
    I need to acquire knowledge on how i could allow the guided procedure to interface with the r3 system after the form is approved.
    Very much appreciated if someone can help me in this area.

    Hi colin lim ,
    The following r excellent websites which give examples on how to use ADOBE forms in R/3:
    https://www.sdn.sap.com/irj/sdn/adobe
    Improving the Performance of Adobe® LiveCycleu2122 Designer Forms(scripting)
    http://www.adobe.com/devnet/livecycle/articles/lc_designer_perf_guidelines.pdf
    Interactive Forms Based on Adobe Software: Overview
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/e635e290-0201-0010-a9be-9e8e4ce04770
    Adobe Interactive Forms
    http://www.saplounge.be/Files/media/pdf/Huberland-Interactive-Forms-2007.10.10.pdf
    Taking interactive forms to next level
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/8c103c36-0301-0010-cda8-f6b381bedb6e
    Introduction to Adobe PDF Library SDK(PDFL SDK)(Simply scroll the document)
    http://partners.adobe.com/public/developer/en/webseminars/PDFL_WebSeminar.pdf
    Creating Interactive forms in webdynpro for java
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5f27e290-0201-0010-ff82-c21557572da1
    PDF-Based Print Forms/SAP Interactive Forms by Adobe
    http://help.sap.com/saphelp_nw04s/helpdata/en/c8/4adf7ba13c4ac1b4600d4df15f8b84/frameset.htm
    Date Objects in Adobe Designer
    http://help.sap.com/saphelp_nw04/helpdata/en/dd/60694fddb74ad88cdb7d2a094f3dd2/frameset.htm
    Checking and Testing a PDF-Based Print Form
    http://help.sap.com/saphelp_nw04s/helpdata/en/c2/1fe9aa4d7b413e8515f90b73729e97/frameset.htm
    Architecture
    http://help.sap.com/saphelp_nw04/helpdata/en/f2/21021b911f4c0cae11459a4ce0bc62/frameset.htm
    http://www.nl4b.com/Adobe/Invitation_SAPBrussels_Q407.pdf
    cheers!
    gyanaraj
    ****Pls reward points if u find this helpful

  • Performance Optimization Self Service- SAP help requirement

    Hi,
    I want to know whether for SAP's help is required for performing the self service of Performance Optimization.
    If we collect ST12 trace and use it to perform the self service then is the report which is generated from the self service sufficient to take further action or will I need some SAP expertise to implement / take corrective actions?
    In short, whether I can do the Performance Optimization by myself or I need help from SAP?
    Regards,
    Vishal

    hi,
    1) Is this service available to all the customer? (by all the customers I mean "Max Attention", "Enterprise Support" etc)
    i answer this above is it, from mz above reply, have you checked
    enterprise support customers can get five EGI sessions as free per year. please check
    http://service.sap.com/esacademy
    - click browse egis
    for your second question also I answered above
    Does the report itself gives suggestions or we need to provide the report to SAP
    here my reply above
    because Guided procedure itself the proven methodlogy from SAP, the report provides the lots of suggestions against the SAP best practices.
    you can use it yourself most of the time. if still you need expert guidance from SAP, book for EGI sessions. they called as expert guided implementations, remote support. duration might vary based on the session.
    again, service report is the source, you have to review yourself, if you are in EGI, sap use that report for guiding. Please review
    Thanks
    Jansi

Maybe you are looking for