Report Ouput in Arabic

Hi All,
I have to develop the report using Bi publisher. client has provided the template . when i run the report, fields are coming in Arabic , where as data is coming in english.
kindly suggest me what is approach to get the data in Arabic.
Thanks.

Hi,
Please see (Note: 556995.1 - How To Setup XML Publisher To Show Arabic Characters).
Regards,
Hussein

Similar Messages

  • How to display the parameter in  the xmlp report ouput.--Urgent Requirement

    Hi All
    I have requirement of developing a report using xml publisher.Report has 10 parameters, I have to display the values of all the parameters in the report ouput.
    Thanks in advance

    yes using <?param@begin:PARAMETER_NAME?> will be good
    solution.
    when you use this,there will be no need of disturbing
    your RDF,no extra formulae columns,no exxtra summary
    columns.Hi All
    Thanks for the reply, it is working fine with <?param@begin:PARAMETER_NAME?>.
    Earlier I use to write all the parameters in the select clause and use it in rtf template.
    I think <?param@begin:PARAMETER_NAME?> this is the exact solution for displaying parameter values in the report.
    Thank you very much.
    Regards
    Srini.

  • Report Manager in Arabic

    Is it possible to have the Report Manager in Arabic?
    There's been no problem creating the report names, report folders and report content in Arabic.  But so far, we've been unable to get the Report Manager itself (Home, Site Settings, New Folder, etc.) to display in Arabic.  According to the SSRS
    documentation, this is driven by the browser language.  Changing the language to something like Spanish or French works correctly, but when the language is Arabic, Report Manager displays in English. 
    Based on this, it would appear that Arabic isn't supported as an option for Report Manager.  Can anyone confirm this?
    Thanks.

    Hello,
    See
    http://technet.microsoft.com/en-us/library/ms156493(v=sql.105).aspx => Supported Languages; Arabic is not in the list; sorry.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • How to email report ouput as attachment

    Hi,
    Can anybody tell me how to email report ouput as attachment.
    Regards,
    Soumya.

    Hi
    check this
    Refer this link:
    FORM send_mail_2 USING msgid msgno msgv1.
    mailuser oder Gruppe like sy-uname default 'Ruckerk'.
    DATA: express_hold_time LIKE sovaltime.
    DATA: text LIKE sotxtinfo.
    DATA: receiver LIKE somlreci1 OCCURS 0 WITH HEADER LINE.
    MESSAGE ZF100 (FTP an UDB fehlgeschlagen)
    text-msgid = msgid.
    text-msgno = msgno.
    text-msgv1 = msgv1.
    text-msgv2 = ' '.
    text-msgv3 = ' '.
    text-msgv4 = ' '.
    express_hold_time
    express_hold_time-days = 01.
    express_hold_time-h_min_sec = 240000.
    receiver
    receiver-receiver = mreceivr.
    Gruppe von Empfängern
    receiver-rec_type = 'C'.
    und Expressmeldung ausgeben
    receiver-express = 'X'.
    APPEND receiver.
    CALL FUNCTION 'MESSAGE_SEND_AS_MAIL'
    EXPORTING
    msgid = text-msgid
    msgno = text-msgno
    msgv1 = text-msgv1
    msgv2 = text-msgv2
    msgv3 = text-msgv3
    TABLES
    receivers = receiver.
    IF sy-subrc <> 0.
    WRITE:/ 'hat nicht geklappt', 'SY-SUBRC =', sy-subrc.
    ENDIF.
    PERFORM print_error_report.
    Fehlermeldung zum Abbrechen des Report's ausgeben.
    MESSAGE e398 WITH 'Jobabbruch' msgv1.
    ENDFORM. " SEND_MAIL_2
    Another Program:
    *& Report ZSENDEMAIL *
    *& Example of sending external email via SAPCONNECT *
    REPORT zsendemail .
    PARAMETERS: psubject(40) type c default 'Hello',
    p_email(40) type c default '[email protected]' .
    data: it_packing_list like sopcklsti1 occurs 0 with header line,
    it_contents like solisti1 occurs 0 with header line,
    it_receivers like somlreci1 occurs 0 with header line,
    it_attachment like solisti1 occurs 0 with header line,
    gd_cnt type i,
    gd_sent_all(1) type c,
    gd_doc_data like sodocchgi1,
    gd_error type sy-subrc.
    data: it_message type standard table of SOLISTI1 initial size 0
    with header line.
    *START-OF-SELECTION.
    START-OF-SELECTION.
    Perform populate_message_table.
    *Send email message, although is not sent from SAP until mail send
    *program has been executed(rsconn01)
    PERFORM send_email_message.
    *Instructs mail send program for SAPCONNECT to send email(rsconn01)
    perform initiate_mail_execute_program.
    *& Form POPULATE_MESSAGE_TABLE
    Adds text to email text table
    form populate_message_table.
    Append 'Email line 1' to it_message.
    Append 'Email line 2' to it_message.
    Append 'Email line 3' to it_message.
    Append 'Email line 4' to it_message.
    endform. " POPULATE_MESSAGE_TABLE
    *& Form SEND_EMAIL_MESSAGE
    Send email message
    form send_email_message.
    Fill the document data.
    gd_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
    gd_doc_data-obj_langu = sy-langu.
    gd_doc_data-obj_name = 'SAPRPT'.
    gd_doc_data-obj_descr = psubject.
    gd_doc_data-sensitivty = 'F'.
    Describe the body of the message
    clear it_packing_list.
    refresh it_packing_list.
    it_packing_list-transf_bin = space.
    it_packing_list-head_start = 1.
    it_packing_list-head_num = 0.
    it_packing_list-body_start = 1.
    describe table it_message lines it_packing_list-body_num.
    it_packing_list-doc_type = 'RAW'.
    append it_packing_list.
    Add the recipients email address
    clear it_receivers.
    refresh it_receivers.
    it_receivers-receiver = p_email.
    it_receivers-rec_type = 'U'.
    it_receivers-com_type = 'INT'.
    it_receivers-notif_del = 'X'.
    it_receivers-notif_ndel = 'X'.
    append it_receivers.
    Call the FM to post the message to SAPMAIL
    call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    exporting
    document_data = gd_doc_data
    put_in_outbox = 'X'
    importing
    sent_to_all = gd_sent_all
    tables
    packing_list = it_packing_list
    contents_txt = it_message
    receivers = it_receivers
    exceptions
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    others = 8.
    Store function module return code
    gd_error = sy-subrc.
    Get it_receivers return code
    loop at it_receivers.
    endloop.
    endform. " SEND_EMAIL_MESSAGE
    *& Form INITIATE_MAIL_EXECUTE_PROGRAM
    Instructs mail send program for SAPCONNECT to send email.
    form initiate_mail_execute_program.
    wait up to 2 seconds.
    if gd_error eq 0.
    submit rsconn01 with mode = 'INT'
    with output = 'X'
    and return.
    endif.
    endform. " INITIATE_MAIL_EXECUTE_PROGRAM
    Regards
    Anji

  • Can we create DBI dashboards, reports, etc. in Arabic text?

    Hi!
    Can we create DBI dashboards, reports, etc. in Arabic text? If we can create forms in Arabic, does it mean we can also do the same in DBI?
    Thanks.

    You can make a form with 10 or more items (depends on the maximum number of the columns you have) and place them in a non base table block. Then you populate the block with a cursor and if you press a button you can populate the same block with another cursor making visible only the columns you need.
    Hope it helps you,
    Fabrizio

  • Crystal Reports text in Arabic not exporting to PDF properly

    Dear All
    We use crystal reports XI developer edition along with Oracle 10G. The reports bring data from oracle which is in Arabic. The report works fine, displays the data in the viewer as desired, however when the user exports the report to PDF, the arabic text becomes jumbled.
    I am not sure where the problem lies. Can anyone help me fix this issue.
    Hussain Mansoor

    Upgrade to CR XI R2 for free and test again

  • Problem in viewing htmlcss report in the arabic encoding

    Hi all
    I use Oracle Report Service 9i release 2 with NLS_LANG=ARABIC_UNITED ARAB EMIRATES.AR8MSWIN1256
    AND I want to generate HTMLCSS reports.
    When I ran report through web I received a html file with encoding Western European (ISO) showing arabic character as garbage.
    On the other hand, When I viewed the source of displayed html I found out that the charset in the html header was windows-1256(according to my nls_lang, I think).
    I saved the source as a html and I realized that it works correctly.By the way ,I found out that html in the report cache directory works correctly too.
    In both situation, when I view the html, I see them in arabic(windows) encoding but when I use report server it delivers html in Western European (ISO) encoding. Why?
    Could anybody help me ?
    Best regards
    Navid

    Hi
    Even i am facing the same problem.
    Can Oracle reports team help in resolving this ASAP.
    Regards
    Ranganath

  • Customized XML Report error in Arabic Instance

    Dear All,
    A Customized XML Report works perfectly without error in English Instance, where as in the Arabic Instance it throws the below error.
    In the English Instance, if we select both languages in  language settings in SRS window while submitting the report, only Language( American English, Territory:AMERICA ) is working , Language (Arabic, Territory:UNITED ARAB EMIRATES) is having error.
    Application Ver: 12.1.3
    Module: custom
    Today I registered one new report it works perfectly in both instances. (Arabic/English), the settings of DD, Template are same for both.
    Kindly suggest me where can be the error.
    ﺕﻼﻣﺎﻌﻤﻟﺍ
    '61'=p_PAYROLL_ID
    '4980'=p_TIME_PERIOD_ID
    '4549'=P_PERSON_ID
    Forcing NLS_NUMERIC_CHARACTERS to: '.,' for XDO processing
    : APPLLCSP Environment Variable set to
    : Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are
    8ARABIC_UNITED ARAB EMIRATES.UTF
    :ﺮﺴﻟﺍ ﺔﻤﻠﻛ ﻞﺧﺩﺃ
    ﻞﻛﺍﺭﻭﺃ ﺄﻄﺧ ﺙﺪﺣ :0300-REP
    ﻲﻠﺧﺍﺩ ﺄﻄﺧ :0069-REP
    :ﺄﻄﺧ ﺩﻮﺟﻭ ﻊﻣ  ﺀﺎﻬﻧﻹﺍ ﻢﺗ:ﺔﻳﺭﺎﺠﻟﺍ ﺔﻔﻴﻇﻮﻟﺍ ﺀﺎﻬﻧﺇ ﻢﺗ :57054-REP
    ﻞﻛﺍﺭﻭﺃ ﺄﻄﺧ ﺙﺪﺣ :300-REP
    2013 52:32:13 7 11 ﺲﻴﻤﺨﻟﺍ Report Builder: Release 10.1.2.3.0 - Production on
    .c) 1982, 2005, Oracle.  All rights reserved) Copyright

    Hi,
    Please see notes:
    11i-12 How To Perform Quick Checks for REP-3000: Internal Error Starting Oracle Toolkit (Doc ID 364838.1)
    Master Note : Comprehensive REP-3000 Troubleshooting and Overview Guide (Doc ID 200474.1)
    Guide to Solving Report Issues REP-XXX in Procurement (REP-0069, REP-1814, REP-1212, REP-0756, REP-1416, REP-1247, REP-736, REP-0759) (Doc ID 1535982.1)
    Thanks &
    Best Regards,

  • Calling reports from forms - arabic data

    if i send my reports from reports builder to RTF format
    then if i open word then all arabic characters are looking good
    but if the same report is called by forms and then if i open the ms-word then all arabic characters are changing its direction
    pls help

    Thanks Mr.Frank
    so far i didnt call thru reports url ,
    now i am calling reports thru the url which you gave
    then its working fine
    http://server:port/reports/rwservlet?reports=.....
    i put the above code with web.show_document
    user is happy with this
    however if i am calling thru run_report_object and open it
    the allignment and direction changing to opposite side

  • Oracle Report ouput is coming in english and junk characters

    Hi ,
    I am facing an issue with oracle report output in R12.
    The Report out is coming in english and junk characters.
    this report is custom report.
    Migrated from 11i to r12 instance.it is working fine in 11i with output as PDF.
    Sample out put is attached.

    Pl see if MOS Doc 1321874.1 is relevant

  • Report ouput details should create an Attachment and it should be trigger i

    Hi,
    The requirement is like this, my Report output details should create an Attachment and it should be trigger in my workflow MailBox.

    Prabhakar,
    Are you asking a question about the SAP Business One Integration Technology for SAP NetWeaver or a question about the SAP Business One SDK.  If you question is with respect to the Business One SDK, please post your question on the SAP Business One Discussion Forum as this forum is for the SAP Business One Integration Technology for SAP NetWeaver.
    If this is a question about the SAP Business One Integration Technology for SAP NetWeaver, can you give a little more detail?
    Thank you,
    Eddy

  • Oracle Clinical Reports - Ouput not generated

    Hi,
    When i try to run reports within Oracle Clinical it runs as "Success" as per Batch Jobs window.
    I have run it using destype=FILE and desname=<reports_output_path>
    The "View Log" also opens the log, but when trying to "View Output" it gives the following message in the explorer window:
    File <reports_output_path>\o489.pdf does not exist
    When i view the Report details in Report Queue Manager it shows the following error:
    Terminated with Error :
    Caught exception: exception oracle.reports.RWException { oracle.reports.RWError[] errorChain={struct oracle.reports.RWError { int errorCode=56093, java.lang.String errorString="Cached output for job 23 is no longer valid", java.lang.String moduleName="REP" }} }
    The Report is being generated sometimes as a PDF file in the "Cache" directory of reports server, but the output directory doesnt contain any pdf file.
    Any ideas folks?
    Best regards,

    Hi,
    Thank you for the response.
    1. This happens with all output types...I guess PDF Plugin is installed as it is generating a PDF in the Reports Cache Directory that is D:\oracle\9iDS\reports\cache
    2. RXCPROD has been NOT been given Local Administrator rights. But it is a member of "Power users" group.
    Does running a report in any way depend on the RXCPROD account...i thought it was just for running PSUB?
    Any further ideas?
    Best regards

  • Report Ouput to Excel

    Hi,
    I have a portlet in which is displaying the output of the report. When I click on Customize link in the portlet and select display option as Excel, I get junk. I am using Portal 3.0.9.
    Please help me. Thanks in advance.
    Regards,
    Jatinder

    I am having the same problem and I have Office loaded on my machine. If a user customizes the report (QBE) and chooses the Excel report format option, as the help file suggests, the font and the layout of the report are changed, but the Excel file does not get downloaded, even though it does if the report is run from Portal navigator.

  • Seeded Report Ouput error in Request Set

    All,
    i have run a seeded oracle report multiple times in a request set , with 5 different parameters. The report runs to completion but output for report comes only for first or sometime first two reports. Rest all pdf output gives error "No Lob found".
    I can see the XML file generated by seeded process, but the pdf report generator get errors.
    I am trying to run US Gross to Net summary report in a sequential request set with 5 different payroll names.
    Please help !!
    Thanks
    Ankur

    Ravi,
    i am not calling any template. I am simply running Seeded report 7 times with same template in a request set.
    Ankur

  • Problem generating report ouput to a file -REP0069 REP57054 REP 1849

    hi,
    I am working with oracle reports builder (9i). i hv created some reports.While trying to get the report in a file(.txt) by using "File->generate to file" ,i am not able to generate...
    i get error msgs as shown below...
    rep 0069 - internal error whil generating report
    REP-57054: In-proccess job terminated.
    rep 1849 - Failed while printing
    this poblem occurs only with the newly created reports(today n yesterday)...my old reports are running correctly....tats i am able to generate to file...Pls help me in this regard...
    Thanks in advance...

    Thank you for the reply. I'm trying to download the patch, but I can't seem to find it. I assume this is a patch for the Reports Developer, correct? I did a search on bug 2490826 in Metalink and I haven't been able to find it. If you have the number of the patch you're referring to, please let me know.
    Thank You,
    Adina

Maybe you are looking for