How to print message in oracle rdf report output?

Hi,
There is a requirement to print message in output of oracle rdf report. srw.message prints the message in log file but how to print message in output.
Please suggest.
Thanks & Regards,
Sunita

897745 wrote:
Hi,
We are trying to print BARCODE for Order Number in RDF report. Kindly let me know how to do this.It's very easy. Download a font which show barcode then choose your desire field's font that font. I use IDAutomationHC39M font.
Hope this will help you.

Similar Messages

  • How to Print BARCODE in oracle RDF report

    Hi,
    We are trying to print BARCODE for Order Number in RDF report. Kindly let me know how to do this.
    Thanks & Regards,
    Suresh

    897745 wrote:
    Hi,
    We are trying to print BARCODE for Order Number in RDF report. Kindly let me know how to do this.It's very easy. Download a font which show barcode then choose your desire field's font that font. I use IDAutomationHC39M font.
    Hope this will help you.

  • Oracle rdf report format

    I want a help form you . If you can, please share.
    In a oracle .rdf report, suppose data are arranged in this format, like this
    RED     5
    RED     6
    RED     10
    GREEN     15
    GREEN     2
    BLUE     10
    BLUE     5
    but now, I want the report like this format:-
    RED     5
    ''     6
    ''     10
    GREEN     15
    "     2
    BLUE     10
    "     5
    How can i do this ? I am waiting for your early reply.

    In Data Model, find the group that contains your data.
    In that group:
    1. create a formula column named for example ”CF_set_value_color”
    2. create a placeholder column named for example ”CP_show_value_color” of VARCHAR2
    Outside the group; create a stand alone placeholder named ”CP_last_value_color” of VARCHAR2
    Now, create a PL/SQL procedure for your formula column ”CF_set_value_color:
    ”color” should be replaced with the name of the column that returns RED, GREEN or BLUE..
    function CF_set_value_colorFormula return Number is
    begin
    -- First row
    if :cp_last_value_color is null then
    -- Set values for placeholders
    :cp_last_value_color := :color;
    :cp_show_value_color := :color;
    else
    -- Second row and beyond
    if :cp_last_value_color = :color then
    -- If last color is the same as the current, show "
    :cp_show_value_color := '"';
    else
    -- If last color is NOT the same as this one, show new color
    :cp_last_value_color := :color; -- Set for comparison of next row
    :cp_show_value_color := :color;
    end if;
    end if;
    return 1;
    end;
    For each row the query retrieves, the value of “CP_show_value_color” will be RED, ”, ”, GREEN, ”, BLUE, ”
    Use that column for output instead of ”color” and it should work just fine.
    Morten

  • How to print or save a webpage report?

    Hi all,
    How to print or save a webpage report? Not using the save spreadsheet?
    When I create classical report (no form link) I can see still see an edit (pencil button) . When I click the pencil button i gives me a page
    that is not updatable but the display is better to view for single record viewing. Unlike using spreadsheet which is not good to look and share to a user or client.
    How can I print this page please? or save it to file?
    In contrast to a classical report when I made one, it does not show this view pencil button. How can I configure it to display?
    Thanks a lot.
    Edited by: KinsaKaUy? on 12.8.2011 8:18

    Hi,
    you can do this by two ways
    1)If you want to print only current page,
    then go to region definition of your report
    In region header copy this code,
    <input type="button" id="PrintButton" value="Print this page" window.print()">
    this option helps you to print only the current page.
    2) If you want to create print button which is applicable for all pages of your application,
    then go to shared component->navigation bar
    create navigation to url
    Under Entry Display
    In Entry Label = print
    Under Target
    Target type = Page in this application
    Page = &APP_PAGE_ID.
    and check the Printer Friendly option
    Hope this will helps you,
    thanks
    jitu

  • Printing messages in Log File and Output File using Dbms_output.put_line

    Hi,
    I have a requirement of printing messages in log file and output file using dbms_output.put_line instead of fnd_file.put_line API.
    Please let me know how can I achieve this.
    I tried using a function to print messages and calling that function in my main package where ever there is fnd_file.put_line. But this approach is not required by the business.
    So let me know how I can achieve this functionality.
    Regards
    Sandy

    What is the requirement that doesn't allow you using fnd_file.put_line?
    Please see the following links.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Dbms_output.put_line+AND+Log+AND+messages&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=%22dbms_output.put_line+%22+AND+concurrent&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • I want to print the LOGO on the report output

    Hi ,
    i want to print the LOGO on the report output. How can tyhis possible ?

    using "SMWO" to upload LOGO image.
    add a customer "customer control" named P1 using "SE51"
    the following program for your reference:
    =============================================
    REPORT  ytest17.
    DATA ok_code TYPE sy-ucomm,
              save_code TYPE sy-ucomm.
    DATA  container TYPE REF TO cl_gui_custom_container.
    DATA  picture TYPE REF TO cl_gui_picture.
    DATA  init.
    CALL SCREEN 100.
    MODULE user_command_0100 INPUT
    MODULE user_command_0100 INPUT.
      save_code = ok_code.
      CLEAR ok_code.
      CASE save_code.
        WHEN 'EXIT'.
          LEAVE PROGRAM.
      ENDCASE.
    ENDMODULE.                    "user_command_0100 INPUT
    MODULE status_0100 OUTPUT
    MODULE status_0100 OUTPUT.
      IF init IS INITIAL.
        DATA url(255).
        CLEAR url.
        CREATE OBJECT container
        EXPORTING container_name = 'P1'.
        CREATE OBJECT picture
        EXPORTING parent = container
        EXCEPTIONS error = 1.
        IF sy-subrc NE 0.
        ENDIF.
        PERFORM load_pic_db CHANGING url.
        CALL METHOD picture->load_picture_from_url
          EXPORTING
            url = url.
        IF sy-subrc NE 0.
        ENDIF .
        init = 'X'.
      ENDIF.
    ENDMODULE.                    "status_0100 OUTPUT
    *&      Form
          text
    FORM load_pic_db changing p_url.
      data query_table like w3query occurs 1 with header line.
      data html_table like w3html occurs 1.
      data return_code like w3param-ret_code.
      data connect_type like w3param-cont_type.
      data connect_length like w3param-cont_len.
      data pic_data like w3mime occurs 0.
      data pic_size type i.
      refresh query_table.
      query_table-name = '_object_id'.
      query_table-value = 'TESTPIC'.
      append query_table.
    CALL FUNCTION 'WWW_GET_MIME_OBJECT'
      TABLES
        query_string              =  query_table
        html                      =  html_table
        mime                      =  pic_data
      changing
        return_code               =  return_code
        content_type              =  connect_type
        content_length            =  connect_length
    EXCEPTIONS
       OBJECT_NOT_FOUND          = 1
       PARAMETER_NOT_FOUND       = 2
       OTHERS                    = 3
    IF sy-subrc <> 0.
    pic_size  = connect_length.
    ENDIF.
    CALL FUNCTION 'DP_CREATE_URL'
      EXPORTING
        type                       = 'image'
        subtype                    =  cndp_sap_tab_unknown
        SIZE                       =  pic_size
      DATE                       =
      TIME                       =
      DESCRIPTION                =
        LIFETIME                   = cndp_lifetime_transaction
      CACHEABLE                  =
      SEND_DATA_AS_STRING        =
      FIELDS_FROM_APP            =
      tables
        data                       = pic_Data
      FIELDS                     =
      PROPERTIES                 =
      COLUMNS_TO_STRETCH         =
      changing
        url                        = url
    EXCEPTIONS
       DP_INVALID_PARAMETER       = 1
       DP_ERROR_PUT_TABLE         = 2
       DP_ERROR_GENERAL           = 3
       OTHERS                     = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    endform.
    *&      Module  CANCEL  INPUT
          text
    module CANCEL input.
    LEAVE PROGRAM.
    endmodule.                 " CANCEL  INPUT
    =============================================

  • RDF Report Output Got Displayed in Special Chars

    Team,
    RDF report output is getting displayed in special chars.
    when i query the data from SQL Developer, the data is displayed fine.
    But when the data is displayed in the report the characters(single quotes, double quotes) are not displayed properly, they are displayed in a special char.
    why it is happening so . Is it related any font missing ? Plz do let me know.
    thanks
    sridhar

    (single quotes, double quotes) These are probably not really single and double quotes. Check the ASCII value.
    drop table ttest;
    create table ttest (col1 varchar2(10));
    insert into ttest values ('''Quote''');
    insert into ttest values ('"Quote"');
    select * from ttest;
    select dump(col1) from ttest;
    Table dropped.
    Table created.
    1 row created.
    1 row created.
    COL1     
    'Quote'  
    "Quote"  
    2 rows selected.
    DUMP(COL1)                                                                     
    Typ=1 Len=7: 39,81,117,111,116,101,39                                          
    Typ=1 Len=7: 34,81,117,111,116,101,34                                          
    2 rows selected.

  • Oracle rdf reports - MLS R12

    Hi,
    I am working on Oracle EBS R12 which has full MLS installed. I have a custom rdf report and I have a base rtf in US-English and generated a French version using the "Translatable" option using xlif file.
    Post installation of full MLS, I see that a separate language directory is created under each prodcut top. So now I see /report/US and reports/F. My question is, should I place my custom .rdf file in both US and F directories or placing in just US directory alone is sufficient?
    Regards,
    Divya

    882517 wrote:
    Hi,
    I am working on Oracle EBS R12 which has full MLS installed. I have a custom rdf report and I have a base rtf in US-English and generated a French version using the "Translatable" option using xlif file.
    Post installation of full MLS, I see that a separate language directory is created under each prodcut top. So now I see /report/US and reports/F. My question is, should I place my custom .rdf file in both US and F directories or placing in just US directory alone is sufficient?
    Regards,
    Divya
    When you install Oracle E-Business Suite in a language other than American English, each product tree includes directories that use the relevant NLS language code. These directories hold translated data, forms, and message files. For example, the language directory named D designates German. The data loader files in the D subdirectory of the admin directory contain the German translation of the product seed data.
    The US subdirectory in the forms directory contains Oracle Forms forms in American English. The D directory in the forms directory contains the same forms, translated into German. However, the mesg directory contains message files in both American English and German.
    Language Files
    http://docs.oracle.com/cd/E18727_01/doc.121/e12841/T120505T120509.htm#338712
    Thanks,
    Hussein

  • How do I use the Oracle Developer Reporting Control in Visual Basic 6.0?

    I was wondering how to use the Oracle Developer Reporting Control componant in Visual Basic 6.0 to generate reports in Oracle Reports? Any help would be appreciated.

    Hi Rohit,
    Would like to ask you some questions about the oracle report with Visual Basic.
    1. I have a report built in oracle report. Currently there is a Visual Basic program want to pass some parameter to this report. Can Visual Basic program pass the parameter to this oracel report?
    2. Based on yr answer, do i have to installed the oracle report? or just copy and register the Rwsxa60.ocx (i'm using oracle report 6i) in the PC? So can i use this activeX control.
    3. Is this activeX control similar to Crystal report object which can found in VB?
    4. Is there an example/guide on how the Visual Basic pass the parameter to oracel form?
    Your answer will be much appreciated.
    Thanks.
    Regards,
    Hock Leong

  • I need help on how to install, then run Oracle 9i Reports Server ?

    where do i get Oracle 9i Reports ? how do i used it ?

    you had to install forms server and report server. once the server install completes
    to check it is working fine type http://ipmachine/serveraddress/portno at the time of install/testreport.htm
    meanwhile go through the documentation .

  • How to print traffic lights in ALV reports

    hi how to print traffic lights on selection screen in alv reports

    HI,
    check below code
    TYPE-POOLS : icon.
    types:  BEGIN OF ty_display,
            status     TYPE icon-id,
            bukrs      TYPE bseg-bukrs,
            gjahr      TYPE bseg-gjahr,
            monat      TYPE monat,
            work_order TYPE z_work_order,
            glaccount  TYPE saknr,
            message    TYPE string,
          END OF ty_display.
    data : it_display     TYPE TABLE OF ty_display,
             wa_display TYPE ty_display.
    WRITE icon_led_green AS ICON TO wa_display-status.
            wa_display-gjahr = p_year.
            wa_display-bukrs = p_cc.
            wa_display-monat = p_period.
            wa_display-work_order = v_aufnr.
            wa_display-glaccount = wa_bseg-hkont.
        APPEND wa_display TO it_display.
    WRITE icon_led_red AS ICON TO wa_display-status.
              wa_display-gjahr      = p_year.
              wa_display-bukrs      = p_cc.
              wa_display-monat      = p_period.
              wa_display-work_order = v_aufnr.
              wa_display-glaccount  = wa_bseg-hkont.
              wa_display-message    = text-010.
              APPEND wa_display TO it_display.
    change the icon color based on your requirement and append it to the internal table which you have to display in ALV.
    reward points if it is helpful.
    Regards,
    Srilatha

  • Oracle Matrix Report output to XML Publisher

    We have an Oracle matrix report (rdf) registered in our applications and we are trying to format the report output using XML publisher.
    I have taken XML output of the report by changing the Report output to XML in concurrent program definition. Using this XML output we have started designing the RTF template using Template Builder for Word 5.6.2.
    I am not able to get the MAtrix output in XML publisher. I am not sure how to design a Matrix Report using Template builder for word. I am not sure whether the XML output of Original Report has Tags mentioning Matrix report attributes or Not.
    Can anyone help me by explaining how to design a Matrix Report template using XML report output. Appreicate your help.

    I have posted a Blog on our blog site about how to create a matrix report in XML-Publisher
    http://technology.amis.nl/blog/?p=1558
    Perhaps this helps.
    Marcos

  • Changing the seeded rdf report output from text to PDF

    Hi All,
    I am trying to change the seeded report "Print Requisition Report" output from text to PDF. I changed the output format in the concurrent program definition from text to pdf. The report is now getting displayed in pdf format, but the alignment of the fields are changed. The output is not printing as it was printing while in the text output format. The output looks very sloppy, with uneven fonts and too much of text wrapping.
    I tried some formatting and fields are somehow getting displayed but doesnt look in proper format. I am not able to change the font style in the report builder 6i, even if i change it is printing in the same font style with uneven font size. I think reducing the font size might help, but i am unable to change.We are on 11.5.10.2. Please provide your valuable suggestions on how to go about.
    Thanks
    Sarvesh

    Hi Hussein,
    Thanks for the information. After the adjustments in the layout and the font change the report is now getting displayed without any clipping when clicked on view output. But when the same report is printed some characters on the left and and right side is getting clipped. Please help on how to solve this issue.
    Thanks,
    Sarvesh

  • How to give  push button in alv report  output

    hi,
    my requirement is that , i have to give push button in alv report output(item level) not in application toolbar, i am using reuse_alv_grid_display FM, can any body provide me sample code
    regards,
    siva kumar

    have a look at this thread, also has a sample report at the end from Uwe Schieferstein.
    [button on alv list|How to add and program a pushbutton on ALV grid line;
    seems not to work try this:
    How to add and program a pushbutton on ALV grid line
    Edited by: Micky Oestreich on May 15, 2008 10:20 PM

  • Oracle HTMLDB report output in PDF format using FOP

    Hi,
    We are currently using Oracle HTMLDB1.6.I am trying to implement the HTMLDB report output in PDF format.I got at document but it is not clear.Could you please let use know wheether anybody has already used in their organization.
    Appreciate your response.
    Regards
    Murai

    Hey Murai,
    did you read the technote:
    http://www.oracle.com/technology/pub/notes/technote_htmldb_fop.html
    There is anything explained!
    greets,
    tim

Maybe you are looking for

  • Resolution Problems on HDTV

    Hey everyone, Sorry if this has already been asked but I bought a brand new mac mini yesterday to use as a home theatre pc. After connecting it to my 42 inch 1080p toshiba tv things like the text and application icons are very pixelated and look like

  • Moving photo from LR into Ps CC 2014 stopped working

    Hi! I used to edit my photos in PS CC when I was done with them in LR pressing Ctrl-E. I have uninstalled PS CC this weekend, since I have PS CC 2014 now. Today I wanted to work on some images but now there seems to be a problem. When I press ctrl-e,

  • Withholding tax settings

    Hello Friends, With respect to withholding tax settings i have a query. In the IMG menu there is withholding tax setting available under Financial Accounting >Financial Accounting Global Settings and also availalbe under Financial Accounting >Account

  • User exit on quanity in material componenet

    Dear All , Please tell me USER Activity to control the quantity on material component . This is very urgent . Please give the answer as as Posble. Regards Rama S. Sharma Edited by: Rama Shanker Sharma on Sep 29, 2008 11:59 AM

  • Calling SAP Service from VB6??

    Hi all, i want to call an ABAP Webservice with complex datatypes from a VB6 client application... I found the soaptoolkit 3.0... but i don't know how to use it with complex data types... A simple hello world example is running well.... but how can i