UK Pension Auto Enrolment: minimum contribution per month vs year

Hi all,
just interested to know how you are dealing with cases, where the pensionable pay doesn't include the same variable payments as the legal qualifying earnings do, but due to higher percentages or no lower limit, the minumim threshold is still reached on an annual basis.
In those scenrios, it can easily happen that the contribution is to low in one month, when a bonus or a lot of overtime are paid. The standard behaviour of function GPENS under PAE is then to stop payroll and require a higher contribution in that month. However, the company thinks they don't need to do that, because the annual thrshold will be reached in the end, as contributions will be above the minumum in other months.
Is there a way to get the system testing this on an annual basis only? Or is this a faulty definition and is teh legal requirement really based on monthly numbers?
Would be keen on hearing any solutions - technical or otherwise - or even discussions / failed attempts for solutions on this point.
kind regards
Sven

HI,
For your first query under S80CCD check sap note no: 1507799

Similar Messages

  • Chart: amount (count) of records per month (and year). How?

    I need to create a chart eventually. Can't get what formula to use. The data is:
    1 | 15 Jan
    2 | 20 Jan
    25 | 14 Mar
    26 | 16 Mar
    28 | 20 Mar
    The chart should show amount(count) of records per month(and year). So in this example:
    Jan: 2
    Mar: 3
    Hm... totally lost. Any tips?

    To do this it would be best to add a column in which you isolate the month from the rest of the date information. Here's an example:
    You may hide the Month-Isolated column if it impacts your presentation.
    The Month-Isolated formula is: =IF(ISBLANK(B), "", (MONTH(B)))
    The formula for the count in the Summary table is: =COUNTIF(Data Table :: $C, COLUMN())
    Hope this gets you on your way.
    Regards,
    Jerry

  • Create View to allocate amount per month - financial year

    Hi All,
    I like to create an SQL view to divide amount 300,000 between 12 month starting from Month July 2014:
    Amount    Month             Year
    25,000       July              2014
    25,000       August          2014
    25,000       September    2014
    25,000       October        2014
    25,000       November    2014
    25,000       December     2014
    25,000       January        2015
    25,000       February      2015
    25,000       June            2015
    Thanks

    you almost got it, just add the logic...i hard coded the value 12 
    With CURRENT_FISCAL_YEAR as
    Select Cast(case when datepart(month, current_timestamp) >= 7 then datename(year, current_timestamp) + '-07-01'else cast(datepart(year, current_timestamp) -1 as VarChar(4)) + '-07-01' End As Date) As Current_Year_FY
    , NUMBERS as (Select NUMBER from Master..SPT_Values where Type = 'P' and number between 0 and 11)
    , CURRENT_FISCAL_MONTHLY as
    Select 300000/12 as Split,DateAdd(Month, Number, Current_Year_FY) as Current_FY_Month,year(DateAdd(Month, Number, Current_Year_FY)) as Current_FY_Year
    from CURRENT_FISCAL_YEAR
    Cross Join NUMBERS
    Select *
    from Current_FIscal_monthly
    Hope it Helps!!

  • Storage - How much per month? In US, on iCloud?

    I found the pricing for storage on iCloud but is it per month? year? forever? what?

    Hello,
    The following is an iCloud price reference.
    This fall, when iOS 8 is released, pricing will come down by a fair amount.

  • How to find out the Transactions used per month & the USER who used that

    Hi,
    1)How to find out the Transactions used per month & the USER who used that?
    2)and can i get the above same for minimum 20 month?
    System : SAP- Enterprise Core Component.

    You can use my program...
    *& Report  Z_ABAP_TCODE_MONITOR
    *****&  Program Type          : Report                                 *
    *****&  Title                 : Z_ABAP_TCODE_MONITOR                   *
    *****&  Transaction code      : ZTCODE_USAGE                           *
    *****&  Developer name        : Shailendra Kolakaluri                  *
    *****&  Deveopment start date : 26 th Dec 2011                         *
    *****&  Development Package   : ZDEV                                   *
    *****&  Transport No          : DEVK906086                                       *
    *****&  Program Description   : This program is to display
    *List all tcodes executed during previous day.
    *& Show the number of users executing tcodes
    *& Modification history
    REPORT  Z_ABAP_TCODE_MONITOR.
    *& List all tcodes executed during previous day.
    *& Show the number of users executing tcodes
    TYPE-POOLS : slis.
    DATA: ind TYPE i,
          fcat TYPE slis_t_fieldcat_alv WITH HEADER LINE,
          layout TYPE slis_layout_alv,
          variant TYPE disvariant,
          events  TYPE slis_t_event WITH HEADER LINE,
          heading TYPE slis_t_listheader WITH HEADER LINE.
    *REPORT  z_report_usage.
    TYPES: BEGIN OF zusertcode,
      date   TYPE swncdatum,
      user   TYPE swncuname,
      mandt     TYPE swncmandt,
      tcode     TYPE swnctcode,
      report TYPE swncreportname,
      count     TYPE swncshcnt,
    END OF zusertcode.
    *data   : date type n.
    DATA: t_usertcode  TYPE swnc_t_aggusertcode,
          wa_usertcode TYPE swncaggusertcode,
          wa           TYPE zusertcode,
          t_ut         TYPE STANDARD TABLE OF zusertcode,
          wa_result    TYPE zusertcode,
          t_result     TYPE STANDARD TABLE OF zusertcode.
    PARAMETER: month TYPE dats DEFAULT sy-datum.
    *PARAMETER: date TYPE dats.
    *select-options : username for wa_usertcode-account.
    START-OF-SELECTION.
    PERFORM get_data.
    PERFORM get_fieldcatalog.
      PERFORM set_layout.
    PERFORM get_event.
    PERFORM get_comment.
      PERFORM display_data.
    FORM get_data .
    *date = sy-datum - 2 .
    After start-of-selection add this line (parameter Month required 01 as day).
      concatenate month+0(6) '01' into month.
      CALL FUNCTION 'SWNC_COLLECTOR_GET_AGGREGATES'
        EXPORTING
          component     = 'TOTAL'
          ASSIGNDSYS    = 'DEV'
          periodtype    = 'M'
          periodstrt    = month
        TABLES
          usertcode     = t_usertcode
        EXCEPTIONS
          no_data_found = 1
          OTHERS        = 2.
      wa-date  = month.
    *wa-date  = date.
      wa-mandt = sy-mandt.
    wa_usertcode-account = username.
      LOOP AT t_usertcode INTO wa_usertcode.
        wa-user = wa_usertcode-account.
        IF wa_usertcode-entry_id+72 = 'T'.
          wa-tcode  = wa_usertcode-entry_id.
          wa-report = space.
        ELSE.
          wa-tcode  = space.
          wa-report = wa_usertcode-entry_id.
        ENDIF.
        COLLECT wa INTO t_ut.
      ENDLOOP.
      SORT t_ut BY report ASCENDING.
      CLEAR: wa, wa_result.
    endform.
    FORM get_fieldcatalog .
    fcat-tabname     = 't_ut'.
    fcat-fieldname   = 'DATE'.
    fcat-seltext_l   = 'Date'.
    fcat-key         = 'X'.
    APPEND fcat.
      CLEAR fcat.
      fcat-tabname     = 't_ut'.
      fcat-fieldname   = 'MANDT'.
      fcat-seltext_l   = 'Client'.
      fcat-key         = 'X'.
      APPEND fcat.
      CLEAR fcat.
      fcat-tabname     = 't_ut'.
      fcat-fieldname   = 'USER'.
      fcat-seltext_l   = 'User Name'.
      fcat-key         = 'X'.
      APPEND fcat.
      CLEAR fcat.
      fcat-tabname     = 't_ut'.
      fcat-fieldname   = 'TCODE'.
      fcat-seltext_l   = 'Transaction Code'.
      fcat-key         = 'X'.
      APPEND fcat.
    ENDFORM.
    *&      Form  SET_LAYOUT
          text
    -->  p1        text
    <--  p2        text
    FORM set_layout .
      layout-colwidth_optimize = 'X'.
    ENDFORM.                    " SET_LAYOUT
    *&      Form  GET_EVENT
          text
    -->  p1        text
    <--  p2        text
    *FORM get_event .
    events-name = slis_ev_top_of_page.
    events-form = 'TOP_OF_PAGE'.
    APPEND events.
    *ENDFORM.                    " GET_EVENT
    **&      Form  GET_COMMENT
          text
    -->  p1        text
    <--  p2        text
    *FORM get_comment .
    DATA: text(30).
    text = 'Billing Report'.
    heading-typ = 'H'.
    heading-info = text.
    APPEND heading.
    *ENDFORM.                    " GET_COMMENT
    **&      Form  top_of_page
          text
    -->  p1        text
    <--  p2        text
    *FORM top_of_page .
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
       EXPORTING
         it_list_commentary       = heading[]
      I_LOGO                   =
      I_END_OF_LIST_GRID       =
    *ENDFORM.                    " top_of_page
    *&      Form  DISPLAY_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM display_data .
      sort t_ut[].
    DELETE ADJACENT DUPLICATES FROM t_ut[] COMPARING ALL FIELDS.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program = sy-cprog
          is_layout          = layout
          it_fieldcat        = fcat[]
          i_save             = 'A'
          is_variant         = variant
          it_events          = events[]
        TABLES
          t_outtab           = t_ut
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " DISPLAY_DATA

  • How do I download Photoshop for windows xp and vista.... I currently pay per month for photoshop and a computer running vista i ned to install photoshop on two aditional machines. How can I download, photoshop says I have an os that is no longer supported

    I have a computer running windows vista that I pay per month for photoshop, I want to use photoshop on two other computers I have, not that it matters but they are both identical hardware wise, and software one runs xp and the other runs vista, I can upgrade but I am not intrested in other os. When I attempt to download I am told that my os is no longer supported. Now i know that I could find an offline version and should be able to get it installed but im not sure of a safe site that provides the iso or install exe. I want to use the other two computers because they have touch interface early computer/tablet highbird. thanks in advance.

    Michaelt65951582 I am sorry but you will need to run at least the minimum operating system to use Photoshop.  You can find the system requirements at System requirements | Photoshop.  I would recommend upgrading to Windows 7 or later.  You may find that your computer can support the more recent operating system depending upon the hardware installed.

  • Workaround for 1 invoice per month

    Hi There,
    Is there anybodywho could suggest me how to implement if a customer wants 1 invoice per month??
    But the separate deliveries over the whole month. And auto create 1 invoice at the end of the month with the document generation wizard.
    thanks Mark

    Hi Mark,
    Go to Sales -A/R->Document Generation Wizard and set your target document and according all data.
    The document generation wizard lets you save the defined parameter set. First, you enter and save numerous parameters for base and target documents. Based on these definitions, you can select consolidation methods and choose a list of relevant business partners.
    Once you save the defined parameter set, you can run the wizard periodically according to your companyu2019s business practices.
    Thanks
    Sachin

  • BT are overcharging me by £40 per month + other gr...

    Hello, everyone.
    This is my first post here, and it will be long, and in the form of a mixture of a rant and a complaint, and I want to apologise for that beforehand. I don't want to be *that guy* who comes into a room and instantly kicks off about something, but I'm at my wits' end, and I have never before been treated like this by any service provider.
    The reason I'm posting this here is because I literally can't find out how to complain to BT. Their pre-formulated "solutions" avail me not, I've tried calling and using the option of having them call me back, which they never did/do, and it's pointless for me to talk to some guy in a call centre halfway around the world who not only misunderstands the nature of my complaint, but, even if he did, would be powerless to change it.
    This is the complaint I sent to BT, which prompted the aforementioned call centre operator to contact me and suggest that I "change my password every day for a month". I live with two other people, and we all have numerous internet devices (laptops, stationary pcs, smart phones) - around 10 in total - and you want me to change the password *every day* for *one month* to see if that might solve the problem?
    Anyway, here it is:
    To whom it may concern
    I have been repeatedly abused and mistreated by BT. The last on a long and painful list of grievances is that when my broadband security password (never changed from the default one, and never shown to anyone outside my dwelling place) was hacked and my connection used to download up to FIVE TIMES my usage limit, you were not only too happy to take the obscene amounts of money you charge for gigabytes in excess of this pernicious download limit, (which, by the way, NO ONE informed me of when I was PETITIONED to switch to BT Broadband, during a call in which the glorified hawker (cursed be his name) managed to PROMISE me MINIMUM download speeds of 12 MB per SECOND (a guarantee I was mindless enough not to ask for in writing)), but you also deigned to wait THREE MONTHS before informing me that my usage had (suddenly, and suspiciously, you would think) gone from around my measly 10 allotted gigabytes per month to FIFTY. Add to this the fact that when I tried to get my landline activated at my humble abode (or so it must strike you as, to pay it such little heed), you never did appear on the date the PRINTED LETTER you had sent me stated, and when I called to inquire as to the reason of your hired guns' truancy, you informed me that regrettably, I had chosen an ILLEGAL COMBINATION in my package (this fact was very well hidden by your Byzantine sign-up procedure, as it showed no outward signs of condemnation of my ILLEGAL COMBINATION, but rather allowed me to COMBINE ILLEGALLY, take my money, arrange an activation date and SEND ME A LETTER CONFIRMING THIS, and then took NO FURTHER ACTION to notify me that my COMBINATION had been ILLEGAL FOR SIX WEEKS while I awaited my overdue landline activation with trepidation), so you were in fact not going to come and activate my landline, and had now CANCELLED my order. Again, WITHOUT TELLING ME. I then had to wait ANOTHER FOUR WEEKS before your hired buffoons ("I'm sorry, sir, but we subcontract the actual activation of the landline to the COMPLETELY UNRELATED company BT OPENREACH, so there is no way we can actually override the system and give you an earlier activation date"), after having cost me SEVERAL THOUSAND POUNDS in lost income (yet again!), finally came in to flick the switch ("That'll be £125, please!").
    At this point in time, I believe it would be prudent for you, as a company, to offer me some token of reimbursement as a measure of your no doubt elephantine remorse, regret and contrition by way of... well, what would you suggest?
    Now, I know that this is written in a sarcastic and choleric tone (I've tried being civil, patient and polite, but that has gotten me nowhere in a hurry), but surely that does not negate the validity of my complaint
    I should also note that I was notified that the problem might be online gaming. I have since stopped doing that altogether, but looking at my broadband usage now, it hasn't solved the problem at all. In fact, it has made no discernible interest whatsoever.
    The only explanation I can think of for the increased usage is that someone has hacked into my connection. Why else would I suddenly be downloading five times as much per month?
    I guess what I'm asking you people is what I should do to resolve this.
    If I cancel my DirectDebit payments, that might get BT's attention, but it also might result in them suspending my internet connection, and I work from home and am completely reliant on a fast and stable internet connection (did I mention it stops working / falls out every 20 minutes?), which is another reason why I would never have signed up for this plan in the first place if I knew I could only use 10 GB per month (which I nevertheless stayed within for the first months).
    If I leave BT, I'll probably have to pay for the outstanding months of the 18 month contract I was tricked into signing, and I would have to go without an internet connection until I can get with another ISP.
    If I upgrade my plan, I'll be giving these bloodsuckers even more of my money, not less.
    As I wrote earlier, I'm at the end of my tether, so any help or advice would be greatly appreciated.
    Thank you,
    KidC

    Hi this is a customer to customer self help forum for BT Residential Customers. As you refer to lost business maybe you should post on the  BT Business Forum, the only BT presence here are the Forum Moderators you could try contacting them at this link 
    http://bt.custhelp.com/app/contact_email/c/4951
    they normally reply by email or phone within 72 hours
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

  • Is the Promo Pricing of $10 Per Month for One App Considered an UPGRADE?

    I currently have Flash Pro CS5.5.
    If I sign up for Flash CC at the promo price of $9.99 per month, does that mean my CS5.5 license can no longer be used?
    Because if I cannot use Flash CS5.5 anymore and I paid $450 for it, getting a $10 savings for 12 months isn't worth it.
    A $120 discount for a $450+ program doesn't really seem like promo pricing?
    Am I missing something?
    Now if Adobe is being kind enough to allow CS users to purchase a single app for a discounted price of $10 per year as a courtesy for being a valued customer, that I could understand.
    I certainly hope someone can verify this by the end of the day as the $10 per month promo ends in a day or so.
    Thanks,
    Sean

    Hi Madclevr,
    Please consider this :
    Adobe Flash Professional CS5.5 (11.5)
    2011
    Flash Professional CS5.5 was released in 2011. It includes improved support for publishing iPhoneapplications, following Apple's revision of their iOS developer terms. Flash CS5.5 also contains several features to improve mobile app workflows across devices. Some examples are: Content scaling and stage resizing, copy and paste layers, sharing symbols across FLA files, symbol rasterization, incremental compilation, auto-save and file recovery, and integration with CS Live online services.
    Adobe Flash Professional CS6 (12)
    2012
    Adobe Flash Professional CS6 was released in 2012. It includes support for publishing files as HTML5and generating sprite sheets.[6]
    Adobe Flash Professional CC (13)
    2013
    Flash Professional CC was released in June 2013 as part of Adobe's Creative Cloud rebrand. Changes include a native 64-bit scene rendering engine, minor performance improvements and bug fixes, and the removal of legacy features such as ActionScript 2 support. As part of the Creative Cloud suite, Flash CC also offers users the ability to synchronize settings or save files online.
    Coutsey: http://en.wikipedia.org/wiki/Adobe_Flash_Professional 
    It is an upgrade. Flash pro CS5.5 can be still used.
    Reagrds,
    Rajshree

  • £12 per month ?????

    Hi
    I currently have three phones on o2 on a business tariff with a company called Geneses communication and they have informed me that if I purchase an i-phone on a pay as you go from any retailer they can add it to my existing contract as a fourth phone to enable me to keep my original phone number and it will cost me an additional £12 plus vat per month and a further £6.38 plus vat per month for unlimited internet using my o2 Sim card, does this sound correct as o2 direct seem to want a minimum if £30.00 per month, can somebody please advise
    Many Thanks

    Hi Sitv,
    I am really sorry for the problem you have had, both with being charged for BT sport and your poor experience trying to sort this out.  I can definitely help you with this.
    Please get an email off to me when you get a chance.  Click on my username (SeanD) and then click on the 'Mods contact link' which you will find under the 'About me' section of my profile.  Once we have your details we will be able to get to the bottom of this and resolve once and for all.
    Cheers
    Sean
    BTCare Community Manager
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)

  • Start and end balance per month

    Hello,
    I am new in building formulas.
    I have the following values in in my table, I would like to find out the start and end balance for month Jan and Feb.
    Table: Transactions
    Date
    Balance
    02/Jan/2014
    100
    05/Jan/2014
    150
    25/Jan/2014
    120
    09/Feb/2014
    180
    14/Feb/2014
    200
    16/Feb/2014
    100
    22/Feb/2014
    190
    Table: Results
    Jan
    Feb
    Start balance
    100
    180
    End balance
    120
    190
    Can you please help with the simplest formula to get the above result?
    I don't know when the first and last transaction will occur in a certain month. Also I don't know the total number of transactions per month.

    I would like to find out the start and end balance for month Jan and Feb.
    Assuming you are looking for the starting and ending balance for each month, and not the maximum and minimum balance, then you could do something like this:
    Add an Index column to your Transactions table that extracts the month name with this formula in C2, copied down:
       =MONTHNAME(MONTH(A2))
    (I first had to change the format of the dates in column A so Numbers would recognize them as dates on my machine.
    In the results table I made sure I entered January and February as text, by typing an apostrophe (single quote) and typing the month name.  Otherwise Numbers smart date recognition will try to turn the month name into a date. (Note I used the full month name rather than an abbreviation.)
    The formula in B2 of the Results table, copied to C2, is:
        =INDEX(Transactons::$B,MATCH(B$1,Transactons::$C,0))
    The formula in B3 of the Results table, copied to C3, is :
         =INDEX(Transactons::$B,MATCH(B$1,Transactons::$C,1))
    The INDEX MATCH combination is a flexible alternative to the LOOKUP, VLOOKUP family of functions. Here changing the last parameter in MATCH does the trick for finding the start and end balance.
    SG

  • Does anyone know the difference between the Applecare Warranty for the Macbook Pro and the Applecare Protection Plan Auto Enroll 607-8192-B APP FOR MacBook

    Does anyone know the difference between the Applecare Warranty for the Macbook Pro and the Applecare Protection Plan Auto Enroll 607-8192-B APP FOR MacBook

    AFAIK, the difference is that the auto-enroll occurs automatically when you purchase the device and you will have to disburse the cost right there and then. Whereas the other comes in a box, can be purchased separately later and you must manually enroll your device into the system to activate the additional protection. This must occur before the base one year warranty is over.
    So, if you don't want to pay up at the moment you buy the computer, you can wait up to say 11 months and buy the AppleCare warranty extension later. Just be sure to complete the enrollment BEFORE the base warranty is over, else Apple will not honor the extension (all in the fine print). This applies to all devices that offer an AppleCare option: notebooks, desktops, iStuff, etc.

  • RENT:  The iPhone.  $100 Per Month.  2 Month Contract.  Then Buy for $399.

    Seriously, how many people here who own the iPhone would have rented the iPhone for $100 per month for 2 months (for a grand total of $200) knowing that it would be available in the beginning of September for $399?
    In essence, isn't that EXACTLY what happened to everyone who purchased it the first week?
    So who here would have done it?

    I may have. It's all in how you look at it. You rent cable service for $100 a month and don't get to keep anything tangible for it. Why wouldn't you do the same for the iPhone? You would have had access to the internet, phone calls, music, etc. Not much different than renting cable services. Heck, you rent the voice service on the iPhone for what, a minimum of $60 per month?

  • How to find the number of records per months  in cube

    Hi,
      how to find the number of records per months for my all cubes?
      Can i use the ListCube transaction to find totl number f records per cube monthwise ?
    Jimmy

    Hi,
    Here is a program to generate no of records and list of ODS and Cubes in Active version.Schedule this program in background and create a cube to load this information and schedule to the data from the file generated by the program. Schedule this all per you requirement.
    1.Copy the code into your Z<programname> from Se38.
    2.change the FILENAME in CALL FUNCTION 'GUI_DOWNLOAD' in the program to the location from where you can pick the information to load data to cube(eg Application server).
    3.Save program.
    4.Schedule the program in background as required
    5.Create cube with infoobjects to hold no of records and Infoprovider name
    6.Load this cube based on event after the program job is done.
    Hence you can report on this cube to see no of records in  CUBE or ODS in your box.
    Please find the code below.
    Cheers,
    Kavitha Kamesh.
    types: begin of itabs ,
          tabname type dd02l-tabname,
          end of itabs.
    data: itab type itabs occurs 0 with header line.
    data: counter type i.
    data: begin of itab1 occurs 0,
    tabname type dd02l-tabname,
    counter type i,
    end of itab1.
    DATA: ITABTABNAME TYPE STRING.
    DATA: LENGTH TYPE I.
    DATA: OBJECT(30).
    data: str(6) type c.
    select  tabname from dd02l into table itab where ( tabname LIKE  '/BIC/F%' or tabname LIKE  '/BIC/A%00' )
    and TABCLASS = 'TRANSP' and AS4LOCAL = 'A'.
    loop at itab.
      select count(*) from (itab-tabname) into counter.
      str = itab-tabname.
      if str = '/BIC/F'.
    LENGTH  = STRLEN( ITAB-TABNAME ).
      SHIFT  itab-tabname BY 6 PLACES LEFT.
    ELSEIf  str = '/BIC/A'.
      SHIFT  itab-tabname BY 6 PLACES LEFT.
      LENGTH  = STRLEN( ITAB-TABNAME ).
    LENGTH = LENGTH - 2.
    endif.
      itab1-tabname = itab-tabname(LENGTH).
      append itab1.
      itab1-counter = counter.
      clear itab-tabname.
      clear:  COUNTER.
    endloop.
    *********** itab1
    loop at itab1.
    write:/ itab1-tabname, itab1-counter.
    endloop.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
    *   BIN_FILESIZE                    =
        FILENAME                        = 'c:records.xls'
        FILETYPE                        = 'ASC'
    *   APPEND                          = ' '
        WRITE_FIELD_SEPARATOR           = ','
    *   HEADER                          = '00'
    *   TRUNC_TRAILING_BLANKS           = ' '
    *   WRITE_LF                        = 'X'
    *   COL_SELECT                      = ' '
    *   COL_SELECT_MASK                 = ' '
    *   DAT_MODE                        = ' '
    *   CONFIRM_OVERWRITE               = ' '
    *   NO_AUTH_CHECK                   = ' '
    *   CODEPAGE                        = ' '
    *   IGNORE_CERR                     = ABAP_TRUE
    *   REPLACEMENT                     = '#'
    *   WRITE_BOM                       = ' '
    *   TRUNC_TRAILING_BLANKS_EOL       = 'X'
    *   WK1_N_FORMAT                    = ' '
    *   WK1_N_SIZE                      = ' '
    *   WK1_T_FORMAT                    = ' '
    *   WK1_T_SIZE                      = ' '
    * IMPORTING
    *   FILELENGTH                      =
      TABLES
        DATA_TAB                        = itab1
    *   FIELDNAMES                      =
    * EXCEPTIONS
    *   FILE_WRITE_ERROR                = 1
    *   NO_BATCH                        = 2
    *   GUI_REFUSE_FILETRANSFER         = 3
    *   INVALID_TYPE                    = 4
    *   NO_AUTHORITY                    = 5
    *   UNKNOWN_ERROR                   = 6
    *   HEADER_NOT_ALLOWED              = 7
    *   SEPARATOR_NOT_ALLOWED           = 8
    *   FILESIZE_NOT_ALLOWED            = 9
    *   HEADER_TOO_LONG                 = 10
    *   DP_ERROR_CREATE                 = 11
    *   DP_ERROR_SEND                   = 12
    *   DP_ERROR_WRITE                  = 13
    *   UNKNOWN_DP_ERROR                = 14
    *   ACCESS_DENIED                   = 15
    *   DP_OUT_OF_MEMORY                = 16
    *   DISK_FULL                       = 17
    *   DP_TIMEOUT                      = 18
    *   FILE_NOT_FOUND                  = 19
    *   DATAPROVIDER_EXCEPTION          = 20
    *   CONTROL_FLUSH_ERROR             = 21
    *   OTHERS                          = 22
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • PURCHASE PROGRAM  When I filled in my credit card details and proceed to Step 4: Enter your payment information, so nothing happens. Have tried several times. This order applies to the upgrade of CS4 and costs 270,60SEK per month.  Does not this offer?  M

    PURCHASE PROGRAM
    When I filled in my credit card details and proceed to Step 4: Enter your payment information, so nothing happens. Have tried several times. This order applies to the upgrade of CS4 and costs 270,60SEK per month.
    Does not this offer?
    Micke at Raa

    Some general information... your Adobe account and your credit card details must match exactly
    Change/Verify Account https://forums.adobe.com/thread/1465499 may help
    -http://helpx.adobe.com/x-productkb/policy-pricing/change-country-associated-with-adobe-id. html
    -Credit card https://helpx.adobe.com/utilities/credit-card.html
    -ID support http://helpx.adobe.com/x-productkb/global/service-c1.html
    -verify email https://forums.adobe.com/thread/1446019

Maybe you are looking for

  • How do you adjust an image placed in a shape?

    In AICS6 I have a compound path made of two half-circle looking shapes. They have to be separate because they are puzzle pieces. Inside of this I am placing an AI illustration that is a group of over 100 shapes. The problem is this: Once inside the c

  • How to get the columns from SYS.ALL_COLUMNS and use it in COALESCE() Function.

    Hi, I have table called Employe. And the Columns are Emp_ID,EMP_NAME,SRC_SYS_CD,DOB I have Query like Select COALESCE(MAX(CASE WHEN src_sys_cd='1' THEN Emp_id END), MAX(CASE WHEN src_sys_cd='2' THEN Emp_Id END))Emp_Id, COALESCE(MAX(CASE WHEN src_sys_

  • Problem adding permanent ARP entry

    I tried to add permanent ARP entry but without success. Alway expires after 30 sec. Does anyone have idea what to do/check. >sudo arp -S 192.168.1.254 0:f:94:25:ea:41 ifscope en1 >arp -axn Neighbor                Linklayer Address Expire(O) Expire(I)

  • ITunes U dl's are mixed with my songs!

    I am totally delighted that iTunes U(niversity) is available in 7.2. Wow! So I downloaded easily some tracks from Stanford & UCBerkley - Philosophy. 2 new playlists (Philosophy) were created by iTunes But the tracks are now mingled with my music song

  • Why does my HP6310 not show the "Work Online" option anymore. It only displays work offline.

    I have an HP6310 that is wired to a wireless router and now I cannot print.  It says the printer is offline and I cannot change it back to online......I do not have that option.  Can anyone help!!!  THANKS!