Finding the latest payroll results and its  CRT table.

Hi all,
My requirment is to fetch the value from the CRT table of the latest payroll result,
so that at any point of time it fetches the cumulative value till date from the CRT table.

Hi
use the fun module
PYXX_READ_PAYROLL_RESULT
for fetching the payroll results
or see the sample code how to fetch the payroll results using the RT table.
report zovertime
       line-size 252
       line-count 60(1)
       no standard page heading
       message-id zndc.
Database Tables & Infotypes
tables: pcl1,        " HR Cluster1
        pcl2,        " HR Cluster1
        pa0003,      " Master data - Payroll Status
        cskt,        " Cost Center Texts
        t528t,       " Positions Texts
        t513s,       " Job Titles
        pernr,       " Logical PNP
        t001p,       " Personnel Subarea
        t500p,       " Personnel Area
        t501,        " Employee Group
        t503k,       " Employee Subgroup
        csks.        " Cost Center
infotypes:0000,0001.
*include rpclst00.
include rpc2rx00.
include rpc2rxx0.
include rpc2cd00.
*include rpc2ps00.
*include rpc2pt00.
*include rpcfvp00.
*include rpcfdc10.
*include rpcfdc00.
include rpppxd00.
include rpppxd10.
Declaration of Internal Tables
Internal Table for Output Data
data: begin of rep_tab occurs 0,
        kostl like pa0001-kostl,      " Cost Center
        pernr like pa0001-pernr,      " Personal Number
        ename like pa0001-ename,      " Employee Name
        ctext like cskt-ltext,        " Cost Center Text
        ptext like t528t-plstx,       " Position Text
        ot1   type p decimals 2,      " Jan OT Amount
        ot2   type p decimals 2,      " Feb OT Amount
        ot3   type p decimals 2,      " Mar OT Amount
        ot4   type p decimals 2,      " Apr OT Amount
        ot5   type p decimals 2,      " May OT Amount
        ot6   type p decimals 2,      " Jun OT Amount
        ot7   type p decimals 2,      " Jul OT Amount
        ot8   type p decimals 2,      " Aug OT Amount
        ot9   type p decimals 2,      " Sep OT Amount
        ot10  type p decimals 2,      " Oct OT Amount
        ot11  type p decimals 2,      " Nov OT Amount
        ot12  type p decimals 2,      " Dec OT Amount
        ott   type p decimals 2,      " Total OT Amount
      end of rep_tab.
Declaration of Variables
data: v_mon(2) type n,                   " Month
      v_no     type i,                   " Data Lines
      v_year(4)  type c,                 " Year
      v_date   like sy-datum,            " Date
      v_date1  like sy-datum,            " Date
      v_seqnr  like  pc261-seqnr.        " Sequence No.
Declaration of Constants
data: c_type   like hrp1001-otype  value 'S',  " Object Type
      c_kokrs  like cskt-kokrs value '1000',   " Controlling Area
      c_date1  like sy-datum value '18000101', " Date
      c_date2  like sy-datum value '99991231', " Date
      c_x       type c value 'X',              " Sign
     c_mon(2)  type c value '01',             " Month
      c_val1(2) type c value '31',             " Date
      c_val2(2) type c value '12',             " Month Type
      c_val    like p0041-dar01 value '01',    " Date Type
      c_lgart1 like p0008-lga01 value '0722',  " Wage Type
      c_lgart2 like p0008-lga01 value '0723',  " Wage Type
      c_1(2)   type n value '01',                           " Month1
      c_2(2)   type n value '02',                           " Month2
      c_3(2)   type n value '03',                           " Month3
      c_4(2)   type n value '04',                           " Month4
      c_5(2)   type n value '05',                           " Month5
      c_6(2)   type n value '06',                           " Month6
      c_7(2)   type n value '07',                           " Month7
      c_8(2)   type n value '08',                           " Month8
      c_9(2)   type n value '09',                           " Month9
      c_10(2)  type n value '10',                           " Month10
      c_11(2)  type n value '11',                           " Month11
      c_12(2)  type n value '12'.                           " Month12
Selection-screen
parameters:
  p_year like pc2b0-pabrj obligatory.       " Payroll Year
At selection-screen
at selection-screen.
Validate the Selection Screen fields
  perform validate_screen.
Start-of-Selection
start-of-selection.
Selection of Period
  perform get_period.
Get PERNR from LDB
get pernr.
Get the Master data from infotype 0001
  perform get_master_data.
Top-of-page
top-of-page.
Write the Report and Column Headings
  perform top_of_page.
End-of-Page
end-of-page.
  write /1(252) sy-uline.
End-of-Selection
end-of-selection.
Display the Output Report.
  perform display_report.
Form-Routines
*&      Form  validate_screen
Validation of selection Screen fields
form validate_screen.
Validation of Cost Center
  clear csks.
  if not pnpkostl[] is initial.
    select single kostl
      into csks-kostl
      from csks
      where kostl in pnpkostl.
    if sy-subrc <> 0.
      message e999 with 'Invalid Cost Center'(003).
    endif.
  endif.
Validation of Personnel Number
  clear pa0003.
  if not pnppernr[] is initial.
    select pernr
    from pa0003 up to 1 rows
      into pa0003-pernr
      where pernr in pnppernr.
    endselect.
    if sy-subrc <> 0.
      message e999 with 'Incorrect Personal Number Entered'(002).
    endif.
  endif.
Validation of Personnel Area
  clear t500p.
  if not pnpwerks[] is initial.
    select persa
    from t500p up to 1 rows
      into t500p-persa
      where persa in pnpwerks.
    endselect.
    if sy-subrc <> 0.
      message e999 with 'Incorrect Personnel Area Entered'(001).
    endif.
  endif.
Validation of Personnel Sub Area
  clear t001p.
  if not pnpbtrtl[] is initial.
    select btrtl
    from t001p up to 1 rows
      into t001p-btrtl
      where btrtl in pnpbtrtl.
    endselect.
    if sy-subrc <> 0.
      message e999 with 'Incorrect Personnel Sub Area Entered'(037).
    endif.
  endif.
Validation of Employee Group
  clear t501.
  if not pnppersg[] is initial.
    select persg
    from t501 up to 1 rows
      into t501-persg
      where persg in pnppersg.
    endselect.
    if sy-subrc <> 0.
      message e999 with 'Incorrect Employee Group Entered'(038).
    endif.
  endif.
Validation of Employee Sub Group
  clear t503k.
  if not pnppersk[] is initial.
    select persk
    from t503k up to 1 rows
      into t503k-persk
      where persk in pnppersk.
    endselect.
    if sy-subrc <> 0.
      message e999 with 'Incorrect Employee Sub Group Entered'(039).
    endif.
  endif.
endform.                  "validate_screen
*&      Form  get_period
Get the Correct Period based on Selection screen selection
form get_period.
  clear: v_year,v_mon, v_date, v_date1.
  v_year = sy-datum+0(4).
  v_mon  = sy-datum+4(2).
  if pnptimr1 = c_x.      " Current Date
    pnpbegda = sy-datum.
    pnpendda = sy-datum.
  elseif pnptimr2 = c_x.  " Current Month
    concatenate v_year v_mon c_val into v_date.
    concatenate v_year v_mon c_val1 into v_date1.
    pnpbegda = v_date.
    pnpendda = v_date1.
  elseif pnptimr3 = c_x.  " Current Year
    concatenate v_year c_val c_val into v_date.
    concatenate v_year c_val2 c_val1 into v_date1.
    pnpbegda = v_date.
    pnpendda = v_date1.
  elseif pnptimr4 = c_x.  " Upto Today
    pnpbegda = c_date1.
    pnpendda = sy-datum.
  elseif pnptimr5 = c_x.  " From Today
    pnpbegda = sy-datum.
    pnpendda = c_date2.
  else.
    if ( pnpbegda is initial and pnpendda is initial ).
      pnpbegda = c_date1.
      pnpendda = c_date2.
    elseif pnpbegda is initial and not pnpendda is initial.
      pnpbegda = c_date1.
      pnpendda = pnpendda.
    elseif not ( pnpbegda is initial and pnpendda is initial ).
      pnpbegda = pnpbegda.
      pnpendda = pnpendda.
    endif.
  endif.
endform.              "get_period
*&      Form  get_master_data
Get the Master Data from Database Tables PA0001,0002,0003
form get_master_data.
Get data from Respective Infotypes
  rp_provide_from_last p0001 space pnpbegda pnpendda.
  if p0001-kostl in pnpkostl.
    rep_tab-kostl = p0001-kostl.
    rep_tab-pernr = p0001-pernr.
    rep_tab-ename = p0001-ename.
Get the Position Text
    clear t528t-plstx.
    select single plstx into t528t-plstx from t528t
            where plans = p0001-plans and
                  otype = c_type and
                  sprsl = sy-langu.
    if sy-subrc = 0.
      rep_tab-ptext = t528t-plstx.
    endif.
Get the Cost Center Text
    clear cskt-ltext.
    select single ltext into cskt-ltext from cskt
            where spras = sy-langu and
                  kokrs = c_kokrs and
                  kostl = p0001-kostl.
    if sy-subrc = 0.
      rep_tab-ctext = cskt-ltext.
    endif.
Get the Overtime Payment Data
    perform get_ot_data.
    rep_tab-ott = rep_tab-ot1 + rep_tab-ot2 + rep_tab-ot3 +
                  rep_tab-ot4 + rep_tab-ot5 + rep_tab-ot6 +
                  rep_tab-ot7 + rep_tab-ot8 + rep_tab-ot9 +
                  rep_tab-ot10 + rep_tab-ot11 + rep_tab-ot12.
    append rep_tab.
    clear  rep_tab.
  endif.
  sort rep_tab by kostl pernr.
  delete rep_tab where kostl = ' '.
  delete rep_tab where ott = 0.
endform.                 "get_master_data
*&      Form  get_ot_data
Get the Overtime Payment Data
form get_ot_data.
  cd-key = pernr-pernr.
  rp-imp-c2-cd.
  sort rgdir by seqnr.
To get sequence number for the payroll period
  loop at rgdir where void     is initial
                    and reversal is initial
                    and outofseq is initial
                    and srtza    eq 'A'.
    if rgdir-fpper+0(4) = p_year.
To consider offcycle run data
      if not rgdir-ocrsn is initial.
        v_seqnr = rgdir-seqnr.
        exit.
      endif.
      v_seqnr = rgdir-seqnr.
    endif.
    if not v_seqnr is initial.
      perform import_rx.
    endif.
    perform process_wagetypes.
  endloop.
endform.                 "get_ot_data
include rpppxm00.
*&      Form  Import_rx
Import the RX data from Clusters
form import_rx.
  rx-key-pernr = cd-key-pernr.
  rx-key-seqno = v_seqnr.
  rp-init-buffer.
  rp-imp-c2-rx.
endform.                    " Import_rx
*&      Form  Process_wagetypes
Calculate the Overtime Amount based on Wage types
form process_wagetypes.
  loop at rt.
    if  rt-lgart = c_lgart1 or rt-lgart = c_lgart2.
      if rgdir-fpper+0(4) = p_year.
        v_mon = rgdir-fpper+4(2).
        case v_mon .
          when c_1.
            rep_tab-ot1 = rep_tab-ot1 + rt-betrg.
          when c_2.
            rep_tab-ot2 = rep_tab-ot2 + rt-betrg.
          when c_3.
            rep_tab-ot3 = rep_tab-ot3 + rt-betrg.
          when c_4.
            rep_tab-ot4 = rep_tab-ot4 + rt-betrg.
          when c_5.
            rep_tab-ot5 = rep_tab-ot5 + rt-betrg.
          when c_6.
            rep_tab-ot6 = rep_tab-ot6 + rt-betrg.
          when c_7.
            rep_tab-ot7 = rep_tab-ot7 + rt-betrg.
          when c_8.
            rep_tab-ot8 = rep_tab-ot8 + rt-betrg.
          when c_9.
            rep_tab-ot9 = rep_tab-ot9 + rt-betrg.
          when c_10.
            rep_tab-ot10 = rep_tab-ot10 + rt-betrg.
          when c_11.
            rep_tab-ot11 = rep_tab-ot11 + rt-betrg.
          when c_12.
            rep_tab-ot12 = rep_tab-ot12 + rt-betrg.
        endcase.
      endif.
    endif.
  endloop.
endform.          "process_wagetypes
*&      Form  top_of_page
Write the Report and Column Headings
form top_of_page.
  format color col_heading on.
  write: /1(252) 'NATIONAL DRILLING COMPANY'(010) centered,
         /1(252) 'Overtime Payments Details'(011) centered.
  format color off.
  if pnptimr1 = c_x.      " Current Date
    write: /2 'Period From     :'(036), sy-datum, 'To:'(006), sy-datum.
  elseif pnptimr2 = c_x.  " Current Month
    write: /2 'Period From     :'(036), v_date, 'To:'(006), v_date1.
  elseif pnptimr3 = c_x.  " Current Year
    write: /2 'Period From     :'(036), v_date, 'To:'(006), v_date1.
  elseif pnptimr4 = c_x.  " Upto Today
    write: /2 'Period From     :'(036), c_date1, 'To:'(006), sy-datum.
  elseif pnptimr5 = c_x.  " From Today
    write: /2 'Period From     :'(036), sy-datum, 'To:'(006), c_date2.
  else.
    if ( pnpbegda is initial and pnpendda is initial ).
      write: /2 'Period From     :'(036), c_date1, 'To:'(006), c_date2.
    elseif pnpbegda is initial and not pnpendda is initial.
      write: /2 'Period From     :'(036), c_date1, 'To:'(006), pnpendda.
    elseif not ( pnpbegda is initial and pnpendda is initial ).
      write: /2 'Period From     :'(036), pnpbegda,
               'To:'(006), pnpendda.
    endif.
  endif.
  write: 219 'Report Run Date:'(018), sy-datum.
  if not pnpkostl[] is initial.
    if pnpkostl-high is initial.
      write: /2 'Cost Center     :'(004), pnpkostl-low,
            219 'Time           :'(020), sy-uzeit.
    else.
      write: /2 'Cost Center From:'(005), pnpkostl-low+7(3),
                                'To:'(006), pnpkostl-high,
            219 'Time           :'(020), sy-uzeit.
    endif.
  else.
    write: /219  'Time           :'(020), sy-uzeit.
  endif.
  if not pnppernr[] is initial.
    if pnppernr-high is initial.
      write: /2 'Personal Number :'(007), pnppernr-low,
             219 'User           :'(021), sy-uname.
    else.
      write: /2 'Personal No.From:'(008),  pnppernr-low,
                                'To:'(006), pnppernr-high,
             219 'User           :'(021), sy-uname.
    endif.
  else.
    write: /219 'User           :'(021), sy-uname.
  endif.
  write: /219 'Page No        :'(022), sy-pagno.
  format color col_heading.
  write /1(252) sy-uline.
  write:/1 sy-vline, 10 sy-vline,
        41 sy-vline,
        67 sy-vline, 68(167) 'Overtime Payments(Dirhams)'(013) centered,
       235 sy-vline,252 sy-vline.
  format color col_heading.
  write:/1 sy-vline,  2(8)  'Emp #'(019) centered,
        10 sy-vline, 11(30) 'Employee Name'(012) centered,
        41 sy-vline, 42(25) 'Position'(014) centered,
        67 sy-vline, 68(167)  sy-uline,
       235 sy-vline,236(16)  'Total'(017) centered,
       252 sy-vline.
  write:/1 sy-vline, 10 sy-vline,
        41 sy-vline,
        67 sy-vline, 68(13)  'JANUARY'(024) centered,
        81 sy-vline, 82(13)  'FEBRUARY'(025) centered,
        95 sy-vline, 96(13)  'MARCH'(026) centered,
       109 sy-vline,110(13)  'APRIL'(027) centered,
       123 sy-vline,124(13)  'MAY'(028) centered,
       137 sy-vline,138(13)  'JUNE'(029) centered,
       151 sy-vline,152(13)  'JULY'(030) centered,
       165 sy-vline,166(13)  'AUGUST'(031) centered,
       179 sy-vline,180(13)  'SEPTEMBER'(032) centered,
       193 sy-vline,194(13)  'OCTOBER'(033) centered,
       207 sy-vline,208(13)  'NOVEMBER'(034) centered,
       221 sy-vline,222(13)  'DECEMBER'(035) centered,
       235 sy-vline,252 sy-vline.
  format color off.
  write /1(252) sy-uline.
endform.            "top_of_page
*&      Form  Display_report
Write the Report Output
form display_report.
  clear v_no.
  describe table rep_tab lines v_no.
  if v_no = 0.
    message i999 with
     'No Data found for the entered Selection'(015).
  endif.
  loop at rep_tab.
    format color 3.
    at new kostl.
      read table rep_tab index sy-tabix.
      write:/1 sy-vline, 2(12) 'Cost Center:'(009),
             14(10) rep_tab-kostl,
             25(30) rep_tab-ctext,
            252 sy-vline.
      format color off.
      write /1(252) sy-uline.
    endat.
    format color col_normal.
    write: /1 sy-vline, 2(8)   rep_tab-pernr,
          10 sy-vline, 11(30)  rep_tab-ename,
          41 sy-vline, 42(25)  rep_tab-ptext,
          67 sy-vline, 68(13)  rep_tab-ot1 no-zero,
          81 sy-vline, 82(13)  rep_tab-ot2 no-zero,
          95 sy-vline, 96(13)  rep_tab-ot3 no-zero,
         109 sy-vline,110(13)  rep_tab-ot4 no-zero,
         123 sy-vline,124(13)  rep_tab-ot5 no-zero,
         137 sy-vline,138(13)  rep_tab-ot6 no-zero,
         151 sy-vline,152(13)  rep_tab-ot7 no-zero,
         165 sy-vline,166(13)  rep_tab-ot8 no-zero,
         179 sy-vline,180(13)  rep_tab-ot9 no-zero,
         193 sy-vline,194(13)  rep_tab-ot10 no-zero,
         207 sy-vline,208(13)  rep_tab-ot11 no-zero,
         221 sy-vline,222(13)  rep_tab-ot12 no-zero,
         235 sy-vline,236(16)  rep_tab-ott no-zero,
         252 sy-vline.
    at end of kostl.
      write /1(252) sy-uline.
    endat.
    format color off.
    at last.
      sum.
      format color 1.
      write: /1 sy-vline,
            10 sy-vline, 11(30) 'Total'(017) centered,
            41 sy-vline,
            67 sy-vline, 68(13)  rep_tab-ot1 no-zero,
            81 sy-vline, 82(13)  rep_tab-ot2 no-zero,
            95 sy-vline, 96(13)  rep_tab-ot3 no-zero,
           109 sy-vline,110(13)  rep_tab-ot4 no-zero,
           123 sy-vline,124(13)  rep_tab-ot5 no-zero,
           137 sy-vline,138(13)  rep_tab-ot6 no-zero,
           151 sy-vline,152(13)  rep_tab-ot7 no-zero,
           165 sy-vline,166(13)  rep_tab-ot8 no-zero,
           179 sy-vline,180(13)  rep_tab-ot9 no-zero,
           193 sy-vline,194(13)  rep_tab-ot10 no-zero,
           207 sy-vline,208(13)  rep_tab-ot11 no-zero,
           221 sy-vline,222(13)  rep_tab-ot12 no-zero,
           235 sy-vline,236(16)  rep_tab-ott no-zero,
           252 sy-vline.
      write /1(252) sy-uline.
    endat.
    format color off.
  endloop.
endform.          "display_report
Reward points if useful
Regards
Anji

Similar Messages

  • Where to find the latest Service Packs and Patches

    AccAD service packs can be downloaded from SAP Service Market Place (SMP), under 'Comprised Software Component Versions'
    The process for downloading the package is described below:
    1. Go to SAP Support Portal - [https://service.sap.com/swdc]
    2. Under Find your Software, see the 2nd bullet titled A-Z Index, and click on the link to Support Packages and Patches
    3. Click on the letter A
    4. Click on ACCEL. AD FOR SAP NETWEAVER
    5. Click on AAD 2.2 FOR SAP NETWEAVER
    6. Click on Comprised Software Component Versions
    7. Click on AAD APPL DELIVERY ENGINE 2.2
    8. Click on the OS version that matches your AccAD landscape
    9. Scroll down to the window and find the Downloads window.
    10. Look for the latest version by scrolling down further (internal scrollbar) and pay attention to the Last Changed date column.
    11. Click on the link to the TGZ package which will start the download
    Zeev

    Hi Stephan,
    I wanted to add onto Zeev's precise answer.
    First of all we appreciate your feedback, we will look into why the above mentioned links are not updated as expected.
    Regretfully our SDN page is a bit outdated and we are in the midst of updating it.
    Currently, AccAD 2.2 SP4 as available for download and has already been adopted by some of the main SAP customers and in addition by new customers.
    The release notes indicating the differences can be found as part of the installations but I hope to provide the 2.2 SP4 notes later this week - in a formal SDN announcement.
    Further more as for additional updates:
    - AccAD 2.3 is currently undergoing validation phase and is expected to enter Ramp Up phase in October of 2011.
    - AccAD 2.3 as with every version brings with it new capabilities and increased performance and quality as well as a more up-to-date PAM.
    - We are currently in the planning phase of the next AccAD version to begin development very soon and would be very happy to hear the feedback that you or any other of our customer base may have.  To do so, I encourage you to contact me directly - as i cannot post an email address here - my details can be found in my business card found in this forum.
    - We will be attending and presenting at SAP TechEd Las Vegas and TechEd Sapphire Madrid - we would be happy to meet up in case you will be present.
    All the Best,
    Smadar
    Edited by: Smadar Ludomirski on Sep 11, 2011 9:29 AM

  • VB Script to find the last modified file and time in a directory

    Hi,
    I am new to VB script i need a script to find the latest modifed file and last modifed time in a directory(Contains  folders and sub folders inside it). it has to go through all the folders and get the latest file and last modifed time.

    Thanks it worked for me Get-ChildItem C:\Users\sujith.reddy.komma\Desktop\Suj1\* -recurse |?{-not $_.PsIsContainer} |Sort LastWriteTime -desc | select -first 1 now in my script i have hard coded the directory i need to run this script in different
    servers from one location i will put all the different paths in one text file and ineed to pass them to this script can you help me with this?
    Essentially you are incrementally asking us to write each line for you.  I recommend freeing yourself of this misery and leraning PowerShell.  THe answers to all of your questions are learned in the first few hours of study.
    Start here:
    http://technet.microsoft.com/en-us/scriptcenter/dd793612.aspx
    ¯\_(ツ)_/¯

  • PCP0- Error:Data gap -- There are results of the latest payroll

    Hi experts! I need your help!
    When viewing a receipt book (PCP0) in the HR account " personal loans", for a particular document number , I canu2019t view the detail of the accounts and it shows me the following error "Although the implementation NNNN has been productive, there are results of the latest payroll. Data gap. "
    I noted that this is properly accounted for on the side of HR. Through the FB03 worked properly, we could see the details and the master account are not affected.

    No, the only metadata that Kodo stores in a default configuration is a
    list containing all the classes registered in the data store.
    When developing with enhancers, it is relatively easy to get things into
    a strange but seemingly valid state. Consider the following example:
    - create persistence-capable classes with non-private fields and
    compile them to .class files.
    - compile non-persistence-capable classes that access the
    non-private fields in a persistence-capable class.
    - enhance your persistence-capable classes, but not your
    persistence-aware classes (the classes that directly access fields
    in persistence-capable classes)
    At this point, you will likely get all sorts of class verification
    errors at runtime, as the enhancer makes all JDO fields private, and
    replaces accesses to the fields with enhancer-generated setters and
    getters of the same visibility as the original field.
    While this was not the exact problem that you saw, it is one example of
    inconsistencies created by the build process. If you follow the
    following steps, you should reduce mysterious Kodo-related errors:
    - make all your JDO fields private, and provide your own setters and
    getters for them. By doing this, you will not have to jdo-enhance
    any classes but the persistence-capable classes, as all non-pc
    classes will access data through your methods. Note that you can
    refer to private fields directly within the defining class just as
    usual.
    - recompile and re-enhance all the persistence-capable (and
    persistence-aware, if any) objects each time you compile. This is
    a bit slower, but can save lots of nightmares.
    Also, I find that compiling all .class files into a separate build
    directory (with 'jikes -d $builddir' or something) helps keep everything
    working smoothly, as you know where all your .class files are and you
    can easily blow them away if things start behaving strangely.
    -Patrick
    Patrick Linskey [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • How do I search and find the latest albums of a particular genre (Circuit)?

    Hello,
    I'm new to iTunes and the music I want to buy is Circuit Party (House).
    All I want to do is log on and search for and find the latest Circuit Party music albums. Unfortunately, sometimes I will do a search and a song and its album will show up, but the album is not appearing in the "New and Noteworthy" section, even though it is a new release.
    What I have been doing as a workaround is to visite another site which has the latest Circuit music albums and then switching back to iTunes Store to search for each specific album. This is a slow process and a pain!
    I figure I must not be doing something right with the iTunes store, so if you can tell me the best way to find my music, I would really appreciate it!
    Thanks!

    Hi Tom,
    As I can see from what you posted, this correction seems a program correction. You can use SNOTE transaction to apply it. Just download the OSS Note and apply it. The transaction it's pretty simple to use.
    Otherwise if you don't have SNOTE installed you can find them in the following places:
    SELECT_STATE_FOR_CONDTAB_BUILD - This is a function you should find this through the se37.
    Hope it helps.
    Regards,
    Gilberto Li

  • Where can I find the latest version number in a document in the web? so I can download it with wget to check if the current installed firefox version is up to date and update ir if necessary?

    My problem is that I can't find the latest version number in here http://releases.mozilla.org/pub/mozilla.org/firefox/releases/latest/win32 as a document, so I can check against "HKLM\SOFTWARE\Mozilla\Mozilla Firefox\CurrentVersion" and update or not, all this is done by a script. It will be great not have to change the versión number in the script every time there is a new release.
    Thanks

    I think I solved, all I have to do is this:
    //here I download the entire page
    wget.exe http://www.mozilla.org/en-US/firefox/all.html -O index
    //here I search for the word curVersion and set a variable with the result, which is "10.0.2"
    for /f "tokens=3 delims=</> " %%A IN ('type index ^| FIND /I "curVersion" ' ) do set latestversion=%%A
    //here I just make sure I get a number
    echo "%latestversion%"
    pause
    Later I check it against the registry and voila! I hope this can help other admins who have the same problem.
    Regards.

  • How to find out the failed sql command and its data from DEFERROR

    Hi,
    has anybody a procedure or some other possibilities to read the content of column USER_DATA of the advanced replication view DEFERROR in order to find out the failed sql command and its column values?
    Thanks in advance.

    Hi Vishwa,
                 The control would be something like this for navigation in Get_p_xxx method u mention as link and u mention a event name which gets triggered on the click of this hyperlink. So your GET_P_XXX method would have the following code:
    CASE iv_property.
        WHEN if_bsp_wd_model_setter_getter=>fp_fieldtype.
          rv_value = cl_bsp_dlc_view_descriptor=>field_type_event_link.
        WHEN if_bsp_wd_model_setter_getter=>fp_onclick.
          rv_value = 'EXAMPLE'.
    Now you have to create a method as EH_ONEXAMPLE at your IMPL class and within which you would give an outbound plug method. Within the outbound plug the target data would be filled in the collection and window outbound plug would be triggered.
    This is a huge topic and  i have just mentioned you basic things.
    Regards,
    Bharathy.

  • HT4972 i have an iphone 4 with ios 5.1.1 and i want to upgrade it to the latest ios 6 and not 7 because its too heavy for iphone 4 how can i do it

    i have an iphone 4 with ios 5.1.1 and i want to upgrade it to the latest ios 6 and not 7 because its too heavy for iphone 4 how can i do it?

    You cannot. When you upgrade, you will get the latest version of iOS 7.

  • How Do We Find the Latest Version of a Document without its Path?

    Does anyone know how to find the latest version of a document in iFS when you don't know the path of the document? I'm using a Selector to search iFS based on a search string for the object's title and am not sure how to find the latest version of the returned documents.
    Thanks for any help.

    If you can use the Selector to get the public object then you are in good shape. Once you have the public object recast it to a Family. The method getLatestVersion() will return the public object of the latest version.

  • To find the latest date and time

    HI all,
    I have a Ztable which contains execution date and exe time.
    1) I need to find the latest date and time How  can we do this?
    2) In my program,I need to insert some values to date,time and status field in Ztable. How can I insert it directly into the table?
    for eg ZTAB-DATE = 010122006
            ZTAB-TIME = 12.20.20
          just INSERT ZTAB is enough or NOT????????????
    POINTS WILL BE REWARDED
    THANKS IN ADVANCE

    1) You can do a number of things, one you can get all of the relevant records and sort the internal table by date and time in decending order, then simply read the first record of the internal table.
    2) It depends on the key of the table. Say for example, you have a table like so.
    MANDT
    KEYFIELD
    DATE
    TIME
    If the key alreays exists, you can use the modify statement to update the record, if it dosn't exists, you need to use the INSERT statement to insert the records.
    data: xtab type ztable.
    xtab-keyfield = 'ABC'.
    xtab-date = '20070207'.  " or sy-datum
    xtab-time = '221600'.    " or sy-uzeit.
    insert ztable from xtab.
    Make sure to use internal fomat for DATE and TIME.
    Regards,
    Rich Heilman

  • I'm using Windows Illustrator CS4, and i cant find the artboard menu pallate. Its not showing under Window Dropdown menu either.

    I'm using Windows Illustrator CS4, and i cant find the artboard menu pallate. Its not showing under Window Dropdown menu either. How can i locate it or toggle it to turn on again?

    I'm not sure what artboard view is, sorting and naming artboards is not available in CS4 either, sorting however is possible via script workaround,
    Introducing: re Arrange Artboards v2 Script

  • Please guide the path in Service Market Place to find CR2008 latest Service Pack and CR2013 latest Service pack with Visual Studio integration

    Please guide the path in Service Market Place to find CR2008 latest Service Pack and CR2013 latest Service pack with Visual Studio integration for CR2013; I have S userID  and log in; but could not locate the place to download

    Hi,
    I believe you are right!, The support portal is Showing Crystal Report for VS not the other one; 
    Our S User ID is out dated might be; It was created when CR 2008 was purchased. But we bought CR2011 license recently  as mentioned below.
    Below is the product purchased by our organization
    CR 2011 INTL UPGR WIN NUL LICENSE - 1 to 2 Licenses, mix and match.
    Does this version have maintenance rights?
    I tried registering at Service MarketPlace hoping to get new S-User ID; Am i right path to get the new S- USerID ?
    During registering it asked for "Customer or Installation Number (1) *" ; Where can i get this info or number; Kindly suggest

  • How to Find the Latest Version of Cluster Binary Files available at Microsoft website

    How we can find the latest version of Cluster binary files available for download at Microsoft Website and which Cluster Binaries should be update to make the Cluster services stable healthy.

    @AnatolySV : I believe you need to put some efforts to understand what he is asking.
    You may find the latest version of Cluster Binaries by entering the required keywords for Microsoft Failover Clustering. Some of the main Cluster binaries(Keywords) are:-
    Clusres.dll (For Cluster Resources like Disk, Application or Service, Cluster IP)
    Clussvc.exe (Cluster Service)
    TCPIP.sys (If the Storage is presented to the cluster Nodes via ISCSI Network).
    MPIO.sys / ISCSIprt.sys (If we are using Multipathing for the disks to be presented).
    RHS.exe (Resource Host Subsystem)
    So, the Answer to your question is: You need to enter the binary name "Clusres.dll" and mention the Operating System you want to install your binaries to "Windows Server 2008 R2 Sp1" on Bing (Preferred for Microsoft Hotfixes). In Result you will get the
    list of hotfixes for clusres.dll
    You need to try this multiple times in order to get the latest version as Microsoft does not have a single Link.
    Hope this answers your query. Feel free to leave a message incase you need more help.
    Maybe) 
    But hey, you`ve got +1 from me for clarification) 
    Anyway, I still think that the initial question could be more clear and exact. 

  • Is it just me that finds the latest version of iTunes a bit rubbish? Is there any way to have a playlist open in a new window?

    Is it just me that finds the latest version of iTunes a bit rubbish? I'm used being able to open a playlist in a separate window in order to browse through my music and easily drag and drop tracks into the playlist (in a separate window). It also meant that I could search and play the contents of my main library and just drag and drop into a large space AND easily hit the stop button and instantly hit the pay button to just start a new tune from a new playlist. Now you can only press pause / play / pause and so on. If I want to view the contents of a playlist while listening to another I need to navigate to it which takes me away from what I'm doing in the other. It just makes for a lot of clicking and navigating around the houses when I used to be able to have multiple windows.
    I'm an avid music fan and just love organising my music to make finding / listening to my favourites eaiser.
    Maybe I'm just a bit thick and not using the software correctly, but it seems that a lot of handy features have been either removed or replaced with inferior ones (at least for me anyway). I appreciate that probably for most generic general music goers this isn't an issue, but for me it is.
    A rather long winded way of asking if anybody knows if it's possible to have multi-windows open, but also a chance to have a public moan about a great piece of software that has been updated and gone backwards - a bit like the iPhone google / apple maps situation!

    http://www.apple.com/feedback/kaywerty wrote:
    A rather long winded way of asking if anybody knows if it's possible to have multi-windows open
    It's not possible.
    Suggestions here -> Apple Product feedback

  • Where can I find the latest cab file?

    Where can I find the latest cab file? for example:
    CODEBASE=http://java.sun.com/update/1.5.0/jinstall-1_5_0_05-windows-i586.cab
    CLASSID=clsid:5852F5ED-8BF4-11D4-A245-0080C6F74284 It is not available on this page: http://java.com/en/download/manual.jsp
    I am deploying using web start. So I need it.
    thanks,
    Anil

    Download Java EE SDK, install it and finally in the lib directory you'll find the javaee.jar. It contains the whole javax package you need.

Maybe you are looking for

  • SAP DMS - How to do an external DMS configuration for the existing system ?

    Hi All. Greetings. Request help and understanding. Am new to the world of SAP. And request SOME clarity for understanding of DMS. We are wanting to put an external DMS server and wish to configure for the same. So that the load on the production SAP

  • Trying to add ipod touch to network

    I have a Linksys WRT54G router and I'm trying to connect my ipod touch to the web, but I'm having troubles.  I currently have a laptop and PC added to my router without issue. The ipod keeps prompting me for a password, but I simply can't remember it

  • Problem printing Report Document Draft

    Dear support, our customer has problem printing its Document Draft Report, because the "DRAFT DOCUMENT" string on the background of the page is too large. The printer can manage this dimension and prints an empty second page (also when the document h

  • Why does the amber light stay on even though the WiFi works?

    My WIFi just stopped yesterday. Initially nothing worked. I then Restarted the router-then the Airport Extreme–NOTHING.  I called Apple support. He had me push the re-start button and a few other things.  I can now get on WIFi, but the amber light st

  • Cannot copy files from Time Machine

    Hi, I wanted to trash all my Time Machine Files yesterday but when I tried to empty the trash, my Mac started to count all the files on the trash for so long that I decided to undo that. So, I opened the trash and decided to move back again all my Ti