SSRS 2008 R2 data source authentication issue

Hello,
End-users with Browser permissions for the necessary SSRS folders and reports are getting "The permissions denied to user [Windows user] are insufficient for performing this operation (rsAccessDenied)" even though the data source for the report is configured
to use "credentials stored securely in the report server" and "Use as Windows credentials when connecting to the data source" is checked. Users who are members of the local admin machine hosting the Report Manager site don't get the error. But users with full
control permissions to the SSRS directories, including the config files, do get the error. Obviously, the solution shouldn't entail giving end-users local admin or even full control permissions to the SQL Server SSRS folders.  Moreover, the error only
occurs when using Windows credentials but not when using only a database credential, i.e. non Windows credentials.  This workaround doesn't work for me since I'm also using a data source connection to SSAS, which doesn't appear to use database logins
- only Windows credentials that are added to roles.
Please advise.
Thanks,
Ben Lezin

Hi Ben,
Generally, the error "The permissions denied to user [Windows user] are insufficient for performing this operation (rsAccessDenied)" should be caused
by one of the following reasons:
1. User Access Control (UAC). Windows Vista, Windows 7 and Windows Server 2008 limit the overuse of elevated permissions by removing administrator permissions
when accessing applications. Because the operating system removes permissions, members of the local Administrators group run most applications as if they are using the Standard User account.
If this issue is caused by UAC, please run Internet Explorer as administrator. From the Start menu, click All Programs, right-click Internet Explorer,
and select Run as administrator. For more information about UAC, please refer to this document:
http://msdn.microsoft.com/en-us/library/bb630430.aspx
2. User has insufficient permissions to perform the operation. Please check the following items:
a. End-users belong to "Browser" role. In Report Manager Home page, click "Folder Settings", make sure the end-users are in the security list and with
Browser role permission.
b. "Browser" role has permissions to perform the operation. You can use SSMS to connect to report server, expand Security/Roles, double click "Browser",
and then check the tasks list.
If there is anything unclear, please feel free to ask.
Thanks,
Albert Ye

Similar Messages

  • HTTP XML Data Source authentication error

    Morning All,
    I have just started playing around with using XML as a data source for my CR4Ev2.0.1 reports.
    I have managed to create the local inline reports and change their data source loacation with no current
    issues.
    I am now trying to create the HTTPXML reports using code from Ted's BLOG.
    I manage to create a new report, and can open it in design, I can see the data source structure but as
    soon as I try browse the data or preview my report I get the following error
    Cannot Open file
    Server returned HTTP response code: 407 for URL:
    http://myserver/httpxml.xml
    I had a quick look up the 407 error and it seems to be a Proxy authentication error, we do have a proxy
    server setup which requires a username and password.
    Before I go through what I have tried I want to confess that for this httpxml.xml file all I did was take my
    inline.xml file and rename it and make it avaliable via a URL. So this might be the whole problem but I
    am sure this is ok.
    So I have tried turning off the proxy server as this URL is local so I dont need to go through the proxy.
    If I go to the URL in my browser it works fine and I do not need to enter any proxy details.
    Thats the problem with my HTTP XML attempt.
    If I use the code as is, from Ted's BLOG, for
    Crystal Reports off of HTTP XML data URL
    and try use the following 2 URLs
    propertyBag.put(
    "Http(s) XML URL", "http://resources.businessobjects.com/support/downloads/samples/cr/customer_db/orders.xml");
    propertyBag.put(
    "Http(s) Schema URL", "http://resources.businessobjects.com/support/downloads/samples/cr/customer_db/orders.xsd");
    propertyBag.put(
    "Http(s) XML URL", "http://resources.businessobjects.com/support/downloads/samples/cr/customer_db/customer.xml");
    propertyBag.put(
    "Http(s) Schema URL", "http://resources.businessobjects.com/support/downloads/samples/cr/customer_db/customer.xsd");
    But I get the following errors
    Exception in thread "main" com.crystaldecisions.sdk.occa.report.lib.ReportSDKLogonException: Logon
    Error: {0}---- Error code:-2147217393 Error code name:dbLogonFailed
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.DatabaseController.byte(Unknown
    Source)
         at com.crystaldecisions.sdk.occa.report.application.DatabaseController.addTable(Unknown
    Source)
         at com.businessobjects.samples.CreateHttpXML.main(CreateHttpXML.java:90)
    Caused by: com.crystaldecisions.reports.common.LogonFailureException: Logon Error:{0}
         at com.crystaldecisions.reports.queryengine.Connection.br(Unknown Source)
         at com.crystaldecisions.reports.queryengine.Connection.bs(Unknown Source)
    Any ideas as to what my issues are or what I am missing.
    Thanks in advance.
    Darren
    Edited by: Darren Jackson on Apr 28, 2009 2:12 PM
    Is there any documentation as to what entries I can use in the property bag.
    Like is there a ("ProxySet", false) or something along those lines?
    Edited by: Darren Jackson on Apr 28, 2009 5:28 PM
    I have made a little more head way.
    I saved the Orders.xml and Orders.xsd files onto my webserver and editied the code to only worry about
    the Orders and ignore the Customer files.
    I now create my reports, open them in Eclipse to design them, but when I try preview the data it is now
    asking me for a username and password. I have tried all combinations that I can think of for our systems
    but none work.
    Grrrrrrrrrrrrrrr

    I have subsequently determined that my main problem was my "cached" proxy settings within Eclipse.
    Even though I removed the proxy settings in Eclipse, it still required me to restart Eclipse after which it
    all started working ok.
    That was my main problem, but I am still interested in the Property Bag options that I mentioned before.
    If proxy settings are needed, how would one go about setting these details?
    Thanks
    Darren

  • Ssrs 2008 r2 date parameter not working all the time

    In an SSRS 2008 r2 report, I am not getting some records selected when I run the report in the ssrs 2008 r2 report.
    However when I run the sql in ssis manager, the records are selected. Thus I am trying to determine why some of the records are not selected whe running the ssrs report.
    In the table called 'transactionfile', the fields that I am trying to determine where there is a problem is the following:
    SchoolNumber (varchar(50),null), and
    TransactionPaymentDate (varchar(50),null).
    Examples of data are SchoolNumber = '121' and TransactionPaymentDate = '04162014'
    In the SSRS report, the parameter value for @SchoolNumber is text and the parameter value for @EndDate and @StartDate is date/time.
    The following is the query I am having a problem with:
    SELECT  s.SchoolNumber,      
          CONVERT(smalldatetime,substring(TransactionPaymentDate,5,4) + '-' + substring      (TransactionPaymentDate,1,2)+ '-' +
    substring(TransactionPaymentDate,3,2)) as        TransactionPaymentDate
     from [eF].[dbo].[transactionfile] f
           INNER JOIN
        [eF].[dbo].schools] s      
        on rtrim(ltrim(s.SchoolNumber)) =rtrim(ltrim(f.SchoolNumber))
     where  rtrim(ltrim(s.SchoolNumber)) = rtrim(ltrim(@SchoolNumber))
          AND
          Cast(Right(TransactionPaymentDate,4)+Left(TransactionPaymentDate,4)  as Date)
            >= @StartDate
         AND
       Cast(Right(TransactionPaymentDate,4)+Left(TransactionPaymentDate,4)  as Date) <= @EndDate
    Thus could you suggerst what could be wrong when selecting some records by date?

    First check whether transaction payment date has 8 digit or not. In yes then try the below query,
    SELECT s.SchoolNumber,
    CONVERT(smalldatetime,substring(TransactionPaymentDate,5,4) + '-' + substring(TransactionPaymentDate,1,2)+ '-' +
    substring(TransactionPaymentDate,3,2)) as TransactionPaymentDate
    from [eF].[dbo].[transactionfile] f
    INNER JOIN [eF].[dbo].schools] s
    on rtrim(ltrim(s.SchoolNumber)) =rtrim(ltrim(f.SchoolNumber))
    where rtrim(ltrim(s.SchoolNumber)) = rtrim(ltrim(@SchoolNumber))
    AND
    cast(substring(TransactionPaymentDate,5,4) + '/' +
    substring(TransactionPaymentDate,1,2)+ '/' +
    substring(TransactionPaymentDate,3,2) as date) between @StartDate AND @EndDate
    Regards, RSingh

  • Sharepoint 2013 Excel External Data Source Refresh Issue

    I have been facing this issue for quite some time now.. i have created an Excel sheet in Excel-13 and have imported data from an external data source [SQL server 2012]. 
    Everything is working fine, with the excel sheet on the desktop. Data refreshes, every-time i open the excel file and also at regular intervals that i have configured in the data source properties.
    The problem begins when i save that excel sheet on my sharepoint server. the issues that i am facing are :
    1. Changes made into the original data source, are not reflected immediately inside the excel sheet inside the browser. after 5-10 minutes, it reflects the changes..
    2. The data doesn't refreshes automatically. After i update my data inside the sql server table, i have to manually trigger the refresh of the data connection when viewing the excel sheet inside the browser, even though i have marked "Refresh when opening
    the file", and refresh every 1 minute inside the excel sheet. Any solutions ??
    I have been troubled a lot by this issue, and seek for some quick solution.. Any help here ??

    I found the solution finally, my self ..
    Issue - 1 : It's going to take atleat 5-minutes to refresh the data connection, that is generally not a big time span.
    Issue - 2 : 
    --> Set Your connection to refresh everytime the file is opened. go to internet explorer -> file -> internet options -> general -> Browsing History -> Settings -> Check for newer versions of stored pages... Check 'Every time I visit the
    webpage'. 
    Now everytime i update your original data source, wait for 5-10 minutes and refresh my web page containing the excel sheet.. The Contents of the excel sheet are updated as desired..

  • ODP Data Source Delta issue 2lis_11_VAHDR 2lis_11_VAKON

    Hi Expert,
    I am pulling the data from SAP using ODP data sources. 2LIS_11_VAHDR 2LIS_11_VAITM 2LIS_11_VAKON.
    For all the data sources I am doing the initloads. For 2LIS_11_VAITM data source after init load its enabling the delta.
    For remaining data sources even if you try to pull the delta it's loading full load.
    Steps I am following
    LBWG do the deletion of setup tables.
    OLI7BW fill the setup tables.
    Run the data services job which pull the initial load. It loads all the data.
    Change the ODP data source settings to Init load to No (Capture only delta)
    In SMQ1 all the delta records will be captured
    Run the Jobs which pull the delta records to ODQMON from there if you run Job in data services it has to pull the Delta records.
    This is happening for 2LIS_11_VAITM but not for other data sources 2LIS_11_VAHDR and 2LIS_11_VAKON.
    Event if you try to pull the delta records its loading all the records.
    Can some one throw some light on this
    Regards,
    Murali.

    In RSMO, go to the details tab and check in which stage the load has failed. If the issue is with extraction then go to Environment > Job Overview in the source system. Check if this job is complete.
    I hope you must have cleared the Delta Queue, so now go and check if any entry is being displayed for 2lis_11_vahdr

  • JDBC Data Sources: Potential Issue with JDeveloper 10.1.3.4

    I think I found a bug or issue with the latest JDeveloper 10.1.3.4 release when using JDBC Data Sources on the Embedded OC4J container.
    To state the issule bluntly, If I use a JDBC Data Source in an ADF Faces application, I get the following error on the screen when I run my application if I create a simple page using a Form layout for database data:
    [http://cs.uwindsor.ca/~ruston7/jdbcError.jpg]
    Or if I use a simple drag and drop ADF Faces Table:
    javax.faces.el.PropertyNotFoundException: Error testing property '<<FIRST_FIELD_ON_THE_PAGE>>' in bean of type null
        at com.sun.faces.el.PropertyResolverImpl.isReadOnly(PropertyResolverImpl.java:274)
        at oracle.adfinternal.view.faces.model.FacesPropertyResolver.isReadOnly(FacesPropertyResolver.java:124)
        at com.sun.faces.el.impl.ArraySuffix.isReadOnly(ArraySuffix.java:236)
        at com.sun.faces.el.impl.ComplexValue.isReadOnly(ComplexValue.java:209)
        at com.sun.faces.el.ValueBindingImpl.isReadOnly(ValueBindingImpl.java:266)
        at oracle.adfinternal.view.faces.renderkit.core.xhtml.EditableValueRenderer.getReadOnly(EditableValueRenderer.java:211)
        at oracle.adfinternal.view.faces.renderkit.core.xhtml.FormElementRenderer.renderAsElement(FormElementRenderer.java:155)
        at oracle.adfinternal.view.faces.renderkit.core.xhtml.InputLabelAndMessageRenderer.getLabelFor(InputLabelAndMessageRenderer.java:53)
        at oracle.adfinternal.view.faces.renderkit.core.xhtml.LabelAndMessageRenderer$Label.getForId(LabelAndMessageRenderer.java:500)
        at oracle.adfinternal.view.faces.renderkit.core.xhtml.OutputLabelRenderer.encodeAll(OutputLabelRenderer.java:69)
        at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.delegateRenderer(CoreRenderer.java:281)
        at oracle.adfinternal.view.faces.renderkit.core.xhtml.LabelAndMessageRenderer.encodeAll(LabelAndMessageRenderer.java:123)
        at oracle.adfinternal.view.faces.renderkit.core.xhtml.InputLabelAndMessageRenderer.encodeAll(InputLabelAndMessageRenderer.java:94)
        at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeEnd(CoreRenderer.java:169)
        at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)
        at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeChild(CoreRenderer.java:246)When I change my Application Module connection to a JDBC URL, this all works perfectly. Also, everything works fine when I deploy to our Oracle AS 10.1.3 application servers.
    I also tried this on a different computer using a fresh install of JDeveloper just to make sure that the copy of JDeveloper that I downloaded didn't have a fluke in it.
    Thanks!

    M. Ruston,
    It must be something on your side. i just tried the same thing using the employees table from the HR sample schema (it has a date column). It works with JDBC URL and datasource both.
    Just out of curiosity - if you look at the properties for your Business Components project at the business components section, what does it show for the SQL Flavor and Type Map?
    John

  • CRM Data source 0CRM_OPPT_H  issue with full update

    Hi Gurus!
    When I tried to start Full Upload via 0CRM_OPPT_H data source at BW side  I faced with issue that
    No data available
    Diagnosis
    The data request was a full update.
    In this case, the corresponding table in the source system does not
    contain any data.
    System Response
    Info IDoc received with status 8.
    Procedure
    Check the data basis in the source system.
    I have checked the data source via RSA3 at CRM side and can extract 11 entries. The table CRMD_ORDER_INDEX has 39 entries.
    What have I done:
    1. Activate data source at CRM side in RSA5 and can see it in RSA6
    2. Activate BW Adapter Metadata in BWA5
    3. Tried to start full uploading at BW side but got error(No data available).
    4. Initialized delta-upload and can see active status for 0CRM_OPPT_H in tr. BWA7 at CRM side in active status (Delta active = TRUE, Initial upload = empty).
    5. There is no any authorization issues (user has SAP_ALL in both systems)
    6. RFC connection between systems is Ok. Extraction via 0CRM_OPPT_I was Ok.
    Have you any ideas how to start full uploading for BW via 0CRM_OPPT_H?

    Please, look above:
    "I have checked the data source via RSA3 at CRM side and can extract 11 entries. The table CRMD_ORDER_INDEX has 39 entries.

  • SSRS Active Directory Data Source LastLogonTimeStamp returns "System._ComObject"

    I am working in Report Builder and I have created a Data Source Connection to my Active Directory. I want to get LastLogonTimeStamp from my AD computer objects but when i run the query i get "System._ComObject" instead of a date. All the other
    fields return data.
    here is my code:
    SELECT ADsPath, cn ,objectCategory,name, lastLogonTimestamp
    FROM 'LDAP://DC=domain,DC=org'
    where objectCategory = 'Computer'
    Eventually i would like a query that returns a count of Computer objects where LastLogonTimeStamp is older than 30 days.
    I have researched this and found that the LastLogonTimeStamp is a IADsLargeInteger
    Value and not an actual date. How can i display this as a date is SSRS Report Builder

    Hi Ryaed,
    The lastLogon and lastLogonTimestamp LDAP timestamps attributes are returned in int64 format (also called Windows NT time format) and the timestamp is the number of 100-nanoseconds intervals (1 nanosecond = one billionth of a second) since Jan 1, 1601 UTC.
    So, we cannot tell the exact date and time directly. To convert the Windows NT time format value to human readable date value, you can use the following query:
    SELECT ADsPath, cn ,objectCategory,name, DATEADD(Minute,(lastLogonTimeStamp/ 600000000) + DATEDIFF(Minute,GetUTCDate(),GetDate()),CAST('1/1/1601' AS DATETIME2))
    FROM 'LDAP://DC=domain,DC=org'
    WHERE objectCategory = 'Computer'
    Or you can also create a user defined function:
    CREATE FUNCTION dbo.udf_Int8_to_DateTime(
    @Int8 BIGINT
    RETURNS DATETIME2
    AS
    BEGIN
    RETURN (DATEADD(Minute,@Int8 / 600000000 + DATEDIFF(Minute,GetUTCDate(),GetDate()),CAST('1/1/1601' AS DATETIME2)))
    END
    Then, use the function in the query like below:
    SELECT ADsPath, cn ,objectCategory,name, udf_Int8_to_DateTime(lastLogonTimestamp)
    FROM 'LDAP://DC=domain,DC=org'
    WHERE objectCategory = 'Computer'
    Reference:
    http://myitforum.com/cs2/blogs/jnelson/archive/2009/08/25/140938.aspx
    Regards,
    Mike Yin
    TechNet Community Support

  • WWW Data Source/Proxy issue

    I've seen a similar post, but wanted to see if anyone has encountered either of these errors while trying to crawl external web sites into the KD:
    Job Operation #1 failed: This crawl could not be launched because the location from which it was supposed to start, http://www.cnn.com could not be found or was inaccessible. When the crawler attempted to visit this location it received the following message: Exception of type com.plumtree.openkernel.exceptions.OKAssertError was thrown.(282610)
    Job Operation #1 failed: This crawl could not be launched because the location from which it was supposed to start, http://www.cnn.com/ could not be found or was inaccessible. When the crawler attempted to visit this location it received the following message: -2147203840 - Error in function PTWebCrawlProvider.GetChildNodes (pSafeArrayDocuments == [email protected], pSafeArrayContainers == [email protected]): -2147203840 - CPTWebCrawlProvider::GetMIMEType, could not open : http://www.cnn.com/(282610)
    We have the proxy info in the www data source, and the serverconfig.xml seems ok, but we are getting 407 (proxy) http responses.
    Thanks,
    Daryl

    In addition to Mti post..
    You said you had enhanced the DS. have written Code in the CMOD to populate the Data to the fileds.
    If already written check the tick mark "Filed only know for Exit". the system will come to know that data is being populated using the FM.

  • JNDI Data Source Authentication

    Why doesn't the following work?
    public void getConnection(String dbuser, String dbpass) throws SQLException, NamingException {
    Context context = new InitialContext();
    DataSource ds = (DataSource)context.lookup(DATA_SOURCE_NAME);
    return ds.getConnection(dbuser,dbpass);
    It seems like this authenticates against the WebLogic security realm, and not the database (which is what the Java API specifies). Is this supposed to be the case? How can I work around this so that SQL calls are made in the dbuser's name and not the credentials I supplied for the Data Source?
    Message was edited by:
    bernerbits

    Derek Berner wrote:
    Why doesn't the following work?
    public void getConnection(String dbuser, String dbpass) throws SQLException, NamingException {
    Context context = new InitialContext();
    DataSource ds = (DataSource)context.lookup(DATA_SOURCE_NAME);
    return ds.getConnection(dbuser,dbpass);
    It seems like this authenticates against the WebLogic security realm, and not the database
    (which is what the Java API specifies). Is this supposed to be the case? How can I work
    around this so that SQL calls are made in the dbuser's name and not the credentials I supplied for the Data Source?
    Message was edited by:
    bernerbitsHi. This is running as designed. The DataSource to a WebLogic JDBC connection
    pool will be delivering one of the identically-made already existing connections
    in the pool. As such the typical call is the no-argument getConnection() call.
    We do implement weblogic security with the user/password form.
    If you want a JDBC connection with a named user/password, you should
    either have a pool with such ( and use the no-argument call) or you must
    make a non-pooled direct connection. Note that you can have as many pools
    as you want, each perhaps with only one connection, and you can dynamically
    create pools.
    For an upcoming release of WLS we will offer heterogenous (multiple DBMS
    user) pools.
    Joe

  • Data Source Assignment issue in BW

    Hi
    i have replicate 2 data source in Production BW system but those are not automatically assigned to the corresponding
    info source.Since Production system i can't do any change. it seems to me that i need to transport these 2 info source again in Production BW system.
    Let me know your views.what needs to be done here to assign data source to Info si
    Regards
    Atul

    Hi,
    Before you transport data source / info-source to production system, you should make sure that in target system ( in your case production system ) you have maintained a setting of 'Mapping of Source system names'. This you can find in RSA1 --> Tools --> Mapping of source system names.
    Here you define source system for data source should change to XXX(production) source system instead of earlier XXX(development) source system.
    Regards,
    Akshay

  • *** Transporting Generated Export Data Source *** urgent issue

    Hi All,
    I have generated export data source from info object Company Code,
    And trying to transport the Export data source, i.e. 8Company_code to QA system.
    Its showing the log that, imported sucessfully, but, i can't see the object in QA.
    Iam currently working on BW 3.5 system.
    Please help.
    Thanks,
    Nisha

    Hi Luis,
    Thanks for this.
    Yes, i went into Transport connector >> choosen the object >> Data flow before >>
    Ticked the Data sources >> changed the Package from $TMP to ZXXX >> Generated Transport request >> Released it >> Transported it.
    But, still can't see....
    Cheers,
    Nisha

  • Generic Data Source - Delta Issue

    HI,
    I have created a generic delta source (transactions) with the following options: -
    -  using the extract structure
    - enabled the generic delta with billing creation date as delta specific field
    - calendar day selected
    - safety interval upper limit = 1 calendar days
    - additive delta
    carried out the folling steps in BW
    - Full update from above generic data source (all records)
    - Init upload without data transfers (1 record)
    - Delta enabled
    Now, even though i am editing / modifying any record on my own extract strucutres record on R/3 side, it is not getting reflected in RSA7 (delta queue).
    P.S:- I have modified one of the record from full update.
    Ideally the modified record should be shown in RSA7, but i am not getting the same.
    can you please help me
    Thanks
    Raj

    yes,
    I also thought the same point. But the records modified / edited yesterday are not appearing in today's delta. I am wondering why.
    Is it anything to deal with FULL / INIT without deta transfer / DELTA procedure..
    Regards
    Rajiv

  • CR 2008 Export Data to Excel Issue

    I have developed report in cr 2008 and embed it in vs 2005 window application. when i export that report to excel, i have to choice Excel and Excel Data Only. I tested both option but my exported report have extra blank columns and rows. That is very defficult to remove these extra rows and columns. Is there any solution that report exported like cr 9.
    Thanks
    Rafique

    The way exporting to excel has changed.  Since this does not work in the CR designer either, you will have to modify your report as described in the article [Exporting to Microsoft Excel|http://www.sdn.sap.com/irj/boc/go/portal/prtroot/docs/library/uuid/10d3ba69-951e-2b10-3093-e3cf287a57c9?quicklink=index&overridelayout=true]
    Ludek

  • Conditional color formating in SSRS 2008 with dates

    Hi!
    A Little help please!!
    Have a date time field, what i need is to change the BackgroundColor if the date exceeds 6 months or another background if exceeds 1 year.
    Obviously i have to compare the date shown on my report with the current date.
    I know that i have to use an expression in the BackgroundColor property of textbox.
    Thanks !!!
    Please need help!!

    you can IIF conditions as below
    =IIF(datediff("M",NOW(),Fields!date.Value)<6,"None",IIF(datediff("M",NOW(),Fields!date.Value) > 6 AND datediff("M",NOW(),Fields!date.Value) <12,"Red" ,"Blue"))
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

Maybe you are looking for

  • How to include room name in subscriptions email?

    I would like notifications and subscriptions sent from collaboration rooms to users via email to display the relevant room name that the subscription applies to. By default the emails display the room ID (609a34cc-eed4-2710-5492-987c69634cac) which g

  • Create Root Element in XML

    Hi Experts, I am develpoing a program to generate xml file as output. I am using the method CL_IXML and other interfaces to generate the xml data. Here I need to create a root element. I did search in SDN but I couldnot found anything to generate xml

  • Adobe Flash crashes after every clip

    I have been getting this problem for years now. I keep all my drivers up to date and none of the tips and tricks seem to fix the problem. Every time Flash finishes a video and goes to load another, flash crashes. More recently it has turned into a "s

  • How can i install ios 7 on my ipad, it will not update to this it is still on 5.0

    I cannot get my ipad to update to the latest software it is still on 5.1.1 and is saying 'your software is up to date' ,  however some apps keep asking for a most recent software version

  • Inforecord Rounding Profile error- RP not defined eventhough it is maintain

    Dear Gurus, I have maintained the Rounding Profile in the transaction OWD1. Yet, the inforecord does not display it in the dropdown list and I am getting the error 'Rounding Profile not defined in Plant'. Request your help in solving this. Regards, S