SAP HR and ABAP HR

HI ALL,
Is Sap ABAP HR is more related to SAP HR or SAP ABAP?
Is it easy to learn SAP ABAP HR after
SAP ABAP or after learning SPA HR ?

Hi
The prerequisite for learning SAP ABAP HR is ABAP. You should know ABAP. There are additional concepts which are part of SAP HR and if one knows the SAP HR, he will grab the things much faster then the one who do not SAP HR.
But its not necessary that you should know a hand before. Just if you can then go thru Infotypes, time constraint for infotypes, horizontal loop which is used for reading data from IT0008, IT0041 etc.., Logical database, clusters for payroll and time and about taxes.
http://help.sap.com/saphelp_46c/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm
The above mentioned link is fo SAP ABAP and will help you in learning ABAP and if you want to know about functional side of SAP HR go thru the link
http://help.sap.com/saphelp_erp60_sp/helpdata/en/80/ea89395eb58c4f9d0c3e837cf0909d/frameset.htm
You can start with PA, Infotypes, OM, Payroll
Thsi shuld be of help and if you have any further queries let me know
guds

Similar Messages

  • Examples for SAP Memory and ABAP Memory

    Hi all,
        can u give me one example of sap memory and abap memory.
                                              Ranjith

    Hi,
    <b>SAP Memory</b>
    SAP memory is a memory area to which all main sessions within a SAPgui have access. You can use SAP memory either to pass data from one program to another within a session, or to pass data from one session to another. Application programs that use SAP memory must do so using SPA/GPA parameters (also known as SET/GET parameters). These parameters can be set either for a particular user or for a particular program at the time of logon using the SET PARAMETER statement. Other ABAP programs can then retrieve the set parameters using the GET PARAMETER statement. The most frequent use of SPA/GPA parameters is to fill input fields on screens .
    <b>example:</b>
    ABAP programs can access the parameters using the SET PARAMETER and GET PARAMETERstatements.
    To fill one, use:
    SET PARAMETER ID pid FIELD f
    This statement saves the contents of field f under the ID pid in the SAP memory. The ID pid can be up to 20 characters long. If there was already a value stored under pid, this statement overwrites it. If you double-click pid in the ABAP Editor, parameters that do not exist can be created as a Repository object.
    To read an SPA/GPA parameter, use:
    GET PARAMETER ID pid FIELD f.
    This statement places the value stored under the pid ID into the variable f. If the system does not find any value for pid in the SAP memory, sy-subrc is set to 4. Otherwise, it sets the value to 0.
    <b>ABAP Memory</b>
    ABAP memory is a memory area that all ABAP programs within the same internal session can access using the EXPORT and IMPORT statements. Data within this memory area remains throughout a sequence of program calls, with the exception of LEAVE TO TRANSACTION. To pass data to a program that you are calling, the data needs to be placed in ABAP memory before the call is made from the internal calling session using the EXPORT statement. The internal session of the called program then replaces that of the calling program. The program called can then read from the ABAP memory using the IMPORT statement. If control is then returned to the program that made the initial call, the same procedure operates in reverse.If a transaction is called using LEAVE TO TRANSACTION, the ABAP memory and the call stack are deleted. They cannot be used for data transfer.
    Since objects belonging to ABAP objects can only be accessed within an internal session, it does not make sense and is therefore forbidden (from a syntax point of view) to pass a reference to an object to a calling program through the ABAP memory.
    <b>Example:</b>
    Export hello to memory id 'Hello_world'.
    Import hello from memory id 'Hello_world'
    Regards
    Sudheer

  • Hi Friends ....Difference between SAP memory and ABAP memory

    Hi Friends,
    I faced a interview and they ask this question
    What is the difference between SAP Memory and ABAP memory..

    conti
    SAP Memory
    SAP memory is a memory area to which all main sessions within a SAPgui have access. You can use SAP memory either to pass data from one program to another within a session, or to pass data from one session to another. Application programs that use SAP memory must do so using SPA/GPA parameters (also known as SET/GET parameters). These parameters can be set either for a particular user or for a particular program using the SET PARAMETER statement.
    Other ABAP programs can then retrieve the set parameters using the GET PARAMETER statement. The most frequent use of SPA/GPA parameters is to fill input fields on screens.
    ABAP Memory
    ABAP memory is a memory area that all ABAP programs within the same internal session can access using the EXPORT and IMPORT statements. Data within this area remains intact during a whole sequence of program calls. To pass data to a program which you are calling, the data needs to be placed in ABAP memory before the call is made. The internal session of the called program then replaces that of the calling program. The program called can then read from the ABAP memory. If control is then returned to the program which made the initial call, the same process operates in reverse.
    A simple example of ABAP memory is using the EXPORT/IMPORT statements.
    Here in this program, I get the data, export it to memory,
    clear out the internal table in my progam, then reimport the data into it and write out the data.
    You probably wounldn't do this in a normal program,
    but this is how you can pass data from program a to program b when A Submits program B.
    report zxy_0002 .
    data: it001 type table of t001 with header line.
    select * into table it001 from t001.
    export it001 = it001 to memory id 'ZXY_TEST'.
    clear it001. refresh it001.
    import it001 = it001 from memory id 'ZXY_TEST'.
    loop at it001.
    write:/ it001-bukrs, it001-butxt.
    endloop.
    SAP Memory
    SAP memory is a memory area to which all main sessions within a SAPgui have access.
    You can use SAP memory either to pass data from one program to another within a session,
    or to pass data from one session to another.
    Application programs that use SAP memory must do so using SPA/GPA parameters (also known as SET/GET parameters).
    These parameters can be set either for a particular user
    or for a particular program using the SET PARAMETER statement.
    Other ABAP programs can then retrieve the set parameters using the GET PARAMETER statement.
    The most frequent use of SPA/GPA parameters is to fill input fields on screens
    ABAP/4 Memory
    ABAP memory is a memory area that all ABAP programs within the same internal session can access
    using the EXPORT and IMPORT statements.
    Data within this area remains intact during a whole sequence of program calls. To pass data
    to a program which you are calling,
    the data needs to be placed in ABAP memory before the call is made.
    The internal session of the called program then replaces that of the calling program.
    The program called can then read from the ABAP memory.
    If control is then returned to the program which made the initial call, the same process operates in reverse.
    SAP memory
    The SAP memory, otherwise known as the global memory,
    is available to a user during the entire duration of a terminal session.
    Its contents are retained across transaction boundaries as well as external and internal sessions.
    The SET PARAMETER and GET PARAMETER statements allow you to write to, or read from, the SAP memory.
    ABAP/4 memory
    The contents of the ABAP/4 memory are retained only during the lifetime of an external session
    (see also Organization of Modularization Units).
    You can retain or pass data across internal sessions.
    The EXPORT TO MEMORY and IMPORT FROM MEMORY statements allow you to write data to, or read data from, the ABAP memory.
    ABAP Memmory & SAP Memmory
    http://www.sap-img.com/abap/difference-between-sap-and-abap-memory.htm
    http://www.sap-img.com/abap/type-and-uses-of-lock-objects-in-sap.htm
    Set
    http://www.geocities.com/SiliconValley/Campus/6345/set_para.htm
    GET
    http://www.geocities.com/SiliconValley/Campus/6345/get_para.htm
    EXPORT
    http://www.geocities.com/SiliconValley/Campus/6345/export01.htm
    Other Imp Help
    http://www.geocities.com/SiliconValley/Campus/6345/abapindx.htm

  • Diff between sap query and abap query

    diff between sap query and abap query

    Hi,
    ABAP query is mostly used by functional consultants.
    SAP Query :
    Purpose
    The SAP Query application is used to create lists not already contained in the SAP standard system. It has been designed for users with little or no knowledge of the SAP programming language ABAP. SAP Query offers users a broad range of ways to define reporting programs and create different types of reports such as basic lists, statistics, and ranked lists.
    Features
    SAP Query's range of functions corresponds to the classical reporting functions available in the system. Requirements in this area such as list, statistic, or ranked list creation can be met using queries.
    All the data required by users for their lists can be selected from any SAP table created by the customer.
    To define a report, you first have to enter individual texts, such as titles, and select the fields and options which determine the report layout. Then you can edit list display in WYSIWYG mode whenever you want using drag and drop and the other toolbox functions available.
    ABAP Query,:
    As far as I Believe, is the use of select statements in the ABAP Programming. This needs a knowledge of Open SQL commands like Select,UPdtae, Modify etc. This has to be done only by someone who has a little bit of ABAP experience.
    To sum up, SAP queries are readymade programs given by SAP, which the user can use making slight modification like the slection texts, the tables from which the data is to be retrieved and the format in which the data is to be displayed.ABAP queries become imperative when there is no such SAP query existing and also when there is a lot of customizing involved to use a SAP Query directly
    use either SQ02 ans SQ01
    or SQVI tr code
    for more information please go thru this url:
    http://www.thespot4sap.com/Articles/SAP_ABAP_Queries_Create_The_Query.asp
    http://goldenink.com/abap/sap_query.html
    Please check this PDF document (starting page 352) perhaps it will help u.
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVQUE/BCSRVQUE.pdf
    check the below link will be helpful for u
    Tutorial on SQVI
    once you create query system generates a report starting with AQZZ/SAPQUERY/ABAGENCY2======= assing this report to tr code for the same
    regards,
    vasavi.
    reward if it is helpful.

  • I know sap hr and ABAP ..

    HI,
    I know SAP HR and ABAP ...then is it necessary to learn SAP ABAP HR course separately . is SAP ABAP HR is the combination of both ABAP and SAP HR or it is a different entirely course.do you suggest me to learn ABAP HR separately .

    Hi Experts,
    Please help me...
    I am new to SAP HR ABAP Programming.. Here I need to develop a Expenses claim form( ESS)
    I require a custom report to get the employee details in form and they can fill their travel expenses and other expenses manually in the form and that should be send to manager for approval.
    I don't know from which  Infotype I can get these details for the specific employee who are logged in to ESS, what are the Function Modules and which workflow process we can use for the approval ...Etc
    I am providing detail form below please give me some information about the report and workflow..
    Please someone help me to overcome this situation..
    Regards,
    Sudheer

  • Hi All,Can any provide an example for SAP MEMORY AND ABAP memory

    Hi All,
          Can any provide me an example for SAP MEMORY AND ABAP memory.
    thanks&regards.
    Bharat.

    HI Bharat
    A simple example of ABAP memory is using the EXPORT/IMPORT statements.
    Here in this program, I get the data, export it to memory,
    clear out the internal table in my progam, then reimport the data into it and write out the data.
    You probably wounldn't do this in a normal program,
    but this is how you can pass data from program a to program b when A Submits program B.
    report zxy_0002 .
    data: it001 type table of t001 with header line.
    select * into table it001 from t001.
    export it001 = it001 to memory id 'ZXY_TEST'.
    clear it001. refresh it001.
    import it001 = it001 from memory id 'ZXY_TEST'.
    loop at it001.
    write:/ it001-bukrs, it001-butxt.
    endloop.
    SAP Memory
    SAP memory is a memory area to which all main sessions within a SAPgui have access.
    You can use SAP memory either to pass data from one program to another within a session,
    or to pass data from one session to another.
    Application programs that use SAP memory must do so using SPA/GPA parameters (also known as SET/GET parameters).
    These parameters can be set either for a particular user
    or for a particular program using the SET PARAMETER statement.
    Other ABAP programs can then retrieve the set parameters using the GET PARAMETER statement.
    The most frequent use of SPA/GPA parameters is to fill input fields on screens
    ABAP/4 Memory
    ABAP memory is a memory area that all ABAP programs within the same internal session can access
    using the EXPORT and IMPORT statements.
    Data within this area remains intact during a whole sequence of program calls. To pass data
    to a program which you are calling,
    the data needs to be placed in ABAP memory before the call is made.
    The internal session of the called program then replaces that of the calling program.
    The program called can then read from the ABAP memory.
    If control is then returned to the program which made the initial call, the same process operates in reverse.
    SAP memory
    The SAP memory, otherwise known as the global memory,
    is available to a user during the entire duration of a terminal session.
    Its contents are retained across transaction boundaries as well as external and internal sessions.
    The SET PARAMETER and GET PARAMETER statements allow you to write to, or read from, the SAP memory.
    ABAP/4 memory
    The contents of the ABAP/4 memory are retained only during the lifetime of an external session
    (see also Organization of Modularization Units).
    You can retain or pass data across internal sessions.
    The EXPORT TO MEMORY and IMPORT FROM MEMORY statements allow you to write data to, or read data from, the ABAP memory.
    ABAP Memmory & SAP Memmory
    http://www.sap-img.com/abap/difference-between-sap-and-abap-memory.htm
    http://www.sap-img.com/abap/type-and-uses-of-lock-objects-in-sap.htm
    Set
    http://www.geocities.com/SiliconValley/Campus/6345/set_para.htm
    GET
    http://www.geocities.com/SiliconValley/Campus/6345/get_para.htm
    EXPORT
    http://www.geocities.com/SiliconValley/Campus/6345/export01.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3bc4358411d1829f0000e829fbfe/frameset.htm
    Other Imp Help
    http://www.geocities.com/SiliconValley/Campus/6345/abapindx.htm
    Regards Rk

  • What is best operating system for the practice of EP and ABAP

    Hi All,
    I bought a new Dell laptop INS 1464 one week ago with Wndows 7.
    Can anyone help me out which operating system would be best for using/practicing SAP EP and ABAP?
    Regards
    Divyanshu

    Hi Divyanshu,
    Windows operating system would be best for the practice purpose for installing SAP EP and ABAP.
    Please check the Windows 7 Compability with the your EP and ABAP System.
    http://service.sap.com/pam
    http://service.sap.com/sap/support/notes/1347768
    http://service.sap.com/sap/support/notes/1296463
    Hope it helps
    Regards
    Arun Jaiswal

  • Scripts and Abap

    SAP Scripts and ABAP programs are client dependent or not? Why?
    regards,
    kb

    Hi,
    Standard Texts, SAP Scripts are client dependent objects.Tables are client indpendent but the data in those tables is client dependent as we have there is a field called MANDT. All dictionary objects like Tables, Views and other objects in SE11 and Programs, Fun modules ,smartformsand most of the repository objects are client Independent.
    http://sap.ittoolbox.com/documents/popular-q-and-a/differentiating-between-dependent-and-independent-data-1957
    http://help.sap.com/saphelp_nw2004s/helpdata/en/a9/bb963a570b4b5de10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/b7/8a9a3aaf894871e10000000a114084/frameset.htm
    Re: What is the concept of Client
    Reward if found helpfull,
    Cheers,
    Chaitanya.

  • What is the differenec between 'sap list viewer' and 'abap list viewer'

    hi
    what is the differenec between 'sap list viewer' and 'abap list viewer'

    Hi,
    There is no difference between them.SAP List Viewer (ALV) is the new name of the ABAP List Viewer (ALV).
    The SAP List Viewer unifies and simplifies the use of lists in the R/3 System. A uniform user interface and list format is available for all lists. This prevents redundant functions.
    The SAP List Viewer can be used to view both single-level lists and multilevel sequential lists.
    Single-level lists contain any number of lines that have no hierarchical relationship to each other.
    Multilevel sequential lists consist of any number of lines that have two hierarchical levels. Multilevel lists have header rows and item rows; the item rows are subordinate to the header rows. For each header row there can be any number of subordinate item rows.
    You can view subtotals and totals rows in both single-level lists and multilevel sequential lists
    From End User Point it is SAP LIST viewer , From Developer Point of View it is ALV .
    Check the Below Link
    http://help.sap.com/saphelp_nw04/helpdata/en/66/bc7aab43c211d182b30000e829fbfe/frameset.htm
    Regards,
    Satish

  • SAP-EP in ABAP and JAVA ?????

    Hi all,
    When i started studying about for implementing each and every thing in EP/EP-related things it can be done in ABAP and JAVA as well.
    I am really worried about this i am already an ABAP consultant and though i have knowledge of J2EE i prefer to  follow ABAP version of EP i.e. Dynpro in ABAP and Adobe forms in ABAP..
    But i heard that market is good only Java version of implementing the EP.
    and SAP it self is suggesting to go for JAVA version.. in that case why has it created ABAP dynpro,ADOBE forms etc etc.
    why there are 2 ways (JAVA and ABAP) is it to confuse?? please help .. even if i learn ABAP version of everything will that be useful or not?? As u r already into EP,you guys can tell me is there market for ABAP version of implementing EP related things!!
    Please reply.
    Thanks in advance.
    ==============
    Srini...

    hi srinivas....
    this is what i feel abt the question......
    to answer ur question, one has to think in the perspective of SAP Labs.
    there are two ways of doing what u have mentioned and its not to confuse.....
    ABAP is the proprietary language of SAP and therefore u dont find as many developers or intellectual manpower in ABAP as u can find for JAVA.....
    SAP is trying to focus and capture the medium and small scale markets and industries for which it requires lot of manpower.....
    so JAVA is its choice.....
    there can be a lot more reasons behind it.....but this is what i feel.....
    Regards,
    Sudheer

  • SAP and ABAP

    Hello im sorry im a new beginner of SAP n seriously ive got a very low knwldge about SAP..ive got a question is there any others programming language for SAP others than ABAP..Because so far from wht i found i noticed that mostly r using ABAP..plz anyone response me asap because im really in need for the accurate information now..thank u in advance

    Yes, SAP have products or platforms where you can use ABAP, in case of Netweaver, Java, in case of PO or HCP; JavaScript on Hana XS, HTML5 and JavaScript in SAPUI5, for UI development; SQL and SQL Script on Hana, and for some case, like PO or PI, we use XSLT as well.
    Resuming, if you are interesting in learn and work with SAP Hana, you need to know JavaScript, SQL and SQLScript, and is good to have a good knowledge about HTML5 and learn the SAPUI5 framework.

  • SAP NetWeaver 70 - Java and ABAP VMware Trial.part02.rar CRC error?

    HI,
    I've downloaded the file:
    SAP NetWeaver 70 - Java and ABAP VMware Trial.part02.rar
    of SAP NetWeaver 7.0 - Java and ABAP Trial Version on Linux - VMware Edition
    four times and everytime a get a CRC error in the RAR file. Is the file wrong or the download incorrect?
    Regards, Edwin Slee

    Hi Henry.
    I’ve downloaded the file again. Now it is called:
    SAP NetWeaver 70 - Java and ABAP VMware Trial.part02.tgz
    But it is a RAR file.
    As you suggested I open the file with WINRAR 3.61 and select
    Tools -> repair archive
    In the directory a file:is created with the name:
    rebuilt.SAP NetWeaver 70 - Java and ABAP VMware Trial.part02.tgz
    The WINRAR message box reads:
    Detecting archive type...
    ---> RAR
    Build fixed.SAP NetWeaver 70 - Java and ABAP VMware Trial.part02.tgz
    Searching for recovery record
    ---> recovery record not found
    Build rebuilt.SAP NetWeaver 70 - Java and ABAP VMware Trial.part02.tgz
    Found SLES10SP1_Test_Drive(2)-s002.vmdk
    Found SLES10SP1_Test_Drive(2)-s003.vmdk
    Found SLES10SP1_Test_Drive(2)-s004.vmdk
    Found SLES10SP1_Test_Drive(2)-s005.vmdk
    When I open this file with WINRAR again a try to extract
    SLES10SP1_Test_drive(2)-s003.vmdk I still get a CRC error, the archive file is corrupted.
    I think the error isn’t due to the download, because I’ve downloaded the file using three different internet connections (8 times now) and all the files are identical, with a CRC error !
    Regards, Edwin Slee

  • SAP NetWeaver7.0-Java and ABAP trial version on linux. login problem

    Hi all.
    The following programs SAP NetWeaver 7.0 - Java and ABAP Trial Version on Linux - VMware Edition installation.
    Written by Mr. Gregor installation at https: / / SAP NetWeaver 7.0 - Java and ABAP Trial Version on Linux - VMware Edition - Tips & Tricks
    Note.
    As I write programs that install the setup screen appeared normal. But username: root, password: sap123 is wrong. Ejected.
    What is the problem?
    Pls reply..
    Best regard.

    oh~ dear  it's noncense  $-(
    found it.
    username:root password:root
    have a nice day.

  • When will UniverseDesigner support SAP ERP Tables,InfoSets and ABAP Func. ?

    Hi there,
    to the SAP guys in this Forum to keep the rumour mill running: is it planned to extend the connectivity of the Universe Designer to access to SAP ERP Tables, Infosets and ABAP Functions ?! Is there any date when this will happen ?!
    Thanks,
    Sebastian
    Edited by: smenzl on Apr 15, 2010 9:08 AM

    Hi,
    if you need an official statement i would recommend you open a SAP OSS Message for that.
    Regards
    -Seb.

  • SAP NetWeaver 04s SP7 Java Version And SAP NetWeaver 04s ABAP Version

    Hello,
    I would like to ask if anyone has installed both Java and ABAP version on PC/Notebook.
    What did you install first and why?
    When installing the second of the two, did you need to turn off or detete any part of first installation?
    Any advice on the installation of both versions on one PC would be appriciated.
    Thank You,
    Spiro.

    Hi.  I have installed NW04s ABAP stack and the NW04 Java stack(slim edition) on my laptop.  I installed ABAP first, then the java stack.  I did do it the other way around, but the ABAP stack would not load successfully, so remember ABAP first, then java.  No, did not turn off or delete anything from the abap installation.
    Regards,
    Rich Heilman

Maybe you are looking for