Regarding sap head quaters

can u please tell me what r the jobs can a abap consultant get in sap headquaters germany (WALLDORF)
actually what is the qualification to get job in sap headquaters germany
is that our degree , certification
they see or on what basis they
recruit .
pls give some info abt it iam very interested in this .

Hi Harish,
I do not think that there will be any defined boundry for job at SAP HQ. The requirement will be differing based on the roles.
To have a check on this visit this link of SAP careers:
http://www.sap.com/usa/company/careers/index.epx
Also u can send them a mail on the mentioned email ID on this page to have more info.
Regards,
Subhasha

Similar Messages

  • INFO ON SAP HEAD QUATERS WALLDORF GERMANY

    can any one tell me what r the jobs can a abap consultant get in sap headquaters germany (WALLDORF)
    actually what is the qualification to get job in sap headquaters germany
    is that our degree , certification
    they see or on what basis they
    recruit .
    pls give some info abt it iam very interested in this .

    Hi Harish
    To learn ABAP you dont need to go to Germany SAP. If you are in India or where ever you are you can start the ABAP and build your experience. SAP offers the course and certification all over the world check some SAP sites you will get all the info based on your location. Please let me know if you need any more info.
    Good luck
    Thanks

  • 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

  • Regarding ALV Header

    Hi Abapers,
    I am having one Problem regarding ALV Header on the report. Requirement is to get the data it into this order on ALV Header using Simple ABAP.
    Summary
    "Building No       Room No          Comments
    111                   AA                   Over Allocated.
    545                   XX                    Space Free
    787                   YY                   No Space
    I have Tried to enter it into the header table but the data is not coming correctly.
    Problem is It is coming in this way which is wrong..
    Summary
    "Building No  Room No  Comments
    111   AA   Over Allocated.
    545   XX    Space Free
    787   YY   No Space
    Can Any body solve my Problem to get the header information it into the below .
    Summary
    "Building No       Room No          Comments
    111                   AA                   Over Allocated.
    545                   XX                    Space Free
    787                   YY                   No Space

    Hi ,
    I have tried but couldn't succeded. Can you Please provide me the solution.

  • 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

  • Regarding ALV Header to display at Right side of Header

    Hi dudes..
    How to handle ALV header to print content at right side of the report out-put.
    If we use ALV_list dispaly line size ends to 80 and Other than
    using OOP's is there any way to do this..
    Could You please let me know.How to handle this issue??
    Regards,
    Sg

    Hi,
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = 'ZALV_PRDS'
    i_callback_user_command = 'USER_COMMAND'
    i_callback_html_top_of_page = 'HTML_TOP_OF_PAGE' "for header alignment
    it_fieldcat = t_fcat
    i_save = 'A'
    it_events = t_eve
    TABLES
    t_outtab = itab
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    FORM html_top_of_page USING document TYPE REF TO cl_dd_document.
    DATA: text TYPE sdydo_text_element.
    CALL METHOD document->add_gap
    EXPORTING
    width = 200.
    text = 'Material Information'.
    CALL METHOD document->add_text
    EXPORTING
    text = text
    sap_style = 'HEADING'.
    CALL METHOD document->new_line.
    CALL METHOD document->new_line.
    CALL METHOD document->new_line.
    ENDFORM. "HTML_TOP_OF_PAGE
    For more details, refer to the methods of the class cl_dd_document
    Also check the below link.
    https://www.sdn.sap.com/irj/sdn/wiki?path=/pages/viewpage.action&pageid=37566
    Also this link
    Report header using ALV Grid(oops)
    Please reward points if it helps
    Thanks
    Vikranth

  • Regarding SAP SRM Inbox configuration

    Hello Guys,
    We are in the process of configuring the SRM workflow approvals in Portal.
    We made the basic mandatory configurations and we are able to see the workitems in the UWL.
    But unfortunately, we need configure the Inbox iView comes with the SAP SRM business package to work.
    With the configurations recommended, we manage to get the workitems in the standard Inbox iView.
    Only the header items are shown and when opened, a new window opens with just the header. Information of the workitems are not shown. But the same is shown in Universal Worklist.
    We are just wondering what could be wrong.
    Any suggestions are welcome.
    Thanks and Regards,
    Vivek

    Hello Siddharth,
    Thanks for the quick response.
    I think it is POWL. After making some entries in the SRM system table, we are able to get the workitems in the Inbox view, but no details were displayed.
    We tries modifying the xml
    <ItemType name="uwl.task.webflow.srm.TS93107952" connector="WebFlowConnector"
    defaultView="DefaultView" defaultAction="launchSAPAction" executionMode="default">
    <ItemTypeCriteria systemId="SAP_SRM" externalType="TS93107952" connector="WebFlowConnector"/>
    <Action name="launchSAPAction" groupAction="" handler="SAPIACLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes"
    launchNewWindowFeatures="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
    <Properties>
    <Property name="display_order_priority" value="5"/>
    <Property name="newWindowFeatures" value="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no"/>
    <Property name="openInNewWindow" value="yes"/>
    <Property name="IAC" value="BBPCF02"/>
    </Properties>
    </Actions>
    </ItemType>
    We just want to see the workitem details like we do in the UWL.
    Thanks and regards,
    Vivek

  • Regarding SAP interface inforamation.

    Hi All,
    I want  to know some basic information about interfaces as :
    1) Where we can check, is particular interface is active or not?
    2) What type of master data does the IDoc contain (i.e. material master) ?
    Awaiting for your kind reply.
    With Regards,
    Preeti.

    Hi Preeti,
       In the first place, what type of interface are you looking for whether interfaces within SAP like SAP PP-WM / PP-QM etc. or whether an interface from 3rd party systems to SAP?
       To your second question about the contents of the IDOC Master data, if you have the document already created goto tcode WE02 enter message type, date and time parameters and execute. Then check the individual EDI segments - Header and Detail segments. This will be based on standard EDI format.
    Best Regards
    Srinivas

  • Regarding SAP NW SDK,

    Hi Gurus,
    I have requirement like , Non SAP System ( VB.Net ) need to call the SAP sytem through a particular DLL and get the result from the SAP. I have Downloaded the SAP NW SDK 7.1
    1) Now should i unzip this SDK on the SAP side or the Non SAP side.
    2) Now where should I code the C++ Programs, should i use any external compilers.
    I am totally confused, please get me the right direction to achieve this requirement.
    Regards
    Vikranth

    Sounds to me like you are in a completely wrong forum. Note that the header of this forum says;
    This forum is dedicated to all other development-related questions which are not directly addressed by other forums. This includes Business Objects SDKs, products, or technologies which do not fall under BusinessObjects Enterprise, BusinessObjects Edge, Crystal Reports Server, or Crystal Reports (for example Desktop Intelligence SDK, Universe Designer SDK, Portal Integration Kits, Java User Function Libraries, and other third party technologies or development languages).
    I believe you will have to find the appropriate SAP product forum and ask there.
    Ludek

  • SAP Head Count Planning

    Dear All,
    i had already implemented SAP Personnel Cost Planning for Employees using the basic pay method , now i am embarking for the head count planning using the organizational objects.
    Please if anyone can guide how monetary effect can be seen in SAP PCP if we do quota planning (1019) and planning of personnel cost (1015) , and when we do data collection in PCP which method should i choose and what cost item should i create.
    Thanking you all in advance
    best regards,
    samad farooq

    if you are speaking of the Start of the year manpower planning hiring .....
    1. you need to first create planning types & periods
       (SPRO->PM->OM-Infotype settings-> Quota planning)
    2. go to PP01 and select the Org unit
        create the infotype Quota planning.
    3. here you can select the Jobs that you want to plan for.
        (Quota planning as per defined by sap is Planning for Jobs to be created under org units.)
    4. The same can be created in planned status and then be approved.
    5. Also you may need to go through the reports in easy access menu OM-> Tools-> Quota Planning
    S_PH0_48000088 - Delete Unoccupied Positions on Key Date
    S_PH0_48000087 - Copying Quota Planning into Another Planning Type
    S_PH0_48000086 - Copying the Current Required Positions into a Planning Type
    S_PH0_48000085 - Freeze Planned Quota
    S_PH0_48000084 - Generation of Positions for Quota Planning
    Hope this helps.

  • Regarding SAP Note- Manual/Automatic Implementation.

    Hi Experts,
    We have few OSS Notes related to Archiving. Is there any thing specifically mentioned in the note about the type of implementation(Manual or Automatic). I mean ,how do we know whether a note should be implemented manually or automatically ,or both the ways.Generally if it is manual we should require an access key for manual implementation if automatic is not possible.Please correct me if i am wrong. Please suggest
    Best Regards,
    Lakshman

    Hi,
    please look at the item SOLUTION in the SAP note (immediately before the header data).
    There you can find all actions to do, actions before SNOTE, actions after SNOTE, ...
    But there are more problems if your notes need other related notes, which will be downloaded automatically.
    Look into all of them before implementing the SAP notes for manual actions!
    Regards,
    Klaus

  • Details regarding SAP Treasury Certification

    Hi
    I have done recently SAP FI Certification at Associate Level. Please do you have  knowledge about Treasury, is there any relevant SAP Certification for Treasury
    Thanks
    Zafar
    <<Moderator: Changed to relevant heading to meaningful sentence, grammatically corrected. Questions cannot directed to a specific member, hence, corrected>>
    Message was edited by: Ravi Sankar Venna

    Hi Zafar,
    As far as I know, there is no Treasury Certification in SAP for associate level.
    Please stay tuned with
    https://training.sap.com
    The certification exams are updated from time to time.
    However, I do not expect any certification on Treasury in near future.
    Hope this helps.
    Kind Regards,
    Ravi

  • Regarding SAP Sales & distribution.

    Dear SAP Guru's ...
    I have a general Query.....Career Related.
    As SAP AG is Launching New products
    Such as SCM Enhancements BW and other IS versions....
    What will be the future situation and Market of SAP SD Consultant.
    We also heard that it will be mergedwith other higher version modules.
    Please advice me ....
    The Market Situation future?
    The Trends ?
    Whch module Should I focus ..after SD......
    Regards,
    Amaln Sarkar
    SAP SD Consultant.

    Dear Amlan,
    Well I think the foundation of all the new dimensional products is the base modules. Moreover working on the base modules gives the opportunity to understand the business process of different verticals. So there is nothing like end for the market for base modules.
    Hope this helps you.
    Do award points if you found them useful.
    Regards,
    Rakesh

Maybe you are looking for

  • Change font size of WEBGUI in SAP ERP

    Hi all, I need to change font size of WEBGUI in SAP ERP. It is easy to change it in Webgui of SAP BI, using Internet Explorer functionalities (View -> Text size -> Largest), but same procedure doesn't work for transactional SAP modules (i.e. SAP HR).

  • L S860 Caller ID switch off

    I have a problem with my Lenovo S860. I want to set my caller ID to "Show number" because my default setings of my operator is set for desable. So..after some times is my settings disabled and automaticly set caller ID by network default. Why? Thanks

  • If I have a separate ID for my iCloud and my iTunes will it matter

    I have a separate ID for my iTunes music and my iCloud will that matter for getting certain information from my iTunes

  • DDE Package refusing to take more than 265 CHAR

    Dear all, i'm using Oracle 9i, i'm using the DDE package to get data from Excell this is my code      DECLARE      CONVID PLS_INTEGER;      AppId PLS_INTEGER;      BUFFER VARCHAR2(5000);      LEN NUMBER; BEGIN AppId := Dde.App_Begin('C:\Program Files

  • Powerbook G3 Startup Volume problems

    I am using a G3 Pismo Powerbook I bought off eBay. It's a 500 Mhz G3 and it's been upgraded to 1 gig of Ram and a 100 gig hard drive. It came with OS 9 and Tiger installed on it, but I wanted to do my own clean install and I ended up using XPostFacto