HR Programming in ECC 6.0

From what I read in SAP Help,logical databases are placed under obsolete features but are retained for older releases. Does this mean HR programming using PNP and macros are not encouraged in ECC 6.0? If so, what are the alternatives? Is there a solution in ABAP Objects specifically for coding with HR and payroll?

Hi,
In general ABAP reporting LDB's become obsolete, But in HR programming still they(PNP like) are used frequently without any problem.
As far as I know we have to use CLUSTERS and IMPORT EXPORT cluster for Payroll programming. No objects for the Payroll.
reward if useful.
regards,
Anji

Similar Messages

  • Module Pool Programming in ECC 5.0

    Hi Experts,
    Can any one explain the unique features of Module pool programming in ECC 5.0. 
    Even if you find any documentation please pass it on.
    Regards,
    Shankar

    The screen painter is basically the same in 4.7 and ECC6.
    The difference you see might be because you are using the alphanumerical screen painter in 4.7 where the default in ECC is the graphical screen painter. Both are available in 4.7 and ECC.
    To switch back to the alphanumerical in ECC6, just do:
    - SE80
    - menu Utilities
    - Settings
    - tabstrip Screen Painter
    - remove the flag for graphical layout editor
    This will start the alphanumerical instead of the graphical one
    However the graphical one is much easier to use so you might want to look into using that one instead of the (old) alphanumerical one.
    Hope that helps,
    Michael

  • Need to Trigger a Program in ECC after the DSO load has completed

    HI Experts,
    I have scenario where i need to trigger a Program in ECC after the load to DSO has been completed successfully. Basically opposite of the everyday scenario.
    Can i still use the  the RSSM_EVENT_RAISE FM in the program to call the event in ECC.
    If the above is true.Do i need to have code in the program to confirm the DSO has been loaded or can i just have the program (which basically calls the FM RSSM_EVENT_RAISE) appended to the process chain after the DSO Activation?
    Appreciate your advice

    Hi,
    To help future proof your solution, lean towards using the process chain as much as possible.
    A "Green/Success" only link from the DataStore Activation process variant to an ABAP Program process variant will work nicely. It will also still allow your program to be executed by other scenarios (like manually because you want the event raised now without any dependency on the DataStore status).
    SAP now recommends you use the CL_BATCH_EVENT class and it's methods to interact with the system events. Use transaction SE24 to review the methods and parameters available and then use the sample code below to test your solution.
    Here is a starting point for coding that is used within an ABAP Program process variant in a process chain.
    Use transaction SE38 to store this code to be called by the ABAP Program process variant.
    constants:
      c_interrupt_eventid   type btceventid  value '[Event]',
      c_interrupt_eventparm type btcevtparm  value '[Parameter]'.
    data:
      l_interrupt_eventid   type btceventid value c_interrupt_eventid,
      l_interrupt_eventparm type btcevtparm value c_interrupt_eventparm.
    call method cl_batch_event=>raise
      EXPORTING
        i_eventid                      = l_interrupt_eventid
        i_eventparm                    = l_interrupt_eventparm
      EXCEPTIONS
        excpt_raise_failed             = 2
        excpt_server_accepts_no_events = 3
        excpt_raise_forbidden          = 4
        excpt_unknown_event            = 5
        excpt_no_authority             = 6
        others                         = 1.
    if sy-subrc <> 0.
      message e051(rsar) with 'Failed to raise background event.' c_interrupt_eventid c_interrupt_eventparm.
    endif.
    Note: The error message is process chain friendly and will appear in the RSPC transaction GUI and system logs.
    Hope this helps,
    John.

  • Query for copying standard program in ECC 6.0

    Hi,
      My problem is when i copy a standard program to my Z program in ECC and then try making some changes there it says new enhancement point will be created (specific to top include in function module).Kindly suggest what action needs to be taken for above problem.

    Hi,
    Please find the Standard workflow list in this link...
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/04/926f8546f311d189470000e829fbbd/frameset.htm
    Regards,
    <i><b>Raja Sekhar</b></i>

  • Pre-defined program in ECC 6.0

    Hi Experts,
      I have a issue that can resolve by u guys,
        Please provide the pre-defined program in ECC 6.0 that can stored the program code and all the includes in a program for the given path.
    Advance Thanks.
    u r answer will be given points.

    Dear Lakshman,
    The standard pricnt program of PO MEDRUCK
    dont modify this because this is original one copy and change copy program
    Hope this helps you
    Prem

  • BI Process Chain executing a program in ECC

    I want to build a process chain in BI 7.0, which should also be able to execute a program in ECC.
    Is it possible.
    How do I do that ?
    Thanks
    Mary

    It should be possible:  Your process chain should include an ABAP program.  This program should call an RFC enabled function module in ECC (custom-built)  which should perform the required function in ECC.
    There are many links on including ABAP programs in PCs.  In the ABAP section you will find information about building RFC function modules.
    BR/
    Mathew.

  • Callng Abap Program in ECC from bi

    Dear All,
    Wanted to check if we can call abap program from Bi.
    Senerio is i want to execute the abap program in ecc first and then trigger the process chain.
    Is it possible??? I'm aware of the other way that we can call process chain from ECC but wanted to check the BI way. If yes then how?
    Regards,
    Sachin K

    Madhu,
    Not possible, indeed need event or Remote Function Call using an ABAP program.
    Other option would be to use a 3rd party tool like Control-M to run programs/jobs on whatever system in your landscape (but requires investments of course).
    Grtx
    Marco

  • Error while executing sender ABAP proxy program in ECC

    Hi,
    We have lot of proxy to file scenarios, most of them are working fine. I am having issue with 2 interfaces, when I execute sender ABAP proxy program, we are getting following errors in ECC:
    <SAP:Category>XIProtocol</SAP:Category>
      <SAP:Code area="PARSING">GENERAL</SAP:Code>
    <SAP:Stack>com.sap.aii.af.service.cpa.CPAObjectNotFoundException: Couldn't retrieve inbound binding for the given P/S/A values: FP=;TP=;FS=ED1CLNT290;TS=;AN=CustTrPowersellS_Out;ANS=urn:maines-net:OTC_079E:PowersellCustomerTerms; at com.sap.aii.af.service.cpa.impl.lookup.CommonLookup.getInboundBinding(CommonLookup.java:237) at com.sap.aii.af.service.cpa.impl.lookup.CommonLookup.getInboundBinding(CommonLookup.java:167) at com.sap.aii.af.service.cpa.InboundRuntimeLookup.<init>(InboundRuntimeLookup.java:88) at com.sap.aii.af.service.cpa.impl.lookup.AbstractLookupManager.getBinding(AbstractLookupManager.java:519) at com.sap.aii.adapter.soap.web.MessageServlet.getBinding(MessageServlet.java:875) at com.sap.aii.adapter.soap.web.MessageServlet.doPost(MessageServlet.java:439) at   etc etc
    Configuration should be fine because many scenarios are working. Can you please help me where could be the error?
    Let me know if you need more info.
    Regards,
    N@v!n

    Hi Naveen,
    We saw your solution about this issue. We are also facing same issue. I wanted to know where we have to update scenario as simple scenario or integrated scenario.
    And could you please tel me what is the main diff between in these two.
    As we are are using PI 7.31 java stack so for this version what we have to use.
    Thanks,
    Shivdeep Kumar

  • ERROR in program SAPLV14A (ECC 6.0)

    Hello experts,
    We just upgraded to ECC 6.0
    and the functional team is not able to create any sales order because of an error in program SAPLV14A
    Here is the short text:
    Short text                                                                               
    Syntax error in program "SAPLV14A ".                                                                               
    What happened?                                                                               
    Error in the ABAP Application Program                                                                               
    The current ABAP program "SAPLV69A" had to be terminated because it has                       
        come across a statement that unfortunately cannot be executed.                                                                               
    The following syntax error occurred in program "SAPLV14A " in include "LV14AU48               
         " in                                                                               
    line 114:                                                                               
    ""NO-" expected, not "NO_"."                                                                  
    The include has been created and last changed by:                                             
        Created by: "46CUPGSPAU "                                                                     
        Last changed by: "PATEL "                                                                     
        Error in the ABAP Application Program                                                                               
    The current ABAP program "SAPLV69A" had to be terminated because it has                       
        come across a statement that unfortunately cannot be executed.
    The code is like this
    IF NO_ERROR_IF_NEW_REBATE IS INITIAL.
    Check auf KSPAE
        IF CREATE_CREDIT_NOTE = YES OR
           SAVE_CREDIT_NOTE   = YES OR
           DO_PRE_SETTLEMENT_CHECKS   = YES.
    Neues Verfahren ?
          IF I_NEW_REBATE_PROCESSING = YES.
            LOOP AT CONDITION
                 WHERE KSPAE = YES.
              MESSAGE E780 WITH BONUS_AGREEMENT-KNUMA RAISING ERROR_MESSAGE.
            ENDLOOP.
          ENDIF.
        ENDIF.
      ENDIF.
    Can anybody please tell me what is wrong?

    Hello everyone,
    I just found out that we had a wrong version of the FM (beta 1 apparently).
    So we are trying to get the correct one.
    What is the version beta 1?

  • Module pool programming in ECC 6.0 version

    Hi All,
                   Any  one can help me how to work on module pool progrmming in 6.0 version,it was completely different to 4.7 version, plz send me some documentation regarding the module pool programming  to my mail-id  [email protected]

    hi,
    May be you can search the documentation from this link.
    just select ecc 6 from the dropdown menu at the bottom of the page.
    http://help.sap.com/search/sap_trex.jsp
    Hope this is helpful, Do reward.

  • Module pool programming in ecc 6.0

    Hi everyone
    i am working on ecc 6.0.
    i tried to create a modulepool program but not able to do as the screen has changed completely in the layout editor.
    its not the same we see in 4.7 version. can some one suggest me how to create screens in ecc 6.0.
    thanks in advance

    The screen painter is basically the same in 4.7 and ECC6.
    The difference you see might be because you are using the alphanumerical screen painter in 4.7 where the default in ECC is the graphical screen painter. Both are available in 4.7 and ECC.
    To switch back to the alphanumerical in ECC6, just do:
    - SE80
    - menu Utilities
    - Settings
    - tabstrip Screen Painter
    - remove the flag for graphical layout editor
    This will start the alphanumerical instead of the graphical one
    However the graphical one is much easier to use so you might want to look into using that one instead of the (old) alphanumerical one.
    Hope that helps,
    Michael

  • Accessing the Par file or java methods in ABAP programming at ECC from EP

    Hi experts,
    Can we access par file or java methods  in ABAP programming  (ECC side)which are at Enterprise portal side .If it is possible please
    let me know the procedure.Thanks for your help.
    Thanks and Regards,
    Venkat

    Hi Das,
    The mentioned wiki is for uploading the par file ,but my question is diffrent.This file or java method  need to be used in ABAP side.
    Thanks and Regards,
    venkat

  • PO Print program in ECC 6.0

    Hi,
    We have upgraded from 4.6C to ECC 6.0.
    What is the name of the print program for printing PO?
    4.6C smart forms print progam /SMB40/FM06P does not exist in ECC 6.0
    The 4.6C standard program SAPFM06P is commented out completely and the output is a blank page.

    Dear Lakshman,
    The standard pricnt program of PO MEDRUCK
    dont modify this because this is original one copy and change copy program
    Hope this helps you
    Prem

  • Documentation in ABAP Programming for ECC 6.0

    Can Anybody tell me how to do documentation in ABAP Programming in SAP  ecc 6.0
    What are the options there ?
    Also please let me know if there is a concept called "C DOCS".
    Thanks
    Naresh

    HI,
    In se38 ..give ur program name.
    In menu Goto --> Documentation --> Change.
    and press save.
    Thanx
    bgan.

  • Calling Pricing Procedure independently using report/Program in ECC

    Hi
    We are working on SRM 7.0 classic scenario and need MM expertise to configure one RFx comparison scenario. We have a requirement of pricing comparison of various RFx response received from bidder (supplier company), pricing should be same as found under condition section of MM PO. Having complete details regarding Taxation, Sales tax details, excise details (replica of pricing section of PO).
    We are working on a solution where in we can pass the basic inputs to MM interface (Tax code, vendor number, material, etc,.) and fetch the pricing details and display in SRM for comparison of price.
    To achieve this we need to know whether we can call the pricing outside separately using a standard program/report and use it for our calculation and call to SRM using RFC.
    Please suggest.
    Regards
    Prashanth

    Hi,
    We have a requirement of having the pricing and taxation in SRM similar to ECC to have comparison done on the bid response.
    Can you please provide inputs on how did you handle the taxation & pricing part?
    We are on SRM 7 EHP1
    Regards,
    Amish

Maybe you are looking for

  • I lost my you tube icon how do I get it back

    I lost my YouTube icon on my iPad how do I get it back

  • IMovie, Final Cut, Quicktime, online... a different colour in each!

    The same video - Photo Jpeg format from a Panasonic LX3 digital camera - looks different in Final Cut, QuickTime and iMovie. The "gamma shift" problems with FCP are well documented and I don't think I can be bothered to put anymore effort into findin

  • How do you export a movie to an image sequence in iMovie 10.0.4?

    Hi, I'm trying to create an animated gif.  In order to do so I need to export my short two-second movie as a sequence of .jpg's or .png's.  This was possible in earlier versions, but I can't find it on this one. I'm using an iMac with OS 10.9.4 runni

  • Square brackets around name of pdf preset

    Hey folks, I have custom pdf presets that are used to output PDFs from Adobe InDesign CS3 on the Windows OS. These presets are in the usual default folder: C:\Documents and Settings\All Users\Application Data\Adobe\Adobe PDF\Settings\ and are include

  • DBIF_RSQL_INVALID_RSQL from RSDRI_INFOPROV_READ

    HI all, to get an Information from a Cube for SAP-BPS Function I use the Function RSDRI_INFOPROV_READ. I get the error: Error in SQL-Statement: DBIF_RSQL_INVALID_RSQL Error-nr. DBMAN256 I think the Error comes form the Subfunction: RSDRC_CUBE_DATA_GE