Javascript Access Denied in WebDynpro Application SP11

Hi all,
I'm developing a WebDynpro application that is published in EP as a WebDynpro IView.
Deploying the application and running as standalone (out of EP) this works fine but when I access that by EP I get JavaScript errors in DropDowns.
I know that this error is know as an bug of SP11 but I want to know if someone obtain some answer from SAP or do anything to solve this problem.
I already install another server with EP and WEBAS from the last SAP WEBAS installer downloaded from SAP website but the problem already persists.
Server: WEBAS 6.40 SP11
IDE: Version: 2.0.11
Build id: 200503080124
Thanks,
Manoel

Hi
  Refer to OSS Note no : 779659. But even in that case if you are using your own themes there are some display problems in SP11.
In SP10 we had our own theme and we followed the OSS Note. It worked fine. When we applied the Same theme to SP11 it did not work.
There is also another note which says that custom themes are not supported properly. I will try to give you the note number. Maybe that is a problem.
I would advice you to try and use standard themes for your Webdynpro apps. Even if you apply the note you are not going to get proper display in case of SP11. Maybe the problem gets solved in SP12.
regards
ravi

Similar Messages

  • How to access custom JAVA webdynpro application from an iPad?

    Hi,
    We are trying to access custom JAVA webdynpro application from an iPad, but nothing is opening up from the iPad browser.
    What can be the possible reasons for this? Any kind of SICF enablement or opening up of ports in the network?
    Any inputs are welcome!!
    TIA,
    Regards
    Deepthi

    Hi,
    it is possible to show Java Web Dynpro applications on a mobile device in general, but the controls and the ui should be optimized for the mobile device.
    Safari devices are not officially supported so far for Mobile Web Dynpro.
    Supported are Windows Mobile devices and Blackberry devices. I also got some good results with Symbian devices.
    You can find more inforamtion on Mobile Always Connected at:
    ht[http://help.sap.com/saphelp_nwce711core/helpdata/en/7d/28fa3e7cb1d861e10000000a114084/content.htm|http://help.sap.com/saphelp_nwce711core/helpdata/en/7d/28fa3e7cb1d861e10000000a114084/content.htm]
    Best Regards,
    Stefan

  • Access UME from Webdynpro Application

    Access UME from Webdynpro Application u2013 display the user attributes from Webdynpro iview
    How to go for this...??
    Edited by: saurav mago on Sep 1, 2008 6:45 PM

    Hello Saurav,
    Try this:
    import com.sap.security.api.IUser;
    import com.sap.security.api.IUserAccount;
    import com.sap.security.api.UMException;
    import com.sap.tc.webdynpro.services.sal.um.api.IWDClientUser;
    import com.sap.tc.webdynpro.services.sal.um.api.WDClientUser;
    import com.sap.tc.webdynpro.services.sal.um.api.WDUMException;
    try {
         IWDClientUser wdClientUser = WDClientUser.getCurrentUser();
         IUser sapUser = wdClientUser.getSAPUser();
         if (sapUser != null) {
              java.util.Iterator parentGroups = sapUser.getParentGroups(false);
              while (parentGroups.hasNext()) {
                   String parentGroupName = (String) parentGroups.next();
                   if (parentGroupName.equals("GRUP.R3_ROLE_DS.Z:EP_XPTO123")) {
                        return true;
    catch (WDUMException e) {
         e.printStackTrace();
    OBS.: sapUser can be used to access a lot of info regarding the user.
    OBS.: you need to add a reference to "com.sap.security.api.sda", that is in the default SC SAP_JEE, if I well remember.
    Regards,
    Douglas Frankenberger

  • Javascript "Access Denied" when disabling Ctrl+N in an Iframe

    Hello Gurus,
    I have disabled the CtrlN from whole IC WebClient application, however I realized that if we focus on Email Editor (whether Disabled or Enabled) I could still get CtrlN clicked for a new window.
    I tried the usual way as it is an IFRAME but now I am getting error "Access Denied".
    It seems to be a domain relaxing issue to me & I am curious if we have pages from same server why this error is coming.
    Any ideas, thoughts would be appreciated.
    Regards,
    Ankur

    Hello Raja,
    The issue seems to be unresolved. There is no way I could get rid of this error.
    The document relaxing code is there in generated JS file. It seems when an IFRAME is in designmode it couldn't trap events or maybe something like that.
    regards,
    Ankur

  • Access Denied - Cannot download applications

    After purchasing the creative cloud subscription, I've received; 
    Access Denied:  You don't have permission to access ...CreativeCloudInstaller.dmg on this server.
    What do you recommend?
    Thank you.

    Found a fixed link on another thread!
    MAC: http://download.adobe.com/pub/adobe/creativesuite/cs/mac/ApplicationManager7.0_all.dmg
    PC: http://download.adobe.com/pub/adobe/creativesuite/cs/win/ApplicationManager7.0_all.exe

  • Accessing PCD inside WebDynpro application

    Hi Forum,
    I am re-posting the message as I didnt get any answers to my previous message. I need to read the PCD inside my WebDynpro application to get a list of all the Workcenters/Worksets/Roles/iViews in the portal.
    Is it possible to do this? If yes, can someone please point me to the required APIs and the location of required jars that I would need to import?
    Best Regards,
    Vivek

    Hi
    I am not sure if everything is possible or not as you require but getting the roles assigned to the user is possible.
    You can do this by using the code similar to this.
    IUser epUser = null;
                String portalUser = "";
                try {
                     IWDClientUser user = WDClientUser.getLoggedInClientUser();
                     epUser = user.getSAPUser();
                     Iterator roleList=epUser.getRoles(false);
                   if(roleList!=null)
                        while(roleList.hasNext())
                             String strRole=roleList.next().toString();
                             IRole role=UMFactory.getRoleFactory().getRole(strRole);
              catch(Exception e)
    You can explore UMFactory and see if you can meet your requirements.
    For above code you will need com.sap.security.api.jar which you can find in plugins folder of your NWDS installation.
    All the best.
    Regards,
    Ajay

  • Problem regarding BAPI call from a webdynpro applications

    Hi,
      We are trying to call a BAPI in R/3 system from a webdynpro application through the standard method. But we are getting some problems in JCO settings. We already wasted so much time in solving those problems. Is there anyway where i can access BAPI from Webdynpro application.
    Rgrds,
    Anna

    Hello Anna,
      You can do it by using SAP Java Connector API's in the implementation of the Webdynpro application. You can refer to the sample programs for JCO at http://service.sap.com/connectors and download the latest version of SAP JCo in that install those files as per the installation document in the downloaded zip. The downloaded zip contains information about JCo APIs and sample programs.
    Hope this will solve your problem.
    Best Regards,
    Srinivas.

  • WebDynpro application no displayed on other systems

    Hi All..
    We have developed an WebDynpro application using webservices where in the webservice will be used in connecting to the XI server and the rest all the business logic is there is done on XI which will be connecting to the R/3 using an RFC and the data is retrived on to the webdynpro.This has been deployed on to the XI J2EE engine and its running well on the systems where we are having the NWDS but its not working when we are using the same URL in other systems.Its working well on the system where we have NWDS.
    We are having EP and XI servers on different systems.
    URL:http://hostname:port/webdynpro/dispatcher/local/XIWebService1/OrderApp
    Help Me
    Thanks in advance..
    Suma

    Hi Suma,
    Are you getting any error or just a blank page ?
    Did you check wether you can access any other webdynpro application page on other system where NWDS is not available?
    Let me know the details ..
    Nanda

  • Access denied executing Javascript

    Hello all
    I need help please.
    I have programmed a portal application where I have used a Javascript Library (tinyMCE editor). Everything works fine in Internet explorer and Mozilla firefox when I execute it in the portal we use for development. When I execute this same development in the productive machine it works in firefox but in explorer i received a javascript error: Access Denied and the editor doesn´t show properly.
    Please, I need help with this. I don´t know where to look or what to do.
    Any help will be rewarded with points.
    Thanks in advance

    Hi,
    i want to replace the standdard html editor in the Web Page Composer with the tinyMCE. I followed the steps explained in this [document|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f04b5c5d-3fd2-2a10-8ab0-8fa90e3ac162]. When I launch the editor, for example by creating a new paragraph, I see the TinyMCE UI in the popup window but I can't access the functionality. A Javascript Error is also appearing : Access denied... So I tried to locate the error. I copied the source text of the popup window and created a new html file in km-content with the source code. When I am deleting the function call EPCM relaxDocumentDomain everything works fine. So I tried to implement the following code into the function relaxDocumentDomain:
    EPCM.relaxDocumentDomain = function(){
    try {
      if(noDomainRelaxation == 'true') {
          //Don't Relax the domain
    } catch(err)
      var newDomain = this.getRelaxedDomain();
        if( newDomain != document.domain ){
          document.domain = newDomain;
        this.calculateDynamicTop();
    and changed the following code in the tiny_mce.js from
    document . write('< script id=__ie_onload defer src= \ 'java script:"" \ ';> < \ / script>');
    to
    document . write('< script id=__ie_onload defer src= \ 'java script:"" \ ';>noDomainRelaxation = 'true' < \ / script>');
    But that does not work, because the the variable noDomainRelaxation is declared after the check in the relaxDocumentDomain function. Does anybody have an idea how to solve this problem? Is it perhaps possible to set the right document domain in the tinymce itself? Thanks.
    Edit: Problem solved by using the latest TinyMCE Version.

  • Access Denied error while opening the deployed Application

    Hi,
    When I try to open my deployed application I get the following error:
    weblogic.net.http.SOAPHttpsURLConnection
    Im using the following code in my application:
    URL wsURL = new URL(wsLocation + "?command=login");
    So I went ahead and changed my code to this:
    java.net.URL wsURL = new URL(null, wsLocation + "?command=login",new sun.net.www.protocol.https.Handler());
    But I got the following error:
    access denied (java.lang.RuntimePermission accessClassInPackage.sun.net.www.protocol.https)
    Also I believe sun.* packages are not supported anymore on cloud. I think it might be because of this it failed the second time.
    Is there any workaround for this?
    Regards,
    Abhishek

    Access denied indicates the user account uploading the file doesn't have access to the library, or sometimes it means there's already a document in the library with the same name that was never checked in. It's also possible that your template contains
    custom code that tries to do something that is not allowed.
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • RE: Installed "Access Denied" posting. I have same problem and none of the answers have worked. Ownership is blank but application will not accept me.

    RE: "Access Denied" question following install of Firefox. I have same problem. Details follow: I tried opening in Safe Mode which did not work. I have Administrative access. When I click the general tab in properties I get a message that "firefox.exe" does not exist. Neither that file nor any other "install" type of file appears in the Mozilla Firefox directory except for "uninstall". I have downloaded and tried to install seven times from six different sources, including Mozilla, all with the same results. I've also tried a number of solutions from the web for this error message with no greater success. I tried, first, doing an upgrade then deleted the older version of Firefox and have done "install" since. Avast, Malwarebytes and Threatfire have found no malware.
    I have never had a similar problem with Firefox before and I've used it for years. Anyone have any ideas I haven't already tried? I'm tired of using Internet Explorer! RE: troubleshooting information below--Windown will not open the downloaded file.

    These steps are recommended for this error message mentioned:
    [https://support.mozilla.org/en-US/kb/troubleshoot-extensions-themes-to-fix-problems Troubleshooting Extensions and Themes], however it seems like you may need to reinstall Firefox since the directory cannot be found.
    Other solutions to this have been to uninstall and use CCleaner to clean up any old registries. However this will loose data from the profile.
    I am seeing the errors and troubleshooting steps all mentioned here:
    *[http://compinfopro.com/windows-cannot-access-the-specified-device-path-or-file/]
    And it seems the best bet would be to uninstall and reinstall. If you can see the profile folder, it is possible to make a back up of the profile [[Back up and restore information in Firefox profiles]] here.
    For a clean reinstall:
    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from [https://www.mozilla.org mozilla.org] (or choose the download for your operating system and language from [https://www.mozilla.org/firefox/all/ this page]) and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (or open the Firefox menu [[Image:New Fx Menu]] and click the close button [[Image:Close 29]]).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    More information about reinstalling Firefox can be found [[Troubleshoot and diagnose Firefox problems#w_5-reinstall-firefox|here]].
    <b>WARNING:</b> Do not use a third party uninstaller as part of this process. Doing so could permanently delete your [[Profiles|Firefox profile]] data, including but not limited to, extensions, cache, cookies, bookmarks, personal settings and saved passwords. <u>These cannot be easily recovered unless they have been backed up to an external device!</u> See [[Back up and restore information in Firefox profiles]]. <!-- Starting in Firefox 31, the Firefox uninstaller no longer lets you remove user profile data.Ref: Bug 432017 and https://support.mozilla.org/kb/uninstall-firefox-from-your-computer/discuss/5279 [Fx31] Windows uninstaller will no longer offer the option to remove personal data -->
    Please report back to say if this helped you!
    Thank you.

  • Access Denied Web Application with Claims authentication NTLM only when using secondary URL

    I have a SharePoint 2010 server farm with 2 web front ends, an application server and a database server.  Both front ends are internal to
    our network and are not behind a load balancer.
    NOTE THAT I HAD TO SUBSTITUTE hzzp with hzzp so that I had no links in the body of this post since I am not verified
    I setup a new web application called "SharePoint 41171" with:
    Public URL:
    hzzp://testserver1:41171
    Claims authentication
    NTLM only: no forms auth
    No SSL
    New web site "SharePoint 41171"
    New app pool
    New content database
    I create a top level site collection and name mydomain\myusername as the primary site collection admin
    I am able to access this site as expected at
    hzzp://testserver1:41171 with the aforementioned site collection owner id: mydomain\myusername
    I add an alternate access mapping for a secondary URL for this web application in the Intranet zone:
    hzzp://iwatest.mydomain.com
    So my AAMs for the site read as:
    hzzp://testserver1:41171    
    Default     hzzp://testserver1:41171
    hzzp://iwatest.mydomain.com    
    Intranet     hzzp://iwatest.mydomain.com
    When I attempt to log on to
    hzzp://iwatest.mydomain.com with the same user name and password, I get "access denied".
    I can access this site using
    hzzp://iwatest.mydomain.com if I log in as the farm account.  This is the only account that seems to work.
    Side Note: If I create a separate web application without claims - just NTLM and create the same AAMs, I can login fine with the same secondary
    URL and the same user name
    IP address properly maps to this machine.
    I reviewed the ULS logs and find the following:
    10/30/2012 16:20:23.45              w3wp.exe (0x0E78)                      
                    0x1724       SharePoint Foundation              Monitoring                   
                    nasq                        Medium    Entering
    monitored scope (Request (GET:hzzp://iwatest.mydomain.com:80/_layouts/AccessDenied.aspx?Source=hzzp%3A%2F%2Fiwatest%2Emydomain%2Ecom))                
    10/30/2012 16:20:23.45              w3wp.exe (0x0E78)                      
                    0x1724       SharePoint Foundation              Logging Correlation Data     
          xmnv                        Medium    Name=Request (GET:hzzp://iwatest. mydomain.com:80/_layouts/AccessDenied.aspx?Source=hzzp%3A%2F%2Fiwatest%2Emydomain%2Ecom)      
    8f313b5e-8476-4dd4-9abe-0cb6dbe024b6
    10/30/2012 16:20:23.45              w3wp.exe (0x0E78)                      
                    0x1724       SharePoint Foundation              Logging Correlation Data     
          xmnv                        Medium    Site=/          8f313b5e-8476-4dd4-9abe-0cb6dbe024b6
    10/30/2012 16:20:23.45              w3wp.exe (0x0E78)                      
                    0x1724       SharePoint Foundation              General                      
                       8e2s                        Medium 
      Unknown SPRequest error occurred. More information: 0x80070005       8f313b5e-8476-4dd4-9abe-0cb6dbe024b6
    10/30/2012 16:20:23.45              w3wp.exe (0x0E78)                      
                    0x1724       SharePoint Foundation              Monitoring                   
                    b4ly                        Medium    Leaving
    Monitored Scope (Request (GET:hzzp://iwatest.mydomain.com:80/_layouts/AccessDenied.aspx?Source=hzzp%3A%2F%2Fiwatest%2Emydomain%2Ecom)). Execution Time=8.66003919492561   8f313b5e-8476-4dd4-9abe-0cb6dbe024b6
    Basically it tells me that access is denied.  I didnt see anything that stood out here.
    I found this article:
    hzzp://social.technet.microsoft.com/Forums/en-US/sharepointadminprevious/thread/ded9188b-ee03-4ef0-bb50-3ad138110e0c, which pointed me in the direction of ensuring that the portal
    super user and portal reader accounts were properly added to my web application.  I followed the every popular article on doing this:
    hzzp://technet.microsoft.com/en-us/library/ff758656.aspx, but still no luck.  As per the thread, I added the 2 domain accounts to the user policy with appropriate privilege
    and then set them as the super user and super reader accounts via powershell, and yes I did prefix those names with "i:0#.w|mydomain\".  To be exta sure, I repeated this for all web applications on this server with slightly different powershell steps
    depending on wether or not claims was enabled on the web application.
    The Claims to Windows Token Service is running.
    I saw some mention of ensuring that the secure token service is running with a proper application pool account, but we are not running that service
    and I cant imagine what that would have to do with my situation.
    I have deleted and readded the web application and repeated these steps to no better effect.
    I gave the mydomain\myusername full control for the web application through the user policy, ensured that it was indeed the primary site collection
    owner and added it to the default site owners group.  None of this helped.
    I changed the application pool account to the farm account.  No change in behavior.
    Rebooted IIS and the machines many times along the way.
    Further, when I attempt to sign in as a different user after being denied, I get "an unexpected error has occured message.  I found the following
    in ULS:
    10/30/2012 11:19:03.71 w3wp.exe (0x182C)                      
    0x1210  SharePoint Foundation                 Logging Correlation Data                     
    xmnv     Medium               Name=Request (GET:hzzp://iwatest.mydomain.com:80/_layouts/accessdenied.aspx?loginasanotheruser=true&Source=hzzp%3A%2F%2Fiwatest%2Emydomain%2Ecom)
    cc409ec2-4889-42fa-aa7d-9cc4535e4f0e
    10/30/2012 11:19:03.71 w3wp.exe (0x182C)                      
    0x1210  SharePoint Foundation                 Logging Correlation Data                     
    xmnv     Medium               Site=/    cc409ec2-4889-42fa-aa7d-9cc4535e4f0e
    10/30/2012 11:19:03.72 w3wp.exe (0x182C)                      
    0x1210  SharePoint Foundation                 General                      
             8e2s                Medium               Unknown SPRequest error occurred.
    More information: 0x80070005      cc409ec2-4889-42fa-aa7d-9cc4535e4f0e
    10/30/2012 11:19:03.72 w3wp.exe (0x182C)                      
    0x1210  SharePoint Foundation                 Runtime                      
            tkau                Unexpected       System.NullReferenceException: Object reference not set to an instance
    of an object.    at Microsoft.SharePoint.ApplicationPages.AccessDeniedPage.LogInAsAnotherUser()     at Microsoft.SharePoint.ApplicationPages.AccessDeniedPage.OnLoad(EventArgs e)     at System.Web.UI.Control.LoadRecursive()    
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)            cc409ec2-4889-42fa-aa7d-9cc4535e4f0e
    10/30/2012 11:19:03.74 w3wp.exe (0x182C)                      
    0x1210  SharePoint Foundation                 Monitoring                        
    b4ly                Medium               Leaving Monitored Scope (Request (GET:hzzp://iwatest.mydomain.com:80/_layouts/accessdenied.aspx?loginasanotheruser=true&Source=hzzp%3A%2F%2Fiwatest%2Emydomain%2Ecom)).
    Execution Time=22.5439266722447           cc409ec2-4889-42fa-aa7d-9cc4535e4f0e
    By the way, this occurs for the farm account also after a successful login and an attempt to sign in as a different user.
    Any help would be greatly appreciated

    Thanks spadminspadmin:
    I have, though I am not sure that what I've added there is correct:
    The URL that I am trying to use to access the web application's IIS site is hxxp://iwatest.mydomain.com.  I added a binding to the IIS site as follows:
    Type    Host name                      port        IP address
    http     iwatest.mydomain.com     41171     *
    Is that correct?

  • Access denied error for Java application on 2630

    Hello!
    I have bought a 2630 recently. Now I have installed a small Java application that tries to store some data in the phones memory. However, each time the application tries to do so, I get a "java.lang.SecurityException Access denied" message and the application states that it could no save its data. I have set the security settings for that particular application so that the phone should ask before each access to the file system. In fact, before I get the error message, the phone asks whether the application may write data to the file system. But still answering that question with "yes" I get the Access denied error message. Now I am puzzled. By the way, the application uses JSR-75 which the 2630 should support.
    Anybody any ideas?
    Regards,
    Volker

    RESOLVED!
    I was able to create file from java application on Nokia 2630. Here is how:
    1. root C:/ is mapped to folder "Downloads"
    2. The folders does not show with their names
    3. there are 2 folders in C:/ predefgallery and predefjava
    4. in predefgallery there are several predefined folders e.g. predefrecordings is one of them
    5. I am able to create file inside predefrecordings, creating file in upper folders is denied
    6. user created folders aro NOT shown at all
    7. I had to manualy confirm reading of data many times and writing data once.
    I hope this can help to other Nokia users since I did not find this anywhere.
    Luke

  • Cannot access WebDynpro application:com.sap.tc.webdynpro.services.exception

    Hello gurus!!
      I am trying to access the "Emergency address" from the LWE and I am getting this error "Cannot access Web Dynpro application: com.sap.tc.webdynpro.services.exceptions.WDException$DummyLocalizableTextFormatter@76829226". Could anybody please suggest what could be wrong with this action "Emergency Address"?
    Thanks much for your help with this,
    Maria Kutty Somori....

    Hi Yugandhar/Siddharth,
       Emergency address is the standard callable object for Execution that is part of the Standard Life and Work events. I have customized to reorganize the actions depending on our requirements and i have created a different folder structure and different order of execution of callable objects.
    How do I fix this "cannot access Webdynpro application" error? Please suggest.
    Thank you so much,
    Maria Kutty Somori.....

  • Not able to access the WebDynpro application in BlackBerry.

    Hi,
    I have created a WebDynpro application. The application is workin fine on IE but when I access the same application from BlackBerry simulator 8830 it gives an error :
    500 Internal Server error.
    APPLICATION ERROR OCCURED DURING THE REQUEST PROCESSION
    THE REQUESTED DEPLOYABLE OBJECT "InventryLookUpApp" is not deployed on the server.
    Please check the URL for typos
    The URL for the application is :
    http://10.54.162.252:50000/webdynpro/dispatcher/sap.com/a1s~searchproduct/InventoryLookupApp
    Please guide.
    Manish

    Hi Manish,
    Try this link:
    http://10.54.162.252:50000/webdynpro/dispatcher/sap.com/a1s~searchproduct/InventoryLookupApp?sap-wd-client=WmlClient
    Let me know what happens.
    Thanks,
    Ted

Maybe you are looking for

  • Text Styles out of order in IE

    My h4, h3, and p styles are ridiculously large in IE. THis only happens in my left column. The styles look fine in every other browser on both platforms. #left_column { float: left; width: 540px; margin-top: 0px; margin-right: 5px; padding-right: 30p

  • Change Query for SnapShot in Outlook Express Addon

    Expert, I am using SAP 8.8 PL15 and using Outlook Add-On. we are using SnapShot for our report also but we need report in specific format, can we change query so that report will change and we have our own report format Thanks Nilesh Shah

  • Prosper learning - adding transparency in Fireworks

    Hi , I was wondering if there is a way of setting transparency on a photo in Fireworks, eventualy only on some areas of the photo. I want to put the photo over some text and be able to read it. If anybody can help me, it will be welcome. Thanks! Best

  • WE789AA Mouse Strange behavior

    Hello, i bought a WE789AA wireless mouse and it behaves strangely. When i press for a little time in one button it starts tom make some automatic functions, like minimizing windows. I need it to work normaly, like a normal mouse. Can you help me? Tha

  • Mot de passe d'accès sans fil, invalidé régulièrement

    Bonjour, Sur mon AirPort Express 7.6.4 et mon même Mon AirPort Extreme 7.7.3  le mot de passe est invalidé régulièrement alors que sur mes ancien airport TimeCapsule 7.6.4 jamais de probleme le mot de pass a chiffre + lettre minuscule et majuscule j'