IT0027 Costribution - More than 8 entries not allowed

Hi all,
I have an issue with IT0027.
We work on ECC 6.0 release 700.  For infotype 27( Cost Distribution ) able to give only 8 entries in table control. I cannot add more than 8. Even the  + and - buttons for table control are also on the Tool bar.
Is that I have to do change to code or implement any support packages.  
Thank you!
Prasad

The table PA0027 allows up to 25 entries. But in the screen there is limitation coded where the functions of page down, page up, etc are excluded from the toolbar (routine EXCLUDE_FUNCTIONS in screen 2100 of MP002700).
So, one way might be to use screen 2000 instead of 2100 for your case, you can customize what screen you want to use, but bear in mind that it might have different logic in other validations done in 2100, still it allows the 25 entries.
Just a little additional information, but if check View V_T588M for Module Pool MP002700 you will have probably two entries, where screen 2100 is set for variable key 01. If you check feature P0027 (transaction code PE03) you will most likely have 01 as default value for all entries, so you might need to change the feature in order to call screen 2000.
Of course all this might be done by coding in screen 2100, but in this case you will be changing SAP standard functionality with all it's costs (maintenaince, etc).
Edited by: Pedro Guarita on Oct 13, 2010 11:09 AM

Similar Messages

  • I need more than the maximum allowed 30 profiles - how do I change this?

    I need more than the maximum allowed 30 profiles - how do I change this? Once I reach 30 profiles and I try to add one - it just deletes one automatically thus only allowing a maximum of 30. Please help.

    You are talking about 30 Firefox Profiles on the same Windows Logon User Account?
    I never saw that as a limit myself. I had 53 Profiles at one time, although I haven't done that since Firefox 3.0. It was causing an extended launch time and I started using "remote" Profiles that weren't controlled by the Profile Manager and weren't in the '''profiles.ini''' file; launched by command line. Like this in the Target line for the desktop shortcut: <br />
    ''' "C:\Program Files\Firefox_4.0_zip\firefox.exe" -Profile D:\Mozilla\Active-Profiles\4.0_10-15-10-N '''

  • Can more than 1000 notes be uploaded...???

    I have the video iPod, but now I think it ***** couse I cant load more than 1000 notes.
    Can anyone tell me how to change that, and how can I suggest this to Apple....???

    there is a limited amount but i think if you download a form of thigy then you can download that form into the harddrive of th ipod and be able to carry more but the form is illegal and pirated so i wont give it out

  • ORA-13207: incorrect use of the [More than 2D not supported] operator

    Oracle 8.1.7.4:
    The same query works in an Oracle DB on Linux and Windows, but in a Solaris it gives me the following error:
    cc_redes_met_coaxial@ORAG2&gt; SELECT lot_f.lot_id id,
    ROUND(MDSYS.SDO_GEOM.SDO_DISTANCE(lot_geom.geometry, ped_geom.geometry, 0.5),2) dist
    FROM lot_f,
    pedestal_f,
    G_GEOMETRY_0 lot_geom,
    2 G_GEOMETRY_0 ped_geom
    WHERE lot_f.feat_num = lot_geom.feat_num
    3 AND pedestal_f.acc_point_id = 611
    AND pedestal_f.feat_num = ped_geom.feat_num
    4 AND lot_f.g_version+0 = 0
    AND (lot_f.g_next_version &gt; 0 OR lot_f.g_next_version IS NULL)
    5 AND pedestal_f.g_version+0 = 0
    6 AND (pedestal_f.g_next_version &gt; 0 OR pedestal_f.g_next_version IS NULL)
    AND MDSYS.SDO_WITHIN_DISTANCE(lot_geom.geometry, ped_geom.geometry,'distance = 100' ) = 'TRUE';
    7 8 9 10 11 12 13 14 SELECT lot_f.lot_id id,
    ERROR at line 1:
    ORA-29902: error in executing ODCIIndexStart() routine
    ORA-13207: incorrect use of the [More than 2D not supported] operator
    ORA-06512: at "MDSYS.SDO_INDEX_METHOD", line 84
    ORA-06512: at line 1
    The data is in 3D. I took a look at the trace file but no useful information. It does not have to be 2d, right?
    I can use SDO_WITHIN_DISTANCE with data in 3d, can't I?
    Does anyone know what is going on? Maybe a bug?
    Regards,
    Alex

    Daniel,
    I created the spatial index in 2d, but if I collect stats on all tables the optimizer doesn't use the spatial index.
    I tried to influence the optimizer using hints, but it seems to ignore the hint clause. The query I did is above:
    SELECT /*+ INDEX(lot_geom G_GEOMETRY_0_SI) INDEX(ped_geom G_GEOMETRY_0_SI) */
         lot_f.lot_id id,
    ROUND(MDSYS.SDO_GEOM.SDO_DISTANCE(lot_geom.geometry, ped_geom.geometry, 0.5),2) dist
    FROM lot_f,
    pedestal_f,
    G_GEOMETRY_0 lot_geom,
    G_GEOMETRY_0 ped_geom
    WHERE lot_f.feat_num = lot_geom.feat_num
    AND pedestal_f.acc_point_id = 611
    AND pedestal_f.feat_num = ped_geom.feat_num
    AND lot_f.g_version+0 = 0
    AND (lot_f.g_next_version > 0 OR lot_f.g_next_version IS NULL)
    AND pedestal_f.g_version+0 = 0
    AND (pedestal_f.g_next_version > 0 OR pedestal_f.g_next_version IS NULL)
    AND MDSYS.SDO_WITHIN_DISTANCE(lot_geom.geometry, ped_geom.geometry,
    'distance = 100' ) = 'TRUE';
    So I "forced" a plan that uses the spatial indexes deleting the statistics from the tables that have geometry columns. The execution plan looks like this:
    Execution Plan
    0 SELECT STATEMENT Optimizer=CHOOSE (Cost=2652 Card=10182 Bytes=79969428)
    1 0 CONCATENATION
    2 1 NESTED LOOPS (Cost=876 Card=3428 Bytes=26923512)
    3 2 NESTED LOOPS (Cost=121 Card=1078 Bytes=8450442)
    4 3 NESTED LOOPS (Cost=4 Card=33 Bytes=129492)
    5 4 TABLE ACCESS (FULL) OF 'PEDESTAL_F' (Cost=1 Card=1 Bytes=16)
    6 4 TABLE ACCESS (BY INDEX ROWID) OF 'G_GEOMETRY_0' (Cost=3 Card=3268 Bytes=12771344)
    7 6 INDEX (RANGE SCAN) OF 'G_GEOMETRY_0_PRIMARY' (UNIQUE) (Cost=2 Card=3268)
    8 3 TABLE ACCESS (BY INDEX ROWID) OF 'G_GEOMETRY_0' (Cost=121 Card=3268 Bytes=12794220)
    9 8 DOMAIN INDEX OF 'G_GEOMETRY_0_SI' (Cost=51)
    10 2 TABLE ACCESS (BY INDEX ROWID) OF 'LOT_F' (Cost=1 Card=318 Bytes=4770)
    11 10 INDEX (RANGE SCAN) OF 'GI_LOT_F0_FEAT_NUM_0' (UNIQUE) (Cost=1 Card=318)
    12 1 NESTED LOOPS (Cost=876 Card=3428 Bytes=26923512)
    13 12 NESTED LOOPS (Cost=121 Card=1078 Bytes=8450442)
    14 13 NESTED LOOPS (Cost=4 Card=33 Bytes=129492)
    15 14 TABLE ACCESS (FULL) OF 'PEDESTAL_F' (Cost=1 Card=1 Bytes=16)
    16 14 TABLE ACCESS (BY INDEX ROWID) OF 'G_GEOMETRY_0' (Cost=3 Card=3268 Bytes=12771344)
    17 16 INDEX (RANGE SCAN) OF 'G_GEOMETRY_0_PRIMARY' (UNIQUE) (Cost=2 Card=3268)
    18 13 TABLE ACCESS (BY INDEX ROWID) OF 'G_GEOMETRY_0' (Cost=121 Card=3268 Bytes=12794220)
    19 18 DOMAIN INDEX OF 'G_GEOMETRY_0_SI' (Cost=51)
    20 12 TABLE ACCESS (BY INDEX ROWID) OF 'LOT_F' (Cost=1 Card=318 Bytes=4770)
    21 20 INDEX (RANGE SCAN) OF 'GI_LOT_F0_FEAT_NUM_0' (UNIQUE) (Cost=1 Card=318)
    But when I executed the query, I got:
    cc_redes_met_coaxial@ORAG2> /
    ROUND(MDSYS.SDO_GEOM.SDO_DISTANCE(lot_geom.geometry, ped_geom.geometry, 0.5),2) dist
    ERROR at line 2:
    ORA-03113: end-of-file on communication channel
    Collecting stats on geometry tables makes the query work only because it doesn't use the spatial index.
    I took a look the trace file, but I didn't see any interesting information. I can send you if you want.
    Do you have any clue?
    Regards,
    Alex

  • .pck file (more than 5gb) not de-compressing to smspkgdriveletter$ on BDP

    SCCM 2007 R2
    .pck file (more than 5gb) not de-compressing to smspkgdriveletter$ on BDP
    .pck file which is distributed to BDP is not decompressing to SMSPKG share folder.
    .pck file is more than 5GB, i hear that this is a known issue but unfortunately i don't know the work around.:(
    Please help!

    The 'traditional' way the 32-bit virtual address space is split is 1 : 3GB (kernel : user). RHEL 3 hugemem kernel has a 4 : 4 GB split, recommended for >16GB RAM machines.
    In the case of Oracle server on RHEL, the 'default' theoretical max is around 1.7GB for SGA, or 2.7GB with hugemem kernel. That is, if you configure things correctly. E.g. have you set the shm kernel parameters?
    What is exactly the problem you run into?

  • Hello. Just got Garageband'11 for my ipad 2. Can´t seem to be able to play more than two notes at once on touch keyboard. Help!

    Hello. Just got Garageband'11 for my ipad 2. Can´t seem to be able to play more than two notes at once on touch keyboard. Help!

    Thank you for your response.
    I am trying to sync them both to the same computer (Windows), and with the 2nd ipod, it looks like everything is going to work out fine, until I go to add songs from my itunes music library...then, after a few seconds of me hoping it will work, I get a message that says "Attempting to copy to Lisa's disk failed. The disk could not be read from or written to."
    I thought it might have been my ipod. But then I tried to download songs from my sister's computer, and even my work computer (just to see if it would work), and it did. So I'm not sure what is going on here. Is it my computer, or is it the ipod? Or is it itunes?
    Also, my sister in-law said her issue is similar, in that her itunes doesn't recognize her ipod now that my brother's ipod has been used on their computer. She gets the same message as I do...thus she is unable to download any songs onto her ipod.
    If you have any helpful tips, it would be greatly appreciated.
    Thank you for your time and assistance.
    -- Lisa Soto

  • Help - I need more than 1000 Notes of 4000 characters

    The 4000 character limitation of Notes and the limitation of 1000 Notes and the length of time it takes to load in Notes make using iPod notes very limiting. I've experimented with a few other options which I explain below, BUT MY QUESTION IS does anyone have any other suggestions on how to work around the 4000 character limitation?
    Here is what I have found to be alternative options:
    Split your notes into 4000 character blocks using the split command (open Terminal and type "man split" to read about the command)
    Install Linux on the iPod. This worked with my older iPod but there isn't a Linux for the newer iPod yet.
    Using Contacts "note"
    Summary: Uses a manually created Contacts file to store text of up to 243,185 characters in length. If creating files manually requires special formatting for linebreaks. Compatible with music playback and iTunes sync.
    Contacts are stored on the iPod according to the vCard standard. vCard stores contact entries in vcf files. A single vcf file can contain any number of vCard entries. The iPod firmware looks for the vcf files in the iPod Contacts folder. The Contacts folder can contain any number of vcf files and will load all of them into memory when viewing contacts.
    Contacts synchronized with iTunes are stored in the iSync.vcf file.
    You can paste your text content into an Address Book entry and sync it to the iPod via iTunes. There may be limits in the Address Book application regarding the amount of text it will allow.
    Using any text editor you can create your own vcf files and place them into the Contacts folder as well. Using the org and note attributes in the vCard entry in a vcf file you can create a contact that can display up to 243185 characters of text. A sample vcf file with a single vCard entry would look like this:
    begin:vcard
    version:3.0
    org:Sample Note
    note:You can use Contact notes to get around the 4k limitation of iPod notes. Doing so requires some changes in the syntax of the text however because the vCard format is fairly restrictive.\nFor one thing any line breaks must be converted to a backslash followed by lower case n.\nFor another many symbolic characters must be escaped by preceding them with a backslash.
    end:vcard
    The "org" attribute names the contact, and the "note" attribute contains the text, up to 243,185 characters of text. While a vCard entry can only have a single note attribute, you can have any number of vCard entries in a single vcf file.
    One requirement of this approach is that the text must be edited to a format compatible with the vCard standard. That means that all linebreaks in the text must be converted to a backslash "\" followed by "n", and any symbolic characters should be preceded with backslash.
    The negatives of this approach are that linebreaks must be altered and the notes are mixed in with your contacts. But to the positive they are still viewable while music is playing, and they are left alone by the iTunes synchronization process.
    This method does not interfere with listening to a song. This method is independent of synchronizing with iTunes.
    Using the Calendar "description"
    Summary: Uses a manually created Calendar file or Calendar entries in iCal to store text of up to 20,600 characters in length per calendar event. If creating files manually requires special formatting for linebreaks. Compatible with music playback. NOT compatible with iTunes sync if using a manually created file.
    The iPod supports the vCal standard for displaying calendar information. Version 1.0 of this standard uses vcs files; and version 2.0 of this standard uses ics files. Most calendar programs can export either vcs or ics files and there is plenty of information available online for how to convert data from a calendar application into one of these formats.
    The iPod firmware will display the contents of vcs and ics fles that are located in the iPod Calendars folder.
    Calendar events defined in the vCal standard have a description attribute. The iPod firmware displays the description attribute when displaying the calendar event. It is possible to create a calendar specifically for the purpose of storing text in description attributes. You could create a calendar in a calendar program such as iCal and sync it with the iPod via iTunes, or you could create your own calendar file manually. Unfortunately if you sync calendars using iTunes then iTunes will delete all files in the Calendars folder that it does not directly control, so maintaining any kind of external calendar file is not compatible with syncing calendars using iTunes.
    The iPod can read both vcs and ics calendar files, but for creating your own you should use vcs because vcs doesn't have a line length limit while ics does and requires special line-wrapping. The iPod will display only the first 20600 characters of the event description.
    A simple vcs file with a single fake event would look like this:
    BEGIN:VCALENDAR
    VERSION:1.0
    X-WR-CALNAME:Notes Calendar
    BEGIN:VEVENT
    DTSTART:20070201T220000Z
    DTEND:20070201T230000Z
    SUMMARY:Sample note
    DESCRIPTION;ENCODING=QUOTED-PRINTABLE:=0D=0ALine breaks need to be converted to an equal sign followed by 0D followed by another equals sign followed by 0A. There is no line length limit, so the text can be as long as you need. There may be a reasonable limit imposed by the iPod calendar interface due to scrolling.
    END:VEVENT
    END:VCALENDAR
    Each Calendar in the file is demarcated by the BEGIN:VCALENDAR and END:VCALENDAR statements. The VERSION statement when set to 1.0 indicates a vcs file (2.0 should be used in an ics file). The X-WR-CALNAME statement can be used to indicate a name for the calendar. If no calendar name is specified the iPod uses "Other".
    Each Calendar event is demarcated by the BEGIN:VEVENT and END:VEVENT statements. Each event requires start and end times (DTSTART and DTEND, respectively), a SUMMARY which is the event title, and the DESCRIPTION which is the text you wish to read. Linebreaks in the description text must be converted to "=0D=0A".
    The negatives of this approach are that linebreaks must be altered and the notes are attached to specific dates in the calendar so to find them you would need to navigate to those dates. Of course you could put all notes on the same date, or use different dates or even different calendars (within the same vcs file or not) to organize them.
    This method does not interfere with listening to a song. This method is NOT compatible with syncing Calendars with iTunes if you are using a manually created file.
    Using Music Lyrics
    Summary: Uses the Lyrics section of fake songs to store text of up to 10,000 characters in length per song. Does not require special formatting of text. Incompatible with music playback. Requires the text to be stored in iTunes.
    iTunes allows the lyrics of a song to be attached to the ID3 tags of the song and viewed on the iPod while the song is playing. Technically lyrics can be up to 256 MB in length, but the iPod will only display the first 10000 characters.
    Using lyrics allows notes to be sorted into playlists just as songs are which could be helpful for organizing them. To attach lyrics though there must be a song as well. It is possible to create a very small MP3 that can be used just to attach lyrics to. The process for doing so is described in forum message 2331260, but the short story is:
    - In the iTunes main library window, select a track you want to chop up, and select "Get info". The track cannot be a protected AAC track such as those purchased from the Apple Music Store.
    - Go to the "Options" tab. Set "Start Time" and "Stop Time", corresponding to the start and finish of the chunk of song you want to chop out. Click "OK".
    - Right-click on the track again in the main library window and select "Convert selection to XXX". (The XXX will be whatever file format you happen to have set in your iTunes Importing preferences at the time.)
    - After a little while, iTunes will spit out a second, smaller copy of the track, containing just the music between the Start and Stop times you set in the original track. Rename the new track as you please. You can then use iTunes to paste the lyrics to this song clip.
    The negatives of this approach are that it requires synchronization with iTunes, requires storage of the text on your computer as well as your iPod, requires the creation of fake songs in your Library, and cannot be used while a song is playing (unless the song you are listening to is the song that has the text you want to read in its lyrics).
    Advantages are that this method does not require any editing of the text regarding linebreaks, and this method allows playlists to be used to organize the notes.
    While all of these methods work, none of them are completely ideal. If Contacts could be stored in hierarchical folders then that method would be pretty good.
    Are there any other alternatives that people have found to work well to work around this iPod limitation of 1000 max notes of 4000 max characters?
    Regards,
    Brendan

    The iPod shuffle is a music player. The iPods with screens have always been more than that. If the iPod didn't have a calendar, contacts, and notes I wouldn't have considered buying one. Music playing is nice, but I certainly didn't want to carry around multiple devices needlessly. The iPod and a simple cell phone are enough. When the iPhone comes out maybe I'll be down to one device.
    As for the Palm, having been a Newton user at the time I was never impressed with anything about Palm except its size. The same people who bought cheap PC's instead of Macs bought cheap Palms instead of Newtons. Quantity rather than quality won out.
    Apple learned from that and made the iPod a good size to begin with, otherwise it might have suffered a similar fate.
    The only PDA capability the iPod lacks is the ability to edit its content independently of the computer. That would be handy, but it turns out hasn't been a critical need for me. More often than not I need to look something up not change something while away from my office. There is a good side to this though, if I lost the iPod I would not have to worry a bit about losing any Contacts, Calendar events, or Music. Notes though, well that is a different matter, those I backup.
    I guess one person's music player is another person's PDA.
    Regards

  • LP 10 support scala tuning files with more than 12 notes? Does it support octaves larger or smaller than 2/1?

    LP 9 limits the amount of notes in an octave to 12 and the octaves must be 2/1 as far as I know.
    This makes using exotic scales like 31tet or Wendy Carlos Alpha/Beta/Gamma scales impossible.
    The only reason I'd upgrade to LP 10 at this point is if they've fixed that... and the many bugs in LP 9.

    The main issue you are having is that you are using a 32 bit OS. The memory limitations for a 32 bit OS is 4G. If memory is serving me, the way linux allocates memory in a 4 GB system is that it divides it into 4 different chunks. 1G for the kernel, 1G for user processes (aka database instance), 1G for libaries, and the last G I can't remember right now. In essense you have 1G of memory to play with for user processes. You can relink the oracle executables to load lower into memory to give you more space for user apps, but I think the limit here is somewhere around 1.8G. To use more than 4G of memory you need to use either hugemem, or I believe there is another method. You would need to look at the RH doc on how to do this. Is it an option to use the 64bit version of RH? This would eliminate this problem altogether.

  • Entry not allowed in service PR

    Hi experts,
    I had make "service activity", "Quantity" & "Gross price" fields mandatory in services tab of service PR.
    Now at the time of creation of service PR after entering the service code in the "Services" tab & pressing enter key; system is giving error message " Please maintain service quantity ". By the same time system is not allowing the entry in quantity field as all the fields of "services" tab are grayed out (Disabled).
    Now in second case
    If i press enter key after service activity & Quantity entries system gives error message " Please maintain all mandatory fields ". By the same time system is not allowing the entry in gross value field as all the fields of "services" tab are grayed out (Disabled).
    So once i recieved error in the entry of services tab of PR at the time of creating PR all other fields are getting grayed (disabled).
    Please provide solution so that i can enter the required fields of PR after getting error.
    Thanks,
    Harshal

    Thanks Arminda,
    I had checked the customization setting. I am facing the problem in the development system. Customization settings are same in development & Quality system.  I am not facing the problem in the Quality system, it is coming in only development system.
    Is there any other setting required?
    Regards,
    Harshal

  • Work around for adding more than 1000 notes

    I'm trying to load my bible onto my iPod and it consists of 1823 notes. Is there any what to increase the default number of notes that the iPod can accept? Hack...?

    I have the same problem. I don't see the use of having a bible with only part of the Old Testament.
    Can anyone suggest a hack or other setting to override the iPod notes limit?
    It would be muc appreciated!
    I have a 30GB 5th Generation Video iPod.

  • More than 5 aliases allowed?

    I have 5 Mail Aliases. Is that the maximum? Following Help, I went to Mail> Preferences> Accounts> .Mac>Accounts. There are supposed to be + and - buttons. But nothing shows. Not grayed out. Nothing at all.

    Yup. Five aliases per dot Mac account:
    http://docs.info.apple.com/article.html?path=Dotmac/Mail/en/mac53.html

  • Select statment using FOR ALL ENTRIES  not allow to do sum,

    Hi All,
    SELECT DELIV_NUMB
           SUM( GRS_WGT_DL )
           UNIT_OF_WT
      FROM /BIC/AGSSD000600
      INTO TABLE I_GROSS
      FOR ALL ENTRIES IN I_LAYTWO
      WHERE DELIV_NUMB = I_LAYTWO-DELIV_NUMB
      GROUP BY DELIV_NUMB UNIT_OF_WT.
    While compiling it shows the error
    The addition "FOR ALL ENTRIES" excludes all aggregate functions with
    the exception of "COUNT( * )", as the single element of the SELECT
    clause.
    Please give some solution to do sum
    with regards,
    Thambe .

    You could just select all entries into an internal table and then loop through and use COLLECT or similar to get your sum values.
    Gareth.

  • No more than 1 sessions at a time are allowed. Please wait until open sessions expire.

    I have been unable to log into my Actiontec MI424WR router this week, The router returns the message "No more than 1 sessions at a time are allowed. Please wait until open sessions expire." every time I try to log in. This has been going on for days.  Even pulling the power to reboot it did no change.  I'm the only user in the household that would log into it, so I don't understand how this could occur.  How can I get in?
    GLN2

    I really don't want to do a hard reset as I have a handful of custon port forwarding rules that I had created. I'm not a wiz at that, so it would take me too much time to re-create!  I may have no choice. Next time I can get in I will try the backup of the config file. I hope it contains the port forwarding rules.
    The backup function should work fine, I have used it to save my Steam port  forward rules to my hard drive, after a pin hole reset I was able to restore successfully. I did configure mine to 1 session & ALWAYS   logout when I am done.  I have never had any problems logging into the router. But in your case you may need more than 1 session allowed.
    Are you using a native or 3rd party app to remember your router ID/password? IF you are do not do this, you are "defeating" the built in security of the router
    If a forum member gives an answer you like, please give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem. Thanks !!!
    http://forums.verizon.com/t5/Verizon-net-Email/Fix-for-Missing-Inbox-sent-folders-etc-with-Internet-Explorer-11/m-p/647399

  • Report with more than 600 kb image - BO Server getting Out Of memory Error

    Hi,
       We have a report which displays images and size is above 600 KB.We are getting an "Out Of memory" Error while previewing this report in Business Object Server.
    In another situation we tried by giving a dynamic path to the OLE object, but the report is not showing error. We are not able to view the image whose size is more than 600KB
    Notes: 1. Image is stored as a BLOB  in Oracle Database
               2. Connection used inside the report is OLEDB
               3. UNIX Environment
    Regards,
    Sathish

    Please re-post if this is still an issue to the Business Objects Forum or if you have a valid support contract create a case on line.

  • Authorization on more than 5 computers

    I am trying to find a way to authorize more that five computers. Even when I try to de-authorise on of the computers I don't use any more, I am not allowed to do it until a date next year. Is there any way around this?
    Thanks
    Bill

    You need to go to that computer, either physically or through Virtual Network Computing, and individually deauthorize it, or click here and request assistance.
    (71239)

Maybe you are looking for