Why "You do not have authorization to display company codes" ? Thanks

Hello,
Using the Tutorial BAPI which comes with the JCO Tutorial,I just wanna call the first function.
When I run the code, it display "You do not have authorization to display company codes".
Could any body please help me to explain why?
Thanks a lot
BELOW IS THE CODE:
package com.sap.slc.teamweb.test;
import com.sap.mw.jco.*;
public class TestBapi1 extends Object {
    JCO.Client mConnection;
    JCO.Repository mRepository;
    public TestBapi1() {
        try {
            // Change the logon information to your own system/user
            JCO.createClient("001", // SAP client
              "<userid>", // userid
              "****", // password
              null, // language
              "<hostname>", // application server host name
              "00"); // system number
            mConnection.connect();
            mRepository = new JCO.Repository("SAPJCO", mConnection);
        } catch (Exception ex) {
            ex.printStackTrace();
            System.exit(1);
        JCO.Function function = null;
        JCO.Table codes = null;
        try {
            function = this.createFunction("BAPI_COMPANYCODE_GETLIST");
            if (function == null) {
                System.out.println("BAPI_COMPANYCODE_GETLIST" + " not found in SAP.");
                System.exit(1);
            mConnection.execute(function);
            JCO.Structure returnStructure = function.getExportParameterList().getStructure("RETURN");
            if (!(returnStructure.getString("TYPE").equals("") || returnStructure.getString("TYPE").equals("S"))) {
                System.out.println(returnStructure.getString("MESSAGE"));
                System.exit(1);
            codes = function.getTableParameterList().getTable("COMPANYCODE_LIST");
            for (int i = 0; i < codes.getNumRows(); i++) {
                codes.setRow(i);
                System.out.println(codes.getString("COMP_CODE") + '\t' + codes.getString("COMP_NAME"));
        catch (Exception ex) {
            ex.printStackTrace();
            System.exit(1);
        try {
            codes.firstRow();
            for (int i = 0; i < codes.getNumRows(); i++, codes.nextRow()) {
                function = this.createFunction("BAPI_COMPANYCODE_GETDETAIL");
                if (function == null) {
                    System.out.println("BAPI_COMPANYCODE_GETDETAIL" + " not found in SAP.");
                    System.exit(1);
                function.getImportParameterList().
                setValue(codes.getString("COMP_CODE"), "COMPANYCODEID");
                function.getExportParameterList().
                setActive(false, "COMPANYCODE_ADDRESS");
                mConnection.execute(function);
                JCO.Structure returnStructure = function.getExportParameterList().getStructure("RETURN");
                if (!(returnStructure.getString("TYPE").equals("") ||
                returnStructure.getString("TYPE").equals("S") ||
                returnStructure.getString("TYPE").equals("W"))) {
                    System.out.println(returnStructure.getString("MESSAGE"));
                JCO.Structure detail =
                function.getExportParameterList().
                getStructure("COMPANYCODE_DETAIL");
                System.out.println(detail.getString("COMP_CODE") + '\t' +
                detail.getString("COUNTRY") + '\t' +
                detail.getString("CITY"));
        catch (Exception ex) {
            ex.printStackTrace();
            System.exit(1);
        mConnection.disconnect();
    public JCO.Function createFunction(String name) throws Exception {
        try {
            IFunctionTemplate ft = mRepository.getFunctionTemplate(name.toUpperCase());
            if (ft == null)
                return null;
            return ft.getFunction();
        catch (Exception ex) {
            throw new Exception("Problem retrieving JCO.Function object.");
    public static void main(String args[]) {
        TestBapi1 app = new TestBapi1();

Hi Mao,
R/3 comes with some predefined Company Codes and we also
can define our own Company Codes.
visit this link this may help you.
http://help.sap.com/saphelp_erp2004/helpdata/en/8e/1a5217171311d28e1d080009b6ab29/frameset.htm
Regards,
Narinder Hartala

Similar Messages

  • You do not have authorization to extract from DataSource ZZ_TD_EBAN COMPONE

    Hi,
    Iam facing the problem As
    You do not have authorization to extract from DataSource ZZ_TD_EBAN COMPONENT.
    ERROR IN SUBSTEP
    ERROR IN SUBSTEP
    Error reading the data of InfoProvider ZDP_VIRT..
    I had created a Virtual Infoprovider. and taking the Dat source ZZ_TD_EBAN.
    done the Trasf and DTP. for data source to cube. which was bulit in BI7..
    i can see the flow AS Source system- datasource- virtual provider.
    for virtual provider at run time it picks the data  from source.
    But when i rum the query on this VP iam getting error     as
    You do not have authorization to extract from DataSource ZZ_TD_EBAN COMPONE
    even if i chek data at virtual provider level byclicking  display Data..
    after selecting the fields  once i execute . there aso iam facing the same error. as
    You do not have authorization to extract from DataSource ZZ_TD_EBAN COMPONENT.
    Once i get in tthe error.. i can see the below msg.. but even though not able to solve .. i need your assistence.
    You are not authorized to extract from DataSource ZZ_TD_EBAN in application component: MM .
    System Response
    The authorization check was performed with the following field values:
    DataSource: ZZ_TD_EBAN
    Application component: MM
    Subobject: DATA
    Activity: 03
    Procedure
    To be able to extract from the DataSource, you need authorization for authorization object S_RO_OSOA (authorizations SAPI-DataSource) with the field values specified above.
    Procedure for System Administration
    There is a role template S_RO_OSOA_TMPL (DataSource (OSOA) Display/Maintain/Extract) available that contains the authorizations to display, change and extract all DataSources.
    Pls help mewith your valuable answer.

    Hi ,
    As given in your error message that S_RO_OSOA authorization object is missing . You need to include this auth object in the ID from which you are extracting the data using the TCODE : PFCG . You can ask the basis person to do so for you .
    When you run any report on a virtual infoprovider , you need to give the authorization of the DTP & the transformations apart from your cube and datasource in PFCG so that it can display the output in the report . This setting is only necessary for virtual cubes.
    You can always check the missing authorizations in tcode : SU53 .
    Hope the above reply was helpful.
    Kind Regards,
    Ashutosh Singh

  • Service Desk: Error in local message system: You do not have authorization

    Hello experts,
    i'm configuring support desk scenario. I think all is fine, but, when i try to create a message from satellite (R3 46C) to my SOLMAN the following error appears:
    Error in local message system: You do not have authorization to create a notifica Message was not created. (Message no. B~ 088)
    The user i use to create the message has the following roles:
    SAP_SV_FDB_SUPPORT_LINE_ADMIN
    SAP_SV_FDB_SUPPORT_LINE_LEVEL1
    SAP_SV_FDB_SUPPORT_LINE_LEVEL2
    Z_RFC
    and SAP_ALL SAP_NEW profiles.
    Anyone knows where is the problem?
    Regards
    Carlos Calle

    Hi Carlos,
    Role that allows processing messages is SAP_SUPPDESK_PROCESS. However from what I have understand, once End User enters and submits the message, he/she cannot edit the message anymore. Probably an email will be generated to him/her to notified of the message creation and for futher updates. I think end user should not be required to logon to Solution Manager. Key User i.e. helpdesk or SAP support staff will process(edit/change) the message instead.
    If you want something else, I think you need to create a customise role maybe from SAP_SUPPDESK_DISPLAY or PROCESS and change the authorization values.
    The below note contains latest authorization info.
    Note 834534 - SAP Solution Manager roles in Release 4.0
    Experts,
    Correct me if I am wrong.
    Regards,
    Annie

  • You do not have authorization to Send or Compare a notification / DNO031

    Hello Experts,
    i want do send a message from my Service Desk to SAP:
    -> Edit Message
    -> Action -> "Send message to SAP"
    -> Save
    But the following Message occours:
    You do not have authorization to Send or Compare a notification
    Message no. DNO031
    All requirements are done (AISUSER, AISAPCUSTNOS, ... )..
    My SAP-User have all permissions: SAP_ALL, SAP_NEW, and RFC-Permissions..
    My Oss-User have all permissions, too.
    Whats the reason? can anybody help me?
    Thanks
    Benjamin

    Hi Benjamin,
    I have the same error "You do not have authorization to Send or Compare a notification / DNO031".
    I also activated the BADI you mentioned but it still didnt' work for me so I have now deacivated it and got the same error.  Are you able to provide any details of what you changed to make it work?
    Any help is much appreciated
    Kind Regards
    JoJo

  • You do not have Authorization to read object 'xyz' Authorization Object

    Hi,
         I am getting the following warning message while executing the query "You do not have Authorization to read object 'xyz' Authorization Object".
         I created an Authorization object.Assigned it to the role and assigned the user to the role.
    Thanks

    Hi,
      I'm getting the same message, please if you find the origin of it, please let me know, If I find it, I'll let you know, ok?
       Thanks!!

  • RSPLAN - You do not have authorization for InfoCube

    Hi Friends,
    I have SAP_ALL and SAP_NEW access .
    I can access RSPLAN and can Start Modeler.
    I could see the Info Provider Selection(webpage).
    When I click START I get list of INFOPROVIDERS List.
    But When I select any of them.....
    I get a message on the top like "You do not have authorization for InfoCube 0RSTT_C02".
    Every time I select different object respectively it is looking for different authorization.
    Any help is appreciated....
    Thx
    James

    Hi Lucimar and Bindu,
    We are on BI 7 System.
    There are no missing authorizations from SU53.
    We have also traced using ST01 Authorization Check. It doesn't really point show any missing authorizations.
    On using the new authorization concept(RSECADMIN), Im not familier with it.
    Also we have found a useful note 913852, But this code correction is already existing in the system. And I can't find this support pack(SAP_BW_VIRTUAL_COMP) on the Marketplace.
    At the end the bug is still out there....we have to kill it....
    Come on folks post your thoughts....

  • I downloaded Real/Player. When I tried to play clip got msg: You do not have authorization to update this copy of Real/Player, R/P is op. on locked disc. Have no idea what to do?

    I just downloaded Real/Player to my SnowLeopard Mac OS X version 10.6.8 dual core processor intel core 2.16 GH. 2.5 GB.  I downloaded and tried to play a clip from the web.  I received a message:  YOU DO NOT HAVE THE AUTHORIZATION TO UPDATE THIS COPY OF Real/Player.  Real/Player IS OPERATING ON LOCKED DISC.  I'm new at navigating on a Mac.  I would appreciate any help I could get for this or any beginner tutorials out there?

    BDAqua,
    Ihaven't replied because I've been ill.  Thanks for your ongoing support, this is very frustrating being almost computer illiterate.
    Here the link to the original Real Player download http://http://eu.real.com/?mode=rp_mac.  I uninstalled all Real Player Utilities and files on my hard drive and downloaded it again.  I cannot get a clean copy.  The clips I downloaded are still there and so is the problem, no audio, no video.  I opened up the console and it's like reading a different language, literally!  I know I'm taking a huge liberty but perhaps you can find something in the errors that will help (I thank you in advance this gives you any clues)
    2/27/13 1:50:41 PM
    CleanMyMacHelperTool[28323]
    CleanMyMacHelperTool started as volume cleaner with cleanTrashes 1 cleanMacOSJunk 1 cleanWinJunk 1
    2/27/13 1:50:41 PM
    CleanMyMacHelperTool[28323]
    Mounted devices (
        "/Volumes/RealPlayer"
    2/27/13 1:50:41 PM
    CleanMyMacHelperTool[28323]
    DiskUtilities (
        "com.google.Chrome",
        "com.apple.TextEdit",
        "com.apple.Preview",
        "com.microsoft.Excel",
        "com.apple.Stickies",
        "com.apple.Console",
        "com.apple.mail",
        "com.apple.AddressBook",
        "com.apple.QuickTimePlayerX",
        "com.adobe.GoLive",
        "com.apple.SystemProfiler",
        "com.apple.finder",
        "org.mozilla.firefox",
        "com.apple.iCal",
        "com.apple.Safari",
        "com.apple.iTunes",
        "com.adobe.Reader",
        "com.microsoft.Word"
    ) diskUtilityIsRunning 0
    2/27/13 1:50:41 PM
    CleanMyMacHelperTool[28323]
    Wont clean /Volumes/RealPlayer because disk image
    2/27/13 1:50:41 PM
    CleanMyMacHelperTool[28323]
    Wont clean mounted devices.
    2/27/13 1:50:41 PM
    CleanMyMacHelperTool[28323]
    CleanMyMacHelperTool exited...
    2/27/13 1:50:42 PM
    DiskImages UI Agent[28316]
    *** -[NSMachPort handlePortMessage:]: dropping incoming DO message because the connection or ports are invalid
    2/27/13 1:50:42 PM
    [0x0-0xa38a38].com.apple.DiskImageMounter[28308]
    2013-02-27 13:50:42.220 DiskImages UI Agent[28316:903] *** -[NSMachPort handlePortMessage:]: dropping incoming DO message because the connection or ports are invalid
    2/27/13 2:24:54 PM
    Mail[5714]
    Unable to parse date ([Date])
    2/27/13 3:09:14 PM
    RealPlayer[28333]
    copyright UNIMPLEMENTED!
    2/27/13 3:09:14 PM
    RealPlayer[28333]
    *** Assertion failure in -[NSTextFieldCell _objectValue:forString:errorDescription:], /SourceCache/AppKit/AppKit-1038.36/AppKit.subproj/NSCell.m:1531
    2/27/13 3:09:14 PM
    RealPlayer[28333]
    HIToolbox: ignoring exception 'Invalid parameter not satisfying: aString != nil' that raised inside Carbon event dispatch
    0   CoreFoundation                      0x982c06ca __raiseError + 410
    1   libobjc.A.dylib                     0x97dc95a9 objc_exception_throw + 56
    2   CoreFoundation                      0x982c03f8 +[NSException raise:format:arguments:] + 136
    3   Foundation                          0x993916e7 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 116
    4   AppKit                              0x91d1c218 -[NSCell _objectValue:forString:errorDescription:] + 183
    5   AppKit                              0x91d1c159 -[NSCell _objectValue:forString:] + 56
    6   AppKit                              0x91d1c0ae -[NSCell setStringValue:] + 56
    7   AppKit                              0x91de2b64 -[NSControl setStringValue:] + 126
    8   RealPlayer                          0x00032341 0x0 + 205633
    9   AppKit                              0x91cf321c -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1646
    10  AppKit                              0x91cf11a4 loadNib + 257
    11  AppKit                              0x91cf059c +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 228
    12  AppKit                              0x91cf04ad +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 158
    13  AppKit                              0x91cf03f8 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 383
    14  RealPlayer                          0x000325f2 0x0 + 206322
    15  RealPlayer                          0x0003261b 0x0 + 206363
    16  RealPlayer                          0x00031ac1 0x0 + 203457
    17  AppKit                              0x91ec2d5b -[NSTabView selectTabViewItem:] + 1274
    18  RealPlayer                          0x000314f9 0x0 + 201977
    19  AppKit                              0x91d88f23 -[NSWindowController _windowDidLoad] + 525
    20  AppKit                              0x91d16f44 -[NSWindowController window] + 123
    21  AppKit                              0x91f7bdbc -[NSWindowController showWindow:] + 36
    22  AppKit                              0x91d71a26 -[NSApplication sendAction:to:from:] + 112
    23  AppKit                              0x91d718d9 -[NSMenuItem _corePerformAction] + 435
    24  AppKit                              0x91d715ca -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 174
    25  AppKit                              0x91d714b6 -[NSMenu performActionForItemAtIndex:] + 65
    26  AppKit                              0x91d71469 -[NSMenu _internalPerformActionForItemAtIndex:] + 50
    27  AppKit                              0x91d713cf -[NSMenuItem _internalPerformActionThroughMenuIfPossible] + 97
    28  AppKit                              0x91d71313 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 336
    29  AppKit                              0x91d65a55 NSSLMMenuEventHandler + 404
    30  HIToolbox                           0x968edc2f _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1567
    31  HIToolbox                           0x968ecef6 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 411
    32  HIToolbox                           0x9690f7f3 SendEventToEventTarget + 52
    33  HIToolbox                           0x9693be87 _ZL18SendHICommandEventmPK9HICommandmmhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 448
    34  HIToolbox                           0x96960b90 SendMenuCommandWithContextAndModifiers + 66
    35  HIToolbox                           0x96960b47 SendMenuItemSelectedEvent + 121
    36  HIToolbox                           0x96960a5d _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 152
    37  HIToolbox                           0x96930160 _ZL14MenuSelectCoreP8MenuData5PointdmPP13OpaqueMenuRefPt + 454
    38  HIToolbox                           0x9692f8bb _HandleMenuSelection2 + 465
    39  HIToolbox                           0x9692f6d9 _HandleMenuSelection + 53
    40  AppKit                              0x91d5ef96 _NSHandleCarbonMenuEvent + 285
    41  AppKit                              0x91d33b46 _DPSNextEvent + 2304
    42  AppKit                              0x91d32dd6 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    43  AppKit                              0x91cf51f3 -[NSApplication run] + 821
    44  AppKit                              0x91ced289 NSApplicationMain + 574
    45  RealPlayer                          0x0000368f 0x0 + 13967
    46  RealPlayer                          0x000035bd 0x0 + 13757
    47  ???                                 0x00000002 0x0 + 2
    2/21/13 7:28:07 AM
    CleanMyMacHelperTool[21217]
    Wont clean /Volumes/DivX for Mac because disk image
    The above is repeated several timees.
    If I could figure out thes tring of messages or errors  in computer language specifically related to Real Player, I could narrow the errors down from the search box.  Because there were many other messages in the console.

  • Why you do not have adobe flash players ? I will move for sumsung bc of this reason.

    Guys i prefer to move to sumsung bc i always face a problem bc apple do not support adobe flash player and realy this company is stuborn as **** and fir sure they have issues with abobe and they r fu....ing the users .   Aplle if you dont want to solve this problem with adobe tell us bc we fade up bc mane website we can not open it and also we have videos issues.

    Ok Great Allan,
    thanks for the articles they explain with details ok i agree with you in many points about the flash player
    but still inconvenient for me using iphone and my ipad and to get surprise many videos i can not watch them on the devices.
    really you guys should find solution and one more issue with apple it's really hard to install images or videos to the pc or opposite. i bought sumsung galaxy note and really i stoped using my iphone after that and i always love Aplle but i feel to much presure from your side by using itunes and stupied sync which many times could lose your apps and re-download.  as i m user i do not want to compicate my life where ever you guys make it easier for us we will be more happy from Apple.
    By the way many friends i know they switch from iphone to sumsung bc of this reason so please try to make it easy bc we love Apple hardware.
    Best regards
    Abdul Korek

  • Error : You do not have authorization

    Hi Seniors,
    While creating templates on TMS , I am getting authorization error....
    please suggest..

    Hi Luke,
    In addition to above, one more thing I would like to ask as I am following your blog for configuring Trex with respect to Talent management.
    http://scn.sap.com/community/erp/hcm/blog/2010/09/20/setting-up-netweaver-embedded-search-trex-for-sap-ehp4-talent-management
    I have run this Report “ESH_ADM_INDEX_ALL_SC” with product – Ea-hrgxx and Schedule Initial Indexing ticked as per your recommendation.
    Then I move to ESH_COCKPIT, the connectors should be in status Active at final.
    But I am getting only this connector “ HRTMC_AES_ELEMENTS” as Active  others 31 Connectors are in error status. I am attaching image of errors:
    Regards,
    Ritu

  • Why does iphone 5 not use whole screen viewing for videos also when using iplayer app it only works on iphone 4 screen settings. why can we not have whole screen displaying image.

    I have a iphone 5, I was dissapointed that when watching iplayer the screen settings are same as iphone 4 so end user has no joy enjoying the big screen , I have noticed youtube does the same,

    It hasent been updated to support iphone 5 screen size yet, it will come in time.

  • Do not have authorization for access with activity 03 on the InfoProvider

    Hi,
    I have developed new cube & ODS and created new Web Templates based on queries on these Infoproviders.
    I have created new role and adde these templates to menu of this Role.
    In Authorization profile i have used following Authorization objects.
    S_RS_BTMP
    S_RS_COMP
    S_RS_COMP1
    S_RS_ICUBE
    S_RS_ODSO
    In all these objects i hace selected activity 3.
    Infoarea used for these new Cube & ODS is also added and for cube & ODS selection ihave used * (full authorization)
    But when user is opening the web template it is showing error messahe
    "You do not have authorization for access with activity 03 on the InfoProvider ZICXEROX."
    Is there is any authorization object missing in the profile?
    Regards
    SSS

    Dear SSS,
    Have the same problem ' You do not have sufficent  authorization for the infoprovider'. so could you please send the document from my mail id
    [email protected].......
    plaase very very urgent
    Regards
    Ahmed.

  • Authorization object for company code and profit center together

    Hi all,
    Please help me with the following requirement..
    Company Code = ABCD
    Profit Center = *
    The user is authorized to run the report for company code ABCD only but any profit center within this company code.
    2       Company Code = *
    Profit Center = WXYZ
    The user is authorized to run the report for Profit Center WXYZ only but any company code.
    3       Company Code = *
    Profit Center = *
    The user is authorized to run the report for any company code and profit center.
    The same user could have 1 and 2. So, in this case he should be able to run a report for the total inventory of company code ABCD, and a report for total inventory of profit center WXYZ only regardless company code.
    He should not have visibility to other company codes inventory other then profit center WXYZ.
    Regards,
    Raj

    Hi ,
    Anyone please help me..
    Regards,
    Raj

  • You do not have the sufficient authorization

    Hi Experts,
    I am trying to setup Structural Authorization from HCm in BW. I am using 0HR_PA_2 and 0HR_PA_3 extractors to pull the data from HCM in 0TCA_DS01 and 0TCA_DS02. I am able to load the data for both DSO's and Authorizations are generated also via RSECADMIN. 
    The auth relevant info objects are
    0ORGUNIT
    0HRPOSITION
    0EMPLOYEE
    But when i run the query for test user it is giving the error "You do not have the sufficient authorization". Our security guy setup everything for the test user at the back end. Can anyone help me out to fix this problem?

    Hi Shehzad
    Kindly check the below details and confirm.
    1. Check auth objects S_RS_COMP, S_RS_COMP1, S_RS_AUTH and S_RS_DSO as you mentioned data is coming from DSO.
    2. Now check the value maintained in S_RS_AUTH and copy that value and go to RSECADMIN and in maintenance screen put that value click on display and check whether these relevant auth is maintained (this you can also check in rsecval table).
    3. If every thing is fine then go to tcode - rsecadmin-> Analysis-> Check "Authorization Log" ID and put test user Id there and click on run RSRT this will take you to RSRT scrren and there you can Simple RUN or run with debug also.
    Now If error came of No authorization go back and check log in that you will get to know the auth obj which is missing in analysis object.
    Suggestion: Simultaneously run ST01, so that you will also get auth obj if any is missing as there may be possibilty of multi-cube so for that there is requirement of some other object.
    Hope this will help.. Else please share trace results and role objects which is maintained.
    One more IMP point if new query or report is created. it will take some time to synch for other users even 0BI_ALL will not work for that user, need to pass that particular values in analysis object which is required.
    Thanks
    Bhupinder Singh Arora

  • I'm unable to update Firefox. operation can't be completed because you don't have permission to access some of the items. I own the computer, why would I not have permission? This has happened other times and I don't know what it means.

    I just wanted to update firefox and it won't let me. I drag the icon into applications, then a window ask me if I want to replace older version. I click yes and the window mentioned above appears. I purchased this computer new, I'm the only owner. Why would I not give myself permission to do something on my own computer.

    If you get an error message that you do not have sufficient permissions or have problems with updating then easiest is to download the full version and trash the currently installed version to do a clean install of the new version.
    Download a new copy of the Firefox program and save the DMG file to the desktop
    * Firefox 4.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Firefox 3.6.x: http://www.mozilla.com/en-US/firefox/all-older.html
    * Trash the current Firefox application to do a clean (re-)install
    * Install the new version that you have downloaded
    Your profile data is stored elsewhere in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder], so you won't lose your bookmarks and other personal data.

  • "You do not have sufficient access to your computer " Why??????

    Why am I getting this error connecting from Vista to a shared printer on my iMac under 10.5.5?

    Bottom line? Bonjour doesn't work with Vista. Manually install the printer in Vista the old fashioned way.
    I experienced the same general problem and here's exactly what I did to get around that message. Hopefully this is helpful to anyone who's facing a similar situation.
    MY SETUP: installing a hp LaserJet 1012 that's tethered to a wireless Time Capsule (home network) on a virtual VISTA platform running within Parallels 4.0.3810 on an iMac OS 10.5.6.
    THE PROBLEM: WinXP (also virtual) connected to the printer through BONJOUR FOR WINDOWS without any problems. However, doing the same in Vista resulted in a last step termination of installation with the following message from Vista: "You do not have sufficient access to your computer to connect to the selected printer." Lovely.
    Turns out, according to Microsoft (link: support.microsoft.com/kb/946394/en-us Help and Support Article ID: 946394 - Last Review: January 24, 2008), the problems is due to "the Hewlett-Packard (HP) print driver uses an HPBmini.dll file ("HP Mini Installer") whose version is earlier than 1.0.0.13."
    My workaround was to simply install the network printer manually via ~ (the following are the choices that I clicked on in VISTA)
    Vista Control Panel > Hardware and Sound > Printers > Add a printer >
    Add a network, wireless or Bluetooth printer >
    The printer that I want isn't listed >
    Add a printer using a TCP/IP address or hostname >
    CHOOSE - Device type: Autodetect
    INPUT - Hostname or IP address: "Time-Capsule"
    (which is the specific hostname in my case, the hostname can be found by going to OS X System Preference > Print & Fax > click & highlight the printer installed on the local network in OS X and look for the hostname after "Location:". Remember, Windows do not do spaces, so if there are any spaces in your hostname be sure to substitute a dash "-".
    SELECT - "Query the printer and automatically select the driver to use" >
    Device Type > Standard | Generic Network Card > Install the printer driver* >
    (*Here's the tricky step, since you don't want to use an old driver which would bring up that old insufficient access message, but you do have some options:
    a) you have a known VISTA COMPATIBLE driver from the manufacturer (net downld);
    b) the "Add Printer Wizard" window may contain a driver for your specific printer or a similar printer. Also, try the "Windows Update" button to refresh the choices if you can't find it the first time; and finally,
    c)"Generic" is a legitimate choice in the Manufacturer window if you can't find any better options.)
    From there, it's just Next > Next > and choose to share printer, etc. to finish up.
    Luckily, I got through to "Print a test page" and it all works without the annoying "insufficient access" message.
    Best of luck to you.

Maybe you are looking for

  • Very nice and highly functional iPhone 4 case providing total protection

    Marware C.E.O. Flip-Vue Leather case for iPhone 4 The C.E.O. Flip-Vue™ for iPhone® 4 is a slim, genuine leather flip-top holster that provides the perfect balance between total protection and convenient access. The leather and suede design is unique

  • Retail Enterprise Services not in service registry

    Hello gurus, I'm at the latest version of ECC(retail) and PI and I activated ES for retail.  proxies are there and all the prereq swc are installed. However, when I checked in SOA and service registry, I couldnt find the services!! how will i be able

  • TM backs up excluded folders - fixed in 10.6.2?

    When I used Snow Leopard (10.6 and 10.6.1) I found that Time Machine backed up folders that had been excluded - in Options "Do not back up". Other people have also reported this problem. Because off this - and other problems - I reinstalled Leopard.

  • COREid - where is the Multi-Language on/off setting stored

    Hi folks, I need to find out where the on/off setting for Multi-Language support is stored, whether it is in the LDAP directory or in a file. I know I can change it in the GUI, but I am attempting to fix an automation script so that is not a good opt

  • Compiling an applet - error messages

    Hello I would appreciate some assistance on interpreting these error messages. I am unsure as to why MS-DOS points to JSObject being a problem, and I'm unsure about what the final two comments mean. Many thanks for any advice. navdeluxe.java:9: canno