report apps lli-Arabic

Hi all

I need to create a form letter report in the Arabic language in the ERP, applications 11i, I generator with me reports 6i

I someone could guide me as to where I have to type Arabic to 6 reports


thaniking in advance

Hello

(1) regarding the modification of thenls lang in Arabic

Open the registry and locate NLS_LANG, change the one under the tree of developer 6i.

(2) how to tell which button on keyboard is 6i Builder for which Arabic Letter

You must have an Arabic keyboard, but a simple as typing in any text-editing program.

Kind regards
Hussein

Tags: Oracle Applications

Similar Questions

  • PDF reports in Unicode Arabic / English.

    Hello

    We face a similar problem in PDF reports in Unicode Arabic / English.

    I'm working on the Oracle 10 g database and application server 10g on windows 2008 in Arab environment platform.
    We need get the menu & right to left on the Arabic mode forms and his come properly.

    Our filed data can contain mixed data like Arabic and English / Arabic full or full English.
    Problem: While taking reports in PDF format, it shows the mixed data (Arabic and English), not the same which is stored
    in the database.

    I made the following adjustments:
    -Oracle NLS_Characterset as AR8IS08859P6 Server
    -Oracle Database registery NLS_LANG as ARABIC_UNITED, UNITED ARAB Emirates. AR8MSWIN1256
    -Application Server registery NLS_LANG as Arabic_Egypt.AR8MSWIN1256
    -policies which create subsets in unicode.ali for PDF

    -police MS san serif is used in reports


    Help, please...

    Thanks in advance
    BJ

    Please, try the following solution to the MOS Doc ID 473513.1

    1. Add the following environment of reports Environment Variable.

    REPORTS_BIDI_ALGORITHM = UNICODE

    or

    REPORTS_BIDI_ALGORITHM = IMPROVED

    Under Windows, you can set them in the registry and on Unix platforms, you can define them in $ORACLE_HOME/bin/reports.sh.

    2. restart the report server.
    3. run the report.

    Thank you

    Sergiusz

  • Report Apps Server error: REP-00181

    Hi all

    A few days back, I met this problem, which was due to a high activity in a kind of special relationship.

    Report Apps Server error: REP-00181: error reading or writing of config file

    I crossed the metalink and came across the document id. 371742.1, which States:

    Edit the file $ORACLE_HOME/reports60/Server/REP60_ < SID > .ora.

    + 1. Stop the report server with the script of adrepctl.sh +.

    + 2. Change maxengine = 1 maxengine = 2 +.
    + 3. Remove the line englife = 50 +.

    + 4. Start the report server with the script of adrepctl.sh +.

    May I know what are these parameters and their impact the report server?

    Thank you
    Anchorage

    minengine: is the minimum number of runtimes this master server must be available to run reports.

    maxengine: is the maximum number of runtimes that master server is available to run reports.

    More details can be found in the following link:

    Tuning Oracle9iAS reports Services
    http://download.Oracle.com/docs/HTML/A92102_01/pbr_tune.htm

  • XML report in the Arab connection in Oracle apps

    Hello

    I created an XML report in Oracle applications, data well are English connection.
    But when we Arab connection login then report shows all the data.
    The data is not even after hard coding values.

    No idea for the question...

    This is the main query in the report.

    SELECT
    PAC1. PAYROLL_ID,
    PAC1. PAYROLL_ACTION_ID,
    HR_PAYROLLS. DISPLAY_PERIOD_NAME (PAC1. PERIOD_NAME PAYROLL_ACTION_ID),
    PRO. PAYROLL_NAME
    TO_CHAR(SYSDATE,'DD-MM-YYYY') REPORT_DATE1
    OF pay_payrolls_f pro.
    pac1 pay_payroll_actions
    PER_TIME_PERIODS_V V
    WHERE pac1.payroll_id = pro.payroll_id (+)
    AND pac1.effective_date BETWEEN pro.effective_start_date (+) AND pro.effective_end_date (+)
    AND DECODE (PAC1. ACTION_TYPE, 'H', NVL (pay_payroll_actions_pkg.decode_cheque_type (pac1.business_group_id), HR_GENERAL. DECODE_LOOKUP ('ACTION_TYPE', PAC1. ACTION_TYPE)), ', DECODE (function, instrb (PAC1. LEGISLATIVE_PARAMETERS,'SLA_MODE = Y'), 0, HR_GENERAL. DECODE_LOOKUP ('TRANSFER_TO_LEDGER', 'GL'), NULL, HR_GENERAL. DECODE_LOOKUP ('TRANSFER_TO_LEDGER', 'GL'), HR_GENERAL. DECODE_LOOKUP ('TRANSFER_TO_LEDGER', 'ALS')), HR_GENERAL. DECODE_LOOKUP ('ACTION_TYPE', PAC1. ACTION_TYPE)) = 'run '.
    AND PAC1. Payroll_id = 61-: P_PAYROLL_ID
    AND PAC1.time_period_id = V.time_period_id
    AND to_char(v.start_date,'MM-YYYY') = ' 01-2013' -: P_MONTH

    next time use EBS associated forums - https://forums.oracle.com/forums/category.jspa?categoryID=3

    AT4
    looks like that you do not have some data for the Arabic language

    in your main query that you have PER_TIME_PERIODS_V which inspired by HR_LOOKUPS that depend on the language of session

    CREATE OR REPLACE VIEW HR_LOOKUPS
    ...
     where FLV.LANGUAGE = userenv('LANG')
    ...
    

    in order to verify the data in HR_LOOKUPS to the Arabic language

    You can check in the query without PER_TIME_PERIODS_V

    You can also change your main query as

    select t.PAYROLL_ID,
           t.PAYROLL_ACTION_ID,
           t.PERIOD_NAME,
           t.PAYROLL_NAME,
           t.REPORT_DATE1
      from (SELECT PAC1.PAYROLL_ID,
                   PAC1.PAYROLL_ACTION_ID,
                   HR_PAYROLLS.DISPLAY_PERIOD_NAME(PAC1.PAYROLL_ACTION_ID) PERIOD_NAME,
                   PRO.PAYROLL_NAME,
                   TO_CHAR(SYSDATE, 'DD-MM-YYYY') REPORT_DATE1,
                   PAC1.time_period_id
              FROM pay_payrolls_f pro, pay_payroll_actions pac1
             WHERE pac1.payroll_id = pro.payroll_id(+)
               AND pac1.effective_date BETWEEN pro.effective_start_date(+) AND
                   pro.effective_end_date(+)
               AND DECODE(PAC1.ACTION_TYPE,
                          'H',
                          NVL(pay_payroll_actions_pkg.decode_cheque_type(pac1.business_group_id),
                              HR_GENERAL.DECODE_LOOKUP('ACTION_TYPE',
                                                       PAC1.ACTION_TYPE)),
                          'T',
                          DECODE(instrb(PAC1.LEGISLATIVE_PARAMETERS, 'SLA_MODE=Y'),
                                 0,
                                 HR_GENERAL.DECODE_LOOKUP('TRANSFER_TO_LEDGER',
                                                          'GL'),
                                 NULL,
                                 HR_GENERAL.DECODE_LOOKUP('TRANSFER_TO_LEDGER',
                                                          'GL'),
                                 HR_GENERAL.DECODE_LOOKUP('TRANSFER_TO_LEDGER',
                                                          'SLA')),
                          HR_GENERAL.DECODE_LOOKUP('ACTION_TYPE',
                                                   PAC1.ACTION_TYPE)) = 'Run'
               AND PAC1.Payroll_id = 61 --:P_PAYROLL_ID
    
            ) t
      left outer join PER_TIME_PERIODS_V V
        on (t.time_period_id = V.time_period_id AND
           to_char(v.start_date, 'MM-YYYY') = '01-2013' --:P_MONTH
           )
    
  • report in apps lli

    Dear Hussein
    I have a newbie question
    Please tell me is it someone please how to deploy a report in oracle 11i applications

    or how to save a report in 11i applications



    thanking in advance


    concerning

    oracleuser

    Published by: makdutakdu on January 14, 2010 11:23

    Published by: makdutakdu on January 14, 2010 12:16

    Hello

    The steps are addressed in these documents.

    Note: 133991.1 - how to save a custom report
    Note: 174194.1 - how to save a custom report
    Note: 134607.1 - how to save a custom report

    You may also reference "Oracle Applications Developer Guide" available at:

    Oracle Applications documentation
    http://www.Oracle.com/technology/documentation/applications.html

    Kind regards
    Hussein

  • AAM reported app as "Installed", but it's not.

    I ' n not exactly what wrong but for some reason any installation of Flash Professional CS6 didn't work. However, Adobe Application Manager is reported as "installed". I sort of re-setup or reset AAM so he noted as needing installation? Right or wrong I removed from the "Adobe Flash CS6" folder that was created (never content to be more than a couple files and no app), but it made no difference.

    Information system: Mac OS X 10.8

    Thank you.

    Run the Creative Suite cleanup tool, and then reinstall it.

    Mylenium

  • Is there a wish list or bug report App...?

    Thanks, Jürgen

    Hello

    You mean the sample application?
    Here is one
    http://www.Oracle.com/technetwork/developer-tools/Apex/application-express/packaged-apps-090453.html#bug

    And Apex 4.0 have the development team and build in the feedback system.

    Or do you mean where to submit bugs and comments for the Apex development team?
    Sticky post to the forum of the Apex, how to report bugs to the Apex development team

    Kind regards
    Jari

  • forms in apps lli

    Hi all

    I need to create a report that contains the hire date of the employee
    This hire_date aka 'start_date ,effective_start_date  is from a table per_people_x
    
    There is  a form in apps 11i which has  hire_date aka 'start_date  and effective_start_date fields
    
    when i enter 15-dec 2009 in both the fields and save this 15-dec-2009 appears only in effective_start_date column of table per_people_x
    while the start_date or hire date contains 11-nov-2009 (the date when the application 
    was received)in the table though it appears changed on the form 
    
    this issue rises for those who have been converted from applicants to employees,the issue is the join date remains same as application date as the system saves the date entered first as join date and hence does not get modified in the table though it appears as changed on the form
    
    i am working on already created form in apps by someone else and i dont have the .fmb
    
    but i noted this by observing the table and form
    
    kindly  tell as to why this is happening as i am new to apps 11i
    thanking in advance


    concerning
    Oracle user

    Published by: makdutakdu on January 10, 2010 10:56

    Published by: makdutakdu on January 10, 2010 10:57

    Published by: makdutakdu on January 10, 2010 10:57

    Hello

    I'm already created form in apps by someone else and I do not have the .fmb

    Have you checked if the fmb is located under the directory AU_TOP/forms/US $?

    but I noticed that by looking at the table and the form

    kindly tell as to why this is happening as I'm new to 11i applications

    If you do not have the fmb file and you do not see the code, then you need to activate the trace and to generate the TKPROF file, this should explain why the code of the form / behave this way. For more information about tracing, see (Note: 296559,1 - FAQ: Techniques of common tracing in the Oracle Applications 11i/R12).

    Kind regards
    Hussein

  • Where can I get a copy of GSW.exe, the Reporting application within the dashboard 2.0 Golf Digest program? Reports app has disappeared somewhere...

    I need a copy of GSX.exe, the application considered for Golf Digest scorecard program.

    Where can I download or get a copy?

    Contact Golf Digest, of course.

  • Arab police is coming as junk in the interface of oracle report builder 10g

    Hi all
    I am facing a problem of Arab police in interface builder to report, happens to be undesirable (such as?).
    Please suggest.

    Thank you
    Soilihi

    Sayeed says:
    Hi all
    I am facing a problem of Arab police in interface builder to report, happens to be undesirable (such as?).
    Please suggest.

    As salamu Asalam, Sayeed

    Click on the following link

    1 re: PDF reports to Unicode / Arabic & English
    2 http://www.orafaq.com/forum/t/162197/149761/

    Hope you find the solution to these two.

    If someone useful or appropriate, please mark accordingly.

  • problem with the Arabic language in the report 10g

    hello all, sorry i can't speak english very well
    im using oracle database 10g and forms,report 10 g
    windows xp sp3 operating system
    i call my report from my form its working very good
    but report language appear  is symbol something like this pic my language is arabic
     [http://imageshack.us/photo/my-images/6/reporterror.jpg/] 
    please help me and thank's

    What is your desire destination format?

    Click on the following link

    1 re: PDF reports to Unicode / Arabic & English
    2 http://www.orafaq.com/forum/t/162197/149761/

    Hope you find the solution to these two.

    If someone useful or appropriate, please mark accordingly.

  • App does not load for some users

    Hello world

    As my first application, I thought I would do something quite simple, you know, to test the waters. It's a comic reader, basically an Viewer with unarchiving abilities.

    I tested with success on the Simulator, my z10 and four of z10s my colleague with different storage configurations (without sd card, 2 GB, 4 GB, etc...), never saw once a problem loading.

    I thought he was good to go. Approval, he passed so I guess that the inspectors of the app ran successfully as well.

    It's the four reviews I have so far three report app does not work yet. (And leave pretty nasty comments)

    Forum, the question I pose to you, it's having someone else had similar experiences? How some of you go on debugging this problem? How much stock should I put in too much negative comments?

    I don't know if it goes against forum label, but if any of you care to try the app it is called Bam! BD drive (and it's free). I would like to hear from someone who can't run and get the OS version and storage configuration.

    See you soon,.

    E.

    There is a known issue on some devices a few apps will stop working.

    The app can be crashing if he does before the splash screen.

    In your application, Yes, such a bad reviews.

    I ran to your application:

    (1) guest permissions

    (2) screen get to complain about the SD card not found (I'm not one).

    "No CBR, CBZ or other comic acrchies were found while preserves internal and SD storage card" Big graphic null and then "once you have copied comic archive friles to your home or storage SD card using the drop down meny (misspelling) to update your library.

    (3) your app menu, first button lable is truncated.

    (4) once you go in help, you are unable to get out.

    On this basis, I probably would give you a bad review too.

    • Having not drawn messages files are a bit hard and not useful to the user
    • Nothing tells me where to find these files
    • I expect if I have not, that a list would be displayed to those that I can download/purchase.
    • Must go back to the help page
    • Different icons in the app bar could help.  With the help of all the gear is not good, espcially when the Q10 out and you no longer labels to describe the buttons.
    • Guide the user to a successful experience.  At this point, the user hits a wall and doesn't know what to do.

    I like the icon of the application.

  • How to change the orientation of the in-app Mail in Windows 8 preview pane?

    The mail app on Windows 8 is set to display the preview to the right of the display pane. In Outlook, you can change to display the preview pane in the lower part. How do you do that with the Mail application? Thank you.

    Hi Roger,

    I'm sorry to inform you that this option is not available on Windows 8 Mail App, however you can send us feedback refer to the following Microsoft article.

    How to make an application or a Microsoft exam: http://windows.microsoft.com/en-US/windows-8/how-report-app-review-microsoft

    If you need Windows guru, do not hesitate to post your questions and we will be happy to help you.

  • Windows 8/8.1 Weather App is totally wrong 'weather history.

    I live in North Conway, NH and I chose as my position.

    Bing weather with forecasts Panel seems fairly accurate, as well as the schedule.

    The cards are regional and are on-site.

    But the map of historical time is all just ridiculous.

    It shows the medium-high in July and August as 55 degrees (F)... yes everything show in f, if I switch to C, then they loan to 13 degrees.

    Low mid and senior for the months of the year are all completely passing offshore too low.

    I tried to Fryeburg, ME which is about 18 miles from here, and it does the same thing.

    I tried Ossipee, NH, which is 30 miles to the South and it has more reasonable values, they seem a bit weak.

    What gives?  The only thing I can find is that he did not get the correct data for the exact location and straightens to place the data to the top of Mount Washington, which is 15 miles to the North and probably there are these averages.

    Hi Scott,.

    To find out how to make an application or a Microsoft exam, you can consult the following link:

    How to make an application or a Microsoft exam
    http://Windows.Microsoft.com/en-us/Windows-8/how-report-app-review-Microsoft

    I hope this helps. Let us know if you have other problems with Windows in the future.

  • Windows app cannot add Australian teams at Sports App

    I noticed that the Sports App cannot add Australian AFL, Cricket and NRL teams to her sport app.  Do you know when this is likely to change?

    a. open the application of Sports.
    b. press the Windows key + Z.
    c. Select the team option Favorite.
    d. follow the onscreen instructions.

    If the above do not submit your request here:

    How to make an application or a Microsoft exam: http://windows.microsoft.com/en-US/windows-8/how-report-app-review-microsoft

Maybe you are looking for

  • Cache directory structure

    I clear my Cache on a regular basis (at EACH stop, at least). I know and use the "browser.cache.disk.parent_directory" Cache location setting Is there a setting to return to the 3.6 Cache Directory structure? I feel no questions slowing down access t

  • 4.4.2 modem quick dormancy question

    Motorola will provide a fix for the bug of dormancy fast modem on 4.4.2 related to the use of this phone on GSM networks? I believe that this issue is related to random restarts, the screen turns don't no about sometimes, excessive battery drain and

  • Whenever I go to open a file folder, Windows search opens instead... How can I fix it?

    I tried to change the file type, but it wont let me change it.

  • hard drive recovery

    I want to make a full destructive recovery and save my vista program, I did instilation disc that the program has been installed when new, nor is the TECH/GUY programe availabe disk, what I can do.

  • Live Movie Maker

    Help, please.  I am trying to download short videos (3-5 min.) to send customers to Amazon. I download from my SD cards, I change and then try to send them to Amazon, but it does not work. I know Amazon said that 100 MB is the maximum that I can down