General Reporting Issue

Dear Experts,
i need your advises for an issue regarding a reporting idea, i am working in Telecom company and as you know, there is alot of reports requested daily from END users, some of these reports can be moved to discoverer to let the users generate them from their side through discoverer viewer, but there are many reports still generated from my side directly from the back end (database) because they are customized for specific data sent by the end users.
for example, some users send me a list of customers numbers and they need some information for them, so i used to load them to a temp table and join it with the query to get the needed data.
i want to ask is there a way to enable the end users to get this report from their side without returning to me, that is is there any tool that let the users load some data into temp table and generate the report for that data only?
please i need ideas?
Edited by: eyass on Oct 28, 2011 12:08 PM

Hi,
Well all is not possible since beside the database side (the function) all other steps are configuration steps.
as for the function you can see the following as example:
create or replace function LOAD_DATA_XXXTABLE
(P_DATE_V in date) RETURN VARCHAR2
IS
PRAGMA AUTONOMOUS_TRANSACTION;
V_OUT varchar2(50);
p_date date;
v_sql varchar2(30000);
v_date varchar2(50);
v_period varchar2(50);
BEGIN
begin
p_date := (p_date_v);
v_date := ''''||to_char(p_date_v,'DD-MON-YYYY')||'''';
v_period := ''''||to_char(p_date_v,'MON-YY')||'''';
DBMS_OUTPUT.PUT_LINE('*************************************** Process Start ***************************************');
-- Truncate the table
execute IMMEDIATE 'TRUNCATE TABLE XXX.XXXTABLE';
-- Populate the table in the user partition
v_sql := '
insert into XXX.XXXTABLE
Select '||v_period||' period
from dual';
execute immediate v_sql;
commit;
DBMS_OUTPUT.PUT_LINE('End of first load: '||to_char(sysdate,'YYYY-Mon-DD HH:MI:SS'));
DBMS_OUTPUT.PUT_LINE('Table XXXXX was populated on : '||to_char(sysdate,'YYYY-Mon-DD HH:MI:SS'));
V_OUT := 'Finished OK';
RETURN V_OUT;
EXCEPTION
WHEN OTHERS THEN
dbms_output.put_line(' Error: '||substr(SQLERRM,1,250));
V_OUT := 'Finished ERROR';
RETURN V_OUT;
raise;
end;
end LOAD_DATA_XXXTABLE;
you have to build the table prior to running it !!!
insert your logic in the V_SQL variable.
if you wish to use GTT then you do not need the truncate statement...After compiling it try to run it and see if you get data, run the following:
declare
v_out varchar2(50);
begin
-- Call the function
v_out := load_data_xxxtable(p_date_v => '01-OCT-2011');
end;
then select from the table to verify it is populated:
select * from
xxx.xxxtable;
now you should register it to the discoverere administrator, after log in go to the toolbar: "tools->register PL/SQL functions"
enter the needed data (use upper case),
validate it.
then create a worksheet using Plus or Desktop, do not select any folder or any item.
create a new calculation, use the function you have just registered.
run the report and see the output, if you get OK then you can create a new worksheet that will select from your table.
Of course you need to add the table to the BA so that you will be able to use it for a report.
hope it helps
Tamir

Similar Messages

  • Stage Analysis Report Issue

    Hi,
    I have run a stage analysis report but it says no data inspite of open opportunities being present in the system. Could anyone kindly let me know what could be the issue?
    Regards
    Sharat

    Hi Sharat,
    Welcome you to the forum. Please close your first thread.
    Regarding your Stage Analysis Report Issue, what selection has been made? This report show closed opportunity only.
    Thanks,
    Gordon

  • GR/IR GL Reporting Issue

    1. 30 documents of 2009 were matching and post with clear is perfomred. After performing post with clear also the line items are not moving from open line items. When we download the open line items as of today, these line items are appearing.
    2. When we download the ZBLRFIOI report for GRIR a/c 349100 to have the opne line items. we have some set of documents showing as " FI Open items without J2" - This is reporting issues.
    Thanks
    Mallikarjuna

    Hi
    Pls try with F.13 for that GR/IR account 349100 by selecting check box select gl accounts
    And give Company code, year and pending document numbers in selection screen
    And before that pls make sure that OB74 clearing settings maintained or not
    It will clear all the open items exists
    Reg
    Vishnu

  • BW Reporting Issue

    Hi,
    I am facing one reporting Issue relating to Display Attributes.
    Characteristic: Business Partner
    Display Attributes: Address0, Address1, Address3...etc.
    Requirement is to display mentioned Display attributes along with Business Partner.
    For this I have selected Business Partner as characteristic and mentioned above three as display attributes to Business Partner.
    But Query out put is not showing Display attributes. For this I have done all settings at reporting level, all gone vain.
    I am using Bex 7.0.
    Kindly look in to the Issue and let me know the solution.
    Regards,
    Venkat.Mahipathi.
    09886652422.
    [email protected]

    Hi,
    Check in Reporting properties or check attributes in analyzer proprties then it will display  
    ************asign points if usefull***********
    swapna

  • MB5B-Retrive Closing Stock into our General Report

    this is parameswar,
       > Using MB5B tcode how to import the Closing Stock value in our General report.
       > In which table the closing stock value is saved this is value should be equal to the MB5B
       > is there any way to import the that value in our General Report
       > Based what kind of TABLE, FIELD- after calculating.

    for this u will have to create a Z report. Just copy the code of MB5B and add additional columns for closing stock, u will find the data in mbewh and mbew tables.

  • User report issues in 1.1.0.21.97

    A couple of issues i'm experiencing with user reports on Mac OS X in the latest pre-releas build
    first off, if I am asked for a password (first time I use the connection) there is no feedback if the connection fails (worng password for instance)
    The second problem I'm facing is every time I try to rerun a certain master-detail report I'm getting an NPE
    this is the stacktrace:
    22-nov-2006 15:37:31 oracle.report.addin.ReportEditor updateContent
    INFO: ReportEditor.updateContent()
    22-nov-2006 15:37:33 oracle.dbtools.raptor.controls.display.DisplayResultTable getUI
    INFO: DisplayResultTable.getUI()
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    at oracle.dbtools.raptor.controls.display.DisplayPanel.refresh(Unknown Source)
    at oracle.dbtools.raptor.controls.display.DisplayPanel.refresh(Unknown Source)
    at oracle.report.addin.ReportEditor$1.actionPerformed(Unknown Source)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1882)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2202)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:234)
    at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:231)
    at java.awt.Component.processMouseEvent(Component.java:5554)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
    at java.awt.Component.processEvent(Component.java:5319)
    at java.awt.Container.processEvent(Container.java:2010)
    at java.awt.Component.dispatchEventImpl(Component.java:4021)
    at java.awt.Container.dispatchEventImpl(Container.java:2068)
    at java.awt.Component.dispatchEvent(Component.java:3869)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4256)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3936)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3866)
    at java.awt.Container.dispatchEventImpl(Container.java:2054)
    at java.awt.Window.dispatchEventImpl(Window.java:1774)
    at java.awt.Component.dispatchEvent(Component.java:3869)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:269)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:190)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:184)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:176)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    reloadBuffers(): 53 nodes checked in 0.006489 second(s)
    reloadBuffers(): 53 nodes checked in 0.005422 second(s)
    reloadBuffers(): 53 nodes checked in 0.004306 second(s)
    22-nov-2006 15:43:17 oracle.report.addin.ReportEditor updateContent
    INFO: ReportEditor.updateContent()
    only happens with master-detail report
    Message was edited by: Barsema
    barsema

    We have verified the connection error on the latest evaluation build is working as expected. i.e. if you supply wrong password you get alerted to that. This has been verified on the windows and Mac OS X. Please try the latest evaluation release 1.1.0.22.71.
    Your reports issue has also been addressed.
    Sue

  • Difference between Adhoc report and general report...

    Hi ,
    Can any budy let me know,how can i differetiate Adhoc report with general report...
    Thanks in advance..
    Regards,
    maruthi

    Hi,
    In Ad-Hoc usefully for user prospective .they do not have too many calculations etc............
    Ad Hoc Query and Analysis  : http://help.sap.com/saphelp_sm40/helpdata/en/08/965b423be8de54e10000000a155106/content.htm
    GENEARAL: What we create in SAP BI
    Regards
    Ram.
    Edited by: Ramakanth Deepak Gandepalli on Dec 17, 2009 12:18 PM

  • RESOLVED : Windows Phone – Download reporting issue related to 11/1/14 – 11/9/14 data

    Update 3/22 - the below issue has been resolved.
    It has come to our attention that certain Windows Phone download reporting aggregations are not matching. After investigation, we found an issue related to 11/1/14 – 11/9/14 transactions.  For example, if you chose an “All
    app” aggregation (6 month view) and compared it to “Monthly by app” aggregations (6 month view), the totals weren’t matching.  The root cause of the issue was due to the 11/1/14 – 11/9/14 data not being considered for all  of the available aggregations.
    We are scheduled to fix the issue today. 
    If you have transactions between 11/1/14 – 11/9/14, you will see an increase in the following aggregation totals once the fix is completed:
    Monthly aggregations (6 and 12 month views) by app and in-app aggregations
    Cumulative downloads – app and in-app aggregations
    Please note, this is strictly a download reporting issue.  There is no impact to any payout reporting or payout amounts.
    When the fix has been completed, I will update this post.
    Thanks,
    Patrick

    Update 3/22 - the below issue has been resolved.
    It has come to our attention that certain Windows Phone download reporting aggregations are not matching. After investigation, we found an issue related to 11/1/14 – 11/9/14 transactions.  For example, if you chose an “All
    app” aggregation (6 month view) and compared it to “Monthly by app” aggregations (6 month view), the totals weren’t matching.  The root cause of the issue was due to the 11/1/14 – 11/9/14 data not being considered for all  of the available aggregations.
    We are scheduled to fix the issue today. 
    If you have transactions between 11/1/14 – 11/9/14, you will see an increase in the following aggregation totals once the fix is completed:
    Monthly aggregations (6 and 12 month views) by app and in-app aggregations
    Cumulative downloads – app and in-app aggregations
    Please note, this is strictly a download reporting issue.  There is no impact to any payout reporting or payout amounts.
    When the fix has been completed, I will update this post.
    Thanks,
    Patrick

  • Odd Reporting Issue (ENTERPRISE)

    I have a client with some users experiencing a rather odd reporting issue. The report runs fine, but only shows values for the totals and not the line items that make up the total.
    For example, when I run the report (logged in as admin as well as under their ID), I see:
    Net Sales 1,234
    Cost Of Sales (1,111)
    Gross Margin 123
    When they log in on their machine, they see:
    Net Sales
    Cost Of Sales
    Gross Margin 123
    Very odd. I figured maybe it was an application setting, but the INI didn't look off anywhere particular.
    They are running Enterprise 6.3.1 (yeah, insert comment here on the upgrade needed).
    Any thoughts???

    Check their Effective rights, and reset them, that has worked out for me. Otherwise, try copying the user and paste it as a new user and retest; I had to delete users and recreate them to correct problems of this nature.

  • BIP report issues

    We are currently upgrading from Siebel 7.5 to 8.1 and are working on converting some of our Actuate Reports into BI Publisher.
    I am trying to create an Integration Object to use with a BI Publisher Report that will display Activities of Type = Call & Status = Done for selected sites under Site Management -> Activities. FYI... this "Call" Activity Type is not a vanilla LOV. It has a type of TODO_TYPE with a parent of General in case you need to create it for any testing that you might do.
    I have used the wizard to create the integration object with the Main BC as Clinical Protocol Site and a container BC of Action (No Owner Lock) and a container under that of Action (No Owner Lock)_Employee. I then inactivated all fields and just re-activated the ones I wanted to display in my report. I then used the synchronize button to activate any other required fields. I then Deployed to Runtime and compiled.
    Issue #1: When I generated the Sample XML, the fields were displayed in some containers and not others. I would expect the containers and fields to be displayed in the Sample XML even if they do not contain any data. Also, there looks like there is one extra Action (No Owner Lock) container surrounding the other Action (No Owner Lock) containers. I noticed that if I removed the Value from the XML Container Element for this Integration Component, the extra one was removed from the sample XML.
    In my local database, I created a new report, associated it to the Integration Object, attached the BI Publisher Report (RTF File), generated the XLIFF and associated it to the View (Clinical Protocol Site List View) where the report is run from...
    Issue #2: When I run the report, (make sure you query for select sites before running) it only shows new call Activities that I have created. It doesn't show previously created call activities. Could it only be showing the activities created by me? It should be displaying all call activities no matter who created them. Also, it shows 2 of some of the call activities in the report. Again, I noticed that if I removed the Value from the XML Container Element for the Action (No Owner Lock) Integration Component, the duplicates were removed from the report. The report also ran quicker.
    Issue #3: For the call Activities that are displayed, it does not display the Contact Last Name & First Name values which are fields in the Action (No Owner Lock)_Employee Integration Component.
    Issue #4: Currently we are using logic in the BI Publisher report to only show "Call" Activities. Is there a way on the Integration Object side to only populate the XML file with these types of activities instead of having the XML file created with all site activities (which could be a lot)?
    I have attached a SIF of the "BIP PRA Site Phone Log Report" Integration Object, the Sample XML created by Siebel, my BI Published RTF Report, and sample XML I created from the Siebel generated XML to test my report. I have also included a SIF of the LS Clinical Projects which includes the BC's contained in the Integration Objects.
    Additional Request: I see that all the vanilla report templates have in their footer "Generated by <?Login?>" We would like to do the same. How do you get the Logged in user value into the XML so that it can be displayed in the report?
    I would appreciate any assistance you could provide.

    I am running into the same issue. Has anyone successfully done this? Also, is this even intended functionality?

  • Multi Lingual Report issue

    Hi Everyone,
    All our reports are multi lingual. By setting the "NLS_LANG" parameter the report displays french or spanish or english strings. The problem I am having is when I open this report in the report builder and make any change and save it, the report no longer displays the strings based on the "NLS_LANG" parameter. It only displays the strings in one language based on the "NLS_LANG" value that was set, when the report was saved.
    Can any one help me with this issue. How do I save this report so that it continues to display strings/boiler plates based on the "NLS_LANG" parameter.
    Thanks!

    Post Author: sharonmtowler
    CA Forum: General
    did you try to surpress the field not the section if there is no data. there is also underlaying the section, so it appears to print next to the other section,
    go to format section. select underlay  for the section above (details A) that may help

  • EPM Addin - Grey Edit Report Issue

    Even after applying KB3025036  fixit for MS office 2010 or 2013, still the problem exists for SAP EPM addin. It is a big show stopper and not allowing for next steps
    MSoffice 2010 and 2013 - Issue still persists.
    After installing Microsoft security updates, the following issues are encountered in the EPM Add-in (10.X) and BPC for Excel (7.X) products:
    'Edit Report' is grayed out
    Context options are grayed out
    The EPM pane shows no connection for current report
    Refreshing the report has no effect
    Journal options are grayed out
    It is not possible to open an EPM Add-in report
    The following error is displayed: EPM - General Error: Unable to get the Object property of the OLEObject class

    Hi,
    We have definitely heard your frustration, and Microsoft understands the position our customers are in and we are actively working to find a solution besides a FixIt that can be deployed to remedy the issue.
    We can also remove the MS14-082 Microsoft Office Security Updates for December 2014 by temporary bypassing this issue.
    If we have any update, I'll post in this forum and you can focus
    this blog
    ============
    Update,
    Hotfixes for this issue have been released in the March 2015 Updates for Office 2007, 2010 & 2013.
    http://blogs.technet.com/b/the_microsoft_excel_support_team_blog/archive/2014/12/13/forms-controls-stop-working-after-december-2014-updates-.aspx
    Thanks for your understanding.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Yes, I have the 'intellisync unknown error reported' issue too.....

    Hi everybody and sorry for the blast about this well known error that a lot of people are faced against! I run a Windows XP SP2 OS hosting Outlook 2007 SP2 which updated an already existing Office 2003. I also have my Bold9000 and DM 5.0.1. Same error as reported by lot of people. I try to synch office calendar and receive this error. I followed all the steps that I found here and in other sites. So the question is: what is the 'state of the art' of the solution for such error as I assume that it is a windows related issue and not a DM one? Has anybody received some fresh tip from RIM support to bypass this situation? Thanks again and have a nice day!

    EJNIV wrote:
    If anybody from RIM is monitoring this thread, I sure wish somebody could address this, aka fix it.
    Hello!
    Just to set the expectation properly -- these forums are a user-to-user support channel, not a user-to-RIM conduit. As such, it is unlikely that they will see what you have written. However, if you have specific and constructive ideas for them, I have heard that they accept such via email to [email protected]
    Front line support for BB's is, by contract, not provided by RIM. The carriers and authorized resellers are responsible for front line formal support to end users. It is possible to bypass your carrier and seek assistance direct from RIM, but such involves fees since you are bypassing your support agreement with your carrier. The "Support and Services" tab toward the top of these forum pages provide information about that. But, if you do go through your carrier for support, they can escalate into RIM at no fee to you if they so choose to.
    Best!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Very Urgent Hyperion Planning Financial Report Issue

    Hi All,
    I have a coloum in the last in all data forms to enter comments basically I am using No account for the user to enter the text here.
    Similarly I had created a FR Report to view the data along with the comment
    The issue is that once I look in the comment in report it not properly visible
    say for ex if I enter 3206 -The tax value is high in datafrom
    Only 3206 appears in the report.
    I am not sure that how the comment is truncated in the report
    Kindly please help to provide me the solution
    Thanks in advance
    Vikash
    Edited by: 909920 on Jan 24, 2012 7:10 AM

    It's properly not visible means, are you trying to view the report from workspace or print preview.
    If your column/row width is less than that comment, it will not visible in report full, so you have to extend until coment ends, make sure you give correct format/space given to show on the report. just expand the column/row width long until ur coment ends.
    If coment is not visible in the report itself, you can try format the cell text -> righ click-> format -> Replace with-> you can enter whatever comment you want to keep, so that it will be available, but even here to show full comment, you have to exand the column/row until its full coment visible....
    Generally text/member aliases will not show full names due to the format only, i am not sure if your issue is different, but i am sure its format issue i think. please let us know if its differnt issue, just want to know.

  • General authentication issues

    I have a general issue with authenticating usernames and passwords. starting with remote desktop connection to my win 8 laptop 6 days a go i was able to connect to it from the internet with no problems, now for some reason i can't connect to it i can see the window asking for a log in info so it can see the computer but it doesn't accept my log in info, i also have win 2008 server computer on the same LAN and i can connect to it from the outside.
    same thing with my FTP service i can connect to my FTP from the internet using IE but when it asks for username and password it doesn't accept them.
    SAME PROBLEM WITH VPN i used to e able to connect to my LAN from the outside internet and now while it's verifying username and password for VPN it doesn't accept them.
    Iam basically looking at an authentication issue not a connection because i see that i can connect to these services until authentication level then authentication doesn't work.
    Any Ideas?
    Thanks

    Normally I would use FLAC for quality but since Itunes doesn't support it I use mp3. Good albums I do both. Is there a plugin so I don't need 2 copies of my music?
    You can try the Xiph plugins to play your FLAC files. Some people have reported success while others have had problems, but it would be worth trying.
    When I drag the music in to the play list Itunes takes between 5-10 minutes to add the songs and do its gap less playback check, etc.. Itunes is hung the entire time and does not respond. Is this normal?
    How many tracks do you have in your library? If it's really large (many thousands of tracks), the delay may be normal.
    it says it's getting the artwork but it only gets the art work may be 1 out 20 albums I import. Is there a way to select the art work manually?
    If you search the web for "iTunes album art" you'll find a lot of methods for getting album artwork into iTunes.
    Regards.

Maybe you are looking for

  • HT1430 My inbox is update is taking too much time?

    My inbox is not getting updated?  I see the sign "checking e-mail" displayed for more than an hour and still the inbox does not get updated.  Also when I send a message, I do not see it in the Sent box.

  • HTTP 404 THE REQUESTED RESOURCE IS NOT AVAILABLE

    HELP ME PLEASE !!!! I HAVE AN APPLICATION THAT USES 3 PAGES: INDEX.HTML , MOTOR.JSP AND MOTOR2.JSP. THE LOGIC OF APPLICATION IS: FIRST STEP THE FIRST STEP IS SHOWING PAGE INDEX.HTML THERE IS THE FOLLOWING CODE IN THIS PAGE: <FORM ACTION="DIRECT"> SEC

  • Converting 4:3 - 16:9

    If you are scaling an interlaced file to a different height, you can tell MPEG Streamclip to preserve interlacement and scale each video field separately by checking "Interlaced Scaling". If you don't, interlacement will be lost in the scaled movie,

  • Hi, I have a iPhone 4, and out of nowhere it turned off and won't turn on...

    My iPhone has no water damage, and has worked fine since the day i got it. My hypothesis is that it over heated, because it was 106 the otherday. It won't turn on or charge, and I really wanna know if this can be fixed. I've read around and read that

  • Migration of server X.4.11 to snow leopard server

    Hi, I have an xserve under 10.4.11 whit my users its an master OD , I will soon receive a new server ( xserve snow leopard) and I would like to know the best scenarios for migrating my users to this new server Thanks