Transaction starting with Y_DEV are showing in German language even though

Hi,
     When we are login into SAP with French language, then all the transaction starting with Y_DEV are showing in German language i.e the initial screen and when we execute(F8) any transaction starts with Y_DEV, the output is coming in French language.
Why in the initial screen, it is reflecting in German language even though the login is made with French language.
With regards.

Hi,
Y_DEV* are user-developed reports. Could be that the selection parameters are not translated to French or maybe they just have to be re-generated (it happens sometimes in SAP). Use GR52 to regenerate the group of these reports.
Regards,
Eli

Similar Messages

  • Start with Connect by: Showing the whole hierarchy even if child parameter

    11g
    Hi There,
    In our case the manager_id i= employee_id for the top level manager. So when I run the sql, it eliminates the top level manager and shows the output for the next level onwards.
    For the regular start with connect by option on the employee table the query used is
    select case when connect_by_isleaf = 1 then 0 when level = 1 then 1 else -1 end as status,
           level,
           First_name as title,
           NULL  as icon,
           EMPloyee_id as value,
           First_name as tooltip,
           NULL  as link
    from EMPLOYEES
    start with Manager_id is null
    connect by prior EMPLOYEE_ID = Manager_id
    order siblings by First_namenow this will show the hierarchy and level starting with managers. Now if we provide the "start with Manager_id = 171" then since 171 is not a manager no rows are returned. So for this we can use something like
    start with manager_id =171 or employee_id = 171However, the output would be only the employee record since 171 is the last child.
    The requirement we had was that, Irrespective of the value entered, whether ultimate parent or ultimate child the output should still show the top down hierarchy. starting with that persons ultimate manager.
    So for example if there are two employees, 170 and 171 and 170 is the manager of 171
    If in this query I use Start with manager = 170. It will show me the manager and the child records.
    However, if I use start with manager = 171 or employee_id = 171 then it will only show me only the child record. I want it to show me both the manager and employee records. i.e all the levels
    I hope that make sense!
    Thanks,
    Ryan
    Edited by: ryansun on Dec 12, 2012 1:13 AM
    Edited by: ryansun on Dec 13, 2012 1:59 AM

    Hi Alberto,
    I was using this query and the output is correct. Except for one thing, the nature of our data is such that the top most manager in this case has "Manager_Id" as null so we can use "start with Manager is null"
    But in our case the manager id for the top most manager is the same as his employee id.
    So If I modify the query, it then does not show the "top most managers record"
    WITH entire_tree AS
        SELECT *
          FROM employees
         START WITH manager_id = 171
       CONNECT BY PRIOR employee_id = manager_id
       UNION
        SELECT *
          FROM employees
         START WITH employee_id = 171
       CONNECT BY employee_id = PRIOR manager_id
    SELECT CASE WHEN CONNECT_BY_ISLEAF = 1 THEN 0 WHEN LEVEL = 1 THEN 1 ELSE -1 END AS status
          , LEVEL
          , first_name AS title
          , NULL AS icon
          , employee_id AS VALUE
          , first_name AS tooltip
          , NULL AS link
       FROM entire_tree
      START WITH manager_id = 100
    CONNECT BY PRIOR employee_id = manager_id
      ORDER SIBLINGS BY first_name;the only change I made is from
    Start with manager_id is null
    to
    start with manager_id = 100Basically, in this case the manager_id of the top most manager is the same as his employee id. So how can we have that condition incorporated instead of checking for null.
    Thanks,
    Ryan

  • Firefox opens with my tabs from my last session even though my options are set to show my homepage on start up.

    Whenever I open Firefox, it starts up with my tabs from my last session even though I have "Show my homepage" selected in my options for when Firefox starts.

    I first thought that i had the show my homepage option selected but when i checked it had changed. Here is how to change it back....
    1. Go to FIREFOX
    2. Select OPTIONS under the OPTIONS tab
    3. Under general make sure you have the 'When firefox stats: show my homepage'
    selected
    Then restat firefox

  • SAXException: PI names starting with 'xml' are reserved.

    Has anyone run across a problem trying to parse an xml instance (in this case it's an XSL style sheet) using Oracle's parsers? I'm getting the following sax error message:
    SAXException : oracle.xml.parser.v2.XMLParseException: PI names starting with 'xml' are reserved. detailed SAX exception message: PI names starting with 'xml' are reserved.
    The code generating this error is:
    XMLDocument xml = ParseDocument(xmlDoc, parser);
    private static XMLDocument ParseDocument(String documentStream,
    DOMParser parser)
    XMLDocument returnXML = null;
    try
    parser.parse(new InputSource(new ByteArrayInputStream(documentStream.getBytes())));
    returnXML = parser.getDocument();
    catch (SAXException saxE)
    System.err.println("SAXException : " + saxE + " detailed SAX exception message: " + saxE.getMessage()); // this is the statement generating the error message
    catch (IOException e)
    System.err.println("IOEx, Parse failed : " + e);
    catch (Exception e)
    System.err.println("Ex, Parse failed : " + e);
    return returnXML;
    Thanks in advance for any help you can provide.
    Sincerely,
    Tim

    lv_clob is invalid, there are two
    <?xml version="1.0" encoding="UTF-8"?> elements, remove one of them.
    SQL> DECLARE
      2  lv_clob CLOB:=EMPTY_CLOB();
      3  ignore boolean;
      4  BEGIN
      5  lv_clob := '<?xml version="1.0" encoding="UTF-8"?>
      6  <!ELEMENT firstname (#PCDATA)* >
      7
      8  <!-- Element function -->
      9   <!ELEMENT function (#PCDATA | noteref)* >
    10   <!ATTLIST function xml:lang (de | en | fr | la | nl) #IMPLIED >
    11
    12   <!-- Element initials -->
    13   <!ELEMENT initials (#PCDATA)* >
    14
    15   <!-- Element lastname -->
    16   <!ELEMENT lastname (#PCDATA)* >
    17
    18   <!-- Element structured-author -->
    19   <!ELEMENT structured-author ( (firstname, initials? , lastname , function*) ) >
    20   <!ATTLIST structured-author ID ID #IMPLIED anchor:name CDATA #IMPLIED > ';
    21  
    22   ignore := dbms_xdb.createResource(abspath => '/structured-author.dtd',data => lv_clob);
    23
    24  commit;
    25  END;
    26  /
    PL/SQL procedure successfully completed.
    SQL> INSERT INTO xml_tst VALUES ('<?xml version="1.0" encoding="utf-8"?>
      2   <!--ArborText, Inc., 1988-2002, v.4002-->
      3   <!DOCTYPE structured-author PUBLIC "-//WKB//DTD SL author//EN" "structured-author.dtd" [
      4   ]>
      5   <structured-author ID="SL3654393">
      6   <?Pub Caret1?>
      7   <firstname>firstname</firstname>
      8   <initials>initial</initials>
      9  <lastname>lastname</lastname>
    10   <function xml:lang="nl">function description in dutch</function>
    11   <function xml:lang="fr">function description in french</function>
    12   </structured-author>');
    1 row created.
    SQL> spool off;

  • Restrict the transaction authoriztions with Business area

    Hi All
    I want to restrict the access of transaction PCP0 with Business area.
    Please suggest me for the same
    Regards
    Aditi Singh

    The standard SU24 settings for PCP0 allow restricting the authorizations based on funds management areas using object
    F_FICB_FKR Cash Budget Management/Funds Management FM Area
    But there is not authorization check for business area in this transaction. You can alter the ABAP code for an authority check for business area using some user exit and a custom authorization object.

  • I am trying to upload files to an Apple hosted feed on KSU iTunes U (unpublished site). The file size shows as 2 GB even though the files are 50MB. The upload stalls and fails. Address:

    I am trying to upload files to an Apple hosted feed on KSU iTunes U (unpublished site). The file size in the Feed Editor shows as 2 GB even though the files are 50MB. I am using Safari on Intel Mac 10.5.8. at Kennesaw State University. Any help would be appreciated.

    This is the second day. I tried using a new Apple feed to test. Still not working. I uploaded a 50MB mp3 file. The first time the upload failed. The second time the file showed that it was uploading a 2 GB file. It has been about 20 minutes now and shows "3.5GB of 2.0GB 178% Completed". Now it has started uploading all over again - it is now showing 399.4MB or 2.0 GB - 19% Completed. I dont know if this will keep looping - but I am going to Cancel.
    Please let me know what other information do you need from me. Definitely need some help with this!

  • My ipad is no longer showing all my videos, even though i have the option set to show all, even those that are in my cloud. I can't do anything to get all my videos to re-appear. any help?

    My ipad is no longer showing all my vidoes, even though i have the option set to show all, even those that are in my cloud. Any suggestions??

    Close the videos app and launch it again.
    To close an app, drag the app up from the multitasking display. Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to the app that you want to close and then swipe "up" on the app preview thumbnail to close it.
    if they still don't show up after you launch the app again, try resetting the iPad.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • Songs are not showing up in playlists even though they are there

    songs are not showing up in playlists even though they are there

    If you've downloaded them on the iPad then they should be in the Videos app - iTunes on the iPad is just the iTunes store (the Purchased tab shows what content that you can re-download from the store and rentals can't be re-downloaded, and non-rental films can only be re-downloaded in some countries).

  • Not to show the detail records even though the mater records are existing.

    Dear Oracle
    I would like not to show the detail records even though the mater records are existing. Is there any block preperty I can set?
    Thanks

    I don't know the reason why you would want to do that but if you do not want to any record in the master block in
    a master-details format, then you could achieve this by setting the WHERE clause property in the block.
    e.g., master block DEPT (base table DEPT) and detail block EMP (base table EMP)
    table DEPT is as follow
    dept_id (pk)
    dept_name
    table EMP is as follow
    emp_id
    emp_name
    dept_id (fk)
    then you can set the WHERE clause in the DEPT block as follows
    exists (select 1 from emp a where a.dept_id = dept.dept_id)
    hope this help

  • I tried to rename a file, it gave me an error message (can't remember the number - 43??) and then the file disappeared from the original folder. When I do a search, the file comes up under the new name, but it does not show a path, and even though preview

    I tried to rename a file, it gave me an error message (can't remember the number - 43??) and then the file disappeared from the original folder. When I do a search, the file comes up under the new name, but it does not show a path, and even though preview shows the contents, I can't open the document (Powerpoint) and I can't move the document. I tried "Copy" and paste but it doesn't work. I tried "Share" with Airdrop and iChat, but the file is inaccessible. When i try to rename the file, it says the filename is too long.
    When I try to open it, it says the alias is not good, and asks if I want to fix the alias. I'm afraid to do that and lose all access to this document.
    Right now, it feels like a ghost document - it is on the computer intact, but it is in an undisclosed location and inaccessible.
    Please help!!

    I was able to resolve this by repairing permissions, even though no permissions error was listed specifically for that file.
    I could also have recovered it through Time Machine, but I'm interested in knowing how not to have this happen again!
    I was afraid of rebooting and possibly losing track even of the ghost.
    I did not try EasyFind - I'll keep that in mind next time.
    Thanks for all the comments.

  • Suddenly, all my saved Excel Worksheets are opening as Numbers documents, even though I've NEVER used the Numbers application, and even though the documents continue to be identified as Excel documents--losing years of work.  What happened?

    How can I uninstall Numbers?  I've never used the Numbers application before, and suddenly all my saved Excel Worksheets are opening as Numbers documents, even though they continue to be identified as Excel documents?  I'm losing years of work.

    Right click on a Excel Worksheet file, choose 'Get Info'. In the small window that opens change the 'Open with:' from Numbers to Excel. Click on 'Change All…'

  • I've just rented a movie on iTunes, and I tried to start it before the download finished, and now even though it has finished when I try to play it nothing happens. Is there a way to reload it without paying again??

    I've just rented a movie on iTunes, and I tried to start it before the download finished, and now even though it has finished when I try to play it nothing happens. Is there a way to reload it without paying again??

    I'm not convinced that starting it before it was downloaded has anything to do with it, you should be able to do that. I'd try restarting the computer and if that doesn't help, select the content which is causing a problem and use the 'Report a problem' button in Your Purchase History.

  • Clq status shows quorum server offline even though the clq service is runni

    Hi,
    In a 2 Node + 1 QS sun cluster 3.2 cluster, clq status is showing quorum sever offline even though the clq process is running on the quorum server. to make the quorum server online, i have to either remove and add the quorum server from cluster, or incase if there is a failure on any one of the node's both th nodes will reboot and once both joined to the cluster, I can see clq status showing quorum server online!!!
    Why is the quorum server going offline automatically?
    Any help would be highly appreciated
    Many thanks in advance
    Ushas Symon

    Hi,
    I asssume you mean the scqsd process is running on the QS, right?
    A QS is shown as offline, it the monitor could not reach it when it last tried. This is usually due to a networking problem.
    If you issue a clq status, the monitor checks again and if it can reach the QS will change its status back to online.
    If this does not happen, check your logs, what kind of error message showed up.
    Does clqs show on the QS show the correct information?
    It is obvious, that if a node dies and the QS has been offline prior to the node death, that the other node will die as well due to lack of quorum, i.e. it has less votes than needed. You seem to have a basic networking problem or something is really wrong with your QS.
    Regards
    Hartmut

  • TS3899 My phone and iPad are not updating my emails even though they say they are

    My phone and iPad are not updating my emails even though it say it is updated

    How did you put the photos on yhour iPhone?  Did you take them with the iPhone? If so and you have PS enabled on the iPhone they will be added to the PS on your iPad (as long as it's enabled also)
    iPhone settings.
    OT

  • When I send email to a group, it shows all members addresses even though that option is turned off in the preferences.

    When I send email to a group, it shows all members addresses even though that option is turned off in the preferences. This just started happening on all my devices. I have the latest update instaled.

    That doesn't work on Mavericks. Follow Tuttle's advice.

Maybe you are looking for

  • PC-Suite 6.83.14.1 - PC Connectivity Bluetooth Mod...

    Firstly System Details ====================== Phone Model: Nokia 6680, Operator SFR Operating system: Microsoft Windows XP Service Pack 2 Nokia PC Suite: Version 6.83.14.1 Connectivity Cable Drivers: Version 6.83.9.0 PC Connectivity Solution: Version

  • Retriev values from database and display in a ComboBox

    hi all, i think the subject explains it all. how? currently iam using vectors which is giving me lots of problems and errors, whenever it adds to the combobox it adds the square braces as well example if the value in database is asrar then it will di

  • HOw to change the color of an item

    Say i want to change the background color of an item when it is selected. How to do it?

  • Printing datagrid to a dot matrix printer

    I am creating a flex app that'll print the contents of a datagrid to a dotmatrix printer connected to the lpt1 port. any ideas on if that possible/how? thanks a ton for the help!

  • Firefox lets table overflow instead of breaking words at soft hyphens

    On http://www.idea.int/vt/country_view.cfm?id=2 , the table overflows into the right column because of long table headings. I inserted soft hyphens into them to help the browsers break the headings when needed. This seems to work in IE 8 and Google C