How to register custom report under Custom Development Application

Hi 2 all
How to register custom report under the Custom Development application in R12 vision DB, and also confirm location/folder of Custom Development application in R12.
Thanks
Zulqarnain

Hi,
You may or may not need to "register" the workflow - it depends on the changes that you made and which Item Type you modified. Some applications are essentially hard-coded to use a specific item type and process, some hard-coded to use an item type but you can configure the process to use, and some allow you to specify which item type and which process to use.
Without knowing exactly what you have done, though, there is no specific advice that anyone can give you here on what you need to do, apart from to ensure that you have saved the new definition to the database.
HTH,
Matt
WorkflowFAQ.com - the ONLY independent resource for Oracle Workflow development
Alpha review chapters from my book "Developing With Oracle Workflow" are available via my website http://www.workflowfaq.com
Have you read the blog at http://www.workflowfaq.com/blog ?
WorkflowFAQ support forum: http://forum.workflowfaq.com

Similar Messages

  • Custom Reports in SQL Developer and translations files

    I try to do custom reports for our development team and I would have translated ones, like standards does.
    Does anyone have any informations on how to do that ?
    I tried with xliff file in the same directory of my custom xml but without any result.
    Has anyone new about XML schemas or DTD for customization of SQL Developer. In 2.1EA2 I haven't found anything related to this topic. Is it still maintained for the final 2.1 release ?
    P.S.
    Sorry for the ugly English. It's not my mother tongue.

    Hi Chris -
    I can't duplicate this here. Using RC1 against my EA2 t test repository works fine. Looking at the code, that message should only appear if either the Oracle version is less than "10" or some error occurs while trying to figure that out. I assume you are running something greater than version 10 or EA2 should/would not have worked. Can you let me know which Oracle and Java versions you are running with?
    Brian Jeffries
    SQL Developer Team

  • How  to grow the report of customer's openitem with sales order

    How  to grow the report of customer's open item with sales order?
    Now we can get the customer's open item with invoice No easily,but our end user need the the customer's open item also with sales order .And because a invoice to multi sales orders. I can do nothing.
    Now I have a idea that a develivey No with one sales order , and one invoice with a sales order's develivery ,then one inovice to one sales order .  I want to  know if other company have use this idea. Or have other solution for my problem.

    Hi Yuzhou Yang ,
      Yes you are right. In FI transaction you can get the sales invoice wise , reference field of the header data.
      As you are aware that while creating a sales order , no FI entry is generated.
      In my opinion you can get the required report through customization.
    Thanks
    D.K.Lakshmi narayana

  • How to register discoverer report

    Can some one tell me how to register discoverer report from scratch
    thanks in advance

    You'll have to wait for the next release for Discoverer integration.

  • How to send the report output to the application server in a excel file

    Hello,
    how to send the report output to the application server in a excel file.
    and the report runs in background.
    Thanks in advance.
    Sundeep

    Dear Sundeep.
    I'm providing you with the following piece of code ... Its working fine for me ... hopefully it suits your requirement ...
    D A T A D E C L A R A T I O N *
    TYPES: BEGIN OF TY_EXCEL,
    CELL_01(80) TYPE C,
    CELL_02(80) TYPE C,
    CELL_03(80) TYPE C,
    CELL_04(80) TYPE C,
    CELL_05(80) TYPE C,
    CELL_06(80) TYPE C,
    CELL_07(80) TYPE C,
    CELL_08(80) TYPE C,
    CELL_09(80) TYPE C,
    CELL_10(80) TYPE C,
    END OF TY_EXCEL.
    DATA: IT_EXCEL TYPE STANDARD TABLE OF TY_EXCEL,
    WA_EXCEL TYPE TY_EXCEL..
    E V E N T : S T A R T - O F - S E L E C T I O N *
    START-OF-SELECTION.
    Here you populate the Internal Table.
    Display - Top of the Page.
    PERFORM DISPLAY_TOP_OF_PAGE.
    E V E N T : E N D - O F - S E L E C T I O N *
    END-OF-SELECTION.
    SET PF-STATUS 'GUI_STATUS'.
    E V E N T : A T U S E R - C O M M AN D *
    AT USER-COMMAND.
    CASE SY-UCOMM.
    WHEN 'EXPORT'.
    Exporting the report data to Excel.
    PERFORM EXPORT_TO_EXCEL.
    ENDCASE.
    *& Form DISPLAY_TOP_OF_PAGE
    text
    --> p1 text
    <-- p2 text
    FORM DISPLAY_TOP_OF_PAGE .
    SKIP.
    WRITE: /05(128) SY-ULINE,
    /05 SY-VLINE,
    06(127) 'O R I C A'
    CENTERED COLOR 1,
    132 SY-VLINE.
    WRITE: /05(128) SY-ULINE,
    /05 SY-VLINE,
    06(127) 'Shift Asset Depreciation - Period/Year-wise Report.'
    CENTERED COLOR 4 INTENSIFIED OFF,
    132 SY-VLINE.
    WRITE: /05(128) SY-ULINE.
    E X C E L O P E R A T I O N
    CLEAR: IT_EXCEL[],
    WA_EXCEL.
    PERFORM APPEND_BLANK_LINE USING 1.
    WA_EXCEL-cell_02 = ' XYZ Ltd. '.
    APPEND WA_EXCEL TO IT_EXCEL.
    CLEAR: WA_EXCEL.
    WA_EXCEL-cell_02 = 'Shift Asset Depreciation - Period/Year-wise Report.'.
    APPEND WA_EXCEL TO IT_EXCEL.
    PERFORM APPEND_BLANK_LINE USING 1.
    ENDFORM. " DISPLAY_TOP_OF_PAGE
    *& Form APPEND_BLANK_LINE
    text
    -->P_1 text
    FORM APPEND_BLANK_LINE USING P_LINE TYPE I.
    DO P_LINE TIMES.
    CLEAR: WA_EXCEL.
    APPEND WA_EXCEL TO IT_EXCEL.
    enddo.
    ENDFORM.
    *& Form EXPORT_TO_EXCEL
    text
    --> p1 text
    <-- p2 text
    FORM EXPORT_TO_EXCEL .
    DATA: L_FILE_NAME(60) TYPE C.
    Create a file name
    CONCATENATE 'C:\' 'Shift_Depn_' SY-DATUM6(2) '.' SY-DATUM4(2)
    '.' SY-DATUM+0(4) INTO L_FILE_NAME.
    Pass the internal table (it_excel which is already populated )
    to the function module for excel download.
    CALL FUNCTION 'WS_EXCEL'
    exporting
    filename = L_FILE_NAME
    tables
    data = IT_EXCEL
    exceptions
    unknown_error = 1
    others = 2.
    if sy-subrc <> 0.
    message e001(ymm) with 'Error in exporting to Excel.'.
    endif.
    ENDFORM. " EXPORT_TO_EXCEL
    *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    When you click the button - Export to Excel ( GUI-Status) you'll be able to export the content of the Internal Table to an Excel file .......
    Regards,
    Abir
    Don't forget to award Points *

  • Want to create custom report under report field in OEM 11G

    Dear all
    I would like to create custom report on OEM 11G. I have query which is executed and verified from TOAD. But after placed report element it shows an error that table/view not exits. But it doesn't ask any database user name and password.So let me like to know how to do this. I want add more and more reports after the success of this.. Ho can it be done?Please advice.
    Note:-
    The data is getting from OEM repository i think so.. But i need a report which is get data from various apps and system tables. So how to display result from this table and shown to EBS reports.
    Regards,
    Gobinath.R
    Associate consultant
    Petrofac Information Services Private Limited
    Chennai.
    Edited by: Gopinath on May 18, 2012 4:23 AM

    Report should be based on tables in repository database. Mostly sysman tables we will be using for reporting. If you need other database tables then you need to create dblink to those targets in sysman schemas. To my knowledge that's the only way you can refer to other db tables in reports.
    Regards,
    Satheesh Shanmugam

  • How to register a report program ins EBS?

    HI,
    I made a new report program called APVOUCHER.rdf it is developed/tested/ and running on Reports 10g windows. Then I ftp it to my EBS R12 linux server. Then I put it under the base path of $AP_TOP/reports/us.
    Then I register it in EBS using this
    a) Define the concurrent program executable with the Oracle Application Object Library. This links the execution file and the method used to execute it with a defined concurrent program. Log into Applications as the System Administrator and navigate to Concurrent > Program > Executable
    b) Define the concurrent program with the Oracle Application Object Library along with any program parameters or any incompatibilities. Log into Applications as the System Administrator and navigate to
    Concurrent > Program > Define.
    But in the 2nd define the program APVOUCHER ca not me found in LOVs provided under region
    Excutable
    Name>
    Method>
    If I click LOV for Name the report name is not in there :(
    Anything I miss in here?
    Thanks a lot

    Hi,
    Before you define the report, navigate to Concurrent > Program > Executable and fill out the form as follows:
    Executable: <REPORT SHORT NAME> --> (Similar to the report name you have uploaded but without .rdf)
    Short Name: <REPORT SHORT NAME> --> (Same as above)
    Application: Payables
    Description: <Description>
    Execution Method: Oracle Reports
    For more details, please refer to:
    Note: 133991.1 - How to Register a Custom Report
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=133991.1
    Once you are done with the above, you need to add this concurrent program to the Request Group which is attached to your responsibility.
    - Login to System Administrator responsibility
    - Navigate to Security > Responsibility > Define
    - Query the Responsibility Name
    - Write down the Request Group
    - Navigate to Security > Responsibility > Request
    - Query the Request Group
    - Add the concurrent program
    You should be able to see the concurrent program from the responsibility then.
    Regards,
    Hussein

  • Custom Reports and Custom Fields

    When creating a custom report, it seems the only way to include custom fields and Extend CRM database fields is to include ALL of them in the Filter Criteria > Custom CRM Form Filter section. The business owner wants me to create a custom report that includes only a few custom fields but I'm not seeing how this is possible without including all of them from a specific web form.
    Does anybody have suggestions as to how I can accomplish this?

    Hi Rajeev,
    To the best of My knowledge i know 3 process to Generate Report in E-Recruitment Pool.
    1) Create an Infoset in SQ02 and assign the Role/UserGroup assignment as ERC_RECR and create Query in SQ01, Combining your E-Rec table & OM tables with variant and generate, you can see the Report in E-Rec(Login as Recruiter)->Reporting->Reporting Select your Custom Report and Execute.
    2) Create a Custom Report with Transaction Code.
        Create a IView in Portal and call the Transaction this is the
         job of portal adminstrator.
    3) Make an RFC (Remote Function Call) enabled Function Module with Importing & export parameters as per client requirements.
    Code the logic and Retrive in Internal table in exporting parameter.
    now Portal Job
    Portal administrator will create a WebDynpro front end application for report selections screen or it can be any other portal development tool, for good look and feel, he will just call your RFC Function Module, by passing import parameters for fetching the internal table data he will display report on portal.
    Rajeev,
    standard process is via SAP Queries you only define the Querry with variant as defaulting the selections screen what ever the values in the backend,
    only you select the report name from portal E-Rec and execute report their wont be any selections screen will be shown.
    Coming to I-View yes what ever the report selections screen is their in backend it will be appering the same.
    webdynpro your will your can desing like any thing.
    coming to number colums not very sure.
    yes create only OM reports also on E-Rec.
    Cheer Up dear, if this resolves.
    Thanks & regards
    Ravi Kiran Sabba

  • ILearning Custom Report on Custom Table

    Hi
    I want to create a custom report on my own (custom) tables.
    - I created my table in the needed schema (where are the iLearning tables are, like ILA_USER)
    - I created my custom report, for starters: "select * from own"
    But every time I get an error saying: table or view not exits.... (ORA-00942)
    Is the table choice for reports limited? (I think that because of the Table Definition button and list)
    Any suggestions/ideas?
    (please send it to my email address: [email protected])

    you can access the custom tables in ilearning reports by
    1. creating public synonym on custom table or
    2. if you do not have permissions to create public synonym then grant select on custom table to ilearn_rpt
    then use this syntax
    select * from custom_schema.custom_table
    or
    select * from custom_table

  • How to transport the report object from development clint to quality clint

    any body knows different ways of transferring  report object  from  development clint to quality clint.pse send ...

    Hi..
    LSMW:
    There are 2 ways for transporting LSMW data from a system to another.
    Export/import this method gives you the opportunity to select the subprojects or objects you want to transfer. LSMW -> Extras -> Export project
    Transport request with this method, you can transport a LSMW project in full (you can not select the objects you want). With this method, the project will be transported as any other SAP object in a transport order. LSMW -> Extras -> Create change request
    Program variants
    If you have several program variants in a development system that you want to transport, use the following method to transport them:
    Execute program 'RSTRANSP' (via se38) and inform the program and/or variant names (you can transport variant of several programs in one shot).
    Layout
    In some transactions, one can save layout of the screen (sort, filter, ... criteria).
    These layouts can be transported: In the required transaction, when your layouts have been saved, go to Settings -> Layout -> Layout Management. Select the desired layouts and go to Layout -> Transport... There you can add your layouts in existing TO or create a new one.
    Database data
    In some unusual cases, you might have to transport data of a SAP table.
    Go to transaction SE16, select your entries and go to Table entry -> Transport entries. It's only possible for some tables...
    If you cannot do it that way,you have to create a Workbench transport order with transaction SE10. When created, click on it, go in menu Request/task -> Object list -> Display object list.
    Go in modification mode and add a new line with:
    PgmID = R3TR
    Obj = TABU
    Object name = Name of your table
    Double-click on the created line and, depending on your need, put '*' in the key field or double-click on it and select the key you need to transport.
    Queries
    Queries, datasets and user groups can be exported/imported between the systems using the Program RSAQR3TR.
    Report template (ALV variants)
    There is a button or somewhere in the menu Change/Select/Save/Manage Layout.
    Go to Manage Layout, than Layout menu/ Transport.
    SAPSCRIPT Files Transport
    Use the program RSTXSCRP to upload and Download the SAPSCRIPT files to different systems
    Transport SAPSCRIPT
    Use the Program RSWBO052 to create the Transport Request for a SAPSCRIPT, In the Selection screen of the program, give R3TR – FORM – Give the Form name and press Execute button, it will ask the Development Class and the transport Request No.
    Standard texts
    Standard texts used in SAPScript(created with transaction SO10) can be included in transport orders. You have to create a Workbench transport order with transaction SE10. When created, click on it, go in menu Request/task -> Object list -> Display object list. Go in modification mode and add a new line with:
    PgmID = R3TR
    Obj = TEXT
    Object name = TEXT,,ST,
    Example :
    R3TR / TEXT / TEXT,YMM_MEDRUCK_MAIN_16_EC,ST,F
    Reward if useful
    ~Lakshmiraj~

  • How to Register a Report

    i have installed oracle financials on windows XP jst for learning purpose i am new to oracle financials RDBMS : 9.2.0.6.0
    Oracle Applications : 11.5.10.2
    i want to register a report now i have created first the executable for that report then in programms i have defined it in payables responsibility but even now i cant see that anything missing plzz help mee
    Thanks

    Hi mushy,
    The documentation for Oracle Applications 11i can be downloaded at http://www.oracle.com/technology/documentation/applications.html
    Check the Excel shet of what file represents the AP, AR, GL..
    Regards,
    Kiran

  • How to call a report from a web application

    Hi,
    I have a web server in wich is installed Reports 6i. My question is how can I call reports 6i to generate a pdf using a .rep file from my web application (built with java)?

    Hi,
    The below link will be very useful for one who need idea on calling Oracle Report from Java Application,
    http://www.oracle.com/technology/products/reports/htdocs/getstart/examples/reportswebservice/index.html
    Thanks & Rgds,
    M T

  • How to pull call reports from Customer Service phones

    I have a building that has normal users and a group of customer service users and I would like to pull a report showing how many incoming and or outcgoing calls just from customer service.How would you recomend doing this?

    You need to specify what products and versions you are using.
    https://
    Cisco Unified Communications Manager Call Detail Records Administration Guide, Release 8.6(1)

  • How to genrate AUditLog Report  with custom Attribute

    Hi,
    I would like to a add a custom search parameter in audit Log report.Please suggest solution for the same.
    Thanks in Advance

    It's unclear exactly what you are asking for, but you can set up an auditlog report to find specific kinds of data changes.
    Internally, attribute changes are saved in the format:
    BEFORE: ATTRIBUTE="ORIG VALUE"
    AFTER: ATTRIBUTE="FINAL VALUE"
    As long as you know the ATTRIBUTE name and the value transition you are looking for, you can set up the report to check for attribute changes. E.g.,
    [x] Attribute Changes [contains] BEFORE: ASSIGNEDLHPOLICY="POLICY1"as the condition will find all cases where account policies changed from being "POLICY1" to some other policy. (Attributes are only listed in the logs if they changed).
    Not sure if that's the kind of custom search parameter you are looking for though.

  • Deploying custom report for custom hardware inventory data.

    Hi!
    I want do the following:
    1) Extend Hardware Inventory using my own *.mof file. Like,
    #pragma namespace ("\\\\.\\root\\cimv2\\SMS")
    [ SMS_Report (TRUE),
    SMS_Group_Name ("My Inventory"),
    SMS_Class_ID ("CUSTOM|My_Inventory|4.0") ]
    class My_Inventory : SMS_Class_Template
    [SMS_Report(TRUE)] string SerialNumber;
    [SMS_Report(TRUE)] string SomeData;
    2) Extend Reporting system with my own report that will use data from custom hardware inventory. For example, joins inventoried data with SCCM resources.
    3) Deploy 1) and 2) programmatically to any sccm installation. So, report should not be linked to concrete data source or report server url.
    If you know the tools that may help me, it will be very helpful! Many thanks!

    You should ask the .rdl part from the SQL Reporting services forums, you should get better answers from there, because this isn't purely a ConfigMgr issue.
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/home?forum=sqlreportingservices

Maybe you are looking for

  • Help! syncing multiple ipods on same computer!

    i will soon have two different ipods syncing to the same computer. how can i keep libraries separate so that my brother's music doesn't show up on my ipod and my music doesn't get synced to his? iPod Video 30GB   Windows XP  

  • Itunes transferring music to other computer?

    OK. I have a PC running Vista, and have an Itunes library(a gig or so)and my dad has a Mac. How can I transfer my library to his computer, without using 4 USB sticks? Please help me ASAP, SHIV

  • Transaction code : FB60

    Hi all, Am using Transaction code : FB60 - Enter Vendor Invoice. Would like to print out the informations but when click on save right the output was not readable. The TEXT could not be read. How could i make the TEXT become readable? Thanks. Best Re

  • Backflush Error Log time

    All, We are having repetitive Mfg scenarios & we use backflushing. We have a requirement to find out Backflush Error Log time (incase they occur) . Is there any std SAP Procedure to find that? As I understand from MF47 we cant have this. Thanks.

  • Urgent help please: error at bi_checkconfig when validate OLAP metadata....

    dear friends, i used oracle database 10g Release 1 which i've patched it with Oracle 10.1.04 patchset, Oracle JDeveloper 10g (Version 10.1.2.1.0, build 1913) and bibeans 10.1.2.1 to build Business Intelligence based Application. first, i create OLAP