How to design the multi-onglet in rtf report in oracle apps r12

Hello


How to design the multi-onglet in rtf report in oracle apps r12

a consultant who works on multiple projects in this report... . How to design rich text using the multi tab.


Thank you

Praveen,

Already sent an invitation to chat. It's [email protected]

Kind regards
Vinod

Tags: Oracle Applications

Similar Questions

  • How to identify the source file and edit reports in Oracle Sales R12.1.3

    We use R12.1.3 with Database 11g.

    I would like to know - how to change the report.

    --------------------------------------------------------------------

    For example if I want to edit a report in the module INVENTORY existing any report.

    • After the name of the report identify the concurrent program
    • The program contributing to identify the name of the executable file
    • In the executable file name identify the
      • Method of execution: Oracle report
      • Running file: name of the source file for the report
      • Take backup and edit the report and replace the report in the TOP >

    But in the sales module (it is not form based Oracle - I think it is developed on OAF)

    I would like to know how to identify and modify the report.

    According to standard - module sales Oracle provides three report and according to our Advisor to use these three reports, we need to install BI

    So we must find the solution through internal developments

    Hello

    Set the option to profile ' FND: Diagnostics ' to 'Yes' at the level of the user and you will be able to get 'on this Page' link at the bottom of the page.

    Kind regards

    Zahid

  • How to pass the user name dynamically in file .jca Oracle Apps adapter

    My BPEL process using Oracle Applications adapter. Here is the file .jca for the adapter.  The user name is statically initialized to "sysadmin" when I created the adapter. How can I change this to move dynamically during execution? Can I use an EL Expression or a variable of XPath. If yes how and what is the correct syntax?

    Is it possible to pass the user name of the security policy of OWSM for the value of username below? If yes how? I appreciate your response.

    " < name of the adapter-config = adapter 'EBSAdapter' = 'Apps' wsdlLocation =".. / WSDLs/EBSAdapter.wsdl "xmlns =" http://platform.integration.Oracle/blocks/adapter/FW/metadata « >

    < UIConnectionName factory connections = "EBS1" location = ' ist/Apps/EBS1"UIConcurrentPgmName =" "UIOracleAppType = 'DBOBJECT' / >"

    < endpoint-interaction portType = operation "EBSAdapter_ptt" = "EBSAdapter" >

    < className = "oracle.tip.adapter.apps.AppsStoredProcedureInteractionSpec interaction-spec" >

    < property name = "SchemaName" value = "APPS" / >

    < property name = "PackageName" value = "JAN" / >

    < property name = "Procedurename" value = "GET_USER_PROFILE1" / >

    < property name = "IRepInternalName" value = "PLSQL:INTG:WEBCENTER_GET_USER_PROFILE1" / >

    < property name = value "Username" = "sysadmin" / >

    < property name = value of 'Responsibility' = "system administrator" / >

    < / interaction-spec >

    < / interaction of endpoint >

    < / adapter-config >

    1. go on the Invoke activity

    2. click on the Properties tab.

    3. click on add

    4 Add this 'jca.apps.Username' property and map with variable or expression.

    5. fill the variable defined in the previous step with valid username values during execution.

    I hope this helps.

    Kind regards

    Karan

    Oracle Fusion Middleware Blog

  • How to generate the output xls by a button in oracle apps

    Hello world

    I have a report that gives me xls output when I run the program at the same time.

    I have a custom form that has a button to call the program contributing to print the report.

    I realized this from here

    But this code works just fine if the report output format is pdf.
    If the report output format xls this code generates pdf output

    but my requirement is to generate the output as xls.
    Please any one help how to achieve this.

    I use EBS - 12.1.3
    Oracle made and reports 10g

    Concerning
    Paul

    >
    If the report output format xls this code generates pdf output
    >
    Looks like that pdf is out by default in the template definition in the xml editor RESP

    so for r12 use FND_REQUEST. ADD_LAYOUT as example

    ...
    v_request_id   number;
    xml_layout boolean;
    ...
    xml_layout := FND_REQUEST.ADD_LAYOUT('XXCUSTOM','XXCONCNAME','en','00','EXCEL');
    v_request_id := fnd_request.submit_request(application => 'XXCUSTOM',
                                               program     => 'XXCONCNAME',
                                               description => NULL,
                                               start_time  => NULL,
                                               sub_request => FALSE,
                                               argument1   => p_date
                                               );
    

    See also http://andyblg.wordpress.com/2012/08/23/run-concurrent-program-twice-with-different-layout-r12/

  • How to design the table from the answer to the question table.

    Hi all

    I am creating an application for student review online.

    There are two types of questions, the only choice of response and multi choice answers.

    My question is less than
    create table question_master
    (
    exam_id number references exam_master(exam_id),
    marks_of_each_question number,
    type_of_question char(1),-- single choice answer/multiple choices answer
    q1 varchar2(2000),
    q2 varchar2(2000),
    q3 varchar2(2000),
    q4 varchar2(2000))
    my table to answer (I'm not satisfied with who is below
    create table answers_of_questions
    (
    answer_id number primary key,
    question_ID number referenes question_master(question_id),
    answer varchar2(4000) not null,
    is_answer_correct char(1),--y/n,
    student_selection char(1),--y/n   student select it or not
    ....
    ...
    now, I'm perfectly how to create the RESPONSE table to contain the answers.
    the only choice is good, but several checkboxes choices, what to do?
    How to design the table from the answer?

    do I have to create 2 tables to contain the answers?
    Note: the QUESTIONS and ANSWERS, all will be entered by the teacher. students will make a choice and I will store this choice in another table
    may be called STUDENT_SELECTED_ANSWERS or something like that.
    If anyone has some reference to the script retail scheme review online, kindly share with me.

    Kind regards.

    Kind regards.

    If you need to have answers in another table:

    Student (student_id, name, etc...)
    Review (exam_id, exam_name, etc...)
    Question (question_id, exam_id, question_text)

    Response (question_id, a_text, b_text, c_text, d_text, a, b, c, d).<-- one-to-one="" with="" question="" table,="" a-d="" flags="" used="" to="" indicate="">
    OR
    Response (question_id, answer_id, answer_text, OK)<-- many-to-one="" with="" question="" table,="" correct="" flag="" used="" to="" indicate="" correctness="" for="" this="" single="">

    Student_Answer (student_id, question_id, a, b, c and d)
    OR
    Student_Answer (question_id, student_id, answer_id)<-- creation="" of="" a="" question_id+answer_id="" in="" this="" table="" implies="" the="" student="" checked/selected="" it="" as="" an="">

    To what extent you want to standardize, it is up to you.

  • How to design the oscilloscope... need idea, advice and suggestions...

    Hello...

    Student MI... so I'm new to LabVIEW... so I use LabVIEW 8.6 and NEITHER cDAQ-9178 for the connection between the material... and my PC... now, I have final project... I have to design digital oscilloscope using labview, but I have several problem...

    1) How to design the scope of design

    (2) I have the simple design pattern to display the wave... but stil have some problem, this block diagram... how I want to develop the other party such basis of design time, control vertecal, cityscape control, capture the wave... and etc.., I was the previous oscilloscope in labview reserch and I desgin again by reffer the previous... but still no function...

    Hopefully, someone can help me... to give me an idea, opinion or suggestion for me to complete my project... fnl plz... now, I declare my design... and all I recommend and agree with the suggestion of someone... Thank you very much

    Hello

    That must be validated in the jury of LabVIEW so I'll move it for you. The jury of feedback is used specifically to provide feedback on the forums and their features.

    In order to receive the best support on the Forums of Discussion OR, please post your question publicly on the map that best matches the products you use. This allows your question be seen by members of the forum in the world, thus allowing users the most expertise in this field for you help. Additionally, once your issue is resolved, users of the forum with the same question in the future can benefit from your experience.

    To start a new thread on the Forums OR, go to the correct product management on forums.ni.com Board and click on the "New Message" button. You will be directed through a search to see possible solutions. If you don't find a solution, you can proceed to post your question on this Board.

    Kind regards
    Jordan
    The Forum Moderator OR

  • How to activate the trace for request to define in oracle application?

    How to activate the trace for request to define in oracle application?

    Please see and steps/comments for 'Presentation of simultaneous program' in (Doc ID 1516355.1).

    Thank you

    Hussein

  • Does anyone know how to change the composition of Adobe Creative cloud AE single app to the student member that includes the creation?

    Does anyone know how to change the composition of Adobe Creative cloud AE single app to the student member that includes the creation?

    Hi Danielle,

    Thanks, I tried to do but unable to communicate with anyone.

    Here you go: Contact customer service

    Thank you

    Kevin

  • How to create the script to compile procedure files in oracle - urgent deadline...

    How to create the script to compile procedure files in oracle.    about to go live and have much .prc pkg in a directory usr/tmp/ar... Po... human resources etc. need to create a script to compile all the files in the folder, then do not open all necessary .prc suggestions on how to do it.   Thank you Tom.

    (1) an urgent need, ASAP,... are words that do not in a forum of volunteer. We are here to help if you need it now, for free, open a SR.

    (2) oracle procedures are not files.

    (3) I think you are trying to run operating system packages, no Oracle procedure. right?

  • How to activate the UMX roles who were at day end in R12

    How to activate the UMX roles who were at day end in R12? Please suggest.

    Thank you

    The search will return no roles of the expiration date, you must click the button "Show the full hierarchy" and manually navigate the role that you want to reactivate.

  • How to check the internal operations, Manager of competitor status in Oracle Apps R12 of en

    Step by step how to check the internal operations, Manager of competitor status in Oracle Apps R12 of front end and how to start their.

    Richa says:
    Step by step how to check the internal operations, Manager of competitor status in Oracle Apps R12 from front end

    Simultaneous treatment - platform generic competitor Manager Questions / answers [ID 105133.1]

    and how to start the

    (1) using the adcmctl.sh (from the backend)
    (2) using the button Activate (from front) - http://docs.oracle.com/cd/E18727_01/doc.121/e12893/T174296T174302.htm#4334248

    Thank you
    Hussein

  • How to change the areas of region of report in read-only mode?

    How to change the areas of region of report in read-only mode?

    SKUD.

    Add fuction javascript after the page header (or section of function and Javascript variables)

    function disableItems(pRegionStaticId,pDisableFlag) {
      $('#'+pRegionStaticId).find('[name^=f]').each( function(){ /* matches fxx */
        if( $(this).attr('name').match(/f[0-9][0-9]/) ){
          return $(this);
        }
      }).attr('disabled',pDisableFlag);
    }
    

    pRegionStaticId is static Id + the region

    Note that this code specifically disables only the berries of request. Disabled items are not available after the submission (and are therefore different from readonly). But any javascript page can change disabled or readonly points (client side), so you need to check on the side server to validate the data.

    You can disable items to help

    disableItems ("MY_REGION_ID", true);

    and allow them, by passing false

    disableItems ("MY_REGION_ID", false);

  • How to check the table have are all views in oracle

    Hello
    How to check the table have are all views in oracle
    SELECT * FROM user_dependencies
    WHERE type='VIEW'
    AND referenced_type='TABLE'
    AND referenced_name ='Your_Table_Name' 
    

    You can use dba_dependencies to find views in the different schema.

  • How to get the IP address, Port database don't &amp; Oracle SID details

    Hello
    How to know the IP address, Port database don't & Oracle SID details

    Hello

    The IP address is for not for the database server.

    Port no, may be different.

    check what sid, listening to the port

    lsnrctl > status

    or

    Open the tnsname.ora or listener.ora to find what hostname(ip address), what is the port number and what is the SID that you connect

    Hope that answers your question.

    Kind regards
    Rakesh Jayappa

  • How to find the ANGLE b/w two edges in Oracle Spatial

    How to find the ANGLE b/w two edges on Oracle Spatial. I have two edge connected on the same node. I wanted to know the angle betwwn them. Can someone help me?

    Ok. My first example is an approximation. Further you get North or South of the Ecuador, gets the more vague.
    This one should do the trick with some degree of precision.

    declare
      PI constant number := 3.14159265358979;
      g1 sdo_geometry;
      g2 sdo_geometry;
      g3 sdo_geometry;
    
      angle1 number;
      angle2 number;
    
      FUNCTION POINT(P_LAT  IN number
                    ,P_LONG IN number)
        RETURN MDSYS.SDO_GEOMETRY IS
      BEGIN
        -- we load both the ordinate array and the point type because some spatial functions show inconsistent behavior
        -- it is not important for this example, just something to be aware of
        return(mdsys.sdo_geometry(2001,8307 -- WGS84
                                 ,mdsys.sdo_point_type(p_long,p_lat,null)
                                                      ,mdsys.sdo_elem_info_array(1,2,1)
                                                      ,mdsys.sdo_ordinate_array(p_long,p_lat)));
      END;
    
    begin
    
      -- For the example, project in WGS84
      -- g1,g2,g3 could also come straight out of the database as sdo_geometry
      g1 := point(50, 7);          -- Point A
      g2 := point(51, 7);          -- Point B
      g3 := point(50,10);          -- Point C
    
      angle1 := atan2(g2.sdo_point.x - g1.sdo_point.x,
                      g2.sdo_point.y - g1.sdo_point.y);
      angle2 := atan2(g3.sdo_point.x - g1.sdo_point.x,
                      g3.sdo_point.y - g1.sdo_point.y);
    
      -- depending on rotation and where we are on the planet, adjustments may be needed
      if angle1 < 0      then angle1 := angle1 + 2 * PI; end if;
      if angle2 < 0      then angle2 := angle2 + 2 * PI; end if;
      if angle2 < angle1 then angle2 := angle2 + 2 * PI; end if;
    
      dbms_output.put_line('Angle between the lines A-B and A-C: '||
                           round(sdo_util.convert_unit(angle2-angle1,'Radian','Degree'),1));
    end;
    
    Angle between the lines A-B and A-C: 90
    

Maybe you are looking for

  • 5.7.1 problem

    My employer uses your e-mail service and when he tries to send a message, this happens "an error has occurred when sending mail. The mail server responded: 5.7.1 [P4] Message blocked due to spam contained in the message... Please check the message an

  • I made a mistake when I put my master password.

    I recently had a new hard drive put in. When I put my master password, I apparently made a mistake in typing. Can I retrieve or reset the password?

  • Installation Windows 10 using ISO DVD - what drivers and HP sw?

    I upgraded to Windows 10 laptop, (ProBook 650 G 1-W7pro 64-bit), and I had a few problems with the Wi - Fi connection that I am trying to solve, that's why... I rolled back to Windows 7. I would like to do a clean update using the Windows 10 ISO. My

  • Satellite C660D-1 - USB works no/left click acting as right click

    My Satellite C660D-1 has its USB port that is not anything picking up, but the things it will not pick up work on another computer a too my left mouse button does not work.It occurs in a right click.

  • In Excel 2007, copy the conditional formatting cells is very slow

    I've just upgraded to Excel 2007 (SP 2) since 2000 in the hope that it would be faster.  I have a large spreadsheet consisting of a database of about 5000 lines and a number of leaves each grids showing cells of 7 x 7 with conditional formatting in e