How to use Business process roadmap composer & Solman in Blueprint ?

Hi experts,
I am a support consultant and for the first time I am getting involved in Preparing Business Blueprint, So I want to know,
How to use Business process roadmap composer & Solman in Blueprint ?
Regards,
Shakti

Hi Shakti,
This urls shoudl help you to understand better how it works:
-http://service.sap.com/roadmaps
-http://help.sap.com/saphelp_sm71_sp01/helpdata/en/46/210b6e218214dce10000000a155369/frameset.htm
-http://help.sap.com/saphelp_sm71_sp01/helpdata/en/45/f6da633a292312e10000000a11466f/frameset.htm
For further doubts check also the wiki page:
-http://wiki.sdn.sap.com/wiki/display/SM/SolutionManagerImplementation
Kind regards,
Fabricius

Similar Messages

  • How to use batch processing with jpg pictures taken with iphone cameras?

    How to use batch processing with jpg pictures taken with iphone cameras?

    Open the editor . Go to file>process multiple files
    Sent from my iPad

  • How to use  Business Object like Vendor or PurchasingInfo

    Hi,
    How to use Business Object ( like Vendor or PurchasingInfo ) from my Object?
    For example:
    CLASS myEntity DEFINITION.
              PUBLIC SECTION.
                   METHODS: getVendor EXPORTING pVendor TYPE Vendor.
               PRIVATE SECTION.
               DATA: aVendor TYPE REF TO Vendor.
    ENDCLASS.
    CLASS myEntity IMPLEMENTATION.
    METHOD getVendor
               pVendor = aVendor .
    ENDMETHOD.
    ENDCLASS

    Hi,
    I am giving u a demo Program for ur doubt.
    REPORT demo_class_counter .
    CLASS counter DEFINITION.
      PUBLIC SECTION.
        METHODS: set IMPORTING value(set_value) TYPE i,
                 increment,
                 get EXPORTING value(get_value) TYPE i.
      PRIVATE SECTION.
        DATA count TYPE i.
    ENDCLASS.
    CLASS counter IMPLEMENTATION.
      METHOD set.
        count = set_value.
      ENDMETHOD.
      METHOD increment.
        ADD 1 TO count.
      ENDMETHOD.
      METHOD get.
        get_value = count.
      ENDMETHOD.
    ENDCLASS.
    DATA number TYPE i VALUE 5.
    DATA cnt TYPE REF TO counter.
    START-OF-SELECTION.
      CREATE OBJECT cnt.
      CALL METHOD cnt->set EXPORTING set_value = number.
      DO 3 TIMES.
        CALL METHOD cnt->increment.
      ENDDO.
      CALL METHOD cnt->get IMPORTING get_value = number.
      WRITE number.
    For more demo programs type 'abapdocu' in the command field
    U will be getting some demo programs.
    There select the abap objects.
    Regards,
    Jagadish

  • How to use Parallal Processing

    Hi All,
    How to use Parallal processing in our report program, My report has to execute by forground. i have checked this bwlow link, they mentioned some small code here. but how to use and where to place this code in my report program.
    http://help.sap.com/saphelp_nw70/helpdata/en/fa/096e92543b11d1898e0000e8322d00/content.htm
    Thanks,
    Subbu.

    Ok...
    Below is the some part of the program...If it possible to insert the parallal processing please let me know...It very urgent for me....
      LOOP AT ITAB.                                            
        PERFORM MOVE_GR_AMTS_TO_ITAB.                          
        PERFORM ET_IR_AMTS_FOR_PO_LINE.                       
        PERFORM IGURE_COMMITMENTS_COOI.                      
        MODIFY ITAB.                                           
      ENDLOOP.
    FORM MOVE_GR_AMTS_TO_ITAB.                                 
      CLEAR GR_TAB.
      MOVE-CORRESPONDING ITAB TO GR_KEY.
      READ TABLE GR_TAB WITH KEY GR_KEY BINARY SEARCH.
      IF SY-SUBRC = '0'.
        ITAB-GR_QTY = GR_TAB-GR_QTY.
        ITAB-GR_VALUE_CO  = GR_TAB-GR_VALUE_CO.
        ITAB-GR_VALUE_DOC = GR_TAB-GR_VALUE_DOC.
        ITAB-GR_VALUE_LOC = GR_TAB-GR_VALUE_LOC.
      ENDIF.
    ENDFORM.    
    FORM GET_IR_AMTS_FOR_PO_LINE.                              
      data : begin of EKBE occurs 0,
              BUDAT like EKBE-BUDAT,
              MENGE like EKBE-MENGE,
              DMBTR like EKBE-DMBTR,
              WRBTR like EKBE-WRBTR,
              WAERS like EKBE-WAERS,
              SHKZG like EKBE-SHKZG,
             end of ekbe.
      SELECT BUDAT MENGE DMBTR WRBTR WAERS SHKZG FROM EKBE into table EKBE WHERE EBELN = ITAB-PO_NO
                           AND EBELP = ITAB-LINE
                           AND VGABE EQ '2'
                           AND ZEKKN EQ ITAB-ZEKKN.
      if sy-subrc is not initial.
        exit.
      endif.
      loop at EKBE.
        IF EKBE-SHKZG = 'H'.              
          ekbe-MENGE = EKBE-MENGE * -1.
          ekbe-DMBTR = EKBE-DMBTR * -1.
          ekbe-WRBTR = EKBE-WRBTR * -1.
        ENDIF.
        ITAB-IR_QTY   = ITAB-IR_QTY   + ekbe-MENGE.
        ITAB-IR_VALUE_DOC = ITAB-IR_VALUE_DOC + ekbe-WRBTR.
        ITAB-IR_VALUE_LOC = ITAB-IR_VALUE_LOC + ekbe-MBTR.    
        IF ITAB-CURR_PO =  ITAB-CURR_CO.                       
          ITAB-IR_VALUE_CO = ITAB-IR_VALUE_CO + ekbe-WRBTR.    
        ELSE.                                                  
          GS_CONV_AMT = ekbe-WRBTR / GS_CORATE.
          PERFORM GET_CURR_RATE USING ekbe-WAERS ekbe-BUDAT  CHANGING GS_RATE.
          ITAB-IR_VALUE_CO =  ITAB-IR_VALUE_CO +               
                              GS_CONV_AMT * GS_RATE.
        ENDIF.
      endloop.
    ENDFORM.                             
    FORM FIGURE_COMMITMENTS_COOI .                             
      data : begin of COOI occurs 0,
             WKGBTR like COOI-WKGBTR,
             WTGBTR like COOI-WTGBTR,
             WHGBTR like COOI-WHGBTR,
             end of COOI.
      SELECT WKGBTR WTGBTR WHGBTR FROM COOI into table COOI WHERE REFBT = '020'
                           AND REFBN = ITAB-PO_NO              
                           AND RFPOS = ITAB-LINE               
                           AND RFKNT = ITAB-ZEKKN.             
      if sy-subrc is not initial.
        exit.
      endif.
    loop at COOI.
    itab-COMMIT_CO  = itab-COMMIT_CO + COOI-WKGBTR.
    itab-COMMIT_DOC = itab-COMMIT_DOC + COOI-WTGBTR.
    itab-COMMIT_LOC = itab-COMMIT_LOC + COOI-WHGBTR.
    endloop.
    ENDFORM.
    Thanks...

  • How to invoke business process from sap xi?

    Hi...
    Please tell "How to invoke business process from SAP UI's."

    Hi...
    How to invoke business process from SAP UI's. (Eg: To trigger a process after creating an invoice)

  • Y AND HOW TO USE BUSINESS WORKPLACE

    Y AND HOW TO USE BUSINESS WORKPLACE
    IF U HAV SOME SNAPSHOT OR A SITE PLZ FWD ME
    POINT WLL B REWARDED
    REGARDS
    RONEI

    Hi,
    I am giving u a demo Program for ur doubt.
    REPORT demo_class_counter .
    CLASS counter DEFINITION.
      PUBLIC SECTION.
        METHODS: set IMPORTING value(set_value) TYPE i,
                 increment,
                 get EXPORTING value(get_value) TYPE i.
      PRIVATE SECTION.
        DATA count TYPE i.
    ENDCLASS.
    CLASS counter IMPLEMENTATION.
      METHOD set.
        count = set_value.
      ENDMETHOD.
      METHOD increment.
        ADD 1 TO count.
      ENDMETHOD.
      METHOD get.
        get_value = count.
      ENDMETHOD.
    ENDCLASS.
    DATA number TYPE i VALUE 5.
    DATA cnt TYPE REF TO counter.
    START-OF-SELECTION.
      CREATE OBJECT cnt.
      CALL METHOD cnt->set EXPORTING set_value = number.
      DO 3 TIMES.
        CALL METHOD cnt->increment.
      ENDDO.
      CALL METHOD cnt->get IMPORTING get_value = number.
      WRITE number.
    For more demo programs type 'abapdocu' in the command field
    U will be getting some demo programs.
    There select the abap objects.
    Regards,
    Jagadish

  • Imac-how to use word processing

    I am a former windows user. I do not know how to use word processing on the imac. Is there a tutorial?

    disneysue2356 wrote:
    I am a former windows user. I do not know how to use word processing on the imac. Is there a tutorial?
    Which ever WP app you are using, most if not all have their own Help in their menus and/or tutorials. 

  • How to map business process and enterprise service?

    Recently, I read some documents about ESA. I'm confusing about the relationship between business process and enterprise service. In other word, how to map the business process to enterprise service after the business process is analyzed? Is there any methodology/rule to define business process and wrap them into service in ESA?

    Hi Sherry,
    I like to add some of my thoughts about that discussion. From my point of view ESA is much more than just another BPM or Enterprise BPM. ESA is adresses six key areas and I think all of them are really needed:
    - <b>People Productivity</b> as the word itself describes...it's about portals and productivity.
    - <b>Embedded Analytics</b> has to integrate transactional and analytical content.
    - <b>Service Composition</b> is used for model-driven service composition and services orchestration.
    - <b>Service Enablement</b> is about a Enterprise Services Repository filled with business meaningful Enterprise Services and service patterns for enabled objects. Excactly this is where SAP has years of experiences.
    - <b>Business Process Platform</b> is about service enablement of all application platform objects and engines. This is the place where "BPM" for core business processes resits.
    - <b>Life-Cycle Management</b> has to cover the deployment, configuration, operation and change management for ESA based processes.
    Therefore the term "BPM" is located in serveral layers of an ESA approach. On the level of <u>Business Process Platform</u> BPM is providing the choreography for core business preocesses.
    At <u>Service Enablement</u> BPM needs to compose out of granular services (I would say "atomic" services)
    buiness meaningful services (here we have "molecular" services).
    The third level where BPM could be used is <u>Service Composition</u> because exactly this is the place
    where serveral Enterprise Services could be combined to a process representation.
    To come back to the discussion:
    1. The question should be how to indentify business meaningful services which could represent single process steps. ATP check, Credit card check, ... could be examples. In theory this service could be out-tasked, defined more flexible etc. This means that processes needs to be evaluated for Enterprise Service candidates. Afterwards you can check against SAP's Enterprise Services Repository for already existing Enterprise Services. The evalution for enterprise services candidates will be supported by the metodology mentioned by Kaj and David.
    2. I think domains in this context should be motivated by business and/or functional areas. Depending on the granularity. For example Order Fulfilment Services, Master Data Services, Search Services... These kind of serices can be combined again to services such as "Search of Master Data" (Search Service + Read Master Data Service) etc. or can be used to generate UI to be used in a ESA application.
    Your thoughts?
    Very best regards
    Wulff

  • Use BAM in ALBPM  --- How to use "Business Indicator variable" ?

    In ALBPM60_Studio_ReferenceGuide.pdf, there is text like that:
    Using Variables in BAM
    When creating a Project variable, you can define it as a Business Indicator variable. This allows the variable to be stored in BAM the database.
    When you add Business Indicator variable to your process, a column is added to the following BAM database tables:Workload, Task Performance and Process Performance. The name of this column is the Business Indicator name preceded by the prefix "V_".
    If you define a business dimension, the workload table contains one row for each possible value of this business dimension present in the process. Each of this rows will show the quantity of instances that match that business dimension.
    When you define a measurement business variable the sum of this variable's value for all in flight is stored into workload table. If business dimensions were defined as well, then this sum will be divided into as many rows as business dimension values present in flight instances.
    Task performance table stores one row for each instance that completes an activity. Each of these rows contains the value of dimensions and measurements at the time the instance completed the activity.
    In a similar way, process performance table stores one row for each instance that gets to the end activity. Each of these rows contains the value of dimensions and measurements at the time the instance completed the whole process.
    QUESTION:
    1. What's meaning is that writed in bold italic? (Can anybody give me a samaple?)
    2. How to use Range of Business Indicator variable?(When I set range in my sample,this varible can't save into BAM_WORKLOAD, BAM_TASKPERFORMANCE, BAM_PROCESSPERFORMANCE)
    Edited by just9doit at 01/15/2008 10:18 PM

    Hi Saket,
    Check the Tcode - BUPA_DEL.

  • BPC 7.0 - how to design business process flow type Planning process?

    Hi All
    BPC 5.1 system has Business Process Flow, to design synchronized activity plans for a set of user.
    Like we designed user planning in two step BPF -Step1 and Step2, where Step2 was activated only after user completed Step1.
    How to design such requirements in BPC NW 7.0 version?
    Thanks in advance.
    Regrads
    Abhishek
    Edited by: ABHISHEK JAIN on Mar 21, 2009 8:05 AM

    Indeed, if by chance you have not seen the related How-to-Guide, there is an [Article|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f085dd92-a40c-2c10-dcb1-a7c24476b23a] on How to Create a Custom Menu in BPC NW here on the BPX community.
    There is also a lot of explanation on using EVMNU on the SAP Service Marketplace in the [Documentation Addendum|https://service.sap.com/~sapidb/012003146900000031772009E/7NW_SP02_Doc_Addend.pdf] to BPC 7.0 SP02 NW Central Note 1306898
    Best regards,
    [Jeffrey Holdeman|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/profile/jeffrey+holdeman]
    Enterprise Performance Management
    Regional Implementation Group
    Edited by: Jeffrey Holdeman on May 28, 2009 8:40 PM

  • Comraden! How to use business objects in Netweaver?

    And more specifically, how to import(put) some data in to business object from business process? For example a have process, wich i have released in Netweavwer developing studio, by using the perspective "process developing", "web dynpro", "composite application perspective", e.t.c.
    So my process is work perfectly, and i have created business objects, but i need on some steps of process input some data in to my business objects (for example from data contexts, or may be directly from user interfaces).
    Thank you, my friends!

    Hi Madhu,
    The below links 2 will really help
    http://help.sap.com/saphelp_46c/helpdata/en/59/ae4477488f11d189490000e829fbbd/content.htm
    http://help.sap.com/saphelp_46c/helpdata/en/59/ae4484488f11d189490000e829fbbd/frameset.htm
    Cheers!!
    VEnk@
    Edited by: Venkat Reddy on Oct 29, 2008 2:21 PM

  • How to hide business process stage on page load in crm 2013

    Please tell me how to hide process stage on page load in crm 2013.
    for example: Develop, Propose,Quotation... these are business process stages and I have a custom field named "type"
    If type value =1 then hide Propose stage

    Hello,
    That is not possible. What I would suggest is to create several processes for same entity and switch between them using plugin. Sample code for it -
    https://deepakexploring.wordpress.com/tag/updating-process-id-in-crm-2013/
    Dynamics CRM MVP/ Technical Evangelist at
    SlickData LLC
    My blog

  • How to use Webservice in Visual composer

    Hi,
    We have developed a RFC in R3 and converted it into Webservice. We want to use this in the Visual composer. Can anyone suggest some steps how to use this RFC in Visual composer?
    I tried the option in Tools--> Define webservice System and gave the following parameters:
    new system name = WDP (system name which we use)
    new system alias = WDP_VC (system alias which we created)
    webservice url = URL of the webservice which we have created and got in WSDL
    when we create it gives an error the URL is incorrect.
    Kindly let me know if these values are correct and suggest the steps to be followed. Also, if there are any prerequiste steps to be done before using this webservice.
    Thanks and Kind regards,
    Rajbarath.

    Hi,
    The option you described refers to defining a new web service system in the portal system landscape. So if you already have it defined - you don't have to define it again.
    As for the actual error you're getting, check that:
    1. The url is indeed accessible, and points to a wsdl. You can do this by simply inserting it in the browser's address bar and making sure you get a wsdl file in the response.
    2. Make sure that you don't need to authenticate, i.e. provide a user and password. Maybe you just forgot to provide these arguments.
    Lastly, keep in mind that this 'Define Web Service System' option is just a shortcut. Generally, you would define a web service system in the portal, like any other system, using the web service connector.
    Hope this helps,
       Lior

  • How to downloadin Business Process Repository in Solution Manager?

    Hello,
    Does anybody know how to download whole Business Process Repository from solution manager?
    I know how to download BPR, that are related to project, to excel file, but I want to download all the scenarios,processes are inbuilt to the Solution Manager business blueprint.
    Can anybody help me?
    Thanks,
    Mahantesh

    Hello Mahantesh,
    I suppose that your idea behind this question is that you would like to browse the contents of the BPR. For this specific pupose, SAP will deliver a new web dynpro application with SAP Solution Manager 4.0 SP 12 and the respective stack coming out mid June 2007 which allows you to browse all BPR contents in your SAP Solution Manager system. So you no longer have to create a seperate project and select the contents via F4 value help in SOLAR01 in order to access the contents.
    For further updates, please check the news mid June:
    <a href="http://service.sap.com/solutionmanager">http://service.sap.com/solutionmanager</a>
    Media Library -> Technical Papers. It will probably be called: "4.0 Support Package Stack <latest stack> [probably stack 12]"
    However, please note that an individual download of the entire or partial BPR structures into MS Excel will not be possible.
    Best regards,
    Doreen Baseler

  • How to export Business process and application area from Backend.

    Hi ,
    I am new to SAP. I want to export Business process, sub business process, and application area from backend SAP system to my desktop in the excel or flat file format. How can I do this ?? what are the transactions to do this ?.
    Thanks in advance for Reply

    Hi,
    You can deactivate the business process itself if you do not want at all. So that the header will not available for the entity.
    Regards,
    Priya

Maybe you are looking for