Difference between 1.20.01e und 1.20

My question is if there's any difference between these two firmwares.
PS: Everbody who looks in this thread may have another look in my other thread concerning selected music on Zen Micro Photo cause I need help, it's urgent.

The e version is the European version. It has a limit on the maximum volume. Some people complain that they don't get enough volume using the European version on some of the players(not sure if the complaints were about the Microphoto as well). I suggest not using the European version. One should be careful though about playing music too loud, as it might damage your hearing.

Similar Messages

  • Differences between JCA und JCE

    Can someone explain me the differences between JCA and JCE ?
    I guess there are more features in JCE, but I don't see exactly what.
    Thanks, Claude

    JCA gives you MessageDigest, Security, KeyFactory, KeyPair, SecureRandom, and Provider classes. JCE adds Cipher, CipherIn/OutputStream, KeyGenerator, SecretKeyFactory, SealedObject, KeyAgreement and Mac classes.
    [url http://java.sun.com/j2se/1.4.2/docs/guide/security/CryptoSpec.html]JCA Docs
    [url http://java.sun.com/j2se/1.4.2/docs/guide/security/jce/JCERefGuide.html]JCE Docs
    Grant

  • Small differences between while canceling invoice.

    Hello,
    While checking the accounting documents I  have notices that there are small differences between the GR document invoice document. The differences has occurred on GR\IR account and stock account  during canceling the invoice and is 0.01 EUR.
    The GR\IR was credited   with 0.01 less and the stock account was credited   with 0.01 EUR more according to the invoice which was cancel. see below.
    Could you help to und erstand the procedure?
    If it is a standard behavior? If not. How can it be resolved?
    Before (invoice)
    Stock account       101.00+
    GR/IR account        21.53+
    After (after canceling MR8M)
    Stock account       101.01-
    GR/IR account        21.52-
    R
    M.

    Hello Taj,
    Please explain if this differences which you get information from SAP can occur when the process is finish (all GR and IR posted) or in progress as well?
    R
    M

  • Difference between inner join and outer join

    1.Difference between inner join and outer join
    2.wht is the difference in using hide and get crusor value in interactive.
    3. Using join is better or views in writting program . Which is better.

    Table 1                      Table 2
    A
    B
    C
    D
    D
    E
    F
    G
    H
    a1
    b1
    c1
    1
    1
    e1
    f1
    g1
    h1
    a2
    b2
    c2
    1
    3
    e2
    f2
    g2
    h2
    a3
    b3
    c3
    2
    4
    e3
    f3
    g3
    h3
    a4
    b4
    c4
    3
    |--|||--|
        Inner Join
        |--||||||||--|
        | A  | B  | C  | D  | D  | E  | F  | G  | H  |
        |--||||||||--|
        | a1 | b1 | c1 | 1  | 1  | e1 | f1 | g1 | h1 |
        | a2 | b2 | c2 | 1  | 1  | e1 | f1 | g1 | h1 |
        | a4 | b4 | c4 | 3  | 3  | e2 | f2 | g2 | h2 |
        |--||||||||--|
    Example
    Output a list of all flights from Frankfurt to New York between September 10th and 20th, 2001 that are not sold out:
    DATA: DATE   LIKE SFLIGHT-FLDATE,
          CARRID LIKE SFLIGHT-CARRID,
          CONNID LIKE SFLIGHT-CONNID.
    SELECT FCARRID FCONNID F~FLDATE
        INTO (CARRID, CONNID, DATE)
        FROM SFLIGHT AS F INNER JOIN SPFLI AS P
               ON FCARRID = PCARRID AND
                  FCONNID = PCONNID
        WHERE P~CITYFROM = 'FRANKFURT'
          AND P~CITYTO   = 'NEW YORK'
          AND F~FLDATE BETWEEN '20010910' AND '20010920'
          AND FSEATSOCC < FSEATSMAX.
      WRITE: / DATE, CARRID, CONNID.
    ENDSELECT.
    If there are columns with the same name in both tables, you must distinguish between them by prefixing the field descriptor with the table name or a table alias.
    Note
    In order to determine the result of a SELECT command where the FROM clause contains a join, the database system first creates a temporary table containing the lines that meet the ON condition. The WHERE condition is then applied to the temporary table. It does not matter in an inner join whether the condition is in the ON or WHEREclause. The following example returns the same solution as the previous one.
    Example
    Output of a list of all flights from Frankfurt to New York between September 10th and 20th, 2001 that are not sold out:
    DATA: DATE   LIKE SFLIGHT-FLDATE,
          CARRID LIKE SFLIGHT-CARRID,
          CONNID LIKE SFLIGHT-CONNID.
    SELECT FCARRID FCONNID F~FLDATE
        INTO (CARRID, CONNID, DATE)
        FROM SFLIGHT AS F INNER JOIN SPFLI AS P
               ON FCARRID = PCARRID
        WHERE FCONNID = PCONNID
          AND P~CITYFROM = 'FRANKFURT'
          AND P~CITYTO   = 'NEW YORK'
          AND F~FLDATE BETWEEN '20010910' AND '20010920'
          AND FSEATSOCC < FSEATSMAX.
      WRITE: / DATE, CARRID, CONNID.
    ENDSELECT.
    Note
    Since not all of the database systems supported by SAP use the standard syntax for ON conditions, the syntax has been restricted. It only allows those joins that produce the same results on all of the supported database systems:
    Only a table or view may appear to the right of the JOIN operator, not another join expression.
    Only AND is possible in the ON condition as a logical operator.
    Each comparison in the ON condition must contain a field from the right-hand table.
    If an outer join occurs in the FROM clause, all the ON conditions must contain at least one "real" JOIN condition (a condition that contains a field from tabref1 amd a field from tabref2.
    Note
    In some cases, '*' may be specified in the SELECT clause, and an internal table or work area is entered into the INTO clause (instead of a list of fields). If so, the fields are written to the target area from left to right in the order in which the tables appear in the FROM clause, according to the structure of each table work area. There can then be gaps between table work areas if you use an Alignment Request. For this reason, you should define the target work area with reference to the types of the database tables, not simply by counting the total number of fields. For an example, see below:
    Variant 3
    ... FROM tabref1 LEFT [OUTER] JOIN tabref2 ON cond
    Effect
    Selects the data from the transparent database tables and/or views specified in tabref1 and tabref2. tabref1 und tabref2 both have either the same form as in variant 1 or are themselves join expressions. The keyword OUTER can be omitted. The database tables or views specified in tabref1 and tabref2 must be recognized by the ABAP-Dictionary.
    In order to determine the result of a SELECT command where the FROM clause contains a left outer join, the database system creates a temporary table containing the lines that meet the ON condition. The remaining fields from the left-hand table (tabref1) are then added to this table, and their corresponding fields from the right-hand table are filled with ZERO values. The system then applies the WHERE condition to the table.
    Left outer join between table 1 and table 2 where column D in both tables set the join condition:
    Table 1                      Table 2
    A
    B
    C
    D
    D
    E
    F
    G
    H
    a1
    b1
    c1
    1
    1
    e1
    f1
    g1
    h1
    a2
    b2
    c2
    1
    3
    e2
    f2
    g2
    h2
    a3
    b3
    c3
    2
    4
    e3
    f3
    g3
    h3
    a4
    b4
    c4
    3
    |--|||--|
        Left Outer Join
        |--||||||||--|
        | A  | B  | C  | D  | D  | E  | F  | G  | H  |
        |--||||||||--|
        | a1 | b1 | c1 | 1  | 1  | e1 | f1 | g1 | h1 |
        | a2 | b2 | c2 | 1  | 1  | e1 | f1 | g1 | h1 |
        | a3 | b3 | c3 | 2  |NULL|NULL|NULL|NULL|NULL|
        | a4 | b4 | c4 | 3  | 3  | e2 | f2 | g2 | h2 |
        |--||||||||--|
    Regards
    Prabhu

  • Connection between Solution Manager Testing und Test Workbench

    Hello,
    I have Problems understanding the connection between the test organization in the solution manager and the test workbench in the corresponding sap system.
    The documentation says that the Solution Manager reuses the test workbench functionality. It is not clear for me how this connection works. In the solution manager you define test cases in the configuration of the project. When you create a test plan in the solution manager you can use the testcases of the project. But when you execute the testcases you do it in the corresponding sap system where the transaction of the test case is. Does this mean that the test cases und test plans that you create in the solution manager are transported to the target sap system? If this is true, when is the transport taking place?
    Thanks a lot!
    Regards, Lars.

    Hi Lars,
    I think you are confused with solution manager and tools like QTP.
    The difference between solution manager and QTP/ECATTT is the eCATT or QTP are used for creating the test scripts or the test cases but solution manager is used for storing all types scripts centrally.
    It means say you have manual test scripts eCATT and Ext QTP scripts lying on the R/3 servers but from solution manager you can create a project comprises of all the scenario and linked test cases of various type.
    Now at a later time when you start testing a manager login to solution manager enter the test plan project name etc and can check what is the current status of the test
    1. how much testing is completed
    2. Who is the tester what is the test script where or on which testing took place etc
    you can check my weblog to knw how to manage and perform testing via solution manager.
    /people/community.user/blog/2006/12/07/organize-and-perform-testing-using-solution-manager
    Please reward points for the same.

  • Difference between SP16 and SP18

    Hi,
    can anybody tell me the differences between sp 16 und sp18?
    Thanks in advance.
    Regards.
    Stefan

    Look at the release notes to find out the additions of functionalities in different SP versions...
    http://help.sap.com/saphelp_nw04/helpdata/en/57/a21f407b402402e10000000a1550b0/frameset.htm
    Thanks,
    Renjith

  • DIFFERENCE BETWEEN SAP ERP 47 EXTENSION SET 110 AND 200.

    HELOO TO ALL SAP MASTERS
    IS THERE ANY SIGNIFICANCE DIFFERENCE BETWEEN SAP ERP 47 EXTENSION SET 110 AND 200.
    IF YES WHAT ARE THE DIFFERENCES.
    THANKS IN ADVACE
    RAFIQ

    Hi
    Basic difference between the two:
    47x110 first enterprise release.
    From a technical point of view, the first SAP R/3 Enterprise release 47x110,
    consists of following parts, each containing different software components:
        o  The SAP R/3 Enterprise Extension Set 1.10 consists of the
           following software components: EA-HR 110, EA-APPL 110, EA-IPPE
           110, EA-RETAIL 110, EA-GLTRADE 110, EA-PS 110 und EA-FINSERV 110.
    From a technical point of view, SAP R/3 Enterprise 47x200 consists of
    following sections, which in turn contain various software components:
        o  SAP R/3 Enterprise Extension Set 2.00 consists of the following
           software components EA-HR 200, EA-APPL 200, EA-IPPE 200,
           EA-RETAIL 200, EA-GLTRADE 200, EA-PS 200, EA-FINSERV 200, EA-DFPS
           200 and ABA_PLUS 100.
    Hope this helps.

  • Difference between Solution manager and ASAP

    Hi All,
    Can anyone tell me what's the difference between SAP solution manager and ASAP?
    Regards
    Saroj

    ASAP stands For Accelerated SAP........its a SAP implementation methodology. It consists of Five phases---
    1. Project Preparation
    2. Business Blueprint
    3. Realization phase
    4. Final preparation phase
    5. Go live and Support
    For Solution manager u can follow this link:
    http://www.sap.com/services/pdf/BWP_SB_SAP_Solution_Manager.pdf
    ASAP and Solution Manager are tools used for managing SAP implementation and roll out project. Both supports sevral stages of the project as mention by Raj.
    The main Difference between three tools (ASAP, VSAP and Solution Manager) are as follow:
    ASAP:
    - Offline CD set with tools, content and a methodology for component-based implementation projects
    VSAP:
    - Offline CD set with tools, content and methodologies for Evaluation, Implementation and Continuous Business Improvement
    - ASAP CD set is used as a tool platform. ASAP content is included to cover the implementation phase
    Solution Manager:
    - Onsite platform to support key implementation actitivities
    - Including key ASAP concepts and tool features
    - Enhanced concepts to encompass the specifics of mySAP.com implementations
    - Integrated platform to support Implementation and operation of mySAP.com
    - Solution Manager is server based tool.
    More informaiton you can find from the following links:
    ValueSAP : https://www.service.sap.com/valuesapupdates
    Solution Manager: http://service.sap.com/solutionmanager
    some documents what is the duty of asap and solution manager i think with u can understand the difference.
    asap means,
    ASAP
    ASAP stands for Accelerated SAP. Its purpose is to help design SAP implementation in the most efficient
    manner possible. Its goal is to effectively optimize time, people, quality and other resources, using a proven
    methodology to implementation.
    ASAP focuses on tools and training, wrapped up in a five-phase process oriented roadmap for guiding
    implementation.
    The road map is composed of five well-known consecutive phases:
    • Phase 1 Project Preparation
    • Phase 2 Business Blueprint
    • Phase 3 Realization
    • Phase 4 Final Preparation
    • Phase 5 Go-Live and support
    In today's post we will discuss the first phase.
    Phase 1 : Project Preparation
    Phase 1 initiates with a retrieval of information and resources. It is an important time to assemble the
    necessary components for the implementation. Some important milestones that need to be accomplished
    for phase 1 include
    • Obtaining senior-level management/stakeholder support
    • identifying clear project objectives
    • architecting an efficient decision-making process
    • creating an environment suitable for change and re-engineering
    • building a qualified and capable project team.
    Senior level management support:
    One of the most important milestones with phase 1 of ASAP is the full agreement and cooperation of the
    important company decision-makers - key stakeholders and others. Their backing and support is crucial for a
    successful implementation.
    Clear project objectives:
    be concise in defining what your objectives and expectations are for this venture. Vague or unclear notions of
    what you hope to obtain with SAP will handicap the implementation process. Also make sure that your
    expectations are reasonable considering your company's resources. It is essential to have clearly defined
    ideas, goals and project plans devised before moving forward.
    An efficient decision making process:
    One obstacle that often stalls implementation is a poorly constructed decision-making process. Before
    embarking on this venture, individuals need to be clearly identified. Decide now who is responsible for
    different decisions along the way. From day one, the implementation decision makers and project leaders
    from each area must be aware of the onus placed on them to return good decisions quickly.
    Environment suitable for change and re engineering:
    Your team must be willing to accept that, along with new SAP software, things are going to change, the
    business will change, and information technology enabling the business will change as well. By
    implementing SAP, you will essentially redesign your current practices to model more efficient or predefined
    best business practices as espoused by SAP. Resistance to this change will impede the progress of your
    implementation.
    Building a qualified project team:
    Probably the most important milestone early in assembling a project team for the implementation. If you are
    implementing the materials management and plant maintenance modules, you need to include people from
    both of these departments. The team should also represent management as well as non management or
    "functional" personnel. Sometimes management is less aware of the day-to-day functions of an organization,
    including how implementing SAP will tactically influence those function
    ASAP- Second Phase- Business Blueprint
    SAP has defined a business blueprint phase to help extract pertinent information about your company that is
    necessary for implementation. These blueprints are in the form of questionnaires that are designed to probe
    for information that uncovers how your company does business. As such, they also serve to document the
    implementation. Each business blueprint document essentially outlines your future business processes and
    business requirements. The kinds of questions asked are germane to the particular business function, as
    seen in the following sample questions:
    1) What information do you capture on a purchase order?
    2) What information is required to complete a purchase order?
    Accelerated SAP question and answer database:
    The question and answer database (QADB) is a simple although aging tool designed to facilitate the creation
    and maintenance of your business blueprint. This database stores the questions and the answers and
    serves as the heart of your blue print. Customers are provided with a customer input template for each
    application that collects the data. The question and answer format is standard across applications to
    facilitate easier use by the project team.
    Issues database:
    Another tool used in the blueprinting phase is the issues database. This database stores any open concerns
    and pending issues that relate to the implementation. Centrally storing this information assists in gathering
    and then managing issues to resolution, so that important matters do not fall through the cracks. You can
    then track the issues in database, assign them to team members, and update the database accordingly.
    ASAP Phase- 3 - Realization:
    With the completion of the business in phase 2, "functional" experts are now ready to begin configuring SAP.
    The Realization phase is broken in to two parts.
    1) Your SAP consulting team helps you configure your baseline system, called the baseline configuration.
    2) Your implementation project team fine-tunes that system to meet all your business and process
    requirements as part of the fine tuning configuration.
    The initial configuration completed during the base line configuration is based on the information that you
    provided in your blueprint document. The remaining approximately 20% of your configuration that was not
    tackled during the baseline configuration is completed during the fine tuning configuration. Fine tuning
    usually deals with the exceptions that are not covered in baseline configuration. This final bit of tweaking
    represents the work necessary to fit your special needs.
    Configuration Testing:
    With the help of your SAP consulting team, you segregate your business processes into cycles of related
    business flows. The cycles serve as independent units that enable you to test specific parts of the business
    process. You can also work through configuring the SAP implementation guide (IMG). A tool used to assist
    you in configuring your SAP system in a step-by-step manner.
    Knowledge Transfer:
    As the configuration phase comes to a close, it becomes necessary for the Project team to be self-sufficient
    in their knowledge of the configuration of your SAP system. Knowledge transfer to the configuration team
    tasked with system maintenance (that is, maintenance of the business processes after Go-live) needs to be
    completed at this time.
    In addition, the end users tasked with actually using the system for day-to-day business purposes must be
    trained.
    ASAP Methodology - Phase 4 - Final Preparation:
    As phase 3 merges into phase 4, you should find yourselves not only in the midst of SAP
    training, but also in the midst of rigorous functional and stress testing. Phase 4 also
    concentrates on the fine tuning of your configuration before Go-live and more importantly, the
    migration of data from your old system or systems to SAP.
    Workload testing (including peak volume, daily load, and other forms of stress testing), and
    integration or functional testing are conducted to ensure the accuracy of your data and the
    stability of your SAP system. Because you should have begun testing back in phase 2, you do
    not have too far to go until Go-live. Now is an important time to perform preventative
    maintenance checks to ensure optimal performance at your SAP system.
    At the conclusion of phase 4, take time to plan and document a Go-live strategy. Preparation for
    Go-live means preparing for your end-users questions as they start actively working on the new
    SAP system.
    ASAP - Phase 5 - Go-live and Support:
    The Go-live milestone is itself is easy to achieve; a smooth and uneventful Go-live is another
    matter altogether. Preparation is the key, including attention to what-if scenarios related not only
    to the individual business processes deployed but also to the functioning of technology
    underpinning these business processes and preparation for ongoing support, including
    maintenance contracts and documented processes and procedures are essential
    solutionmanager means,
    SAP Solution Manager
    Purpose
    The SAP Solution Manager supports you throughout the entire lifecycle of your solutions, from the Business Blueprint thru configuration to production operation. It provides central access to tools methods and preconfigured content, that you can use during the evaluation, implementation, and productive operation of your systems.
    Features
    Implementation of the mySAP Business Suite
    • All phases of the implementation project (Business Blueprint, Configuration) are performed centrally in the Solution-Manager system.
    • Central project documentation repository in the Solution Manager
    • Integrated Project Administration allows you to manage planning schedules, human resources and other project data.
    Customizing Synchronization
    • The Customizing Scout, with which you can compare customizing in various SAP components, e.g. an ERP system with SAP MDM
    • The Customizing Distribution, with which you can synchronize customizing in various SAP components.
    Test
    • You can use the Test Workbench to organize and perform tests at the end of a project phase.
    • Reuse of the project structure for process-oriented tests
    Global rollout
    Integrated authoring environment, with which customers and partners can create their own templates, which they can reuse in subsidiaries, e.g. in a global rollout
    E-Learning management
    Creation of training material and learning maps (computer-supported self-tuition courses) to train end users after the implementation of new functions
    Solution Monitoring
    • Central system administration
    • Analyze your system landscape with Service Level Reporting
    • System monitoring in real time
    • Business Process Monitoring
    Services
    Access to programs and Services, which help you to monitor and optimize the performance and availability of your system landscapes, and minimize your operational system risks
    Service Desk
    Solution support with workflow to create and handle problem messages
    Change Management
    Management of change requests, with workflow for the monitoring and audit of changes and transports in your system landscape, with the Change Request Management.
    See also:
    • Projects
    • Solution Monitoring
    SAP Solution Manager Roles
    Authorization Concept
    • Project Authorizations
    The following composite roles contain the authorizations required for the tasks to be performed in a project:
    &#9675; Project Leader
    &#9675; Application Consultant
    &#9675; Development Consultant
    &#9675; Technical Consultant
    There are individual roles for Roadmap administration.
    • Production Authorizations
    Production authorizations are in individual roles for the functions:
    &#9675; Solution Directory
    &#9675; Solution Monitoring
    &#9675; Service Data Control Center
    &#9675; Service Desk
    &#9675; Corporate Functionality
    &#9675; Solution Manager Diagnostics
    &#9675; Solution Reporting
    Use
    Adjust the SAP Solution Manager roles to your requirements.
    Overview of Roles in Solution Manager
    If you use trusting-trusted RFC connections, assign the authorization profile S_RFCACL to the user, as well.
    Scenario Role
    Implementation and Distribution SAP_SOL_PM_COMP
    SAP_SOL_AC_COMP
    SAP_SOL_BC_COMP
    SAP_SOL_TC_COMP
    SAP_SOL_RO_COMP
    SAP_SOL_RE_COMP
    SAP_SOL_LEARNING_MAP_DIS
    SAP_DMDDEF_DIS
    Implementation and Distribution (Roadmaps) SAP_RMDEF_RMAUTH_EXE
    SAP_RMDEF_RMAUTH_DIS
    Implementation and Distribution (E-Learning Management) SAP_SOL_TRAINING_EDIT
    Service Desk (Service Desk) SAP_SUPPDESK_ADMIN
    SAP_SUPPDESK_PROCESS
    SAP_SUPPDESK_CREATE
    SAP_SUPPDESK_DISPLAY
    Service Desk (Corporate Functionality) SAP_SUPPCF_ADMIN
    SAP_SUPPCF_CREATE
    SAP_SUPPCF_PROCESS
    Service Desk (Issue Tracking) SAP_SV_SOLUTION_MANAGER
    SAP_SV_SOLUTION_MANAGER_DISP
    SAP_SUPPDESK_ADMIN
    SAP_SUPPDESK_PROCESS
    SAP_SUPPDESK_DISPLAY
    Change Request Management (Schedule Manager; Service Desk, cProjects)
    SAP_CM_CHANGE_MANAGER
    SAP_CM_DEVELOPER_COMP
    SAP_CM_TESTER_COMP
    SAP_CM_OPERATOR_COMP
    SAP_CM_PRODUCTIONMANAGER_COMP
    SAP_SOCM_REQUESTER
    SAP_CM_ADMINISTRATOR_COMP
    Solution Monitoring
    (Service Data Control
    Center)
    SAP_SDCCN_ALL
    SAP_SDCCN_DIS
    SAP_SDCCN_EXE
    Solution Monitoring
    (Solution Directory)
    SAP_SOLMAN_DIRECTORY_ADMIN
    SAP_SOLMAN_DIRECTORY_EDIT
    SAP_SOLMAN_DIRECTORY_DISPLAY
    Solution Monitoring
    (Operations)
    SAP_SV_SOLUTION_MANAGER
    SAP_SV_SOLUTION_MANAGER_DISP
    SAP_SETUP_DSWP
    SAP_SETUP_DSWP_SLR
    SAP_SETUP_DSWP_SM
    SAP_SETUP_DSWP_BPM
    SAP_SETUP_DSWP_CSA
    SAP_OP_DSWP
    SAP_OP_DSWP_SLR
    SAP_OP_DSWP_SM
    SAP_OP_DSWP_EWA
    SAP_OP_DSWP_BPM
    SAP_OP_DSWP_CSA
    Solution Reporting SAP_SOL_REP_ADMIN
    SAP_SOL_REP_DISP
    Solution Manager Diagnostics SAP_SMDIAG_WIZARD
    SAP_SMDIAG_TEMPLATE
    Cf.:
    &#9679; Overview of Roles and Profiles in Satellite Systems
    &#9679; SAP Solution Manager 4.0 configuration guide
    &#9679; SAP note 834534
    &#9679; SAP note 803142
    Overview of Roles and Profiles in the Satellite Systems
    Use the profiles below for SAP R/3 Release before SAP Web Application Server 6.10. Use the profiles below from SAP R/3 Release SAP Web Application Server 6.10.
    If you use a trusting-trusted RFC connection, assign the authorization profile S_RFCACL to the user, as well.
    Scenario Roles (Release > 6.10) Profile ( SAP_S_CUS_CMP S_CUS_CMP Data read access
    SAP_S_CMSREG S_CMSREG Central system repository data
    SAP_S_BDLSM_READ S_BDLSM_READ SDCCN data
    Adjust Roles and Profiles
    Before you assign SAP standard roles and profiles to users, copy and specify them.
    SAP delivers roles and profiles with default values. If they are missing, you must set the values in the authorization objects yourself. Proceed as follows:
    1. Load the roles/profiles from client 000 into your target client. You can:
    &#9675; Transport client 000 into your target client (roles and profiles)
    &#9675; Upload und Download (for roles in transaction PFCG)
    &#9675; RFC connection in transaction PFCG (for roles; menu path: MENU ® READ FROM OTHER SYSTEM WITH RFC). In this case, you must have set-up the RFC connection (transaction SM59).
    2. Copy the roles/profiles into your namespace.
    a. Choose Role Maintenance (transaction PFCG).
    b. Enter a role name and choose Copy Role.
    c. Enter the name of the new role in the To Role field.
    d. Choose Copy All.
    e. Save.
    3. Complete missing values in the authorization objects.
    a. Choose the Authorizations tab.
    b. Choose ChangeAuthorization Data.
    c. Enter your own values for the authorization objects, or double-click on the yellow traffic light.
    The authorization objects appear with a green traffic light.
    d.
    When you double-click on the yellow traffic light, the value “*” appears. This grants full authorization for this field of the authorization object.
    e. Save.
    f. Generate the authorization profile.
    4. Assign the role to users.
    a. Choose the Users tab.
    b. Enter the user names.
    c. Choose User Adjustment.
    d. Save.
    You can also assign the roles to the users, in the user maintenance (transaction SU01).
    e.
    Project Authorization
    Roles
    The roles in the SAP Solution Manager are composite roles, which contain individual roles, which in turn contain authorizations for individual functions, e.g. for the Business Blueprint.
    The following composite roles contain the central authorizations which they require for projects, and can be tailored to suit individual projects:
    &#9679; Project leaders are responsible for organizing and planning the project, and monitoring costs and deadlines.
    &#9679; Application consultants consultants are responsible for business content and the documentation of operational activities. This composite role has limited authorization and is intended for project members who need to be adjusted individually.
    &#9679; Development consultants are responsible for the development of customer-specific programs and authorizations.
    &#9679; Technical consultants are responsible for installing systems and providing technical support to users.
    &#9679; Display user/Read only : contains SAP Solution Manager display/read only authorization.
    &#9679; Read authorization depending on status in Document Management : only contains read authorization per status in Knowledge Warehouse Document Management
    See also:
    &#9679; Solution Manager Roles Overview
    &#9679; Overview of Roles and Profiles in Satellite Systems
    &#9679; SAP Solution Manager 4.0 configuration guide
    &#9679; SAP note 834534 (Roles in the Solution Manager)
    &#9679; SAP note 803142 (Roles in Satellite Systems)
    Project Manager
    Technical name: SAP_SOL_PM_COMP
    Tasks
    Project managers are responsible for the realization of the desired project results and the daily management of the project. They anticipate deviations from the project direction and carry out the necessary corrective measures immediately. Project managers should also understand the integration of the business processes within the enterprise.
    Project managers are also members of the steering committee. They have decision-making authority in matters concerning the program and budget. He forwards strategic questions to the sponsor in order to make joint decisions.
    Activities in SAP Solution Manager
    The main responsibilities of the project manager include:
    • Organizing the entire project
    • Developing strategies and procedures for an efficient SAP implementation
    • Developing and maintaining the time schedule for the implementation project
    • Finalizing and managing the project scope, budget and deadlines in accordance with the approved plans
    • Assigning and managing resources
    • Monitoring project progress on a weekly basis
    • Carrying out evaluations and analyses
    • Carrying out a formal review at the end of each phase
    • Clarifying open issues in good time
    • Reporting regularly to the review committee on the progress and status of the project
    • Representing the project internally and externally
    • Giving status updates to the whole project team
    Project managers can also copy content from a ValueSAP Edition 2 project into an SAP Solution Manager project. See the migration tool documentation.
    Notes on Tailoring
    If you require additional authorization, you can use the role SAP_BC_CUS_ADMIN: It contains authorization for the administration of customizing projects in the component systems.
    The SAP Solution Manager configuration guide contains further information about authorizations in the component systems.
    Integration
    The project manager defines the content and the time frame of an implementation project, manages resources and monitors project progress. The application consultant reports to him and supports him in an administrative function.
    Application Consultant
    Technical name: SAP_SOL_AC_COMP
    Tasks
    Application consultants are responsible for making sure that the Business Blueprint and software configuration are tailored to the business processes and that analysis and report requirements are fulfilled. They use their knowledge of proven business procedures to support them in these tasks. Application consultants also function as advisers and work closely with the rest of the project team.
    They also work in close cooperation with legacy system experts, when extraction of legacy data is necessary.
    Activities in SAP Solution Manager
    The main responsibilities of the application consultant include:
    • Supporting definition and modeling of business processes
    • Checking how the business model works with the SAP products
    • Configuring the software to suit the required business processes and to meet analysis and report requirements
    • Determining the global and local standardization requirements
    • Determining requirements for organizational change in the enterprise
    • Supporting knowledge transfer to other project team members
    • Supporting organization and performance of tests
    • Defining requirements for authorization profiles and access authorizations
    • Analyzing statistical performance and passing on recommendations for improvement to support
    • Creating and developing data solutions and strategies to meet the requirements of the corresponding SAP component (for example, APO, BW, CRM)
    • Creating end user training materials for the new functions
    The application consultant is not responsible for:
    • The technical implementation of the solution
    • The programming of interfaces and other developments
    • Recurring problems with the quality of data (problems with data quality should be passed on to the project manager)
    Notes on Tailoring
    This role only contains basic functions. The following roles are available for additional authorizations:
    • SAP_BC_CUS_CUSTOMIZER contains authorizations for working with IMG activities.
    The following role is useful for the application components:
    • SAP_BC_CUS_CUSTOMIZER
    Integration
    Application consultants are responsible for the development of business content and the documentation of operative activities in accordance with the appropriate standards. The development consultant develops customer-specific programs and their authorizations.
    Development Consultant
    Technical name: SAP_SOL_BC_COMP
    Tasks
    Development consultants work with the project manager and the application consultant on the planning and organization of the authorization concept. They also perform developmental tasks and customer-specific developments.
    Activities in SAP Solution Manager
    The main responsibilities of the development consultant include:
    • Organizing authorizations
    • Developing ABAP programs, for example, interfaces, forms, or modifications
    • Working with the ABAP Workbench
    Notes on Tailoring
    The following roles are available for additional authorizations:
    • SAP_BC_DWB_ABAPDEVELOPER contains authorization for implementing new applications and enhancements and for changing and modifying standard applications using the tools and services provided in the ABAP Workbench.
    • SAP_BC_TRANSPORT_ADMINISTRATOR contains all authorizations for the Change and Transport System
    Integration
    Development consultants work for the project manager and the application consultant and carry out programming tasks, in contrast to technical consultants who act as system administrators and are responsible for installing systems and providing technical support to users.
    Technical Consultant
    Technical name: SAP_SOL_TC_COMP
    Tasks
    Technical consultants plan the technical requirements for a project with the project manager and the manager of the technical team and then carry out the required technical tasks in the system.
    Depending on the scope and complexity of the implementation, technical consultants may work in several areas, for example, system administration, database administration, network administration, operating system administration, development of cross-application components, or ABAP development.
    For international projects, technical consultants also manage consultancy in the following areas:
    Country-specific business requirements and country-specific SAP software requirements
    Language-specific or codepage-specific requirements
    Time-zone issues
    Activities in SAP Solution Manager
    The main responsibilities of the technical consultant include:
    Setting up and installing the system landscape
    Managing the system landscape and the corresponding transport landscape
    Providing support and advice in all technical questions during an implementation project
    Giving daily updates on the technical direction of the project including communicating deviations in the project
    Developing and realizing the Cutover Plan before going live
    Communicating effectively with the business process team
    Transferring knowledge effectively to employees in system administration
    In order to be able to carry out these tasks, the technical consultant should meet the following requirements:
    A sound knowledge in the areas of databases, networks, programming and Internet technology
    A sound knowledge of the SAP solutions
    Notes on Tailoring
    The following roles are available for additional authorizations:
    SAP_BC_RRR_SAA_ADMIN provides the authorization for executing all the tasks in the System Administration Assistant.
    Integration
    The technical consultant acts as a system administrator and is responsible for installing systems and providing technical support to users, in contrast to the basis consultant who works under the instruction of the project manager and the application consultant and carries out programming tasks.
    Read Authorization by Document Status
    Technical name:
    Use the specified individual role to:
    &#9679; display business process scenarios, business processes steps, etc. of your solution, in the Solution Directory.
    Integration
    Use the Solution Monitoring role SAP_SV_SOLUTION_MONITORING_DISP to display the Solution Directory and sessions in Solution Monitoring.
    Adjustment
    Adjust Roles and Profiles
    Solution Monitoring Roles
    Tasks
    Authorizations specified for the Solution Monitoring in the SAP Solution Manager:
    for the Solution Monitorin sessions, classified by the areas Operations Setup and Operations
    general individual role to display all sessions
    Display all Sessions
    general individual role to edit all sessions
    Edit all Sessions
    Activities
    Authorizations are assigned to the roles. Specify user access to the session. There are the following authorizations:
    A The user with the role has full authorization for the transaction or session.
    D The user with the role can call the transaction or session in display mode.
    N The user with the role has no authorization for the transaction or session.
    Operations Setup session authorizations
    Individual role Service Level Reporting System Monitoring Central Administration Business Process Monitoring
    SAP_SETUP_DSWP A A A A
    SAP_SETUP_DSWP_SLR A N N N
    SAP_SETUP_DSWP_SM N A N N
    SAP_SETUP_DSWP_CSA N N A N
    SAP_SETUP_DSWP_BPM N N N A
    Operations session authorizations
    Individual role Early Watch Alert Service Level Reporting System Monitoring Central Administration Business Process Monitoring
    SAP_OP_DSWP A A A A A
    SAP_OP_DSWP_EWA A N N N N
    SAP_OP_DSWP_SLR D A N N N
    SAP_OP_DSWP_SM N N A (1) N N
    SAP_OP_DSWP_CSA N N N A (1) N
    SAP_OP_DSWP_BPM N N N N A
    SAP_SV_SOLUTION_MANAGER_DISP session authorization
    Individual role Early Watch Alert Service Level Reporting System Monitoring Central Administration Business Process Monitoring
    SAP_SV_SOLUTION_ MANAGER_DISP D D D D D
    SAP_SV_SOLUTION_MANAGER session authorization
    Individual role Early Watch Alert Service Level Reporting System Monitoring Central Administration Business Process Monitoring
    SAP_SV_SOLUTION_ MANAGER A A A A A
    (1) – from Release 3.20 SP02
    Cf.:
    Overview of Roles and Profiles
    SAP Solution Manager 3.2configuration guide
    SAP note 625773
    Notes on Tailoring
    You can use and combine the individual Solution Monitoring roles individually, according to your requirements.
    Special authorizations for specific checks in individual sessions, are described in the online documentation of the sessions:
    See also:
    Set-Up Central System Administration
    Using business process monitoring
    Integration
    If you need authorization for specific areas in the SAP Solution Manager, in addition to the authorizations for Solution Monitoring, use the associated individual roles with the specific authorizations:
    Change Request Management
    Service Desk
    Service Data Control Centre
    Solution Directory
    General Administration and Display Authorization
    Technical name: SAP_SV_SOLUTION_MANAGER
    Technical name: SAP_SV_SOLUTION_MANAGER_DISP
    Tasks
    Authorizations are assigned to the roles. Specify user access to the session. The following authorizations are available for your project:
    A The user with the role has full authorization for the transaction or session.
    D The user with the role can call the transaction or session in display mode.
    N The user with the role has no authorization for the transaction or session.
    Activities in
    Both individual roles have full authorization for the sessions in their areas.
    If you only assign one of the roles to a user, the system only offers the user this area in the system interface.
    They have display authorization for other transactions, according to the requirements of the session types:
    &#9632; SDCCN (Service Data Control Centre) for SAP EarlyWatch Alert and Service Level Reporting
    &#9632; SOLMAN_DIRECTORY (Solution Directory) for business process monitoring
    Special authorization objects
    Authorization Object Activity Meaning
    D_SOL_VIEW 20 (Operations) Determines which area can be processed and displayed in the SAP Solution Manager.
    D_SOLMANBU A (Bundle ID) Restricts processing by sessions.
    &#9632; SDCCN (Service Data Control Centre) for Service Level Reporting
    &#9632; SOLMAN DIRECTORY (Solution Directory) for business process monitoring
    Special authorization objects
    Authorization Object Activity Meaning
    D_SOL_VIEW 10 (Operations Setup) Determines which area can be processed and displayed in the SAP Solution Manager.
    D_SOLMANBU A Restricts processing by sessions.
    Activities in the session type roles
    &#9679;
    Functional roles
    Role Technical name Bundle ID Further explanation
    Operations Setup
    Service Level Reporting SAP_SETUP_DSWP_SLR EWA_CUST Additional display authorization for the transaction SDCCN (Service Data Control Centre)
    System monitoring SAP_ SETUP DSWPSM SOL_MON Additional authorization to call the Solution Manager Diagnostics wizard
    Central System Administration SAP_ SETUP_DSWP_CSA SOL_CSA Authorization object S_SAA_ADMI controls authorizations for customizing
    checks.
    Business process monitoring SAP_SETUP_DSWP_BPM BPM_JOBM
    CP_BPM
    CP_BPM_R
    SOL_BPMO
    Additional display authorization for the Solution Directory
    Operations
    SAP EarlyWatch Alert SAP_OP_DSWP_EWA EW_ALERT Additional full authorization for the transaction SDCCN (Service Data Control Centre)
    Service Level Reporting SAP_OP_DSWP_SLR EW_CONS Additional display authorization for the transaction SDCCN (Service Data Control Centre)
    Central system
    administration
    SAP_OP_DSWP_CSA SOL_CSA
    System
    monitoring
    SAP_OP_DSWP_SM SOL_MON Additional authorization to call the Solution Manager Diagnostics wizard
    Business process
    monitoring
    SAP_OP_DSWP_BPM BPM_JOBM
    CP_BPM_R
    SOL_BPMO
    Additional display authorization for the Solution Directory
    &#9632;
    Adjustment
    You can adjust the roles to your requirements.
    If you also need authorization to display the Business Process MONITORING session, as well as the functional role for Service Level reporting in Operations , to check the business processes for the Service Level report, you can:
    i. copy the authorization object D_SOLMANBU into the role and adjust it to your requirements (activity: 1; bundle ID: BPM_JOBM; CP_BPM_R; SOL_BPMO)
    ii. give the user the role and adjust the authorization object D_SOLMANBU to your requirements (activity 1).
    Integration
    You can combine the functional roles with other roles in the area:
    &#9679; Service Desk
    &#9679; Change Management
    &#9679;
    If you want to create a Service Desk message from a Business Process MONITORING session, you need the role for the user in a message system , as well as the functional role for business process monitoring .
    The online documentation for the sessions describes the scenarios in more detail.
    Solution Reporting Roles
    Technical name: SAP_SOL_REP_ADMIN
    Technical name: SAP_SOL_REP_DISP
    Tasks
    The individual roles administer and display Solution Reporting.
    Activities in
    Tasks
    The specified role sets up service connections to SAP.
    Adjustment
    Adjust Roles and Profiles
    Simple way to differentiate is ASAP is a methodology for SAP Project Implementation where as Solution Manager is a document repository to store the documentation that u will create during all phases of the project.

  • Difference between SECRETARY & EMPLOYEE Roles in SRM

    Hi Experts;
    We are using SRM 7, classic scenario
    What is the difference between the below  2 roles? I made role copmarison and found some differences but I am not sure which role to be assigned to which user.
    SSS_SAPSRM_SECRETARY
    SSS_SAPSRM_EMPLOYEE
    Thanks

    HI,
    The role /SAPSRM/SECRETARY is an additional function specific role similar to /SAPSRM/MANAGER for example. These function specific roles include only authorization for the specific topics needed for this function. Beside this roles all users will also need the /SAPSRM/EMPLOYEE role to be assigned to them. This role contains all necessary authorizations for creating shoping cart und must be assigned to all employees who are intended to use the shopping cart functionality.
    Regards,
    Guilherme.
    Edited by: Guilherme Montagner on Jan 16, 2012 6:13 PM

  • The Difference Between?

    Ok so I believe I know the answer here but asking anyway.
    What is the difference between the adobe creative cloud team license vs the adobe creative cloud enterprise license?
    is the team licence basically individually licences products per account users?
    and is the enterprise one license that covers multiple users at once?
    Thanks and sorry for the question but had to verify.

    Hi tbirdbrent ,
    Thank you for posting on the forums, the answer to your question is as follows.
    1) Creative Cloud for teams brings together the very latest Creative Cloud desktop apps, updates and upgrades the moment they’re released, and all of the services and business features your team needs to create their best work and collaborate with their peers. Adobe offers two Creative Cloud for teams plans — you can opt for a complete plan (all apps and services) or a single-app plan such as Photoshop CC (access to one app and select services). With each option, you’ll receive access to the same easy-to-use web-based admin console that allows the administrator to centrally purchase, deploy, and manage all seats across your organization — whether single app or complete — under one membership agreement.
    2) Creative Cloud for enterprise is for organizations with large deployments that require centralized provisioning and customized deployment of apps and services. Enterprises also receive enterprise customer support and expert services. Creative Cloud for enterprise also works with Digital Publishing Suite; Adobe Anywhere for video; and Adobe Marketing Cloud, which includes Adobe Experience Manager — all sold separately.
    Also, the team licences is not individually licences products per account users and the same goes with the enterprise license.
    Thanks,
    Vikrantt Singh

  • What is difference between sy-tabix and sy-index.

    SAP Seniors,
    Can you please let me know what is difference between sy-index and sy-tabix.
    I read the SAP help, it is confusing for me. it looks like both are same from help. please help me.
    Thank you
    Anitha.

    HI,
        Here is a brief description of difference between SY_TABIX and SY_INDEX and using them with several conditions.
    SY-TABIX
    Current line of an internal table. SY-TABIX is set by the statements below, but only for index tables. The field is either not set or is set to 0 for hashed tables.
    APPEND sets SY-TABIX to the index of the last line of the table, that is, it contains the overall number of entries in the table.
    COLLECT sets SY-TABIX to the index of the existing or inserted line in the table. If the table has the type HASHED TABLE, SY-TABIX is set to 0.
    LOOP AT sets SY-TABIX to the index of the current line at the beginning of each loop lass. At the end of the loop, SY-TABIX is reset to the value that it had before entering the loop. It is set to 0 if the table has the type HASHED TABLE.
    READ TABLE sets SY-TABIX to the index of the table line read. If you use a binary search, and the system does not find a line, SY-TABIX contains the total number of lines, or one more than the total number of lines. SY-INDEX is undefined if a linear search fails to return an entry.
    SEARCH <itab> FOR sets SY-TABIX to the index of the table line in which the search string is found.
    SY-INDEX
    In a DO or WHILE loop, SY-INDEX contains the number of loop passes including the current pass.
    Hope this helps.
    Thank you,
    Pavan.

  • Difference between sy-tabix and sy-index?

    tell me about sy-tabix and sy-index?what is the difference between sy-tabix and sy-index?
    Moderator Message: Please search before posting. Read the [Forum Rules Of Engagement |https://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement] for further details.
    Edited by: Suhas Saha on Jun 18, 2011 5:33 PM

    HI,
        Here is a brief description of difference between SY_TABIX and SY_INDEX and using them with several conditions.
    SY-TABIX
    Current line of an internal table. SY-TABIX is set by the statements below, but only for index tables. The field is either not set or is set to 0 for hashed tables.
    APPEND sets SY-TABIX to the index of the last line of the table, that is, it contains the overall number of entries in the table.
    COLLECT sets SY-TABIX to the index of the existing or inserted line in the table. If the table has the type HASHED TABLE, SY-TABIX is set to 0.
    LOOP AT sets SY-TABIX to the index of the current line at the beginning of each loop lass. At the end of the loop, SY-TABIX is reset to the value that it had before entering the loop. It is set to 0 if the table has the type HASHED TABLE.
    READ TABLE sets SY-TABIX to the index of the table line read. If you use a binary search, and the system does not find a line, SY-TABIX contains the total number of lines, or one more than the total number of lines. SY-INDEX is undefined if a linear search fails to return an entry.
    SEARCH <itab> FOR sets SY-TABIX to the index of the table line in which the search string is found.
    SY-INDEX
    In a DO or WHILE loop, SY-INDEX contains the number of loop passes including the current pass.
    Hope this helps.
    Thank you,
    Pavan.

  • What is difference between sy-index and sy-tabix and where both are using ?

    what is difference between sy-index and sy-tabix and where both are using ?

    hi nagaraju
    sy-tabix is in Internal table, current line index. So it can only be used while looping at the internal table.
    sy-index is in Loops, number of current pass. This you can use in other loop statements also (like do-enddo loop, while-endwhile)
    SY-INDEX is a counter for following loops: do...enddo, while..endwhile
    SY-TABIX is a counter for LOOP...ENDLOOP, READ TABLE...
    Here is an example from which you can understand the difference between sy-tabix and sy-index.
    Itab is an internal table with the following data in it.
    id Name
    198 XYZ
    475 ABC
    545 PQR.
    loop at itab where id > 300.
    write :/ itab-id, itab-name , sy-tabix, sy-index.
    endloop.
    My output will be :
    475 ABC 2 1
    545 PQR 3 2
    Sy-tabix is the index of the record in internal table.
    sy-index gives the no of times of loop passes.
    So, for the first record in the output (475 ABC), 2 is the index of the record in internal table and as it is first time loop pass occured, sy-index value is 1.
    Regards,
    navjot
    award points

  • Difference between sy-index & sy-tabix

    Dear friends,
    Please tell me the difference between sy-index & sy-tabix
    Actually my problem is i don't know how to compare for example between first record'field n and second record'field n when u r in loop so i can take particular action based on result
    on current recor
    if possible send me sample code.
    Regards;
    Parag Gavkar.

    SY-TABIX:
    Current line in an internal table. With the following statements SY-TABIX is set for index tables. With hashed tables, SY-TABIX is not filled or it is set to 0.
    - APPEND sets SY-TABIX to the index of the last table row, that is the total number of entries in the target table.
    - COLLECT sets SY-TABIX to the index of the existing or appended table row. With hashed tables, SY-TABIX is set to 0.
    - LOOP AT sets SY-TABIX to the index of the current table row at the beginning of every loop pass. After leaving a loop, SY-TABIX is set to the value it had before entering the loop. With hashed tables, SY-TABIX is set to 0.
    - READ TABLE sets SY-TABIX to the index of the table row read. If no row is found with binary search while reading, SY-TABIX contains the index of the next-highest row or the total number of rows +1. If no row is found with linear search while reading, SY-TABIX is undefined.
    - SEARCH itab FOR sets SY-TABIX to the index of the table row, in which the search string was found.
    SY-INDEX:
    SY-INDEX contains the number of loop passes in DO and WHILE loops, including the current loop pass.
    Regards,
    Santosh

  • Difference between Null and null?

    What is the difference between null and NULL?
    When is each used?
    Thanks,

    veryConfused wrote:
    There is a null in java, but no NULL. null means no value. However, when assigning value, the following is different:Although the empty String has no special role. Null means, the referential type is not assigned (doesn't refer) to a specific object. The empty String is just another object though, so seeing it or pointing it out as something special when it actually isn't at all (no more special than new Integer(0) or new Object[0]) just adds to the confusion.

Maybe you are looking for