Recreating a Report

Hi all ,
A collegue in america send me these files attached in Email of a program
AGING_REPORT_abap_code.txt   - that is the Main Report code
The following 2 are the includes.
ZMMPUR_ALV_REPORTING_TOP_abap_code.txt
ZMMPUR_ALV_REPORTING_LAYOUT_abap_code.txt
Aging_report_text_elements.txt looks as follows
I;001     ;Select Report to run:
I;002     ;Age Buckets:
I;010     ;Select currency for Aging buckets:
I;T01     ;Vendor Age Analysis Report
I;T02     ;Customer Age Analysis Report
I;T03     ;Vendor and Customer Age Analysis Report
R;        ;Vendor/Customer Age Analysis Report
S;P_BUKRS ;        Company code
S;P_DATE  ;        Key date for Open Items
S;P_DOC   ;        Document currency
S;P_LOC   ;        Local currency (US$)
S;R_CUS   ;        For Customers
S;R_VEN   ;        For Vendors
S;S_KUNNR ;        Customer number
S;S_LIFNR ;        Vendor number
S;S_SAKNR ;        G/L Account number
S;VARIANT ;        Custom Layout  for Output
Aging_report_GUI_interface.txt looks more like as follows (Didnt copy the whole thing,as it is a bit too long)
Interface Attributes
Program:             TS_FIN_AGING_REPORT
Maint. Lang.:        EN English
Output Lang.:        EN English
Created:                  07/29/2008 20:57:52
Changed:                          00/00/0000 00:00:00
Generated:                        12/02/2008 14:33:30
Status List
Status               Short Documentation                                          Stat.Type
RELHIST              Rel;ease History popup                                       Dialog Box
STANDARD             Standard for General List Output in Fullscreen Grid          Screen
Functions with Static Texts
Function Code        T Function Text                            S
                       Icon                           Icon text
                       Info. Text
%ML                    Folder                                   F
%PC                    Local file...                            L
                       ICON_EXPORT
%SC                    Find                                     F
                       ICON_SEARCH
%SC+                   Find next
                       ICON_SEARCH_NEXT
%SL                    Mail recipient                           M
                       ICON_MAIL
&ABC                   ABC analysis                             A
                       ICON_ABC
Can I Recreate a program in a test system with these things what he has send me(Especially with the Text elements & GUI_interface file ) so that I could debug it...
Thanks
P

no offense, but while staring on the screen awaiting this thread to update you could have done it manually as well.
Report and INCLUDE data should be copy and pasteable, manually create status and text elements. It doesnt look like a monster task.

Similar Messages

  • Recreate a report in BI Landscape which is present in BW

    Hi All,
    Need to recreate a report in BI Landscape which is present in BW. kindly suggest as how to proceed with this?
    Kind Regards
    Nishi

    Hi,
    Before going to create the report in the BI first you can check weather all the patches and notes are applied or not? because some reports if you create in 3.2 it will not open in BI7.
    suppose if you changed teh queries in BI7 again you can't change that in 3.5 query designer.it will not alllow you to change.
    if patches are installed properly you can opem all tha queried whatever u created in 3.5 those can open in BI& easyly.
    Regards,
    Chandra.

  • Recreating Balance Sheet with Crystal Reports

    Hello everyone.
    I need to recreate the Balance Sheet report with Crystal Reports.
    Which tables have the information I need?
    Thanks in advance!

    You may check this thread:
    Re: Recreating Original Reports with Crystal Reports
    All financial reports source data are extracted from those tables mentioned in that thread.
    Thanks,
    Gordon

  • Issue while opening the web analysis reports

    Hi,
    One of our user is not able to open a web analysis report with an error messages saying
    "Java.Lang.Exception: Unexpected HTTP status code of 500 received from server"
    "Document does not exist or no authorization to open the document"
    Other users with the same level of access are able to open the report fine and also the same user is able to access the report fine with a test id from his machine.
    What could be wrong? Any suggestions please.
    The only thing I see here, something wrong with userd ID or password.
    Thanks
    Prasad

    Hi,
    I had also faced this problem earlier. I was using HFM as data source for WA reports. After searching I found that there was some change at HFM level. Some dimensions/members had been deleted or added in HFM. And I was using those missing members in WA Grid.
    I had to recreate my reports again as I didn't get any other way to deal with this problem.
    Please shared any other alternative option, if you found while working on this issue.
    Thanks & Regards,
    Mohit Jain

  • Apex report performance is very poor with apex_item.checkbox row selector.

    Hi,
    I'm working on a report that includes some functionality to be able to select multiple records for further processing.
    The report is based on a view that contains a couple of hundred thousand records.
    When i make a selection from this view in sqlplus , the performance is acceptable but the apex report based on the same view performes very poorly.
    I've noticed that when i omit the apex_item.checkbox from my report query, performance is on par with sqlplus. (factor 10 or so quicker).
    Explain plan appears to be the same with or without checkbox function in the select.
    My query is:
    select apex_item.checkbox(1,tan_id) Select ,
    brt_id
    , tan_id
    , message_id
    , conversation_id
    , action
    , to_acn_code
    , information
    , brt_created
    , tan_created
    from (SELECT brt.id brt_id, -- view query
    MAX (TAN.id) tan_id,
    brt.message_id,
    brt.conversation_id,
    brt.action,
    TAN.to_acn_code,
    TAN.information,
    brt.created brt_created,
    TAN.created tan_created
    FROM (SELECT brt_id, id, to_acn_code, information, created
    FROM xxcjib_transactions
    WHERE tan_type = 'DELIVER' AND status = 'FINISHED') TAN,
    xxcjib_berichten brt
    WHERE brt.id = TAN.brt_id
    GROUP BY brt.id,
    brt.message_id,
    brt.conversation_id,
    brt.action,
    TAN.to_acn_code,
    TAN.information,
    brt.created,
    TAN.created)
    What could be the reason for the poor performance of the apex report?
    And is there another way to select multiple report records without the apex_item.checkbox function?
    I'm using apex 3.2 on oracle 10g database.
    Thanks,
    Niels Ingen Housz
    Edited by: user11986529 on 19-mrt-2010 4:06

    Thanks for your reply.
    Unfortunately changing the pagination doesnt make much of a difference in this case.
    Without the checkbox the query takes 2 seconds.
    With checkbox it takes well over 30 seconds.
    The second report region on this page based on another view seems to perform reasonably well with or without the checkbox.
    It has about the same number of records but with a different view query.
    There are also a couple of filter items in the where clause of the report queries (same for both reports) based on date and acn_code and both reports have a selectlist item displayed in their regions based on a simple lov. These filter items don't seem to be of influence on the performance.
    I have also recreated the report on a seperate page without any other page items or where clause and the same thing occurs.
    With the checkbox its very very slow (more like 20 times slower).
    Without it , the report performs well.
    And another thing, when i run the page with debug on i don't see the actual report query:
    0.08: show report
    0.08: determine column headings
    0.08: activate sort
    0.08: parse query as: APEX_CMA_ONT
    0.09: print column headings
    0.09: rows loop: 30 row(s)
    and then the region is displayed.
    I am using databaselinks in the views b.t.w
    Edited by: user11986529 on 19-mrt-2010 7:11

  • Error execute report in R12

    Hi all,
    I think I better change this question into a sharing because I'd solved my problem :p.
    Below is my first post in this thread before I found the solution :
    I hoped I put this in the right forum. Before I ask the question, here are my environment:
    Operating system : Oracle Enterprise Linux 4 update 6
    RDBMS : 10.2.0.3.0
    Oracle Applications : 12.0.4
    Report Builder : 10.1.2.0.2
    I created a report using Oracle Report Developer then I upload it to my Apps machine. After set all the executable and validation set I tested the report. At first the request completed with status Warning. Viewed the log I got warning like this :
    REP-0004: Warning: Unable to open user preference file
    After browse metalink and OTN (such as in Reports Compilation Errors: REP-25200 / REP-0004 / REP-1430 and in Re: REP-0004 Error... it seems that the problem was because prefs.ora was not present in $HOME so I copied the prefs.ora file from /apps/tech_st/10.1.2/tools/admin to $HOME then I requested the reports again. This time that error didn't show up and the request completed normal but there's no output at all. The same report did show output when tested in Oracle Report Developer.
    I opened the report file in Report Developer and tried to compile it (Tools > File Conversion) from rdf to rdf using different name then I copied the report and tested again. This time the request completed normal but still no output. When I viewed the log I got this error message:
    Oracle error -6502: ORA-06502: PL/SQL: numeric or value error: associative array shape is not consistent with session parameters has been detected in fnd_global.put(PERMISSION_CODE, FND_PERMIT_0000).
    APP-FND-01564: Oracle error 6502 in FDXNC
    Cause: FDXNC failed due to ORA-06502: PL/SQL: numeric or value error: associative array shape is not consistent with session parameters
    ORA-06512: at "APPS.FND_GLOBAL", line 1233
    ORA-06512: at "APPS.FND_GLOBAL", line 1432
    ORA-06512: at line 1.
    The SQL statement being executed at the time of the error was: begin fnd_global.set_nls_context( p_nls_numeric_characters => :nc ); end; and was executed from the file &ERRFILE.
    The routine FDPREP was unable to set the numeric character to .,.
    So I tried another way, I recreate the report but try to display only some fields. The fields must be put in a repeating frame because if I tried to put in a normal frame caused reports developer displayed error message that I put the field below it's frequency. After put some fields in the repeating frame I tested the report again in Oracle Apps. this time the result was Completed Normal but still no data (0 byte) though in Reports Developer it showed some data. After some test I got conclusion that the data can only be put in a repeating frame if all the data were put in the same level (e.g.: all the field put in the same repeating frame) and can't be break down where there exist repeating frame in a repeating frame (nested repeating frame) as if you want to create grouping while want I want is to create grouping. Using Reports Developer wizard to create the report gave me the same result, no data displayed.
    Now, anyone know how to solve that problem? thanks.
    and now for the solution :
    For REP-0004: Warning: Unable to open user preference file error message
    Just copy the prefs.ora file from /apps/tech_st/10.1.2/tools/admin to $HOME then the error message wouldn't show up anymore. Though based on my experience this error message can be omitted further analyze would be good to know if there's any impact to the system or performance or anything else.
    For no data displayed error
    Make sure the setup was right especially the token field as that was my problem. The token field was not the same as the bind variable in the report query, that's why the request completed normal and no data displayed :P it's very foolish of me to miss that simple thing.
    thank you all
    Message was edited by:
    UD

    mdtaylor wrote:
    Since you are on 10.2.0.3, you may want to also look at database patch 5890966 INTERMITTENT ORA-06502 DURING PEAK LOADING
    Associative Array Shape Is Not Consistent With Session Parameter at Peak Load     
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=467688.1
    Hi Michael,
    Yes, that patch is exactly I got from oracle support, however I'm having a problem to apply it :P
    Here are what I usually did to apply patch in E-Biz :
    1. Source the application environment using the environment file in APPL_TOP
    2. Enable maintenance mode using adadmin
    3. Apply patch using adpatch
    4. Disable maintenance mode using adadmin
    5. Start all the services
    How to apply patch just for database only? Reading the readme file it said that to apply patch was only using command :
    $ opatch apply
    However we need to ensure that the directory containing the opatch script appears in $PATH. I found that opatch.pl exist in $ORACLE_HOME/Opatch but I can't use opatch though I had sourcing application enviroment or database environment.
    I echoed $PATH and $ORACLE_HOME/Opatch (which either ../db/tech_st/10.2.0 for database or ../apps/tech_st/10.1.2/Opatch) and found was not in the $PATH.
    I assumed that I shouldn't change the application environment or database environment file recklessly so that $ORACLE_HOME/Opatch appears in $PATH.
    However if I tried to run opatch directly from it's folder then I got this following error :
    OPatch cannot find a valid oraInst.loc file to locate Central Inventory
    So my questions are :
    1. Do I need to source environment before running opatch? If yes, which one, application environment or database environment?
    2. How to set the Central Inventory location so that opatch recognized it? Is it by sourcing the environment in question 1?
    3. Which opatch must I run? The one in application tier or in database tier?
    4. How to run it? Type all the path directly (as /db/tech_st/10.2.0/OPatch/opatch)?
    Thx

  • Report 2 returning data from previously ran report 1 - Plus/Viewer

    Hello,
    We have an issue running through discoverer viewer and plus.
    If you run the first report with a parameter for the year with this returns the correct data. However if you run report after the first with year 09-10, the 08-09 data is returned again from the previous report
    It doesn't matter which order you run them i.e. if you run the 09-10 first and then the 08-09 the 09-10 data is returned.
    The reports work fine when run in Discoverer Desktop.
    When 2nd report is run after first it returns the data that appears in the first. This Does not happen on Disco Desktop. The SQL from the reports also runs correctly in TOAD.
    Metalink notes suggest turning of the Webcache but this is not turned on in either apps tiers
    I have also recreated both reports and this has not made a difference either.
    Regards
    Rachael

    Hi,
    Even with webcache turned off Discoverer holds the results of the last run from plus/viewer in the application server and will return these results unless an explicit refresh is entered. Normally, if different parameters are entered this is recognised and the report is re-run. I don't know how you are running your report but for some reason it is not recognising the new parameters and returning the last result set. A refresh should return the correct results.
    Rod West

  • Report not working in Discoverer Viewer

    Hi,
    I'm using Discoverer 10.1.2.1 in conjunction with E-business Suite 12.1.3.
    I have a report that runs fine in Desktop or Plus, but when run in viewer (either from the application or from the stand-alone viewer link) it ends with the following error after running for approx 4 minutes:
    The application encountered an invalid state.
    OracleBI Discoverer Viewer was unable to find the necessary data for displaying the results of this event. Please correct any errors and try again.
    I recreated the report from scratch, using the same underlying data, and adding exactly the same items, conditions and sorting. The same responsibilities have been given access, and I verified that the SQL produced in both reports is exactly the same.
    However my new report works! From what I can see the only difference is the name and workbook identifier.
    Does anyone have any idea what could be causing my error? I have searched for the error on this forum and others but haven't found the answer.
    Thanks
    Hazel

    Hi Hazel
    This has come up before and I found this thread that I was involved in several years ago: https://forums.oracle.com/message/3682002
    Here's another one, this time relating to static IP addresses: https://forums.oracle.com/message/1199457
    There's also a document on Oracle Support: The application encountered invalid state.Oracle BI Discoverer Viewer was unable to find the necessary data for displaying the results of this event" (Doc ID 884965.1)
    Also, were you using Portal? I've seen instances where Viewer was unable to run a report that was linked via Portal because the report had changed since it was placed on the Portal.
    Best wishes
    Michael

  • Report in Payment Wizard - Non Included Transaction Report

    Hi Guys,
    Within the Payment Wizard is a report called " Non Included Transaction Report", later in the wizard also referred to as "Error Log Report (System)".
    I would like to recreate this report so that I can add some additional fields on the Purchase Invoice side only, to make the report more helpful.
    I believe the tables I require are PWZ5 and OPOR, however when I run my query I get 96,000 plus entries returned which is not correct for just one month !
    This is the query I have:
    SELECT distinct T0.[InvID], T0.[CardCode], T0.[CardName], T1.[DocDate], T1.[DocDueDate], T1.[Ref2] AS [Supplier Invoice No], T0.[Amount], T0.[ErrDisc] FROM PWZ5 T0 , OPOR T1 WHERE T1.[DocDueDate] >=[%0] AND  T1.[DocDueDate] <=[%1]
    Am I on the right tracks or have I missed the mark by a country mile - could someone please point me in the right direction or has anyone else recreated this ?

    Hi,
    Try this:
    SELECT distinct T0.InvID, T0.CardCode, T0.CardName, T1.DocDate, T1.DocDueDate, T1.Ref2 AS 'Supplier Invoice No', T0.Amount, T0.ErrDisc FROM dbo.PWZ5 T0
    INNER JOIN dbo.OPCH T1 ON T0.InvID=T1.DocEntry
    WHERE T1.DocDueDate >=[%0] AND T1.DocDueDate <=[%1]
    Thanks,
    Gordon

  • Report preview fails with very generic error

    I am working on a project that includes an SSRS project within a Visual Studio 2012 solution. The SSRS project was created in VS2008 and then brought into the VS2012 solution later. The other developer is able to preview reports just fine, but I can't.
    I believe I have installed all the necessary supporting software (Sql Server Data Tools, etc.)
    I am able to create and view reports in the designer, and I can even query data through the dataset. However, when I try to preview the report, I get a very unhelpful error:
    "An error occurred during local report processing. An error has occurred during report processing."
    All of the other forum messages I have found that have run into this error also have some further explanation of the error. I just get this, which leaves me with two questions:
    1) Has anyone seen this and managed to resolve it? If so, how?
    2) Is there somewhere else I can look, a log or something, to tell me what the error actually is?
    Thanks in advance,
    Geoffrey Callaghan

    Hi Geoffrey,
    If I understand correctly, you have meet this issue when you try to preview the report in SQL Server Data Tools.
    Based on the error message, it may be the report design incorrect caused this issue. As you mentioned, in general, it will have other information after the error message. Please make sure if there are any other information. We can create a simple report
    to check if also meet the same issue to judge if we have installed software correctly. If possible, please try to recreate the report to troubleshooting the issue.
    If the issue still persist, could you please post the dataset with data and .rdl file to us by the following E-mail address? It is benefit for us to do further analysis.
    E-mail:  [email protected]
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Error while opening the web analysis reports.

    Hi,
    Whenever i am trying to open any web analysis reports i am getting the error message as "error occurred while opening document. document Id={0}. Is anyone have any idea about this issue.
    Thanks & Regards
    Ekta

    Hi,
    I had also faced this problem earlier. I was using HFM as data source for WA reports. After searching I found that there was some change at HFM level. Some dimensions/members had been deleted or added in HFM. And I was using those missing members in WA Grid.
    I had to recreate my reports again as I didn't get any other way to deal with this problem.
    Please shared any other alternative option, if you found while working on this issue.
    Thanks & Regards,
    Mohit Jain

  • Getting selected row values of a classic report

    Hi Guys,
    i'm using Apex 4.1,
    I have a classic report on my apex page. First column of this report is check box for row selection. and its binded to primary key of a table. i know that i can get the selected row's primary key (Check box value) using APPLICATION_ITEM.G_FO1() function. What i need is how can i get the other cell values of the selected row ?
    Appreciate if someone can help on this,
    Thanks.

    Apex-Ape wrote:
    i'm using Apex 4.1,
    I have a classic report on my apex page. First column of this report is check box for row selection. and its binded to primary key of a table. i know that i can get the selected row's primary key (Check box value) using APPLICATION_ITEM.G_FO1() function. What i need is how can i get the other cell values of the selected row ?If you really have a report with just one checkbox column and the rest of the data standard read-only report columns then it's not clear exactly what the requirement is. What do you want to do with them when you get them?
    I can think of 2 possible approaches:
    <li>Stick with the current report. On page submit you get an array of zero or more PKs. Create a collection with a row containing each PK. Whatever it is that you want to do next can then use a query that is a clone of the original report query plus a join to the PK values in the collection.
    <li>Recreate the report with shadow <tt>apex_item.hidden</tt> columns in the query for each value. In the report column attributes, do not display the <tt>apex_item.hidden</tt> columns, but include them with each displayed column (or stuff them all into one column for convenience) using HTML Expressions. The values will then be available in <tt>apex_application.g_fxx</tt> arrays like the row selector checkbox.
    I prefer the first one, but really it depends on what the next step is...
    (If it's actually a tabular form then the values will be in other <tt>apex_application.g_fxx</tt> arrays.)

  • Browser performance issue when Calling BI Publisher report from OBIEE dashb

    Hi Techies,
    We installed OBIEE 10.1.3.3 on SunOS 5.9 unix box.This is PROD env.We are calling BIPublisher report from OBIEE dashboard by clicking the BIP reports link on OBIEE dashboard.After clikcing the link BIPublisher report is opening in another browser window.But is it taking time.
    Plz tell me how can we reduce the time taken to open BIPublisher report window when we cilck on the report name in OBIEE dashboard
    Thanks,

    Suresh
    There is no out of the box method to get the EBS report to OBIEE. You could look into moving the EBS report to a mountable web server directory after it completes and then show it in OBIEE via a link or html object. You will need to rename the report of course, every time you run it its going to change names.
    In an after report trigger you could call a small java class to move and rename the file for you.
    Alternatively, recreate the report in the standalone version. Be aware that you are going to have to set orgs yourself, BIP is not aware of orgs outside of EBS
    Tim

  • Incomplete List of Values in Interactive Report Column Headers

    Oracle Database 11g 64-bit
    Apex 3.1.1.00.09
    I created an interactive report that results in over 10,000 records, and several of the columns have incomplete filter values when you click on the column header. It's not even close in some instances. It's not even showing the values that are loaded in the visible page.
    I have tried recreating the report on a new page, as well as creating a database view with the query and then just querying the view (in case there was a problem with query complexity).
    I'm at my wits end as to why this is happening. Have any of you seen this happen, and is there any way to get around it? I know I can write my own LOV query for the column headers, but those won't be dynamic like they are supposed to be out of the box taking applied filters into account.
    Thanks in advance.

    Tim,
    Did you find a solution to this. I have the same problem.
    Cheers
    Yog

  • TimeoutmexpiredState: HYT00 error while refreshing Deski Report

    Hi All,
    I am tryting to refresh a deski report and get the following error:
    Error during SQL execution: (DA0003): Exception DBD, [Microsoft][ODBC SQL Server Driver] Timeoutexpired state: HYT00] The following data providers have not been successfully refreshed: QUERY with CONNECTION. (DMA0007): (Error: INF)
    The report has prompts e.g Regions. When I select Region 1 the report runs fine, but when I select Region 2 this error occurs. I presume this region also has a lot of data and could take a couple of minutes to run.
    I have tried analysing the universe and add index's to the database tables to try and speed up the query process - but no luck.
    Has anyone seen this or been able to resolve this...
    Many thanks
    Jacques

    This is scary... Google just returns 2 results and they are not much use either..
    But anyway, I went all the way... and so I shall post the results.
    Firstly, I tool the SQL from the report and ran it in query analyser to see the query execution plan. Where I could detect high query cost, I created index's on the tables where appropriate.
    Futher, I incorporated the physical tables instead of using views from the database (from my legacy developer)...
    And finally, I recreated the report to iron out the objects/tables that make the report run slow when added.
    A lengthy process - most probably not the best, but at least the report runs and no timeouts occur.

Maybe you are looking for

  • How do i synchronize ipod nano music with my new mac. v

    How do I sync the music on ipod nao with new mac. Itunes library is almost empty. when i sync my empty library on mac will delete all music on ipod

  • How do I import a iWeb file from another computer to my computer? I have Lion and iweb version 3.0.4

    My friend has been working on a website on her iWeb on her computer and I would like to take over on mine. Does anyone know how to do this? thanks!

  • SAP Script Problem in output in DEV and QA systems

    Hi all, I'm working on Bill of Lading form. we tested the form well in development system and moved it to QA. It gives me spacing issues in QA. few columns moved out of their designated area etc... The point to be noted is I have given fixed length o

  • ESB performance

    Hi, A scenario which involves a database with more than 10Lakh records. Full data read from Db (one time , not polling) -> Write to a file. This is a kind of a batch processing and we may use ODI/ETL tools to achieve huge amount of data transfer. How

  • JAAS Authorization and Credentials

    Hi, I am adapting an access control system to operate as a JAAS authentication and authorization service. There is a lot of doco covering creation of custom authentication but far less on the authorization side. Any pointers welcome. My question is: