How to submit request with default language as 'American English' in other non-english language sessions.

Dear All,
Kindly suggest how to submit request with default language as 'American English' in other language sessions (Ex: Arabic).
R12: 12.1.3
The issue is we created function using 'arabic' text in it, which runs perfect in the english session, but doesnt gets value in the arabic session.
So we decided to make the submit request with default language as 'American English'.
Below is the function. Kindly note that SEGMENT1 is not linked to any valueset.
CREATE OR REPLACE FUNCTION F_GET_OLD_LEAVE(P_PERSON_ID NUMBER)
  RETURN NUMBER IS
  V_DAYS NUMBER;
BEGIN
  select
     SUM(EXCD_DAYS)
    INTO V_DAYS
      FROM (
            SELECT
  --            NVL(SEGMENT5, 'تجاوز') Late_type,
  --             SEGMENT1 NOTES,
  --            ACTUAL_TERMINATION_DATE,
(CASE 
WHEN NVL(SEGMENT5,'تجاوز') not in ( 'تجاوز' ,'إجازة غير مدفوعة') and segment1 not in ('إجازة غير مدفوعة') THEN 0
--WHEN SEGMENT1  like 'إجازة غير مدفوعة' THEN
--TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR') -
--TO_DATE(to_date(SUBSTR(segment2, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR') +1
when segment1 not in('بدل نقدي','إجازة غير مدفوعة') and segment4 is null then
TRUNC(to_date(ACTUAL_TERMINATION_DATE,'DD/MM/RRRR'))- TO_DATE(to_date(SUBSTR(segment3, 1, 10),'DD/MM/YYYY'), 'DD/MM/RRRR')-1 
when segment1 in('إجازة غير مدفوعة') and segment4 is null then
TRUNC(to_date(ACTUAL_TERMINATION_DATE,'DD/MM/RRRR'))- TO_DATE(to_date(SUBSTR(segment2, 1, 10),'DD/MM/YYYY'), 'DD/MM/RRRR')
WHEN SEGMENT1 <> 'إجازة غير مدفوعة' and
            TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')  <
            TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR') 
THEN 0
  WHEN SEGMENT1 <> 'إجازة غير مدفوعة' and
            TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')  -
            TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')  <=1
THEN 0
WHEN SEGMENT1 like  '%بدل نقدي%' then 0
           -- TO_DATE(to_date(SUBSTR(segment2, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')  
  WHEN SEGMENT1 like '%إجازة سنوية%' and segment5 in( 'إجازة غير مدفوعة','تجاوز')and
            TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')  -
            TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')  >=2
            then
            TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')  -
            TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR') -1
WHEN SEGMENT1 like '%إجازة حج%' and segment5 in('إجازة غير مدفوعة','تجاوز') and
            TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')  -
            TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')  >=2
            then
            TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')  -
            TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR') -1
when SEGMENT1 LIKE '%إجازة غير مدفوعة%' AND
TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR') -
TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')<=1
THEN
TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR') -
TO_DATE(to_date(SUBSTR(segment2, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')
when SEGMENT1 LIKE '%إجازة غير مدفوعة%' AND SEGMENT5 NOT IN('تجاوز','إجازة غير مدفوعة') AND
TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR') -
TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')>=2
THEN
TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR') -
TO_DATE(to_date(SUBSTR(segment2, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')+1
when SEGMENT1 LIKE '%إجازة غير مدفوعة%' AND SEGMENT5  IN('تجاوز','إجازة غير مدفوعة') AND
TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR') -
TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')>=2
THEN
TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR') -
TO_DATE(to_date(SUBSTR(segment2, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')
WHEN
           EXTRACT(YEAR FROM TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR'))  <>
           EXTRACT(YEAR FROM TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')) 
THEN
   TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'),'DD/MM/RRRR') -
   TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'),'DD/MM/RRRR') - 2
WHEN 
        to_char(to_date(SUBSTR(SEGMENT3, 1, 10),'YYYY/MM/DD'),'DD/MM/YYYY') =
        to_char(to_date(SUBSTR(SEGMENT4, 1, 10),'YYYY/MM/DD'),'DD/MM/YYYY')
        THEN  0
WHEN
EXTRACT(DAY FROM TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR'))= 31
  THEN
     TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR') -
  TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')-1
--------------------------------------------when enddate is NULL---------------------------------------------------------------------------------
-- WHEN segment3 IS NULL THEN round(TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'),'DD/MM/RRRR') -
--  TO_DATE(to_date(SUBSTR(segment2, 1, 10),'YYYY/MM/DD'),'DD/MM/RRRR'))
WHEN segment3 IS NULL THEN ((EXTRACT(MONTH FROM TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')) -
        EXTRACT(MONTH FROM TO_DATE(to_date(SUBSTR(segment2, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR'))) * 30) +
         (EXTRACT(DAY FROM TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')) -
        EXTRACT(DAY FROM TO_DATE(to_date(SUBSTR(segment2, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')))
-----***********************************when segment1**********************************--------------------------
WHEN SEGMENT1  like '%صادف%' THEN ((EXTRACT(MONTH FROM TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')) -
        EXTRACT(MONTH FROM TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR'))) * 0) +
         (EXTRACT(DAY FROM TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')) -
        EXTRACT(DAY FROM TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')))
  WHEN 
    EXTRACT(YEAR FROM TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')) =
    EXTRACT(YEAR FROM TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR'))
THEN
      ((EXTRACT(MONTH FROM TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')) -
        EXTRACT(MONTH FROM TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR'))) * 30) +
       (EXTRACT(DAY FROM TO_DATE(to_date(SUBSTR(segment4, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')) -
        EXTRACT(DAY FROM TO_DATE(to_date(SUBSTR(segment3, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')))-1
         ELSE 0
         END )EXCD_DAYS
             FROM HR.PER_ANALYSIS_CRITERIA C,
               PER_ALL_PEOPLE_F         PPF,
                PER_PERIODS_OF_SERVICE PPPS,
               PER_PERSON_ANALYSES      T ,
               fnd_id_flex_structures_vl f
             WHERE 1 = 1
           AND T.ANALYSIS_CRITERIA_ID = C.ANALYSIS_CRITERIA_ID
           AND PPF.PERSON_ID = T.PERSON_ID
           and ppps.PERSON_ID=ppf.person_id(+)
          and   ppps.ACTUAL_TERMINATION_DATE           BETWEEN  ppf.effective_start_date and nvl(ppf.effective_end_date, to_date('31/12/4712', 'DD/MM/YYYY'))
          -- AND C.ID_FLEX_NUM = 50318
           and c.id_flex_num = f.id_flex_num
    AND f.id_flex_code = 'PEA' 
      and f.ID_FLEX_STRUCTURE_NAME =  'XX_Old_Leave_Details'
    AND PPF.person_id = P_PERSON_ID
AND T.DATE_FROM>=( select
TO_DATE(to_date(SUBSTR(xx.global_value, 1, 10),'YYYY/MM/DD'), 'DD/MM/RRRR')
FROM
ff_globals_f xx
where xx.GLOBAL_NAME='XX_NEW_LEAVES_DATE_FROM'
AND SYSDATE BETWEEN XX.EFFECTIVE_START_DATE AND XX.EFFECTIVE_END_DATE)
and substr(c.segment1,1,10)>=
           select substr(xx.global_value,1,10)
FROM
ff_globals_f xx
where xx.GLOBAL_NAME='XX_NEW_LEAVES_STD'
AND SYSDATE BETWEEN XX.EFFECTIVE_START_DATE AND XX.EFFECTIVE_END_DATE
  RETURN NVL(V_DAYS, 0);
EXCEPTION
  WHEN OTHERS THEN
    RETURN 0;
END;
Thanks in Advance.
Regards,
Afzal.

Dear All,
I found the solution for the above function.
In the same function I removed the static arabic values replacing with code values from the value set.
In my scenario there is a value set where some of these values exists, and other we can add there.
Kindly let me know if someone was successful by using the arabic text in the coding and defaulting the language in conc prog as English.
Thanks a lot.
Regards,
Afzal.

Similar Messages

  • How to submit request(Report+Template) using Shell Scripts?

    Hi Friends,
    How to submit request + Add layout using shell scripts..
    If anybody has sample code..Can you please send me to [email protected]
    Please help me..
    Its Urgent.
    Thanks and Regards,
    A Swain
    Message was edited by:
    SwainA

    Following is a package where the request is submitted and the layout is added.
    Also check iin the other way by adding the layout first n then giving the request.
    CREATE OR REPLACE PACKAGE BODY try
    AS
    PROCEDURE try_proc
    errbuf OUT VARCHAR2,
    retcode OUT NUMBER
    IS
    l_mode BOOLEAN;
    l_request_id NUMBER;
    xml_layout BOOLEAN;
    BEGIN
    fnd_file.put_line (fnd_file.output, 'USER_ID :' || fnd_global.user_id);
    fnd_file.put_line (fnd_file.output, 'REQU_ID :' || fnd_global.resp_id);
    fnd_file.put_line (fnd_file.output,
    'RESP_APPL_ID :' || fnd_global.resp_appl_id
    l_mode := fnd_request.set_mode (db_trigger => TRUE);
    IF l_mode IS NOT NULL
    THEN
    fnd_file.put_line (fnd_file.output,
    'Concurrent MODE Option is Success'
    END IF;
    -- if wrong paramters error recd give all 100 arguments as null
    l_request_id :=
    fnd_request.submit_request (application => 'app_short_name',
    program => 'shortname',
    sub_request => FALSE
    fnd_file.put_line (fnd_file.output,
    'Request_Id 1 is :' || l_request_id
    xml_layout :=
    fnd_request.add_layout (template_appl_name => 'SQLAP',
    template_code => 'CAPINEF01',
    template_language => 'en',
    template_territory => 'US',
    output_format => 'PDF'
    COMMIT;
    EXCEPTION
    WHEN OTHERS
    THEN
    fnd_file.put_line (fnd_file.LOG,
    'Error in procedure package procedure :'
    || SUBSTR (SQLCODE, 1, 20)
    || ':'
    || SUBSTR (SQLERRM, 1, 250)
    END try_proc;
    END try;

  • How to change "open with" defaults via command line?!?

    folks,
    i know that if i get info on a file -- in this case, a filemaker 5.5 file -- i can choose the default "open with" settings and apply those settings to all files of that kind. see the attached image for what i mean.
    but how do i do that via the command line?
    thus far, here's what i've got: i know that i can open a document called "scrubbing shell.sh" on my desktop WITH either MS Word of TextEdit by calling:
    open -a textedit /Users/david/Desktop/scrubbing-shell.sh
    or
    open -a Microsoft\ Word /Users/david/Desktop/scrubbing-shell.sh
    no sweat. BUT....how do i set the defaults so that it ALWAYS opens with that app in the future when double-clicking via the GUI?
    many thanks, ya'll!
    david koff
    associate systems admin
    the j. paul getty trust
    dkoff AT getty DOT edu

    Hi David,
       OK, I investigated the new format and treatment. It appears that the first entry in the property list file that matches the file being opened wins. The Finder may still honor the new format; when I moved my old Panther file into Tiger it seemed to work. However, in other ways, the Finder doesn't recognize the old format, which is the format of the FileMaker entries you posted.
       The Finder puts all of the new format entries at the beginning of the property list file. If you change a preference that was controlled by an old format entry, the Finder won't edit that entry. What it will do is to create a new entry in the new format closer to the beginning of the file than any of the old-format entries. SInce the new entry comes first, the old one doesn't apply. If you then edit the preference and change it back to what it was before, the Finder will edit the new entry. Consider the following sequence of events and commands:
    % cp ~/Library/Preferences/com.apple.LaunchServices.plist ~/Library/Preferences/com.apple.LaunchServices_copy.plist
    I change all GIF files to be opened by GraphicConverter instead of Preview, which is an old setting in the old format.
    % plutil -convert xml1 ~/Library/Preferences/com.apple.LaunchServices.plist
    % diff --text ~/Library/Preferences/com.apple.LaunchServices.plist ~/Library/Preferences/com.apple.LaunchServices_copy.plist
    404,409d403
    <      <dict>
    <         <key>LSHandlerContentType</key>
    <         <string>com.compuserve.gif</string>
    <         <key>LSHandlerRoleAll</key>
    <         <string>com.lemkesoft.graphicconverter</string>
    <      </dict>
    Then I change all the GIF files to be opened by Preview again.
    % plutil -convert xml1 ~/Library/Preferences/com.apple.LaunchServices.plist
    % cp ~/Library/Preferences/com.apple.LaunchServices.plist ~/Library/Preferences/com.apple.LaunchServices_copy2.plist
    % diff --text ~/Library/Preferences/com.apple.LaunchServices.plist ~/Library/Preferences/com.apple.LaunchServices_copy.plist
    404,409d403
    <       <dict>
    <          <key>LSHandlerContentType</key>
    <          <string>com.compuserve.gif</string>
    <          <key>LSHandlerRoleAll</key>
    <          <string>com.apple.preview</string>
    <       </dict>
    % diff --text ~/Library/Preferences/com.apple.LaunchServices.plist ~/Library/Preferences/com.apple.LaunchServices_copy2.plist
    408c408
    <          <string>com.apple.preview</string>
              <string>com.lemkesoft.graphicconverter</string>
       Note that I had to change the file to text after every change because the Finder converted the file to binary format every time it edited it. I didn't have to logout or reboot; the property list file change less than a second after the preference was set. I'm guessing that because you were just looking at the old-format entry, you missed the real changes to your property list file. Did it change from text to binary format? Try the command line tools that I used above.
       Note that this means that it matters where you put your entries in the property list file if you edit it.
    Gary
    ~~~~
       There are only 10 kinds of people in the world. Those
       who understand binary numbers and those who don't.

  • How to change "Open With" default

    When one has, say, a .tiff image stored in the Documents folder how does one change the "open with" default? For instance, if Photoshop is given as the default, how does one change this to Preview?

    HI,
    Right or control click the file, then click Get Info. Click the Open With discovery triangle and select the application you want to open that file with. You may have to click Other and navigate to the Applications folder to select the app, ie., Preview.
    http://www.ehow.com/how4548206quick-change-files-default-application.html
    Carolyn
    Message was edited by: Carolyn Samit

  • How to hide request with no results in Dashboard?

    Hi Experts,
    I have a dashboard with 3 requests in one section. The 3 requests are very similar to each other but need to be separated due to the way the metrics are calculated and the location of the datasource.
    DepartmentName Sales Month
    GroupName Sales Month
    TeamName Sales Month
    There is no hierarchy and all three don't relate to each other.
    The issue I am having is that if the first request (lets call it Department Request) doesn't have any data for that particular month, it still displays the column heading.
    How can hide the request or the column headings if there is no data for that request?

    --Report Dropdown
    --here is a detailed explanation from David using Guided navigation
    --http://forums.oracle.com/forums/thread.jspa?messageID=3511377
    --So, essentially, when you 1st report returns no data then you can hide that section, to itself.
    Thanks for the suggestion.
    This won't work for my requirements because the user doesn't want to select the reports. They want to input the para maters and look at the requests that have the data. If a request doesn't return data, then they want it blank.
    This dashboard will grown in terms of requests so the user doesn't want to select each report that they might need. Also, users will not know which request might or might not have data.

  • How to Add column with default value in compress table.

    Hi ,
    while trying to add column to compressed table with default value i am getting error.
    Even i tried no compress command on table still its giivg error that add/drop not allowed on compressed table.
    Can anyone help me in this .
    Thanks.

    Aman wrote:
    while trying to add column to compressed table with default value i am getting error.This is clearly explain in the Oracle doc :
    "+You cannot add a column with a default value to a compressed table or to a partitioned table containing any compressed partition, unless you first disable compression for the table or partition+"
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_3001.htm#sthref5163
    Nicolas.

  • How do you change the default User in Windows 7 on a non-RAIDed 4 disk setup?

    Hi.
    I have installed Windows 7 Ultimate 64bit on Darling my new machine, which has a four-disk setup without RAID, like this:
    SSD OCZ -OS, Programs (C:)
    WD 2002FEAX - Media Projects (D:)
    WD 1002FAEX - Pagefile, Media Cache (E:)
    WD 1002FAEX - Previews, Exports (F:)
    This setup, and because it’s unRAIDed (four separate disks), created the User file in the OS disk, right under the Programs (x86) folder, which at times causes files, which are not programs, to automatically be saved in the User file that's in the Programs disk, when in fact Programs disk is NOT meant for storage.
    Further, I cannot save stuff in My Documents because that directory leads the files (that I am saving) to the User folder in the OS disk, forcing me to navigate out of there and into an alternative disk, which is time consuming, more so than if i had a directory leading to D disk.
    So, I am wondering, can anyone help me change my directory to establish the default User folder in any folder other than C?
    Or, if can someone refer me to Windows 7 tutorials, resourses, that are a tad more than Dummy level.
    I have heard that changing around the directory as such can mess with the OS, and though not at Dummy level, I’m quite new to PC and profusely insecure about making changes to Darling at all.
    Thanks.

    Hi folks.
    I would like to update you about what happened regarding my wish to move the User location to another hard disk. Heeding your warning, i did NOT attempt that, but rather, moved the location of the My Documents folder in my Library, from its default place on (SSD) disk C:/ (which is the default location because that's where i installed Windows 7,) to another disk -  D:/ called "Media Projects".
    Here is how my directory looked before i made the change, my three hard disks were outside the Library directory that's on my SSD (Programs disk):
    (I did that by right-clicking the My Documents folder in the left column of a browser window, to access the Location tab.)
    What this did is, it put driver D:/ under Documents, which is under Library, see picture, which now enables saving documents quickly, by going from my Library directly to my D drive, however it eliminated the "My Documents" folder/possibility all together from the left-column list of folders in the Windows Explorer browser pane.
    I am now trying to do the same with Music, Pictures, and Videos, i.e. to move them to D drive, but am unable to do so because right-clicking those icons in the directory does not produce the Location tab in Properties panel, and nor does right-clicking inside the files themselves.
    Similarly, right-clicking Downloads, which i also want to have residing in my D drive, does NOT produce a Location tab in properties pane, though it does seem possible to change the directory manually...see picture.....but am wary....
    I am still monitoring my new system, and will see if and how this change effects my system's performance.
    Thanks.

  • CUP - How to handel requests with no auto provisioning

    Dear Friends,
    We are not using Auto-Provisioning in our CUP component.
    We don't know how to handle a situation when although the request was approved at all stages, the provisioning it self (which is executed manually) does not happen (for example, the security manger forgot to do the changes).
    How can we detect those differences ?
    And if we did detect them, is there a possibility to add some comments to a request that was fully approved.
    thanks
    Yudit

    Hi Yudit,
    Not exactly. It is some manual work.
    CUP>>Informer>>Provisioning
    Run these two reports (select specific period):
    Role Assigned / Removed
    User Processed
    Run t-code RSSCD100_PFCG_USER (You find this repot in SUIM).
    Use the same period as above.
    Export the report to Excel. If many entries, create a function to compare the results orilter the result by Action and compare to CUP reports.
    Good luck,
    Vit

  • Simple Question-How to change open with default

    This should be a simple thing to do but the system preferences don't allow me to change it. I want to open jpegs with Preview and Photoshop is the default.
    Besides,the system preferences is pretty lame to me. Very basic stuff. Can anyone help me with this?
    Can I be notified by email? [email protected] Thanks!
    Mike

    Click once on a jpeg. Do a Get-Info, (command-I). In the drop down window Open with: select Preview. then select Change all.

  • How to make a field default in mm01 while coping from other material

    hi all,
    i want to make a field default in mm01 ....mara-mstae -
    say value 'A', when
    i am coping from other material.
    normally a T.variant is working in the scenario when im creating a material
    but not when i am coping from other material.
    Any field exits would work on that .if so  how?
    thanks in advance,\
    sg

    i have to make the x-plant material status as 'BE' in mm01 basic view 1 ,when the material is created or copied from .<b>but it should be only default for the user might change it</b> 
    now when the material was created its workin---- coz a transaction variant has been created.
    but when im coping it from other material its picking the properties of the old material ( from which im coping) ..not the field value which i want to display as default.
    field exit only validates. can we give default value by it ,before saving a material??????
    thanks,
    sg

  • Icon on toolbar is in Korean or other non-English language; help!

    Once in awhile, the icon on the toolbar which lets met know that Firefox is running suddenly changes from English to an Asian language: Chinese? Korean? I don't know what. How do I change it back to English?
    == This happened ==
    A few times a week
    == I don't know.

    Do you have a U.S. iTunes account or another English speaking store account? You have to have a credi card register to a valid address in that country's store to purchase from it.
    Launch the App Store app, tap the featured tab, swipe to the bottom of the screen and tap on your ID. Tap View Apple ID, enter your password, go down to Country/Region to change the store.

  • How to sync ical with multiple apple devices and android?

    Does anybody have use an android phone in addition to apple devices, and have you figured out how to sync ical with all? (I know there are other calendars that can be used by all, but it means a lot to my husband to stay with ical.)

    I tried Yahoo in the past but had trouble with duplicate entries. However, this was a while ago before Yahoo updated their site and this was with syncing to a Windows computer with Outlook in addition to a Mac so my results might not be typical. Yahoo's worth a shot, but my experience with Yahoo is why I use Google Calendar.
    Beyond that, I don't know of any other "free" services. There are many other hosted calendar sites that could work, but you'd pay something like $5-$20 per month, which is comparable to MobileMe.

  • Error in "submit rmmmbest with ms_matnr-low = wa_matnr-low and return"?

    Hi
    Experts pls show me the solution for this error
    Error in "submit rmmmbest with ms_matnr-low = wa_matnr-low and return"?
    i have found error an during  extended syntax check for above statement . i.e3., ms_matnr-low is not a parameter or a select-option in report rmmmbest
    If anybody face this problem please tell me the solution.
    thanks in advance

    Hi Sitaram,
    The selection for material number is programmed with a select-option called MS_MATNR. Although you can see only MS_MATNR-low you should still fill an internal table with the same linetype as MS_MATNR and then use SUBMIT rmmbest with MS_MATNR = <your internal table>.
    e.g.
      DATA:
         zlt_matnr_range TYPE RANGE OF matnr,
         zls_matnr_line    LIKE LINE of zlt_matnr_range.
    zls_matnr_line-sigm  = 'I'.
    zls_matnr_line-option = 'EQ'.
    zls_matnr_line-low = wa_matnr-low.
    APPEND zls_matnr_line to zlt_matnr_range.
    SUBMIT rmmmbest WITH ms_matnr = zls_matnr_range.
    Regards,
    John.

  • Loading pages with non-English language scripts (e.g., Arabic)

    When I try to load a page that has non-English script, specifically Arabic, it just show's up as question marks or weird symbols. How do I get it to show the words but in Arabic or any other non-English script?

    Make sure that the correct encoding is selected.
    *Firefox > Web Developer > Character Encoding
    *View > Character Encoding

  • [LR2 - SOLUTION] Using Lightroom in englsih with a non-english keyboard layout

    Hi,<br /><br />Many of us, non native english speaking LR users, are using LT in<br />english on a system having a non-US keyboard layout. The conseqeunce of<br />this is that we can't reach a lot of keyboard shortcuts because LR<br />doesn't offer any interface for configuring them.<br /><br />However, there's a workaround. I'll explain here what I did for the<br />french language but you can apply this to your own language.<br /><br />For the non english languages, the keyboard shortcuts are defined in<br />C:\Program Files\Adobe\Adobe Photoshop Lightroom<br />2\Resources\<language>\TranslatedStrings.txt. If you are using LR in<br />english, this file is not used and there's no similar file in C:\Program<br />Files\Adobe\Adobe Photoshop Lightroom 2\Resources\en.<br /><br />But you can create one containing only the shortcuts that you need.<br /><br />I have created  a new TranslatedStrings.txt file containing only the<br />keyboard shortcuts defined for the french version. I did this by copying<br />only the lines containing the following sequences:<br /><br />....Key=...<br />....KeyShifted=...<br />...AgPanel/LeftPanelShortcut...<br />...AgPanel/RightPanelShortcut...<br />...MenuShortcut/DecreaseRating=<br />...MenuShortcut/IncreaseRating=<br /><br />(french users can find this file here:<br />http://www.mainsoft.fr/Files/LR/TranslatedStrings.txt .<br /><br />Copy this file to "C:\Program Files\Adobe\Adobe Photoshop Lightroom<br />2\Resources\en" and relaunch Lightroom.<br /><br />Now you have the same keyboard shortcuts as when using LR in french.<br />Interestingly enough, if you hit ctrl + < , the LR keyboard shortcut<br />panel is displayed and it shows your new shortcuts.<br /><br />Again, you can do the same for your own language by copying the<br />specified strings from the relevant folder.<br /><br />Hope this helps.<br /><br />-- <br />Patrick Philippot<br />MainSoft Consulting Services<br />www.mainsoft.fr

    Yes… I would at a minimum contact Apple sales or AppleCare regarding this. You have two options though. You can ask for a new one, given they can't simply swap out a keybaord you need to exchange the whole thing.
    Otherwise, you can use it as a bargaining chip and say ask for a free external International English keyboard and a discount on your next Apple Store purchase… for instance.
    Regardless, be polite yet firm with them as you did not get what you ordered.

Maybe you are looking for

  • How can i generate a pdf with an XFA form input ?

    I am creating a process, in which xfa form variable flows through workflow. When i use any solution components like Reader Extension, Content Management....it needs pdf as input.....so i need to convert xfa form variable into pdf ....i am not able to

  • Poor Quality Videos in RH10

    I need to publish some software simulations in RH10 Webhelp, and am having a great deal of difficulty. The only ones that seem to work are the videos I create from scratch in Captivate - these publish as .SWF files. I began with an MP4 file, created

  • How to get adobe bundled fonts.

    hi I am following AdobeDocServ_ConfGuide_SPs11.pdf for configuration of ADS in ECC 6.0 version system .i could not able to find default (SAP) Adobe bundled fonts in the following path : /usr/sap/<SID>/DVEBMGS15/j2ee/os_libs/adssap/FontManagerService/

  • Messaging Server 4.15 Plug-in API

    I need to convert a messaging server 3.6 plug-in into a messaging server 4.15 plug-in. I got the messaging server 4.15 plug-in API guide. I wrote a plug-in. Building the SMTP plug-in is OK. I installed this plug-in by configuring the SMTP plug-in con

  • Won't print blue

    HP Officejet Pro L7590 won't print blue despite all cleaning etc done???? !!!!