How to get EBS Concurrent Request number (and more) into BIP Report Layout

hi,
I have been using BIP for 9 months but have several years experience of Reports 6i development (matrix, drill-thru etc). We are beginning to use BI Publisher with EBS and would like to be able to incorporate the Concurrent Request number into the report layout (preferably in the footer area). I have looked back over previous forum posts and have found mention of how to get the report parameters into the XML datastream and template, but nothing for the Concurrent Request number. I've also looked at the DevTools/Reports forum but cannot see anything similar there.
It would add a lot of value to generated output for end-users if this information (+ environment/instance name etc) can be put into the layout.
Sean

Hi
Create a data query in data template/reports as
select fnd_global.conc_request_id "REQUEST_ID" from dual
and this will pick up the request id and then u can use it in the RTF layout
Hope this helps..

Similar Messages

  • How to get the concurrent request id while running a concurrent program

    Hi All,
    I am working with oracle apps r12.
    I have created a custom report with some parameter. And i have created a parameter P_CONC_REQUEST_ID.
    And in the report i have used SRW.USER_EXIT('FND SRWEXIT'); in after report and SRW.USER_EXIT ('FND SRWINIT'); in before report trigger.
    when i ran the report from the application, I didnt get the conc request id in the parameter. It not passing the concurrent request id.
    Can any one tell me how to bring the concurrent request id.
    Thanks & regards
    Srikkanth
    Edited by: Srikkanth.M on Mar 14, 2012 1:56 PM

    Hi;
    FND_CONCURRENT_REQUESTS
    This table contains a complete history of all concurrent requests.
    FND_RUN_REQUESTS
    When a user submits a report set, this table stores information about
    the reports in the report set and the parameter values for each report.
    FND_CONC_REQUEST_ARGUMENTS
    This table records arguments passed by the concurrent manager to each program it starts running.
    FND_DUAL
    This table records when requests do not update database tables.
    FND_CONCURRENT_PROCESSES
    This table records information about Oracle Applications and operating system processes.
    FND_CONC_STAT_LIST
    This table collects runtime performance statistics for concurrent requests.
    FND_CONC_STAT_SUMMARY
    This table contains the concurrent program performance statistics generated by the Purge Concurrent Request and/or Manager Data program. The Purge concurrent Request and/or Manager Data program uses the data in FND_CONC_STAT_LIST to compute these
    Also see:
    concurrent request details
    Find history of concurrent request details
    How to determine the user who placed a certain concurrent request?
    Regard
    Helios

  • How to get the spool request number ?

    Hi All,
    I am working on a smart-forms. I am using a custom transaction to print these smartforms. When I execute
    the transaction the print screen comes where I can do
    print preview or print.
    Now to convert this Smart Form to PDF I need to know the spool request number to use in the report called RSTXPDFT5.
    How do I get the spool request number ?
    Do I need to do some changes in spool control options of print screens to get the spool request number or something else ?
    Please let me know.
    Answers will be awarded...
    Tushar

    Hi,
    You will get the spool no. in the parameter "job_output_info" after calling the smartform function module in print program. The spool ids of the prints is stored in table job_output_info-SPOOLIDS.
    Regards,
    Gagan

  • HOW TO GET CONNECTIVITY BETWEEN PO NUMBER AND BILL OF MATERIALS

    SIR
    my requirement is that to print the purchase order number and the item in that po number and if that item contains any components in BOM (tcode -cs02) then to print those all components.
    Ebeln and  matnr is stored in ekpo table .
    corresponding to that matnr how to see the component because STPO(bom item table) do not contain ebeln and matnr field.
    it contains the component field ie IDNRK
    SO PLEASE TELL ME HOW TO WRITE A REPORT TO DISPLAY ALL THESE THREE THINGS
    po number and item inside it and if this item contains component then to display all that components .
    reply as soon as possible.

    Hi
    Pass the PO Material and Plant
    <b>EKPO-MATNR and EKPO-WERKS to MAST table and take the BOM related fields
    STLAN
    STLNR
    STLAL</b>and use them in STKO and STPO tables and get the BOM info.
    Reward points if useful
    Regards
    Anji

  • How to get the transport request number of ABAP query.

    I want to find out last Transport Request  number used of a transporting changes Abap query from development to quality system.
    Also is it possible to do some comparison on version existing in development and quality for abap query.

    goto SE03 ..
    In Object Directory -> Double click on
       Change Object Directory Entries
    Enter AQQU(This is for ABAP Query) in the modifiable box ..
    press enter ...
    Check this check box ... Enter the ABAP query and press F8.
    Double click on the Query and in the popup click on the
    Lock Overview ...
    U'll find the request number ...
    Edited by: Srinivas Gurram Reddy on Apr 2, 2008 6:53 PM

  • How to get the source file name and transform into database

    Hi,
    We need to load data from source file abc.csv into oracle table. during loading, we need to keep the file name abc.csv and write into the database table as one field. Is there anyone who did the similar task? and how to make it? Pls help!

    Hi,
    If you can write the filename to a text file, you may do the following:
    (1) create a text-file containing the name of your source-file.
    (2) create an external table using that text-file as input.
    Now, you can SELECT the filename from the external table.
    Of course, you need a way to : create the flat file, handle the flat file, etc.
    Grtz.

  • How to get a proper week number and MATCHING year number

    Java classes such as SimpleDateFormat offer convenient means to find out the correct week number of a given date. Week numbering is locale specific and not always intuitive. For example, Dec 31, 2001 is in week 1 of 2002 in locales where a week starts with Monday or Sunday. Now, if one formats the date using a method such as:
    new SimpleDateFormat("'week: 'ww', year: 'yyyy").format(theDate);
    this produces result
    week: 1, year: 2001
    when the typically anticipated value would be "week: 1, year: 2002".
    Is there any means to find out the year number, which matches to the given week number for a date? Or do I have to create a kludge myself?
    I would be suprised if this feature is not part of Java API, since it seems like a quite common need. Then again, I'm not suprised by surprises in Java API anymore ;)

    Well, the real problem is just that the rules determining which year the week belongs to are complicated. In some locales, weeks start with Monday, in some Sunday. In some locales year that has 4 or more days of the week "owns" the week, in some locales there might be different rules.
    All this complex logic is already implemented in Calendar / SimpleDateFormat / etc classes, so it would be clearly valuable thing to be able to use that code. For example, Calendar.get(YEAR_OF_WEEK_OF_YEAR) or similar. But, it does not seem to be possible.
    As I mentioned originally, I can implement my own "kludge" to do this if I have to. This is not nice, since I will be duplicating the functionality already implemented in the calendar classes. Of course, solution is neither as simple as "set calendar to the weeks end" or "set calendar to the weeks start"...

  • How to get some version 3 images and metadata into version 4 catalog?

    I recently upgraded to version 4.
    Yesterday, I mistakenly opened up the version 3 icon and put in several hours worth of image work, metadata changes, and created a couple of collections.
    1. What will be the easiest way for me to update the changes to my version 4 catalog without undoing work that I have done in that from the last couple of weeks?
    Thanks!

    Backup your LR4 and LR3 catalogues, so you'd be able to get back to the current state if everything went wrong.
    Now in your LR3 catalogue, identify the images you've worked on (eg by selecting the collections or with a smart collection using Edit Date as a criterion). Select the affected images and do File > Export as Catalog. Save it onto your desktop.
    Open this exported catalogue in LR3 and review it. You may have collections you don't want, or other info. Then close it.
    In LR4, do a File > Import from another Catalog and bring in the catalogue from the desktop. Now, the danger is where you have changed the same image in LR4 in the last two weeks, and also changed them in LR3 in the last day or two. If so, then check the option to create new virtual copies and then resolve them one by one with Sync Metadata/Settings. If not, the imported catalogue will update pictures in your LR4 catalogue.
    Plenty of backup, and proceed slowly.
    John

  • Relation with spool request number and invoice number

    Hi ALL,
    I have developed two function modules the first one generates the Invoice Number for a particular customer.
    Now on passing this Invoice Number to the second function module, I should get the Spool Request Number.
    I have developed the first function module.
    That Spool Request Number would display the invoice of the customer in the PDF format.
    So please help me how to get that Spool request number.
    Thanks and regards
    rama

    Hi,
    in your case when ever invoice created you need to store the data like spool number,invoice number,user name etc..into a <b>ZTable</b>, and then when ever you enter the invoice select the data from the ZTABLE and convert the spool to PDF and show it.
    Regards
    vijay

  • How to get concurrent request id of the bi publisher report

    Hi All,
    I have created a BI publisher report in R12, and in that report i have called before report trigger function.
    In that function i need to use the current concurrent request id .How can i get the concurrent request id of this report.
    Please help me . Thanks in advance.
    Regards,
    Kalidoss.

    in datatemplate you use
    >
    before report trigger function.
    >
    so
    in package in
    >
    In that function
    >
    you can get current request id like
    l_conc_request_id := fnd_global.conc_request_id;

  • How does DIADEM import TDMS files? How gets every channel his number and groupindex? How can I determine which channel has which groupindex and number?

    I store different channels in a TDMS file.
    I like to have a time channel at the first position with group index 1 and number 1.
    When I read the TDMS file with DIADEM the time channel (Float64) is on a differernt position, and the channels are not sorted alphabetically.
    Here are my questions:
    How does DIADEM import TDMS files?
    How gets every channel his number and groupindex?
    How can I determine which channel has which groupindex and number?
    Best regards
    Joerg

    Hi Jörg,
    i suppose that you´re programme whose create the *.tdms file is writing on false position. Try to create datas with timechannel on first indes in diadem, then save it and then open it again. you see that all is correct. So please tell me what programm in what version do you use and please attache it here.
    Did you use the library for creating *.tdms files like in the link ?
    http://zone.ni.com/devzone/cda/tut/p/id/6471
    Here you find the gtdms_8.x.zip - when you extract it and opened the *.llb you find vi´s for all functions e.g. writing 2d array of strings to *.tdms file
    when you open the subvi´s then you see how created and writing datas/structure to *.tdms files. Because *.tdms is binary you can´t see structure with open it in editor.
    When you don´t have Labview you can use the 30 days test of current version 8.5 under following link
    german version download link
    https://lumen.ni.com/nicif/d/lveval/content.xhtml
    english version download link
    https://lumen.ni.com/nicif/us/lveval/content.xhtml
    Hope it helps
    Best Regards

  • How to acquire the concurrent request id in data template?

    Hi all,
    I want to know how to acquire the concurrent request from my report data template. I've created a placeholder for my parameter +<parameter name="p_conc_request_id" dataType = "number" defaultValue="0"></parameter>+ and for nothing ... i've got the 0 value.
    I need the concurrent request id in order to detect the user who launched the report. Is there other way on getting the user ??
    Thank you!
    All the best,
    Laurentiu
    Edited by: laurentiu on Jul 8, 2009 5:29 PM

    Hi,
    I read your previous post about this solution but i was not able to retrieve it. Here is step by step what i've done:
    - added the parameter to my data template
    - added the parameter to my concurrent program
    - added the parameter in my pl/sql package
    - i've run my concurrent request and the value returned in my xml is 0 for the concurrent request id parameter
    I don't know where i'am getting wrong ?!?
    Thank you!
    All the best,
    Laurentiu
    Edited by: laurentiu on Jul 8, 2009 6:47 PM

  • How to get a service notification number for given serial number

    Please, someones know how to get a service notification number based on serial number.
    In our process the notification can be created as first step (IW51) or can be created starting from service order (IW32).
    Thanks in advance.
    Luca

    Hi pooja,
    actually standard service request numbers are configured in spro->crm->transactions->Settings for Service Requests->Number Ranges. here they are maintain service request,incident,problem number ranges..
    so when ever your creating any service request then that number range will appear in that object id.
    you have to get that object id in your custom field get_method and based on that you have to change your number..
    example:
    current = me->bo.
    current->get_property_as_string( EXPORTING iv_attr_name  = 'OBJECTI_ID'  RECEIVING rv_result  = lv_id ).
    here you will get object_id based on that you have to write your own logic to display custom value.
    " write your custom logic to populate custom field. pass that custom field value into returning parameter.
    value = custom_value.
    Thanks & Regards,
    Srinivas.

  • How to submit a concurrent request from Discoverer report.

    I would like to know If any one has tried submitting a concurrent request from Discoverer Report?_
    This is no stupid question, but our team here finally decided with a solution to our long pending issues with few of the discoverer report. To Proceed further, we would like to know, how to submit a concurrent request from Discoverer report?
    We are looking for calling a package from the Disco admin by passing the parameters from the disco to the 6i report.
    All help us in this regards are much appreciated.
    Kindly help us in the same!
    Thanks
    Arun

    Thanks Rod for confirming the same.
    I will be trying the same today and will let you know if I succeed in doing it.
    If I can share the actual requirement with you, it goes like this.
    "I will be triggering the Oracle 6i standard AP Trail balance report through the Disco report. The standard report will be inserting the required data to one of my custom table. Once the concurrent program completes normal, my custom table will be having the required data to create the workbook specific to the current run of the concurrent program.
    The one problem which I think could happen is, How can I make my disco report to wait till the standard program to complete in normal so that my disco report can be generated with the data from custom table.
    Will the above requirement is possible If I follow the way you mention in the PDF or Could you suggest a better way for achieving the same.
    In short, my requirement is: The custom table(say XX_TABLE) will be populated with data when the standard 6i report is run and the disco admin will be making of the custom table (XX_TABLE) to generate the report.
    Please advice.
    Thanks
    Arun

  • How to schedule a concurrent request to run at a specified time/day?

    Hi All,
    How to schedule a concurrent request to run at a specified time/day (ex: Sunday 12pm)?
    Thanks,
    Chiru
    Message was edited by:
    Megastar_Chiru

    Is this to run periodically ?
    During the request submission, click schedule, choose the specific days, and click on S = Sunday.
    Change the start date on the date of the sunday you want to run, eg : 15-JUL-07 14:00:00, change the end date as well.

Maybe you are looking for

  • Need to export Movie to Quicktime Movie w/ similar file size and quality.

    Let me preface in that I am not in the video editing profession. Many times I have exported my work to the professionals. I'm sure knowing what you're doing is half of the battle. Here is my dilemma. First, I'm using Quicktime pro just to add a text

  • Mini DisplayPort No Audio!

    I just purchased this » http://www.amazon.com/Premium-High-Speed-inch-DisplayPort-Cable/dp/B005J5ZBJG. I just hooked it up and have no audio, i wanted to see if anyone could help me out on whether or not it is capable of outputing audio. Thnx!

  • Directory Creation problem

    i am trying to create directory for large object and using following syntax sql> create directory dri_name as os_system_patth (like '\temp') but i am unable to find this this directory bec sql run but no tmp directory created in any where can any bod

  • TS2755 iMessage keeps crashing on Mac Mini when I start to add addresses to a new message.  Help!

    Every time I try to start a new message in iMessage on my Mac Mini (OS is Yosemite) it crashes.  Any ideas on what might be wrong?  Here is report that comes up  after crash. Process:               Messages [504] Path:                  /Applications/

  • Can't Sync because can't change Photo Stream attributes

    I can't sync photos from my new iPad. I get "You do not have enough access priviledges to permorm this opereration. I tracked the error to the Photo Stream folder. It will not allow me to change the read-only attribute I get You require permission fr