Materials for modifying Oracle Standard Report

Hi,
I need to modify Oracle Standard Reports.
Is their any material or documentation how to do it...?
If some one could give me the link or documentation that would be really great full!
Thank you!
-Preetha.

hi
which type of modification u want explain me i will tel u soluation
Rizwan

Similar Messages

  • How to call Report 6i/9i Oracle Standard Report into Discoverer 10g

    How to call Report 6i Standared report into Duscoverer 10g as there is a requirement to create or transfer Oracle Standard report into Discoverer.
    1) Account Analysis Subledger Details(180 Char) - Standard Report 6i as i want the same report in Discoverer 10g.
    2) Aging Report -- 7 bucket --Standard report in 6i,how to transfer in Discoverer 10g.
    Is is possible to Transfer from Report 6i to Discoverer or How to Create this report in Discoverer 10g.
    Please advice,
    Sushant

    Well, if I had to do it, here's how I'd start.
    1. Get the SQL from the Oracle Report and then create a database view that's more generic based on the SQL but still gets the answers.
    For example, you'd not code many conditions, etc. but the database view would be pointing to the correct Oracle Apps tables / views.
    Once you've got the view, bring it in to Disco Admin, etc. and create a report from it that now adds the extra conditions needed. That way you can use the underlying concept without hard coding things like dates, etc. which you would ask the user at run time.
    However ... as you may well know ... Oracle Reports can do some 'strange and/or powerful things' on the fly and, for example, it may be something like a temporary table generated for the report, etc. so may become a much bigger issue.
    2. If you have NoetixViews views then they'll most likely already have the views for these queries already created as they're reasonable for what's needed in an Oracle environment.
    3. I'd see if there is already a pre-defined BIS view that covers this as well. Again, you're in an area that's pretty popular so if a BIS view already covers much of the same info then you've got a create view 'head start' already. Check views owned by Apps starting with the application plus FV or FG (the one you'd really want) such as: GLFG_Budgets_To_Actuals to see what I mean.
    Russ

  • Who modified the  standard report

    Hi,
      How can i find out who modified the  standard report in my server,guide me for the same.
    Thanku

    SE38 -> Enter report -> Mark Attributes -> Display  -> Last changed by.
    Regards
    Juan

  • Bind Variable in Oracle Standard Report

    hi experts
    i'm using oracle 10g r2 , working on oracle erp r12 ebs
    i have a standard report where i add some bind variables but the code is too complex and most of the data retrieved from formula column define in oracle standard report . how to add bind variable in this scenrio??

    I think you want to post in the appropriate EBS sub forum. This one is specifically to do with SQL and PL/SQL, so not everyone here will have knowledge of EBS.

  • Oracle standard reports (non FSG) using Report Manager

    Hi,
    I was wondering if Oracle standard report (non FSG reports) can be run/published from Report Manager. If yes, can somebody provide me the steps to run/publish these reports?
    Thanks in advance.
    Thanks
    Sam

    Sam,
    I have never tried this believe but I think it is not possible (I am not referring to standard concurrent programs which are submitted through WebADI/ADI). You may give this a try by assigning certain module/application and make it print to this concurrent manager and see if it works.
    BTW, what is the point of running standard concurrent requests on Report Manager?
    Note: 256286.1 - Report Manager Frequently Asked Questions (FAQ) - Install/Upgrade
    Oracle® Report Manager User's Guide
    http://www.oracle.com/technology/documentation/applications.html
    Regards,
    Hussein

  • Modifying the Standard Report template

    Hi
    I have a report with 10 columns and 2 of them are wb_id, pa_id. Depending on the search critiria either wb_id or pa_id will be null. I want to highlight the row with some color when I select any row and I am modifying the standard template and
    column template condition is 'Use Based on PL/SQL Expression' and it is
    NVL(#COL02#,0) = NVL(:GLOBAL_WB_ID,0). But when I run the report it is giving the error that encountered # wherea as expecting.......
    Thans a lot.

    Hi,
    I have a report page uses the following block of pl/sql as its source.
    This calls a function by passing page items and this functions returns sql query.
    DECLARE
    V_SQL VARCHAR2(4000);
    BEGIN
    V_SQL := WF_PCK02.search_wb_pa(
    :P1000_WB_ID,:P1000_PA_ID,:P1000_RIVER_NO,:P1000_GENRE,:P1000_LOCATION,:P1000_WATER_DEPENDENT,:P1000_BASELINE,
    :P1000_NBT_PRESSURE_TYPE_ID,:P1000_PURPOSE,:P1000_NBT_SIC_DESC,:P1000_ACTIVITY_DESC,:P1000_NBT_MORPH_ACTIVITY,
    :P1000_SW_ASSET,:P1000_ORDER_BY,:P1000_R1);
    RETURN V_SQL;
    END;
    Now if user is searching for water bodies the results look like this.
    10317 - Allt Ceitlein SURFACE WATER River Y 2a 2b N N
    10318 - Allt a Chaorainn SURFACE WATER River Y 2b 2b N N
    10319 - River Coupall SURFACE WATER River Y 2b 2b Y N
    10320 - Allt a Bhiorain SURFACE WATER River Y 2b 2b Y N
    if the user is searching for PAS the results look like this.
    - UKS7992310 Lochs Long and Goil SHELLFISH WATER - Y 1a 9z N N
    - UKS79923100 Ulva SHELLFISH WATER - Y 1a 9z N N
    - UKS79923101 Ura Firth SHELLFISH WATER - Y 1a 9z N N
    - UKS79923102 Voe of Clousta SHELLFISH WATER - Y 1a 9z N N
    - UKS79923103 Wadbister Voe SHELLFISH WATER - Y 1a 9z N N
    - UKS79923104 Inner West Loch Tarbert SHELLFISH WATER - Y 1a 9z N N
    I had written a java script to select the current row, and page refreshes when I click
    any where on the row and displays the display item saying that
    currently selected id is 10317
    or
    Currently selected id is UKS79923100
    and also assigns the 10317 to GLOBAL_WB_ID or UKS79923100 to GLOBAL_PA_ID
    Now my user want to change the color of the currently selected row.
    For this I am trying to change the report template like this
    Column Template 1
    <td class="t15data"#ALIGNMENT# style="background:#d1e2f3">#COLUMN_VALUE#</td>
    Column Template 1 Condition
    NVL(#2#,0) = NVL(:GLOBAL_WB_ID,0);
    BUT
    it is giving the following error.
    Encountered the symbol "<" when expecting one of the following: ( ) - + case mod new not null others table avg count current ........................
    ERR-1025 Error processing PLSQL expression. :GLOBAL_WB_ID = NVL(10317,0);
    Then I changed the condition to substitute the #2# in single quotes like this.
    NVL('#2#',0) = NVL(:GLOBAL_WB_ID,0);
    BUT it is giving this error
    Encountered the symbol "10317" when expecting one of the following: ( ) - + case mod new not null others table avg count current ........................
    ERR-1025 Error processing PLSQL expression. :GLOBAL_WB_ID = NVL('10317',0);
    I am unable to understand where the error is coming from.
    Please help me.
    10317 is the first row of the result set.
    Thanks a million in advance.

  • Single singon for the Discoverer+Standard Report

    Hi
    We have build discoverer report and standard report in our implementation
    I like to know is there any possibility to make it as a single sign on so that the user will be able to view all the reports(discoverer+standard) when he logs into the application instead of again logging into the discoverer viewer to view the discoverer report
    Has anyone came across this scenario Please advice me on this
    Regards
    Ramesh Kumar S

    Hi Ramesh
    You can use the ICX%Discoverer profile to set up the link between E-Business Suite and Discoverer. You also have to make sure that if Apps is running in Secure mode that Discoverer is running in HTTPS mode, otherwise the ICX file will try to setup secure security which the standard Discoverer cannot understand.
    You would still have to create a custom menu if you wanted to display a list of Discoverer workbooks inside Apps. As for creating reports using Desktop, why would you be doing this? You should be using Plus. There are too many new features available in Plus that you cannot take advantage of from within Desktop plus I have seen instances where reports created in Desktop will not open in Viewer.
    I have to question the single user concept though. This is far too dangerous and breaks all Sarbanes-Oxley auditing requirements. You ought to be using private connections and not a public connection. Are you aware that if all users gain access to all reports and all data that all security is blown out of the window? Also, any user will be able to change or delete any report and you will have no idea who did it because they will all be using the same connection.
    My advice would be to rethink your approach and come up with a more secure mechanism using private connections.
    Best wishes
    Michael

  • Licence for Development Oracle standard edition

    Hi,
    I am having named user licence for the standard edition Oracle database.
    Can I create multiple instances for the same machine and redstribute my licences internally?
    Can we run multiple versions of oracle on same machine under one license ?

    WARNING: None of this internet advice has any legal standing and you would be absolutely recommended to confirm with your local Oracle sales representative.
    Can I create multiple instances for the same machine and redstribute my licences internally?Yes, as long as you have enough named user licenses to cover all of the users who will be connecting to all those instances
    Can we run multiple versions of oracle on same machine under one license ?Yes, as long as you have enough named user licenses to cover all of the users who will be connecting to all those instances of different versions
    If you have a large number of users (say > 50) it may be cheaper to purchase a processor license for the server. You will need to check this with your local Oracle sales representative as processor licensing has its own licensing metrics e.g. O/S platform and CPU.
    Note that what my sales rep says is ok may not be what your sales rep says is ok, so get confirmation in writing for reference.

  • Test materials for OCA  oracle 11g exam

    Hi every one,
    I have to take OCA and subsequently OCP exams. Can any one be kind enough to send me sample test papers or other such materials...
    You may please reach me at [email address removed by moderator for security]
    Thanks in advance
    Edited by: Certification Forum Moderator on Aug 26, 2010 10:26 AM

    Asking for braindumps? Those are illegal, and Oracle may not grant you any cert if they know you're using them (like, if you ask for braindumps on Oracle's own website?!).
    There are, on the other hand, a number of legitimate resources you can use. Go to amazon.com, and search for "oracle ocp 11g" and you're sure to bring up some books by Oracle Press, etc. that you can use.

  • "Login Failed for user" in Standard Report Creation Wizard

    I am trying to create a report using the report wizard in CR 08. When I choose new connection ==> OLE DB(ADO)==>Microsoft OLE DB Provider for SQL Server and enter the Server and user ID (no password), I get the error "Login failed for users".
    SQL State: 42000
    [DataBase Vendor Code: 18456]
    I was using CR 10 and called the 1-866 # and was told to try it wil CR 08 and Im getting the same error. I know the log on information is correct because I use the same server name and userID to login with SQL Server management studio and Visual Studio 08.
    Please let me know what I can do to link CR to my SQL Database.
    Thanks,
    John

    How is your user accessing the site? 
    Did you extend it to a different zone, and if so what authentication provider are you using for that zone or is it the same zone?
    Looks like the domain is a workstation name?  are they logging in with valid credentials for the WIN-IMH9QUCN1FU workstation, which may be different than what they usually log in as?
    ieDaddy
    Blog: http://iedaddy.com
    Twit: @iedaddy

  • APEX variable for rowcount of standard report?

    Hi Folks!
    In the pagination for any APEX report there is this "X-Y-Z" option, with Z displaying the number of rows selected. This "Z" I need.
    In my report I have several filter options, and I would like the user to get a feedback about how many rows are selected like "X/Y", with Y being a precalculated number, and X the number of rows returned. Now I could run the entire report a second time, storing the count(*) result in a page item, but if there is a variable already existing in APEX (for the pagination) that would certainly make things a little easier. I havn't found anything yet with searching, but most probably one of the experts here knows how to access that value.
    Thanks and greetings,
    Tobi

    You are supposed to be able to get the required information using the #TOTAL_ROWS# and #LAST_ROW_FETCHED# substitution strings in the report region footer.
    Note that for #TOTAL_ROWS# to work the report must use a pagination scheme that calculates the total number of rows, such as "Row Ranges X to Y of Z (with pagination)".
    However, the #FIRST_ROW_FETCHED# and #LAST_ROW_FETCHED# are currently not changing when I test it. Either these substitution strings are not compatible with the partial-page refresh mechanism now used for report pagination, or this is a bug.

  • Modifying Oracle Standard Form

    am trying to modify the purchasing transactions receiving form. I am trying to make it mandatory the purchase order number while querying for the purchase orders.At present the purchase order Receiving form can query without entering any purchase order numbers.I have written a KEY-NEXT-ITEM trigger and a WHEN_VALIDATE-ITEM trigger for the item PO_NUM in the block FIND.Also I have modified the WHEN-BUTTON-PRESSED trigger on the button FIND in the block FIND.However the form does not show up the error messages coded in the above triggers when no PO numbers are entered in the PO_NUM field.kindly help. am trying to modify the form RCVCOFND.fmb

    Hello,
    you can try "SET_ITEM_PROPERTY' command with the "ITEM_IS_VALID" property,so that the validation will be forced on the po_num column.
    Regards
    Mohan

  • Standard Report Customization

    Hi All,
    I am wanted to Customization for existed oracle standard Report(VAT Sales Report).I just want to add 4 more fields.
    So that i have increase the "Main section width and hight" While i am trying to expand the Main frame i am getting the error follow
    "REP-1212: Object 'Body' is not fully enclosed by its enclosing object ''."
    Please can any one help me?
    Or please tell me the prerequisite setups for the rdf to customize it.
    Thanks in advance.
    Regards
    Raghavendra Nara

    From Reports builder help:
    REP-1212: Object '<object name1>' is not fully enclosed by its enclosing object '<object name2>'.
    Cause:  
    The possible causes of this error include the following:
    Case 1: An object is not fully enclosed by the page. That is, the object extends beyond the page boundary.
    Case 2: A repeating frame that forms a matrix is one or more layers above a repeating frame that it contains. In a matrix layout, repeating frames must be below repeating frames that they contain.
    Action:   You can take the following actions to correct this error:
    If Case 1: Move or resize the object so that it does not extend outside the page boundary. Alternatively, increase the page size in the Report Property Inspector.
    If Case 2: Using Arrange--\>Send to Back, Arrange--\>Bring to Front, Arrange--\>Move Backward, and Arrange--\>Move Forward, arrange your repeating frames such that, in terms of layers, the following is true: repeating frames are below repeating frames that they contain and down repeating frames are below across repeating frames.

  • Standard report in SAP materials ordered

    Hi Guru's
    Can any one help me for getting a standard report in SAP where one can track the materials ordered. That is when the materials have to be delivered, the date when the vendor despatched the goods, when we received it i.e actual GR date etc.
    Thus it gives all the dates, the quanties etc... so that we can find exactly where the delay is happening and remind the vendor for this particular order.
    Best Regards
    Mouli

    Hi Mouli,
    If you want send reminders for deliveries, then you can do that in advance or after the desired delivery date with ME91F
    If you only want monitor open POs that are late, then you can do that in ME2M or ME2L by using selection parameter WE101 and setting the delivery date to today and add with F2 the smaller sign.
    Do you record the date when the vendor dispatched the goods in your PO's ? it is possible with shipping notification.
    A report showing all this info must probably be developed by yourself, if you are not satisfied with the options in ME2M ME2L.
    It may very usefull to you
    Regards
    Madhu

  • Standard Report for Credit Balance

    Hi,
    Is there any oracle standard report for the information of credit balance??
    We use customized report for this issue now, but I prefer to use the standard report in the future.
    I created a customer with credit limit of 1000 USD, and created an order for 10 USD and then booked.
    My Credit Rule is set at booking point.
    I need an report which shows the information about : credit limit is 1000 USD, 10 USD is in used, and credit balance is 990 USD.
    I have run Credit Exposure Report and Credit Limit Usages Report, which names are alike what I want, but Credit Exposure Report just show the overall credit limit without information about how much is in used (and exposure is 0 ?? , available is the same as overall credit limit which equals to 1000 USD.), the Credit Limit Usages Report show nothing.
    So, is there any other oracle standard report for the information of credit balance??
    Thanks in advance and
    best regards,
    Zhxiang.

    Hi Zhxiang,
    Exposure is the credit usage of the customer. The credit exposure report will work based on the credit check rule. So, in your case, check what the "Booking" rule is set as. The report will consider all the elements mentioned in the rule like open orders, open AR balance etc. The values which you see in the report are exactly the same ones which are used by the credit checking engine when it does a credit check. You can get some information in the user guides also for this report.
    But this is the report which you should be looking into for knowing the credit limit, credit used and credit available details.
    Regards,
    Swapna.

Maybe you are looking for

  • HTTP Request Error

    Hi Iam using Flex to display pie chart in my application. Im getting the pie chart in Mozilla firefox but in IE iam getting Http Request Error. Iam giving the code what i wrote. Please find. can anybody help me in this? thanks mxml file <?xml version

  • Unable to create the confirmation

    Hello We are not able to create the confirmation for PO. We are not finding the PO while trying to create confirmation using confirm centrally transaction. Please reply how the conf can be created? Thanks Manas

  • Publishing Streams in Different rooms?

    Hi, So If i have someone streaming their cam and audio in a room. Then want to redirect that stream in a different room, but make it work in such a way where the user does not have to republish. is that possible. I understand you can be connected in

  • Upload Image Files into IFS

    Dear Members, I am trying to upload files from my local disk to the IFS. There is no problem about uploading txt files. But i could not upload the image files like ".tif". Is there anyone who can help me urgently please? Here is the part of my source

  • Video card or driver problems with an N200, please help!

    I have a lenovo 3000 N200, it is really cool, runs even games quite well, including newer ones. But, is it normal to for the display driver program to freeze out in Warcraft 3? It always does that, when accessing the list of maps in the game and afte