Peachtree Quantum 2008 Payroll Report

Post Author: VKZIMM
CA Forum: Data Connectivity and SQL
Hello,  I have a client that would like a Payroll Report in Crystal 10.  I am having trouble figuring out the linkages and what the Payroll fields are.
If anyone has any information to help, I would greatly appreciate it.  I have written Crystal reports for other data packages, not Peachtree.
I keep getting kicked out of crystal with a crw32.exe has encountered a problem error.  I am trying to link the JrnlRow JrnlHdr and Employee
Thank you,

Post Author: VKZIMM
CA Forum: Data Connectivity and SQL
Mistake, running Crystal 9.

Similar Messages

  • IN HR PAYROLL REPORT USING PNP LOGICAL DATABASE

    Dear abapers,
                            when i ab runing HR payroll report usin PNP Logical database there are some error occurs.
                INCLUDE  DBPNPCOM
                         IN UNICODE PROGRAMS, THE "-" CHARECTOR CAN NOT APPEAR IN NAME , AS IT DOES HERE IN THE NAME
                        PNP-SW-FOUND.
         INCLUDE  DBPNPCOM
                       IN UNICODE PROGRAMS , THE "-" THE CHARECTOR CAN NOT APPEAR  IN NAMES, AS IT DOES HERE IN THE NAME
                       PNP-SW-IGNORELOCKEDRECORDS.
         INCLUDE  DBPNPCOM
                       IN UNICODE PROGRAMS , THE "-" THE CHARECTOR CAN NOT APPEAR  IN NAMES, AS IT DOES HERE IN THE NAME
                       PNP-SW-ENQUEUEPERNR.
                            PLEASE GIVE ME SOLUTIONS .
                                                                         THANK YOU SIR.

    Hi, please check, these might be warnings, not errors.

  • Performance issue in HR Payroll Report

    Hi Experts
    I having performance issue in HR payroll report
    My issue as follows
    I have selection period to select date range
    if I select start date & end date Which is giving EMP name, wage type,wage text, amount, etc
    whenever I excute it takes morethan one hour to get the resust
    my code is some wht like this
    loop at GT_REDIR where
    begda(start date) ge pnpbegda and
    endat(end date) le pnpendat and
    paytyp eq ''
    move gt-sqnr to  lv_sqnr
    call function PYXX_READ_PAYROLL_RESULT
    here i am passing pernr  and sequence number
    please give me some idea to fix this issue
    Thanks in Advance
    Gopinath Subramanyam

    Hi Jhings
    Thanks for Your immediate reply
    data is  coming from cluster table and also I am using Logical database
    I will post my code here soon
    Regards
    Gopinath subramayam

  • Ssrs 2008 r2 report dataset call a stored procedure

    I am modifying an existing SSRS 2008 r2 report. In a dataset that already exists within the ssrs 2008 r2 report I need execute
    a stored procedure called StudentData and pass 3 parameter values to the stored procedure. The stored procedure will then return 5 values that are now needed for the modified ssrs report. My problem is I do not know how to have the dataset call the stored procedure
    with the 3 parameter values and pass back the 5 different unique data values that I am looking for.
    The basic dataset is the following:
    SELECT  SchoolNumber,
            SchoolName,
            StudentNumber,      
     from [Trans].[dbo].[Student]
     order by SchoolNumber,
              SchoolName,
              StudentNumber
    I basically want to pass the 3 parameters of SchoolNumber, SchoolName, and StudentNumber to the
    stored procedure called StudentData from the data I obtain from the [Trans].[dbo].[Student]. The 3 parameter values will be obtained from the sql listed above.
    The  columns that I need from the stored procedure called  StudentData will return the following data columns
    that I need for the report: StudnentName, StudentAddress, Studentbirthdate, StudentPhoneNumber, GuardianName.
    Thus can you show me how to setup the sql to meet this requirement I have?

    Hi wendy,
    After testing the issue in my local environment, we can refer to the following steps to achieve your requirement:
    Create three multiple parameters named SchoolNumber, SchoolName and StudentNumber in the report. Those available values from the basic dataset SchoolNumber, SchoolName and StudentNumber fields.
    If you want to pass multiple values parameter to stored procedure, we should create a function as below to the database:
    CREATE FUNCTION SplitParameterValues (@InputString NVARCHAR(max), @SplitChar VARCHAR(5))
    RETURNS @ValuesList TABLE
    param NVARCHAR(255)
    AS
    BEGIN
    DECLARE @ListValue NVARCHAR(max)
    SET @InputString = @InputString + @SplitChar
    WHILE @InputString!= @SplitChar
    BEGIN
    SELECT @ListValue = SUBSTRING(@InputString , 1, (CHARINDEX(@SplitChar, @InputString)-1))
    IF (CHARINDEX(@SplitChar, @InputString) + len(@SplitChar))>(LEN(@InputString))
    BEGIN
    SET @InputString=@SplitChar
    END
    ELSE
    BEGIN
    SELECT @InputString = SUBSTRING(@InputString, (CHARINDEX(@SplitChar, @InputString) + len(@SplitChar)) , LEN(@InputString)-(CHARINDEX(@SplitChar, @InputString)+ len(@SplitChar)-1) )
    END
    INSERT INTO @ValuesList VALUES( @ListValue)
    END
    RETURN
    END
    Use the query below to create a stored procedure, then use it to create a dataset to return 5 values:
    create proc proc_test(@SchoolNumber nvarchar(50),@SchoolName nvarchar(50),@StudentNumber nvarchar(50))
    as
    begin
    select StudnentName, StudentAddress, Studentbirthdate, StudentPhoneNumber, GuardianName
    from table7 where SchoolNumber in (SELECT * FROM SplitParameterValues (@SchoolNumber,','))  and SchoolName in(SELECT * FROM SplitParameterValues (@SchoolName,','))  and StudentNumber in (SELECT * FROM SplitParameterValues (@StudentNumber,','))
    end
    Right-click the new dataset to modify the parameter value in the Parameters pane as below:
    =join(Parameters!SchoolNumber.Value,",")
    =join(Parameters!SchoolName.Value,",")
    =join(Parameters!StudentNumber.Value,",")
    For more details about pass multi-value to stored procedure, please see:
    http://munishbansal.wordpress.com/2008/12/29/passing-multi-value-parameter-in-stored-procedure-ssrs-report/
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

  • Compaitability of CR 2008 with reports created in CR XI

    I need to use Crystal Reports 2008  for reporting , and im not sure if i install this liscense , will it support the existing reports created using CR XI ? Can any one advice me on this. Thanks.

    Amy,
    We do not change the file extension with each release.
    We support opening the last 6 versions of CR with CR 2008.  We also support that the prior 2 versions of CR can open RPT files created with CR 2008.
    We know that you need to work with multiple versions at the same time, so we use this standard to make it easy.
    I hope this helps.
    Blair
    Crystal Reports Product Management Team

  • HR-ABAP Payroll report

    Hi Gurus,
       I have to display payroll report ( With PNP logical data base ), where in I have to compare indicator 'P' & 'A' records of each personal number for given period.
      sample code & useful links will be  rewarded with points.
    Thanks,
    U.S.Raju

    refer program
    EXAMPLE_PNP_GET_PAYROLL.
    It might be useful to u....

  • Regarding payroll report abap hr

    hi experts
    i have developed one payroll report for indian payroll
    its working fine for  For View payroll periods like PC00 M99 CWTR - Wage type reporter
    i have used HRCM PAYROLL RESULTS GET this function module to fetch payroll results.
    Problem is
    my end user asking in view payroll perids like PC00 M99 CWTR - Wage type reporter 
    plz tell me the alternative procedure for fetching in view payroll perids.
    please send me sample payroll report
    thanks advance

    have a go at using this base code.
    data: go_prr type ref to cl_hrpay99_prr_4_pnp_reps,
          gt_pernr_pr type h99_hr_pay_result_tab,
          go_pernr_pr type ref to cl_hr_pay_result_gb,
          g_retro     type h99_add_retroes,
          im_pnpabkrs type hrpy_tt_abkrs.
    tables: pernr,
            t512t.
    select-options r_lgart for t512t-lgart.
    parameters:   p_inper  radiobutton group g1,
                  p_frper  radiobutton group g1.
    field-symbols <pernr_pr> type ref to cl_hr_pay_result.
    field-symbols <wa_rt>    type pc207.
    field-symbols <wa_crt>   type pc208.
    start-of-selection.
      im_pnpabkrs = pnpabkrs[].
      if not p_inper is initial.
        g_retro = 'X'.
      else.
        g_retro = ' '.
      endif.
    Call the method that gets the payroll info
      call method cl_hrpay99_prr_4_pnp_reps=>get_instance
        exporting
          im_pn_begda             = pn-begda
          im_pn_endda             = pn-endda
          im_ipview               = g_retro        "In period
          im_pnpabkrs             = im_pnpabkrs    "For sepecif payroll areas only
          im_molga                = '08'
          im_add_retroes_to_rgdir = g_retro        "In period Retors
        importing
          ex_prr                  = go_prr
        exceptions
          invalid_entries         = 1.
      if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
      write:/ 'Payroll Results from RT Table'.
      skip.
      write: / 'Emp No  ',
               'For Pd',
               'In PER',
               'S',
               'WTs ',
               '              AMOUNT',
               '                 RATE',
               '                UNITS',
               'FP PAY',
               'IN PAY'.
    get pernr.
    get the actual payments
      call method go_prr->get_pernr_payr_results_allin1
        exporting
          im_pernr                 = pernr-pernr
        importing
          ex_pernr_payroll_results = gt_pernr_pr
        exceptions
          others                   = 1.
      check sy-subrc = 0.
      loop at gt_pernr_pr assigning <pernr_pr>.
        go_pernr_pr ?= <pernr_pr>.
        loop at go_pernr_pr->inter-rt assigning <wa_rt>.
          check <wa_rt>-lgart in r_lgart.
    Paid 'In Period' subtract any item that is a part payment
          if not p_inper is initial.
            if go_pernr_pr->period-srtza = 'P'.
              <wa_rt>-anzhl = <wa_rt>-anzhl * -1.
              <wa_rt>-betrg = <wa_rt>-betrg * -1.
              <wa_rt>-betpe = <wa_rt>-betpe * -1.
            endif.
            write : / pernr-pernr,
                      go_pernr_pr->period-fpper, go_pernr_pr->period-inper,
                      go_pernr_pr->period-srtza, <wa_rt>-lgart, <wa_rt>-betrg, <wa_rt>-betpe,
                      <wa_rt>-anzhl,
                     go_pernr_pr->inter-versc-abkrs, '   ', go_pernr_pr->inter-versc-iabkrs.
          else.
    This part is 'For Period'
            check go_pernr_pr->period-srtza = 'A'.
            write : / pernr-pernr,
                     go_pernr_pr->period-fpper, go_pernr_pr->period-inper,
                     go_pernr_pr->period-srtza, <wa_rt>-lgart, <wa_rt>-betrg, <wa_rt>-betpe,
                    <wa_rt>-anzhl ,
                     go_pernr_pr->inter-versc-abkrs, '  ', go_pernr_pr->inter-versc-iabkrs.
          endif.
        endloop.
      endloop.
    Jules

  • SSL Cert for 2008 R2 Reporting Services that is installed on a Failover Cluster - server address mismatch?

    I utilized the idea from
    http://www.mssqltips.com/sqlservertip/2778/how-to-add-reporting-services-to-an-existing-sql-server-clustered-instance/ to install 2008 R2 Reporting Services on a new Clustered SQL instance.  In short, create the new Clustered SQL instance on Node1,
    installing Reporting Services with it.  Then on Node2, Add a Failover Cluster Node (without choosing Reporting Services); following that up with starting the SQL setup.exe with a cmd to bypass a check so that I can then install the Reporting Services
    feature on Node2.  It points out using the SQL Cluster Network name for connecting to Reporting Services.
    I verified upon failover that I could still access the Reports and ReportServer URLs.  However, when wanting to add an SSL certificate to the RS configuration, I run into the warning of "mismatched address - the security certificate presented by
    this website was issued for a different website's address", where I can continue and get to the Reports or ReportManager URLs.
    I played with different certs (internal CA created) and SANs and other things, but I still get this error with the cert.  The Reports URL, for example, is <a href="https:///Reports">https://<SQLClusterNetworkName>/Reports, and the
    cert has a CN and Friendly Name of SQLClusterNetworkName (with SAN of DNS: SQLClusterNetworkName.<domain>), but the error still happens.
    What am I missing to eliminate the mismatched address warning when using the SQLClusterNetworkName as the base of the URLs?

    I got it working by using the FQDN as the common name on the SSL cert, with FQDN in RS URLs.

  • HR payroll reporting

    Hi ALL
    Just a quick question.....I am doing payroll reporting using logical database PNPCE, do I need to use standard includes for payroll. if yes why these includes are used for.
    cheers
    AJ

    you need not use any standard includes
    Use the following code
    NODES: payroll TYPE paygb_result.
    * after Get pernr event
    GET payroll.
      CLEAR:wa_empdets-total_sum,wa_empdets-amt_deduc,wa_empdets-balance.
    * fetch arrestable earnings from results table
      LOOP AT payroll-inter-rt INTO wa_rt WHERE lgart = '/141'.
    *    IF wa_rt-lgart = '/141'.
        MOVE: wa_rt-betrg TO wa_empdets-earnings.
    *    ENDIF.
      ENDLOOP.

  • Payroll Report

    Hi,
       My company has implemented HR & Finance.
    Today my finance team asked me to develop PAYROLL report for them.They asked to them a brief inputs about the avaliable business content PAYROLL reports......
    So what exactly i am looking for....Is the Payroll report belongs to Finance Team or HR Team...
    Please explain me in Brief.......
    Thanks

    Hi,
       Thanks for all the info provided.
    They were talking about the budgeting...etc
    What exactly 'Personal Cost Planning and Simulation' fits in
    Help will be really appericiated.
    Thanks

  • Payroll report authorization

    Hi experts,
    I use P_ABAP in payroll report, COARS value is "1".
    I met a case that an employee was in personal area "0001"  from 2007.04.01  to 2007.05.31. Since 2007.06.01 he has been in in personal area "0002'.
    I run payroll report to query his payroll result from 2007.04.01  to 2007.05.31, but i failed. I get message;
    "Personnel numbers skipped by the database driver"
    "Reason 1: insufficient authorization, no. skipped personnel nos.:"
    How can i do query the employee's payroll result in Pa Aare "0001"?
    Thank you !
    NT

    Hi Om,
    Thank you for the kind help.
    I can query the employee by t_code PPOME from 2007.04.01 to 2007.05.31, so I think structural authorization seems fine.  And by t_code PA20 also can query him. 
    But I can't query his payroll result by running payroll report, and standard PNP report catorgary used in the payroll report.
    I don't know whether I took mistake in assignment authorization to the report with P_ABAP ?
    Best regards,
    NT

  • Want A Sample PayRoll Report

    Hi All Experts,
        I am new to ABAP-HR,I want One Sample PayRoll Report.Thanks in Advance.

    am providing you the e-link :
    http://cma.zdnet.com/book/abap/
    http://cma.zdnet.com/book/abap/index.htm
    http://www.sapdevelopment.co.uk/
    http://www.sap-img.com/
    http://juliet.stfx.ca/people/fac/infosys/abap.htm
    http://help.sap.com/saphelp_46c/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_46c/helpdata/en/d6/0db357494511d182b70000e829fbfe/frameset.htm
    http://www.henrikfrank.dk/abapexamples/SapScript/sapscript.htm
    http://www.sapgenie.com/abap/example_code.htm
    http://www.geocities.com/SiliconValley/Campus/6345/abapindx.htm
    http://help.sap.com/printdocu/core/Print46c/en/Data/Index_en.htm
    http://help.sap.com/saphelp_40b/helpdata/en/4f/991f82446d11d189700000e8322d00/applet.htm
    http://www.sap-img.com/abap-function.htm
    http://www.sapgenie.com/abap/code/abap19.htm
    http://www.sap-img.com/abap/more-than-100-abap-interview-faqs.htm
    http://www.planetsap.com/Tips_and_Tricks.htm
    http://help.sap.com/saphelp_40b/helpdata/ru/d6/0dc169494511d182b70000e829fbfe/applet.htm
    http://www.henrikfrank.dk/abapexamples/SapScript/symbols.htm
    http://www.henrikfrank.dk/abapexamples/index.html
    http://sap.ittoolbox.com/documents/document.asp?i=752
    http://members.aol.com/_ht_a/skarkada/sap/
    http://sappoint.com/abap/
    http://members.tripod.com/abap4/SAP_Functions.html
    http://members.ozemail.com.au/~anmari/sap/index.html
    http://www.planetsap.com/Userexit_List.htm
    http://www.planetsap.com/Tips_and_Tricks.htm
    http://www.kabai.com/abaps/q.htm
    http://www.planetsap.com/Userexit_List.htm
    http://help.sap.com/saphelp_bw21c/helpdata/en/c4/3a8090505211d189550000e829fbbd/frameset.htm
    http://www.sapgenie.com/abap/bapi/example.htm
    http://help.sap.com/saphelp_45b/helpdata/en/65/897415dc4ad111950d0060b03c6b76/content.htm
    http://www.sap-basis-abap.com/index.htm
    http://help.sap.com/saphelp_40b/helpdata/en/fc/eb2c46358411d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_46c/helpdata/en/aa/aeb23789e95378e10000009b38f8cf/frameset.htm
    http://www.geocities.com/ResearchTriangle/1635/system.html
    http://www.sapdesignguild.org/resources/MiniSG/3_Managing/3_Functions_Table_Control.htm
    http://help.sap.com/saphelp_45b/helpdata/en/d1/801bdf454211d189710000e8322d00/content.htm
    http://www.sapfans.com/sapfans/repos/saprep.htm
    http://www.planetsap.com/howdo_a.htm
    http://help.sap.com/saphelp_util464/helpdata/en/69/c2516e4ba111d189750000e8322d00/content.htm
    http://www.sapgenie.com/abap/smartforms_detail.htm
    http://www.sap-img.com/abap.htm
    http://help.sap.com/saphelp_46c/helpdata/en/fc/eb2d67358411d1829f0000e829fbfe/content.htm
    http://www.geocities.com/victorav15/sapr3/abap.html
    http://www.henrikfrank.dk/abapexamples/SapScript/sapscript.htm
    http://abap4.tripod.com/Other_Useful_Tips.html
    http://help.sap.com/saphelp_45b/helpdata/en/cf/21ee2b446011d189700000e8322d00/content.htm
    http://www.sap-basis-abap.com/sapmm.htm
    http://sap.ittoolbox.com/nav/t.asp?t=303&p=448&h1=303&h2=322&h3=448
    http://sapfans.com/
    http://cma.zdnet.com/book/abap/ch03/ch03.htm
    http://help.sap.com/saphelp_40b/helpdata/en/4f/991f82446d11d189700000e8322d00/applet.htm
    http://sappoint.com/abap/
    http://www.henrikfrank.dk/abapuk.html
    http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/abapindx.htm
    http://www.sapgenie.com/abap/index.htm
    http://www.sap-img.com/abap.htm
    http://www.sapdevelopment.co.uk/tips/tipshome.htm
    http://help.sap.com/printdocu/core/Print46c/en/Data/Index_en.htm
    http://sap.ittoolbox.com/nav/t.asp?t=322&p=322&h1=322
    http://sap.ittoolbox.com/nav/t.asp?t=448&p=448&h1=448
    http://www.thespot4sap.com/
    http://www.kabai.com/abaps/q.htm
    http://www.geocities.com/mpioud/Abap_programs.html
    http://www.sapgenie.com/abap/tips_and_tricks.htm
    http://www.sapassist.com/code/d.asp?whichpage=1&pagesize=10&i=10&a=c&o=&t=&q=&qt=
    For FAQ
    http://www.sap-img.com/abap/more-than-100-abap-interview-faqs.htm
    http://www.sapgenie.com/faq/abap.htm
    BAPI-step by step
    http://www.sapgenie.com/abap/bapi/example.htm
    Weblog for receive email and processing it through ABAP
    /people/thomas.jung3/blog/2004/09/09/receiving-e-mail-and-processing-it-with-abap--version-610-and-higher
    For Logical database
    http://help.sap.com/saphelp_46c/helpdata/en/9f/db9bed35c111d1829f0000e829fbfe/frameset.htm
    very useful
    http://help.sap.com/saphelp_46c/helpdata/EN/35/2cd77bd7705394e10000009b387c12/frameset.htm
    Useful link to websites
    http://www.hernangn.com.ar/sap.htm
    Useful for background
    http://www.sappoint.com/basis/bckprsng.pdf
    http://help.sap.com/saphelp_nw04/helpdata/en/6f/08703713bf277ee10000009b38f8cf/frameset.htm
    http://publib.boulder.ibm.com/infocenter/wbihelp/index.jsp?topic=/com.ibm.wbix_adapters.doc/doc/mysap4/sap4x41.htm
    Table control in BDC
    http://www.sap-img.com/abap/bdc-example-using-table-control-in-bdc.htm
    For posting weblog,
    /people/sap.user72/blog/2005/06/28/sdn-weblogs-making-it-easier
    Dynamic Internal table -weblog in sdn
    /people/subramanian.venkateswaran2/blog/2004/11/19/dynamic-internal-table
    Smartforms
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    How to trace smartform
    http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    Workflow
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    For examples on WorkFlow...check the below link..
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    ALV
    http://www.geocities.com/mpioud/Abap_programs.html
    Mail
    http://www.geocities.com/mpioud/Z_EMAIL_ABAP_REPORT.html
    http://www.thespot4sap.com/Articles/SAP_Mail_SO_Object_Send.asp
    http://www.sapdevelopment.co.uk/reporting/email/attach_xls.htm
    BOM Explosion
    /people/prakash.singh4/blog/2005/05/15/explode-boms-in-enterprise-portal-using-htmlb-tree--part-1-abap
    BOM
    http://help.sap.com/saphelp_erp2005/helpdata/en/ea/e9b7234c7211d189520000e829fbbd/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/d1/2e4114a61711d2b423006094b9d648/frameset.htm
    http://www.sap-img.com/sap-sd/sales-bom-implementation.htm
    http://www.sap-basis-abap.com/sappp007.htm
    OLE
    http://www.sapgenie.com/abap/ole.htm
    http://help.sap.com/saphelp_46c/helpdata/en/59/ae3f2e488f11d189490000e829fbbd/frameset.htm
    ALVGRID with refresh
    http://www.geocities.com/mpioud/Z_DEMO_ALV_REFRESH_BUTTON.html
    For language setting and decimal separator
    /people/horst.keller/blog/2004/11/16/abap-geek-7-150-babylonian-confusion
    Oracle queries
    http://sqlzoo.net/
    To format SQL
    http://www.sqlinform.com/
    SCOT settings
    http://www.sap-img.com/basis/basis-faq.htm
    Status Icon ALV,Table Control,Tab Strip
    http://www.sapdesignguild.org/resources/MiniSG-old/from_develop/norm_status_icons.htm#positioning_4
    ALV Group Heading
    http://www.sap-img.com/fu037.htm
    For multiMedia
    /people/thomas.jung3/blog/2005/05/11/using-classic-activex-controls-in-the-abap-control-framework
    Uploading LOGO in SAP
    http://www.sap-img.com/ts001.htm
    LSMW
    http://www.sap-img.com/sap-data-migration.htm
    http://www.sapgenie.com/saptech/lsmw.htm
    http://sapabap.iespana.es/sapabap/manuales/pdf/lsmw.pdf
    http://www.sap.info/public/INT/int/glossary/int/glossaryletter/Word-17643ed1d6d658821_glossary/L#Word-17643ed1d6d658821_glossary
    Here are the two links which contains lots of PDFS:
    http://www.easymarketplace.de/online-pdfs-q-s.php
    http://www.consolut.de/saphelp/sap_online_help.html

  • Cost center and org unit missing in payroll report

    Hi Gurus,
    Our HR administrator has moved a position from one org. unit to another via PP01 - she has done this via a change action and not copy thus the record went missing and caused staff for that position with no Cost Center & Org Unit.
    Although the position has been reinstated back to the old org. unit, and relationship shows correct cost center and org. unit - still the payroll report does not pick up the same attributes.
    Please help.
    Thanks,
    MVM

    hi ,
    is the cost center data correctlly stays in 0001 infotype  ?
    if your connections are normal in pp01 1001 infotype , you can run rhintexx programs.

  • Problems Using Crystal Reports 2008 sample reports in CR2008 Basic

    I just downloaded Crystal Reports 2008 sample reports  from   
    [Service Packs, Hot Fixes, Samples, and Utilities|http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000714768&_SCENARIO=01100035870000000202&] to use them with  CR2008 Basic. I have trouble using them . It tries to connect to to a website to download an xml file. Has anyone tried these sample reports in CR2008 Basic ?

    From the portal you have mentioned, I had downloaded, "Crystal Reports 2008 sample reports - Demonstration" (demo_smpl.zip) which had three reports - Comparative Income Statement.rpt, Order Processing Efficiency Dashboard.rpt, World Sales Report.rpt.
    These reports work fine for me.

  • Concurrent Employment & BW HR/Payroll Reporting (PNP vs PNPCE)

    Has anyone implemented BW HR/Payroll reporting with concurrent employment?  What (if anything) needs to be done to the BW HR/Payroll extractors? How is the "central persons" concept portrayed in BW?  Is there any documentation on BW & concurrent employment?

    There were no responses to this query the last time. I would like to ask this question again. Has anyone implemented BI HR reporting with concurrent employment turned on the ECC side? I'd really appreciate if you could share any documentation on this subject.

Maybe you are looking for

  • Cache Cleaner ruined my menu bar, no longer able to screen shot

    not sure if anyone is familiar with this application "Yosemite Cache Cleaner". i just started using it. tried out the light scan and auto restored my computer then messed my top menu bar... well its off screen i can not see the time or the wifi icon

  • Link DMS document to Sales Order

    Hello - Currenlty, our Quality Department manually opens each applicable sales order and manually attaches a required document via the "Extras/Documents" path from within VA02 menu bar. It is extremely time consuming. I want to know if it is possible

  • Open File in Microsoft Office

    Dear Team, I have SAP_ALL  and SAP_NEW Full authorazation. When I login in SAP and run T_code:MD79 and give Plant and Execute. It Open An XXL list object is exported with 1 lines and 10 columns Choose a processing mode: Table Piotel Table. When I sel

  • Error Message for newer software

    I have purchased an app and it will not sync to my iPad. Here is the error message I received: The application "Dotti" was not installe don the iPad "name" because it requires a newer version of iPad software. According, to my iTunes on my computer,

  • Short dump issue while loading data

    Hello All, We are trying to load the data to  the cube , but every time it is throwing us a short dump with the below error. We have found a SAP Note as well  for the below error , Please suggest, how to implement the same. Error: Runtime Errors