Adjusting Columns of a custom Report in Web UI

Hello All,
A custom report is displayed in Web UI using transaction launcher. However when we try to adjust the columns of the report, the column colapses and we are not more able to view the data in it.
Did anyone faced a similar issue ? Could you pls help me fixing this issue ?

I checked it with Firebug in Firefox. There I could see that no "XMLHttpRequest" were made, but standard requests.
The solution was that someone messed up the technical profile and set "Disable automatic delta handling". Just have a look at your technical profile in SPRO.
You can still enable/disable it on view basis though. Check tables BSPWD_ADH_DSBL for SAP and BSPWD_ADH_DSBLC for customer settings.
cheers Carsten

Similar Messages

  • Problem adjusting columns with 2G Nano & Classic iPods

    In the 7.4.1 version, I can't adjust columns with my *2G Nano* and my Classic (80Gb), actually, adjusting columns works in customs playlist but except in the "Music" "TV show" and "Podcast" playlist of my iPods.
    ("Auto adjust of all columns" in the right click menu on columns doesn't work too)
    Oddly, it works like a charm in every playlist (including Music, TV Show & Podcasts!) with my *5G iPod*..
    Hope to see a fix in a new release soon..
    Regards,
    Paul

    I am having the same problem with my 3G iPod. I can adjust columns in older materials, but if I make a new playlist on my iPod, I cannot adjust the columns in it. This occurred since upgrading to iTunes 7.4/7.4.1.

  • LOV of column names with a report's custom column headings?

    I have a list ov values definition that looks like this:
    select column_name d, column_name r from all_tab_columns where table_name = 'DATABASE_LIST'
    I'd like to list the custom column headings from a report as d, rather than repeating the column_name. How can I do this?

    As Anton said, the best thing is to store your custom headings in a table so that you can use the table for your LOV as well as for your report headings.
    To use dynamic report headings, you can use the 'PL/SQL function body returning colon-delimited headings' feature on the Report Attributes page.
    So, if your report headings are stored in table t that function body can be
    declare
    l_headings varchar2(4000)
    begin
    for rec in (select heading from t) loop
       l_headings := l_headings||':'||rec.heading;
    end loop;
    return ltrim(l_heading,':');
    end;Hope this helps.

  • [Extend DBI] specify the drill-down report for the custom report column

    Hi,
    I realized two custom reports by using the extend DBI tools:
    1st report displays the sum of invoices amounts grouped by Operating Units.
    2nd report display the details of invoices for all Operating Units
    In the 1st report I specified a link on the column Operating Units to drill-down at 2nd report.
    The problem is how specified the drill-down link so that the 2nd report display only the detail of invoices for the selected Operating Unit?
    Thanks.

    Adding the time dimenstions like Year, Quarter, Period, Week is quite possible.
    Steps would be:
    1. make sure your data source (Table/View has these columns). If you don't have them you can generate them by joining the date of the data table with FIII_TIME_DAY.
    2. Map these new columns to appropriate Dimesnions. (Lile Enterprise Year, Enterprise Quarter etc.)
    Once you have done these two your report will work for the Time Dimensions.
    I dont think its possible to get the Prior Period functionality unless you use a generated datasource.
    Regards,
    Sudeep

  • Custom Column freezing in interactive reports

    Hi,
    Can anyone help me regarding column freezing in interactive reports?
    I want to keep few of the column of my IR fixed that is not scrollable(horizontally),selection of column to be freezed should also be there.
    Along with it i also want a horizontall scrollbar to appear for scrolling the report.
    Thanks,

    Hi Vish,
    I was informed by SAP few months back that Interactive Reports can not be enhanced with custom fields. I don't see any documentation regarding this.
    You may want to check with SAP also.
    Regards,
    Paparao Undavali

  • Custom Report: Columns with headings merged

    Hello All,
    Is there a way to get a custom layout in reports as depicted in the following image -
    http://tinypic.com/r/20sbqtx/6
    I can generate the simple layout with A, B1, B2 and B3 headings, but I'm not sure how and where to aggregate the B1, B2 and B3 into B.
    Thanks

    Create a custom report template including an extra row with column spanning in the header section of the template.

  • Names of columns don't appear when I read the report on WebI 6.5 ??

    Names of columns don't appear when I read the report on WebI 6.5
    The report was developped on BO 6.5 and was published on WebI.
    When I read the report with the HTML mode, the names of the colums appear.
    When I read the report with the PDF mode, the names of the columns don't appear.
    I try to read the report with the HTML mode and after, I try to save it in pdf but it doesn't work. (it is the operation of conversion of pdf which doesn't work - it's very long and... nothing appends)

    Hello,
    This is  the default column. I didnu2019t add column heading. But I replaced the name of the column by words.
    I havenu2019t change the property of column heading.
    It is a cross tab.

  • Column Issue in custom DBI report

    Hello all,
    I created one custom DBI report. In that Start Time filed should shows Date and time (ie. 4/1/2009 5:14:14 PM).
    But in my custom report it is showing only the date (time is hiding).
    I tried to update the field, that display type as Date. There is only one value is appearing.
    Please help me to resolve this issue. Its very urgent.
    Thanks and Regards,
    Muthu

    I build the DBI custom report for the below query and I submitted my toad output. Update the query in your report to use one of the functions mentioned above to get the format you want.
    select USER_ID, LOGIN_NAME, START_TIME, END_TIME, LOGIN_TYPE from
    fnd_logins
    In toad output Date and Time is populating not in DBI output.
    Toad output
    USER_ID LOGIN_NAME START_TIME END_TIME LOGIN_TYPE
    0 10/13/2011 23:35 10/13/2011 23:35 FORM
    0 10/13/2011 23:40 10/13/2011 23:40 FORM For example,
    SQL> select USER_ID, to_char(START_TIME, 'DD-MON-YYY HH24:MI:SS')
    fnd_logins;Thanks,
    Hussein

  • Custom report sorting

    Custom report sorting
    I need to display the report column header in vertical format, hence I’ve to use to use some css code along with column name for that. Also, I want this column to be sorted by clicking the column name. So, I’m embedding the following url along with css and column name to enable sorting on this column when user clicks the column header. I got the following url by looking at the standard report with sorting enabled on a column.
    http://test.com:7777/pls/htmldb/f?p=100:22:&APP_SESSION:fsp_sort_1::RP&fsp_region_id=1870116795285540
    My questions are …
    How can I toggle the url to append “_desc” to the fsp_sort_1 parameter dynamically when the user clicks the column name, as it is done when standard column sorting is selected.?
    How can pass region id dynamically in the above url (last number in the url)?
    Any ideas are appreciated
    Thanks,
    Surya

    hi pavan
    i can just tell you that i had no issues with custom column sorting in webi with Enterprise XI 3.0 and Xcelsius 2008.
    Best Regards
    Ulrich

  • CUIC 9.0 Custom Reporting

    Good Afternoon,
    I was wondering if anyone could help me with the following issue.
    I am looking to create customized dashboards for our contact center's supervisors. I'd like to add a customized report that includes All agent data for the current day (aht, calls taken, calls abandoned, etc). From the time that they logged in until the present moment. I have attempted to customize "Agent Historical All Fields Daily" Stock report to do this, however I am wondering if I can set this report to run from shift start time until realtime each and every time the dashboard is opened, and also set a refresh interval for the report. I am relatively new to CUIC, so if there is any information I am missing please let me know. Thanks in advance for all assistance. I look forward to using these forums for further research and education!
    -Daniel
    [email protected]

    Daniel,
    Unfortunately, some of the stock reports don't have a built-in option for "relative" dates (i.e., being able to choose "Today", "Yesterday", etc). If you have the "peragt26_Agent Consolidated Daily Report" available to you, you should be able to select "Today" in that, it should have most of the data you're looking for. If you don't have this report, it is available from the CDN under "WebView reports". http://developer.cisco.com/web/ccr/documentation
    In order to have a report in a dashboard automatically run with specific filter criteria, it needs to have a "default filter" set up. Each report can only have a single default filter. If you have multiple defaults you would like to set up, you will need to create copies of your report, each with its own default filter. You can set the default filter by right-clicking the report in the Reports tab and choosing Edit.
    Once you have your reports and dashboards set up, I would recommend potentially adjusting user permissions so supervisors can only see the reports/dashboards that pertain to them.
    If you haven't seen it yet, the CUIC User Guide is here - http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/intelligence_suite/intelligence_suite_902/user/guide/CUIC_BK_R4B100EB_00_reporting-app-user-guide-902.html
    -Jameson

  • Adding column to incident list report for indident details (original isue and resolver comments)

    Hi,
    we have SCSM 2010 with default reports. One very common quarterly requirement is that list of incidents for an analyst which is shown does not have any details of the incident.
    i would like to get a column to display the following 2 data fields :
    the original incident description and analyst comments on how the incident was resolved.
    can anyone help out in this regards ?
    Regards
    Zaid

    Hi Andreas,
    Thanks, yes i can see a lot of other table details too that mught come handy later :).   ok so the report that i run from the console Incident > List of incident > basically pulls data from this table ?
    Instead of changing the original report, i would like to copy the original report and do the changes to that one.
    how do i do that ?  this is my first actual SQL / reporting interaction. so i may need some assistance. :)
    here is what i ahev done so far :
    1) i have browsed to the SQL SRS web url and i can see the systemcenter>servicemanager>Sm.console.reporting.incidentmanagement folder
    inside there i can see the report i want to copy i.e listofincident report and the rpdl files.
    2) i created a new folder "custom reports" in systemcenter>servicemanager>custom_reports
    3) how do i get the list of incidents reports in this folder ?
    4) how do i modify the report to include the ResolutionDescription and Description column
    thanks for the help.
    regards
    zaid.

  • Displaying Custom images in Web Layout

    Hello all,
    Can anyone please tell tell me how to display a custom .gif image in web layout instead of the standard gif(rwbeige_logo.gif). Where do I've to store the image, for it to be detected during runtime. Thanks in advance.
    Reagards,
    Arun.V

    for where you store the image you can store it in the database table in the blob column such as. for the report layaut containing image take the following:
    - in the report layaut you can create a report selecting a table that containing the blob column.
    - in the report layaut, modify the property of the item that present the database blob column to image.
    soufiane

  • GRC Process Control 2.5 - Custom Reports

    We need to develop few custom reports on GRC Process control 2.5. For this we need to identify the Table & Column names associated with WEB Dynpro component.
    For example, I need to know the Table & Column names for web dynpro component:GRPC_MANU_TEST.
    Please help me.
    Thanks
    Sankar

    Hi Sankar,
    Officially, there is no support for custom development of reports in PC 2.5.   I will suggest to wait till PC 3.0. 
    Best Regards,
    Jennifer Cha
    Process Controls - Americas/APJ
    Regional Implementation Group
    SAP Governance, Risk and Compliance

  • Visual Basic to adjust columns in a workbook

    Hi all,
    I am trying to write some VB code to automatically adjust columns in workbook for calendar days that do not have sales qtys, delivery qtys etc.
    Any sample code is appreciated.
    Thanks,
    Praveen

    Hello,
    Welcome to MSDN forum.
    Your issue is out of support range of VS General Question forum which mainly discusses
    the usage of Visual Studio IDE such as WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
    If you are working with ASP.NET Web Application, I suggest that you can consult your issue on ASP.NET forum:
    http://forums.asp.net/
     for better solution and support.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • WIS 10883 using large Excel File as source for report in WebI RichClient

    Hi,
    I'm trying to use a relatively large Excel 2003 file, say 7000 rows and 19 columns, as a source for a report in WebI Rich Client. When selecting a range of only 1500 records and 19 columns everything works, when accessing the full 7000 (or originally 30,000) I get this error message.
    Does anybody know of a size limit for this and if so an option to adjust it? The only resources for this very limited.
    Thanks
    Norman Ruppert

    Tina,
    I'm not sure why you are so negative to having Excel in the mix.
    Excel is only used at development time - its mearly used as a design interface to build the xcelsius model that feeds data and controls components within the flash file that xcelsius generates. 
    Excel is not used at run time in any way (unless one uses a third party connector to use an XLS as a data source of course).
    If you attempt to use xceslius without using the OLE embeded Excel sheet at design time you will only be able to create VERY simplistic dashboards.
    The new connectivity in version 4 just removes a design step to make development simpler my combining direct to components - but behind the sceens i believe it is really only connecting to a hidden part of the model not shown the the Excel interface at design time!
    i think we would all agree that having excel can be a pain at design time (especially those that used/use live office!) but it does offer a pretty good interface for building very intuative looking models behind your flash components.
    cheers,
    Jeremy.

Maybe you are looking for

  • Setting of CLOB Datatype storage space

    Hello All! I unble to insert more then 4000 characters in clob datatype field how I increate the storage size of the clob field I'm working in VB 6.0 and oracle 9i

  • Changing data in table level

    Hi friends, I want to change the address of ship to party in delivery document and billing document, table level. So anyone can tell me what is the table and fields name to change the address in delivery document and billing document. In LIKP and VBR

  • Authentication for user system denied in realm wl_realm

              HI,           When I try to start a managed server in clustered environment,           I get this error :           java.lang.SecurityException: Authentication for user system denied in realm wl_realm           at weblogic.rmi.internal.Basi

  • Reinstall CC-Desktop app

    My CC-Destop app is grey in my menu. The content is white. I only can close the CC-Desktop app. When I deinstall it and install the app again, the problem is not fixed. Can somebody help me with this problem?

  • 503 Internal Server Error

    Hi all, We r in EP7 and ECC6. EP was working fine till yesterday when I tried to open today I am getting the error as 500   Internal Server Error Failed to process request. Please contact your system administrator. It appears only for ESS. Please gim