Regarding SAP B1certification  questions

Hello dear experts,
I am going to appear for sap b one certification exam on 30th sep 2011.
Kindly note that I dont have log in to SAP site that is scn log in.
can anyone plz tell me from where to get sap b one previous certification questions??
appreciate ur soonest reply.

Hi.......
Please check out some links....
http://sapb1mitc.blogspot.com/2007/09/lesson-1-sep-15.html
http://www.articlesbase.com/software-articles/sap-business-one-certification-questions-tb1100-875352.html
http://www.sap.com/services/education/certification/schedule/index.epx
Hope this will help you specially the third link....
Regards,
Rahul

Similar Messages

  • Help regarding SAP SCRIPT

    Hi!
      can any one help me regarding SAP SCRIPT. i unable to write a print program for sap script . can any one can send me sample code using ITCSY structure.
    Thanks in advance.
    Thanks & Regads,
    DurgaPrasad.k

    Hi,
    refer this to write print program:
    <b>The Print Program</b>
    Structure of a print program
    OPEN_FORM function
    CLOSE_FORM function
    WRITE_FORM
    START_FORM function
    END_FORM function
    CONTROL_FORM function
    The print program is used to print forms. The program retieves the necesary data from datbase
    tables, defines the order of in which text elements are printed, chooses a form for printing and
    selects an output device and print options.
    <b>Function modules in a printprogram:</b>
    When you print a form you must used the staments OPEN_FORM and CLOSE_FORM. To combine
    forms into a single spool request use START_FORM and END_FORM.
    To print textelements in a form use WRITE_FORM. The order in which the textelements are printed,
    is determined by the order of the WRITE_FORM statements. Note: for printing lines in the body, you
    can also use the WRITE_FORM_LINES function module.
    To transfer control command to a form use CONTROL_FORM.
    <b>Structure of a print program</b>
    Read data
    Tables: xxx.
    SELECT *
    FROM xxx.
    Open form printing - Must be called before working with any of the other form function modules.
    Must be ended with function module CLOSE FORM
    call function 'OPEN_FORM'.....
    To begin several indentical forms containing different data within a single spool request, begin each
    form using START_FORM, and end it using END_FORM
    call funtion 'START_FORM'.....
    Write text elements to a window of the form
    call function 'WRITE_FORM'.....
    Ends spool request started with START_FORM
    call funtion 'END_FORM'.....
    Closes form printing
    call function 'CLOSE_FORM'...
    OPEN_FORM function
    Syntax:
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
      APPLICATION                       = 'TX'
      ARCHIVE_INDEX                     =
      ARCHIVE_PARAMS                    =
      DEVICE                            = 'PRINTER'
      DIALOG                            = 'X'
      FORM                              = ' '
      LANGUAGE                          = SY-LANGU
      OPTIONS                           =
      MAIL_SENDER                       =
      MAIL_RECIPIENT                    =
      MAIL_APPL_OBJECT                  =
      RAW_DATA_INTERFACE                = '*'
    IMPORTING
      LANGUAGE                          =
      NEW_ARCHIVE_PARAMS                =
      RESULT                            =
    EXCEPTIONS
      CANCELED                          = 1
      DEVICE                            = 2
      FORM                              = 3
      OPTIONS                           = 4
      UNCLOSED                          = 5
      MAIL_OPTIONS                      = 6
      ARCHIVE_ERROR                     = 7
      INVALID_FAX_NUMBER                = 8
      MORE_PARAMS_NEEDED_IN_BATCH       = 9
      SPOOL_ERROR                       = 10
      OTHERS                            = 11
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    <b>Some important parameters:</b>
    FORM Name of the form
    DEVICE PRINTER : Print output using spool
    TELEFAX: Fax output
    SCREEN: Output to screen
    OPTIONS Used to control attrubutes for printing or faxing (Number of copies, immediate output....
    The input for the parameter is structure ITCPO.
    CLOSE_FORM function
    CALL FUNCTION 'CLOSE_FORM'
    IMPORTING
      RESULT                         =
      RDI_RESULT                     =
    TABLES
      OTFDATA                        =
    EXCEPTIONS
      UNOPENED                       = 1
      BAD_PAGEFORMAT_FOR_PRINT       = 2
      SEND_ERROR                     = 3
      SPOOL_ERROR                    = 4
      OTHERS                         = 5
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Paramerters:
    RESULT Returns status information and print/fax parameters after the form has been printed.
    RESULT is of structure ITCPP.
    WRITE_FORM function
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
      ELEMENT                        = ' '
      FUNCTION                       = 'SET'
      TYPE                           = 'BODY'
      WINDOW                         = 'MAIN'
    IMPORTING
      PENDING_LINES                  =
    EXCEPTIONS
      ELEMENT                        = 1
      FUNCTION                       = 2
      TYPE                           = 3
      UNOPENED                       = 4
      UNSTARTED                      = 5
      WINDOW                         = 6
      BAD_PAGEFORMAT_FOR_PRINT       = 7
      SPOOL_ERROR                    = 8
      OTHERS                         = 9
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Some important parameters:
    ELEMENT Specifies which textelement is printed
    WINDOW Specifies which window is printed
    TYPE Specifies the output area of the main window. This can be:
    TOP - Used for headers
    BODY
    BOTTOM - Used for footers
    FUNCTION Specifies whether text is to be appended, replaced or added
    Example of how to use the WRITE_FORM function module together with a script.
    Form layout of the MAIN window
    /E INTRODUCTION
    Dear Customer
    /E ITEM_HEADER
    IH Carrier, Departure
    /E ITEM_LINE
    IL &SBOOK-CARRID&, &SPFLI-DEPTIME&
    /E CLOSING_REMARK
    <b>The print program</b>
    Writing INTRODUCTION
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'INTRODUCTION'
    FUNCTION                 = 'SET'
    TYPE                     = 'BODY'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                   = 8
    Writing ITEM_HEADER
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'ITEM_HEADER'
    FUNCTION                 = 'SET'
    TYPE                     = 'BODY'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                   = 8
    Set ITEM_HEADER into TOP area of main window for subsequent pages
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'ITEM_HEADER'
    FUNCTION                 = 'SET'
    TYPE                     = 'TOP'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                   = 8
    Write ITEM_LINE
    LOOP AT .....
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT               = 'ITEM_LINE'
    FUNCTION              = 'SET'
    TYPE                  = 'BODY'
    WINDOW                = 'MAIN'
    EXCEPTIONS
    OTHERS                 = 8.
    ENDLOOP.
    Delete ITEM_HEADER from TOP area of main window
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'ITEM_HEADER'
    FUNCTION                 = 'DELETE'
    TYPE                     = 'TOP'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                    = 8
    Print CLOSING_REMARK
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'CLOSING_REMARK'
    FUNCTION                 = 'SET'
    TYPE                          = 'BODY'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                    = 8
    START_FORM function
    CALL FUNCTION 'START_FORM'
    EXPORTING
      ARCHIVE_INDEX          =
      FORM                   = ' '
      LANGUAGE               = ' '
      STARTPAGE              = ' '
      PROGRAM                = ' '
      MAIL_APPL_OBJECT       =
    IMPORTING
      LANGUAGE               =
    EXCEPTIONS
      FORM                   = 1
      FORMAT                 = 2
      UNENDED                = 3
      UNOPENED               = 4
      UNUSED                 = 5
      SPOOL_ERROR            = 6
      OTHERS                 = 7
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    END_FORM function
    CALL FUNCTION 'END_FORM'
      RESULT                         =
    EXCEPTIONS
      UNOPENED                       = 1
      BAD_PAGEFORMAT_FOR_PRINT       = 2
      SPOOL_ERROR                    = 3
      OTHERS                         = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CONTROL_FORM function
    The CONTROL_FORM function module alows you to create SapScript control statements from within
    an APAB program.
    Syntax:
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    command         =
    EXCEPTIONS
      UNOPENED        = 1
      UNSTARTED       = 2
      OTHERS          = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Example:
    Protecting the text element ITEM_LINE
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    COMMAND = 'PROTECT'.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    TEXELEMENT = 'ITEM_LINE'.
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    COMMAND = 'ENDPROTECT'.
    rgds,
    latheesh
    Message was edited by: Latheesh Kaduthara

  • Quick SAP Script question New Page Print

    Quick SAP Script question
    I have added a new page to an existing SAP Script BUT only want it to print if a condition is true.
    I need to do this from within the form as the print program is SAP Std.
    Any idea how I can prevent the new page from printing?
    i.e. I need the form NOT to call the new page if the condition is false. Is there a way of forcing an exit or stop from with in the form?

    Hi,
    To trigger a new page, there is script ediotr command NEW-PAGE.
    so find where is that command is triggered and use the below code for trigger it on any specific condition....
    if &condition& = 'True'
    /*  NEW-PAGE
    elseif
    /: NEW-PAGE   
    endif
    so it means if condition is satisfied your new page will not work.. else it will...
    Hope you got it...
    Try this..
    Best luck..
    Regs,
    Lokesh.

  • Hi i am new to SCN. I want a help regards SAP-PM . Where to post any query regards SAP PM

    Hi i am new to SCN. I want a help regards SAP-PM . Where to post any query regards SAP PM

    Please check this link SAP Portfolio and Project Management (SAP RPM, cProjects) and cFolders
    Please check scn index to find relevant forum link.
    SCN Site Index

  • Need information/training material regarding SAP CRM Functional

    Hello,
    I am a SD Consultant.
    I want to learn SAP CRM (Functional) on my own without going to any training institute or some thing.
    Therefore, can anyone help me in forwarding the link(s) or document(s) with which I can learn about SAP CRM (Functional).
    I want information/training material regarding SAP CRM 7.0 (on system/software working, not the general information, for example- why CRM, where CRM, etc)
    For example, about org data, org structure, possible scenarios, etc.
    Thanks in advance for spending your valuable time for me.
    Regards,
    T. Chaitanya

    Hi ,
    In the SDN lot of documents are there search in the WIKI.check the standard sap doc cr100.

  • Hi All,I have one serious problem regarding sap b1.

    Hi All,
    I have one serious problem regarding sap b1.
    In Sales order whenever I select the item from list or tax from list one. I got this
    Msg Box (Application has a problem. Diagnostic file c|:\Program file\SAP\sap Business one \Log\Sap Business one_20080602105441.dmp was created.
    Please contact support and attach diagnostic file). When select ok sap b1 application close. If anyone required screen short of all this error  plz give me Ur email id I will send u.
    Can any one help me?
    Awaiting Early Response
    Regards
    Rajkumar Gupta

    Hi Rajkumar,
    create a message at the marketplace and send them the diagnostic file with an error description.
    lg David

  • Question regarding SAP query (SQ01& SQ02)

    Hello everyone,
    I have been assigned a task of creating a SAP query in SQ01. The report requires me to incorporate a drill down functionality.
    i.e. when I double click on a material I should be able to see the components of that material.
    My question is "Is it possible to incorporate a drill down functionality in a Query through SQ01".
    If yes then how.
    Please provide me with some documentations or example codes for this.
    Regards,
    Deepti Jain.

    Deepti,
    There are 2 ways to get the output  From SAP query.
    1.Under record processing :
          if you don't write any code in Start of selection event for output
         (WRITE statements)  we can not have any control on that.
    2. Under start of selection event :
         If you write any code in START OF SELECTION event like
         get the data in internal table and loop the internal table
         In loop WRITE statement to display with format and try to use
        Interactive report commands Here. I think it will work fine.

  • Some additional questions regarding SAP XI

    Hello!
    I would like to know, whether the requirements below can be realizied with the SAP XI. Can someone help me by answering the questions (with Yes/no and a short comment).
    <b>TECHNICAL SUPPORT OFFERINGS </b>
    a) Training material for salespeople and administrators  (videos, workbooks, etc…)
    b) Defined strategy for making future enhancements, including alignment with HP-UX verions, Microsoft Windows Server versions, and Oracle or Microsoft Database version
    c) Defined process for how you handle system problems, problem escalation policies and procedures.
    <b>RELATIONAL DATABASE </b>
    a) Does your system run native to the Oracle 10g RDBMS (RAC) and database tools?  If not, please explain the databases and tools supported.
    b) database monitoring tools be used to manage impending maintenance needs and potential problems and performance impacts (i.e., tool will monitor and detect prior to real problem occurring)
    c) standard pre-defined SQL queries and related calculations provided for use with industry standard reporting tools
    d) database accept binary-large-objects (BLOBs) and  be referenced via the relational engine.
    Thank you!
    Regards
    Henke

    Hello!
    I would like to know, whether the requirements below can be realizied with the SAP XI. Can someone help me by answering the questions (with Yes/no and a short comment).
    <b>TECHNICAL SUPPORT OFFERINGS </b>
    a) Training material for salespeople and administrators  (videos, workbooks, etc…)
    b) Defined strategy for making future enhancements, including alignment with HP-UX verions, Microsoft Windows Server versions, and Oracle or Microsoft Database version
    c) Defined process for how you handle system problems, problem escalation policies and procedures.
    <b>RELATIONAL DATABASE </b>
    a) Does your system run native to the Oracle 10g RDBMS (RAC) and database tools?  If not, please explain the databases and tools supported.
    b) database monitoring tools be used to manage impending maintenance needs and potential problems and performance impacts (i.e., tool will monitor and detect prior to real problem occurring)
    c) standard pre-defined SQL queries and related calculations provided for use with industry standard reporting tools
    d) database accept binary-large-objects (BLOBs) and  be referenced via the relational engine.
    Thank you!
    Regards
    Henke

  • Question regarding SAP NetWeaver JEE

    It seems it is not possible to deploy an EJB JAR file module as is. I use NetBeans with GlassFish to develop EJB modules that expose Web Services endpoints. The backend is Oracle Database. I develop on my local workstation and after testing launch the browser and login to the admin console of GlassFish on production server. I then simply deploy the jar file which is the EJB module. It all works. I'm wondering if I can get this to work on SAP JEE with none to little tweaking. But it seems it is not straight-forward without using the IDE. If you know of a way I can do this can you please point me to it. Thanks!

    Hi Neeraj,
    Welcome to SDN!
    OK, straight to your question: You can deploy externally developed applications as well as applications developed in the SAP NetWeaver Developer Studio. Take a look at <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/882f621d-0e01-0010-99b7-c5bc4f1a4b6b">this</a> paper (especially from page 9 on).
    Regarding "with none to little tweaking" - in general, you only have to pack the EJB JAR into a standard EAR file (deployment of standalone EJB apps is not supported in this version). If you don't rely on any non-standard features of GlassFish or Oracle, this should be sufficient.
    One final note - there is no need to cross-post the same question in parallel forums. Please take a minute to go through the <a href="https://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement">Rules of Engagement</a> accessible from every SDN forum.
    Hope it helps!
    -Vladimir
    P.S. You can find plenty of useful documents about SAP NetWeaver AS, Java EE 5 Edition on the Java EE 5 @ SAP <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/javaee5">homepage</a> as well as in the [url=https://wiki.sdn.sap.com/wiki/display/Java/JavaEE5+Development]SDN Wiki[/url].

  • Questions regarding SAP CRM 4.0

    Hi:
    Does anyone have some past exam questions regarding the SAP CRM certificate exam? My e-mail is [email protected]
    In addition, can anyone explain the differences between those code beings with "T" and those without, such as TSCM and SCM?
    Thank you.

    I would like to clarify on question 2): The filtering is not necessarily limited to only one of these items at a time; we could need, for example, filtering done by: customer number  AND sales organization AND sales office.
    The idea we came up with was to perhaps create the necessary extra attributes (if this is possible), and to have them automatically filled in by a routine (a user exit?); later, a simple search using these new attributes would filter the information accordingly. Would such a thing be possible?

  • A few questions regarding SAP EWM and WM

    Hello,
    I have a few general questions regarding the differences between EWM and WM:
    1) What are the benefits of EWM-MFS compared to WM + TRM (especially in terms of SPS)?
    2) The Quality Inspection Engine (QIE) can also be used by SAP WM, right?
    3) There is RFID-support in EWM, so EWM is able to communicate directly with SAP Auto-ID, right?
         But I have heard that SAP PI is necessary in some cases, when and why?
    4) Is there something new in EWM regarding goods receipt processing?
        I have read that the splitting of inbound delivery items is possible in EWM in case of missing inbound delivery items. Is this really  a new feature?
    5) EWM can easily be connected to SAP BW for reporting purposes, what about WM?
    6) What about scalability if the warehouse grows?
    7) Is there any information about the costs of using EWM compared to WM and vice versa?
    I appreciate any kind of help.
    Thank you.
    Dennis

    Hi,
    1. What does SAP offer as a product for dWM? Is it a u201Cspecialu201D installation of the SAP framework dedicated to WM or is it a standard ECC box where only the WM module is used?
    There are two version of DWM. One is Decentralized WM as a part of ECC and another one is EWM as a part of SCM. Both are decentralized.
    2. My understanding is that the interfaces between ERP and dWM can support some non-real time operations (like when the main ERP system is down, the dWM can still perform some operations). Considering that the transactional interfaces are based on BAPIs, how does SAP achieve this interfacing in non-real time environments? I am thinking you can complete the different processing unless both systems are up
    When it comes to interfaces, DWM needs Deliveries from ERP. That's it, WM can function from there independent of ERP system. But, WM defenitely needs to communicate back PGI and PGR and other posting changes . So, in case ERP is down, even though PGI / PGR is done at WM end, they may not be communicated back to ERP. But WM generates PGI/PGR IDOCs which can always be reprocessed at WM end to resend them to ERP so that Inventory levels are accurate.
    Hope that helps
    Thanks
    Vinod.

  • BW for SAP TM - question regarding Tables

    Hello gurus!
    I hope u are fine.
    I have some doubts about how I can see, check a table into SAP TM, because SAP TM use NWBC and I dont know how I will be able to identify which table/field use the user, in order to extract the data to BW for creating reports.
    Some body could helpme, please?
    Thanks a lot
    Have a nice day!

    Here are some tables which we use a lot:
    Table with downtimes: /SAPAPO/RESDOWN
    Tables with resources(vehicles): /SAPAPO/RESDOWN    /SAPAPO/RESKEY    /SCMB/RESTMSHD     /SAPAPO/RES_HEAD
    Tables with transactional data: /SCMTMS/D_TRQROT    /SCMTMS/D_TORROT      /SCMTMS/D_TORITE     /SCMTMS/D_TOREXE    /SCMTMS/D_TORSTP      /SCMTMS/D_PLNXSR     /SCMTMS/D_PLNXOS     /SCMTMS/D_TRQITM     /SCMTMS/D_TORSTP     /SCMTMS/D_TORSTS
    Setup tabellen: TRQ_ITM_SETUP     TRQ_SETUP     TOR_ITM_SETUP   TOR_SETUP 
    With transaction /BOBF/TEST_UI you can request your Business objects like Forwardingorders en Freightorders in the back-end. Here you can also trace the ABAP fieldname. In table DD03L you can check in which tables the field is used.
    Kind regards,
    Benno Mateman

  • I have question regarding SAP HR career.

    Dear Experts,
    i wanna ask is it important that we have to work as HR executive or must have domain exp for getting job in SAP HR . i have completed SAP HR Training from some institute but i dont have any domain exp of hr please guide me how can i enter in SAP HR or i have to do HR executive job becoz my background is of IT i have done MCA .and i am also not so sound in ABAP programming . I am not MBA HR .i tried for hr executive jobs as fresher but not all companies hiring male candidates please guide me wht to do .To start career in SAP HR .Tell me some tips so that Companies can hire me as SAP HR ( Fresher ) ..
    Thanks
    Regards,
    Virat

    Hi Vee,
    There is no mandatory rules that you need to have HR domain experience to become SAP HR.  Go for SAP HCM certification and search a job then it will be big advantage to get a job.
    https://training.sap.com/shop/certification/c_thr12_66-sap-certified-application-associate--human-capital-management-wit…
    Regards
    GGOPII

  • Some questions regarding SAP Content Server / Knowledge Warehouse

    Hi,
    we are thinking about SAP Knowledge Warehouse which needs the SAP Content Server.
    Is it possible to install the Conent Server together with a Solution Manager System where we would like to use the Knowledge Warehouse functionallity? The Conent Server needs his own database instance. Is it possible to add it to the actually installed Maxdb for the  Solution Manager?
    What is the actual version of the Content Server 6.30 or 6.40? Is there no 7.0? What about the future of the Content Server?
    We are running Solution Manager 7.0 EHP1. Is it possible to install the content server on the same machine? What about the database? Can I use the already installed DB of solution manager?
    Thanks ahead
    Bernd
    Edited by: Bernd Speckmann on Apr 26, 2010 10:55 AM

    Is it possible to install the Conent Server together with a Solution Manager System where we would like to use the Knowledge Warehouse functionallity?
    If you have enougth resourses why not?
    The Conent Server needs his own database instance.
    This is are not true, you can install content server without MAX DB.
    Is it possible to add it to the actually installed Maxdb for the Solution Manager?
    Again why not, if you have correct max db version per PAM for content server (you need 2 DB instance second are for cache server) check pam for NW 7.0 (the PDF document) you find information about content server requirements here and in page --> Database components on same NW 7.0 PAM. 
    What is the actual version of the Content Server 6.30 or 6.40?
    6.40 are last version,
    We are running Solution Manager 7.0 EHP1. Is it possible to install the content server on the same machine?
    Your OS are ? I'm install cont server 6.40 on system where NW 7.0 are installed without problem, do not know about NW EHP1 .... Good backup are start point .....
    Regards.

  • Question regarding SAP ECC Server Value Pack successor

    Hello,
    currently one of our ERP 6.0 systems is scheduled for an EHP4 upgrade. So we used the SolMan to determine which technical usages are available for the system.
    The SolMan presents teh SAP ECC Server Value Pack successor as a possible technical usages which could be implemented during this update. Now our customer does not know what this technical usage could be good for. I already searched within the help.sap.com area for ERP 6.0 but I was not able to dig up any information regarding this technical usage.
    Can somebody tell me what they are good for or where to look for specific information?
    Thanks in advance.
    Kind regards,
    Sven

    Someone has information about this pack, I don´t find information in any part.

Maybe you are looking for

  • Unplugged Monitor still Active

    After unplugging my second monitor from my laptop I am unable to view any browser/appliation windows, task bar, time or start menu. Prior to unplugging my second monitor I go to Screen Resolution and change my Laptop's built in monitor to the Main Di

  • Why does iPhoto give me this error when opening it " Your photo library is either in use by another application or has become unreadable"

    Good Day. I have been trying to open my iPhoto and i keeps giving me the following error message " Your photo library is either in use by another application or has become unreadable " Then it suggests I push the Option and Command button at time of

  • Attach Movie Clip to ScrollPane

    Hi I tried to attach movie clips to scrollPane using attachMovie but could not do it I tried the following code: sp.contentPath="emptyMovieClip" sp.content.attachMovie("boxesRow","boxesRow1",1) trace(sp.content.boxesRow1) Im able to trace the sp.cont

  • Azure AD Premium - selectively enable users

    Hi everyone, I'm facing a scenario where a customer wants to be able to enable and pay Azure AD premium services for a subset of the synchronized users in AAD. The customers has hundreds of external users and contacts just used for distribution lists

  • Firefox 5 is displaying a web page differently from Firefox 4.

    Certain pages at www.shairfare.com are misaligned in Firefox 5, but they work fine in Firefox 3 and 4. I can't figure out why this happens. I had to create an override .css file to handle safari and Chrome, because of the differences in the way width