Windows are weired in Reports- Data Dictionary Reports- PL/SQL- .......

When I go to Reports->Data Dictionary Reports-> PL/SQL->Search Source Code I get a window where I can not enter anything and moreover nothing is clearly visible.
Also same is happening for option Reports->Data Dictionary Reports-> PL/SQL->Progam Unit Arguments.

The parameters default to NULL (the NULL check box is ticked) - to be able to enter a value, you need to first uncheck the NULL check box. You get the same thing with bind variables when running statements in the SQL Worksheet.
I think it would be much better if typing anything into the parameter value field automatically deselected the NULL, but it doesn't do that.

Similar Messages

  • New To SQL Developer Data Modeler - Data Dictionary Report

    I am new to Data Modeler and I am currently learning what I can do and can't with it. Is there a way to generate a "Data Dictionary" report? We would like a report we can distribute that describes all tables and columns with descriptions and comments. We used to use an old version of Power Designer and we could do this from the data model we created. Is it possible to do something like this from SQL Developer Datas Modeler?

    Hi,
    Saxon is just an option, you don't need it by default.
    Could be permissions problem. What are you working on i.e. OS? What java version do you use?
    Even though you have specified directory for the reports do you have permissions to write there?
    Report generation directories priority is:
    1. Custom directory if specified in Settings->Data Modeler->Default Reports Directory
    2. /datamodeler/reports/
    3. User home directory
    You must have permissions somewhere on these directories. On the other hand you are saying that report_data.xml is generated so you have permissions.
    Okay. Now I saw a bug in 710. When you click "Generate report" there are progress dialogs and result dialog, but if you meanwhile click somewhere or change focus, these dialogs are hiding below main "Reports" dialog i.e. you are not seeing them. If you use Alt+Tab the result dialog will popup. This bug is fixed in the next release.
    So you must see either result dialog or error dialog at the end of report generation. If not check with Alt+Tab if it is not hidden somewhere below and if there is no such dialog close the DataModeler and check the log file for some error.
    There is SQL Developer Data Modeler 3.3 Early Adopter Available.
    http://www.oracle.com/technetwork/developer-tools/datamodeler/downloads/datamodeler-33-ea-1869055.html
    Above issue is fixed there and report is opening automatically.
    Edited by: Dimitar Slavov on Nov 29, 2012 11:53 PM

  • ALV fields which are not referenced to data dictionary table fields

    Hello,
    I am using function module reuse_alv_popup_to_select.
    How do I display fields in ALV which are not referenced to
    data dictionary table fields.
    I am showing 4 columns in alv out of which first column is checkbox
    and remaining 3 columns are from data dictionary and it works fine.
    Now I need to add one more column which is of type checkbox.
    I have added this field in my ITAB as flag(1) type C.
    When I add this flag field in the field catalog, I get exception.
    Regards,
    Vishal.

    Hey guys,
    Finally I got rid of such a stupid problem.
    There were no problem in the code.
    while assigning fieldname to field catalog I had given fieldname
    in lowercase.
    I changed it to uppercase and problem got solved.
    Thanks,
    Vishal.

  • Using data dictionary in PL/SQL

    What people think about using data dictionary in PL/SQL witch supposed to be used for a long time (selects, type declarations and so on)?
    Oracle does not guarantee data dictionary names will be same forever.
    Is it a good idea to restrict the using of this in the Development standards?

    The reason I open this thread I am trying to improve the Development Standards
    My attempt was to restrict using SELECT FROM Data Dictionary if it is possible.
    Here are examples, what I trying to figure out
    SELECT SYS_CONTEXT ('USERENV', 'DB_NAME')
      FROM DUAL;
    or
    SELECT VALUE
      FROM gv$parameter
    WHERE NAME = 'db_name';
    SELECT SYS_CONTEXT ('USERENV', 'CURRENT_SCHEMAID')
      FROM DUAL;
    or
    SELECT user#
      FROM SYS.user$
    WHERE NAME = USER;
    I am not asking ‘Can I...?’ I am asking ‘What people think?’
    Probably, it is not an issue.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • SQL for data dictionary report

    Hi, anyone know what SQL I would need to run to to get a basic data dictionary listing? ie I'd like to know:
    table_name, column_name, column_type, length, precision, nullable etc
    Also a nested sub-query to get each tables constraints, indexes etc
    Thanks,
    Andrew

    The tables you'll need are user_table, user_tab_columns, user_indexes, user_ind_columns (maybe user_ind_expressions to if you use function based indexes), user_constraints and user_cons_columns.
    Personally, I find that calling DBMS_METADATA.GET_DDL for the object(s) is easier most of the time.

  • GL Account balance report - Date wise report reqd(Eg: 05.03.08 to 20.03.08)

    Dear Friends,
    This is with regard to GL account wise balance/trial balance report based on dates (From...To format).
    We have tried all standard GL reports especially account balances and trial balance reports and all reports are showing period wise reports eventhough we put posting dates in the dynamic selection screen.
    We also checked in SAP Notes and Expert Forum and none of the details are matching with our requirement.
    As we are in production client (in ECC 6.0 version) and doing year end procedure, it would be helpful if you could let me know whether there is any transaction code/report/program available in SAP to meet the
    above requirement.
    Regards,
    Dwarak.

    Hi Dwarak,
    All reports balance report are based on posting period. This information is stored in a total table by posting period. These reports are not looking to the posting documents.
    When you have BW or special ledger you can create a table with day totals
    Paul

  • Sub-report data in report

    Dear Xperts,
    Whether it is possible to use the sub-report data for calculation or formula in CR?
    For Ex:
    I'm having Doc.Num, Doc date,DocTotal etc in details and i wrote a subreport to get the tax breakups, let my sub-query gives BEDTax, ECessTax, HCess TAx.
    Now whether it's possible to use the subreport fields in formula, say DocTotal (from details) minus Total Tax(from Subreport)....
    Regards,
    Bala

    Hi,
    You can use sub report.but it would be better to write a query to fetch the required data.sub report will take more time than the query for fetching data.
    as an example see below query with sales details and tax breakup
    SELECT M.DocNum AS 'AP Inv. #', M.DocDate as 'Date', M.CardName as 'Vendor Name',M.NumAtCard as 'Bill No. & Dt.',L.ItemCode, L.Dscription,L.LineTotal as 'Amount',L.vatsum ,L.PriceBefDi as 'Rate',
    (Select Sum(LineTotal) FROM INV1 L Where L.DocEntry=M.DocEntry) as 'Base Amt.(Rs.)',
    (SELECT Sum(TaxSum) FROM INV4 where statype=-90 and DocEntry=M.DocEntry) as 'BED (Rs.)',
    (SELECT Sum(TaxSum) FROM INV4 where statype=7 and DocEntry=M.DocEntry) as 'HSCess_New (Rs.)',
    (SELECT Sum(TaxSum) FROM INV4 where statype=-60 and DocEntry=M.DocEntry) as 'EDCS (Rs.)',
    (SELECT Sum(TaxSum) FROM INV4 where statype=-55 and DocEntry=M.DocEntry) as 'HECS (Rs.)',
    (SELECT Sum(TaxSum) FROM INV4 where statype=1 and DocEntry=M.DocEntry) as ' VAT (Rs.) ',
    (SELECT Sum(TaxSum) FROM INV4 where statype=4 and DocEntry=M.DocEntry) as ' CST (Rs.) ',
    (SELECT Sum(TaxSum) FROM INV4 where statype=-10 and DocEntry=M.DocEntry) as ' CVD (Rs.) ',
    (SELECT Sum(TaxSum) FROM INV4 where statype=5 and DocEntry=M.DocEntry) as ' Ser.Tax (Rs.) ',
    (SELECT Sum(TaxSum) FROM INV4 where statype=6 and DocEntry=M.DocEntry) as 'CS on Ser.Tax (Rs.)',
    (SELECT Sum(TaxSum) FROM INV4 where statype=4 and DocEntry=M.DocEntry) as 'HECS_ST (Rs.)',
    (Select Sum(LineTotal) From INV3 Q Where Q.DocEntry=M.DocEntry) AS 'Freight (Rs.)',
    M.WTSum AS 'TDS (Rs.)',
    M.DocTotal as 'Total (Rs.)'
    FROM OINV M LEFT OUTER JOIN INV1 L on L.DocEntry=M.DocEntry
    LEFT OUTER JOIN INV4 T on T.DocEntry=L.DocEntry and L.LineNum=T.LineNum
    LEFT OUTER JOIN INV5 J ON M.DocEntry = J.AbsEntry
    LEFT OUTER JOIN INV3 Q ON M.DocEntry = Q.DocEntry
    WHERE (M.DocDate >= '%0' AND M.DocDate <= '%1')
    GROUP BY
    M.DocNum,M.DocDate,M.CardName,M.NumAtCard,M.DocEntry,M.DiscSum,M.WTSum,M.DocTotal,L.ItemCode,L.Dscription,L.LineTotal,L.vatsum,L.PriceBefDi
    ORDER BY
    M.DocNum,M.DocDate,M.CardName,M.NumAtCard,M.DocEntry,M.DiscSum,M.WTSum,M.DocTotal,L.LineTotal,L.vatsum,L.PriceBefDi
    do something similar.
    Thanks,
    Neetu

  • While preparing an AUDIT - (Data changes report) faces an 'Server error' message

    Hi BPC Experts,
    While preparing an AUDIT report- (Data changes report) faces an 'Server error' message.
    But regular users are able to input their data in EPM.
    What could be the reason for this message?
    Regards,
    Rajesh.

    Hi Chuan,
    Attached the Error message here. We use BPC NW10
    Rajesh.

  • How to retrive DesktopIntellegence report data from FRS in the form of XML?

    Hi,
    I read in the document, all the Business Objects reports either deski or webi are stored in FRS system in the form of XML
    How can I get the Business Objects reports data (Deski reports)from the File repository system (FRS) in the form of XML.
    I need this file to use in the portlets.
    Could some one please share the information.
    pforum.

    Hi Harika,
    Webservices is best way to go inorder the fetch the data from CRM system, ofcoz it comes out in XML format.
    http://esworkplace.sap.com
    You will info abt this http://www.sdn.sap.com/irj/bpx/esworkplace
    There must a suitable webservice given for each of the below. Browse through esworkplace.
    -     Customer data
    -     Product data
    -     Promotions data
    -     Campaign data
    webservice can easily be tested in WSNAVIGATOR of ESR in SE80.
    Hope the above hints gives you a way forward.
    Chees, Satish

  • Comments not imported from Data Dictionary of SQL Server. SDDM 3.3.0.747

    Hi,
    SDDM 3.3.0.747 32-bit on Windows 7 64-bit.
    Comments are not imported from Data Dictionary of SQL Server 2008. Connection through Microsoft JDBC Driver 4.0 for SQL Server or jTDS 1.2.7
    What I have tried? In SDDM DDL generation, Comments in DBRMS for SQL Server are generated with "EXEC sp_addextendedproperty 'MS_Description' , 'Test Comment' ..." so I added extended property named "MS_Description" into SQL Server database, both on table and column. None of them were imported from Data Dictionary into SSDM. I have tried both drivers stated above. Is it a bug or am I missing something?
    I've found similar question thread Re: Data dictionary import doesn't import column comments for SDDM 3.0.0.665, so I guess it is a bug when importing with JDBC drivers.
    MiGli
    Edited by: MiGli_1006342 on May 25, 2013 8:32 AM
    Edited by: MiGli_1006342 on May 25, 2013 9:02 AM

    Extended properties were not imported correctly from SQLServer databases at DM 3.3.0.747.
    Calls to sp_addextendedproperty and fn_listextendedproperty have been modified.
    I don't think it is a problem with JDBC drivers.
    A bug fix should be available in the next release of DM.

  • Table has no tablespace in the data dictionary

    I have seen this twice now, and still don't know what causes it. Does anyone know what would cause a table to have a null value for tablespace_name in user_tables or all_tables?
    Thanks,
    Sam

    Info Temporary table will not be stored in data dictionary.
    Ex :
    Sql > Create global temporary table x (i number);
    And now run this and look at the result set !
    Sql > select table_name,tablespace_name form user_tables ;
    null

  • Reporting on Data Dictionary Views

    We are in the process of documenting our database, and it seems like there should be an easy way of doing so, given all the information provided in the data dictionary views. I haven't used Oracle Reports yet, and I was wondering if it will create reports based on these tables/views. I tried Crystal, and it does not see these views. I assume I could write a SQL statement with formatting to create a text report, but I would rather use the Reports tool. Will this work? Is there another tool/better way to document the relationships, constraints, etc., etc., of the database?

    Oracle Designer - This is the best tool to use for your requirements. impact analysis reports, db design, reverse engineering and uml modelling etc... all in one tool.
    Regards
    Simon.

  • Crystal Reports - Tables Missing from the List Within SAP Data Dictionary

    We have installed the Integration Kit and would like to create reports in Crystal Reports 2008 based on some transparent tables (BKPF being one) in our ECC 6.0 box. Using the standard Data Source 'SAP Table, Custer, or Function' we are able to connect to our ECC system and generate a list of tables within the data dictionary. However, we are missing quite a few tables such as BKPF and VBAK (tables we can see include EBKN and EBKZ).
    We ran a trace on the system (ST01) but have not found any authorization failures for the assigned account (nor do any errors or issues show up in any of the work process trace logs).
    Has anyone experience anything similar? Helpful pointers to helpful info is much appreciated (we do have all the install and user docs).
    Thanks!
    Joe Haynes
    Edited by: Joe Haynes on Apr 14, 2009 11:41 AM

    Hi Joe,
    try the following:
    - right click on the connection entry
    - select the item options
    - there is on the right hand a box that allows you to enter filter values. example SFL% will show all tables starting with SFL
    - enter a filter and hit OK
    - right click again
    - select refresh.
    most likely it is just the amount of tables coming back
    Ingo

  • How to find out where R/3 report data are stored

    Hy,
    I am new in BW.
    I have SAP R/3 report, I need to transfer that report data (all table data) to BW.
    Could You explain me step by step how i can do it?
    How to find out where data are stored?
    Thank you very much!
    Regards,
    Arunas

    Hi Arunas,
    This topic has been discusssed here earlier. Check these links:
    BW solution for ABAP Reports
    BW reports
    Bye
    Dinesh

  • Incorrect XML output data in Report 6i, other formats are ok

    Hi,
    A very strange problem when running 6i report (database is 10g). Everything is fine when running the report, when I tried to use Generate to file from the File menu to different file formats, pdf, html and rtf formats are all good, but xml format gave some extra data, it seems it lost some conditions in where clause.
    Any idea?
    Thanks in advance.
    Andrew

    I still doubt it..
    What ever character you have it in database, is going to be fetched in xml..
    be in Report builder, or sql, pl/sql.
    the way the data is being converted is the first we need to see.. if the character is getting messed here..
    once you got it as xml, and open xml in browser, then the parser finds the encoding in the top of xml, and renders the character . if it cannot understand the encoding character, then it will skip or do some abnormal things..
    oracle apps , is generating xml ?? what is that means ??
    data-template ? pl/sql or sql ??

Maybe you are looking for

  • After installing Radeon Graphics drivers on Windows 8 Flash player and Adobe Flash Pro didn't re-ins

    Hi, On a Windows 8 Pro desktop I recently installed Flash Pro and it seemed to work great.   Also Flash Player was working great as well.  But I noticed on Adobe  Photoshop CS6 that the 3d controls were not working.  So I installed the the Radeon Gra

  • While running servlets getting errors 404 or 505 resource not found

    Hi all, I'm novice to J2EE. I've encountered a problem while accessing the deployed module in weblogic 8.1 server. I'm sure that the webapplication module is deployed as i saw my module in administration console & also the status said that it is depl

  • Value Field in PA Document

    Hi, We are seeing a difference while doing an automatic posting and manual posting of an GL transaction. After posting a document, going to T.code:FB03 giving the document number and looking into the document and from there going to Environment>Docum

  • Connect multiple devices to one Thunderbolt port with docking station

    Hello everybody, for a video editing setup I would like to use all devices connected until now directly to my iMac just with a Thunderbolt docking station on only one Thunderbolt port. What I do not understand is, whether bitrate will stay the same f

  • Hi All Authorization Issue for CS02

    Hi, I have a transaction cs02. I am making changes using by calling this transaction( ie i have used it in program as call transaction cs02.) but for this transaction few user's don't have Authorization .So when these user's run the report they are n