ESS: InvalidUrlRuntimeException depend on the user language !?!

Hi,
I've a strange behaviour apparently related to the user language:
- all the ESS JCO connection are set-up with SSO;
- with an EN user everithing is OK;
- with an EN IT language I get an InvalidUrlRuntimeException when I use
"My Trips and Expenses" link.
This link point to an EP ROLE://.... an it seems correct.
If I take the complete URL reported in the error I can show the correct WebDynpro without any errors.
Another strange think is that some services in the sub-area are not dispalied, only with a differen language than EN.
Thanks a lot for any help.
Regards,
Andrea
Edited by: Andrea Mello on Apr 7, 2010 4:43 AM

The translated text contain '&' so the URL parameter was wrong

Similar Messages

  • AE Crash trying to get the user 'language' registry key

    This is a strange crash I get just opening all sorts of different AE projects.
    <140735243008352> <ASL.ResourceUtils.GetLanguageIDFromRegistry> <0> Unable to obtain the User 'Language' registry key at: Software\Adobe\After Effects\10.5.1\ Defaulting to 'en_US'.
    It happens on a wide variety of projects just on opening them. Almost all are 720p. but some have footage, others are just PSD or other image files (PNG, JPG). Many of them have trapcode particular 2.1/form 2, but some don't. 
    I have to find another project, open it, and then hope it doesn't cause a crash. If not, then I can go back and open the project that crashed upon opening and it works fine. It may open a few times without problems, and then upon opening it another time, it will crash with the same warning.
    I have a MacPro 2.66 GHz quad-core with 16GB RAM running 10.7.1 with an ATI Radeon HD 4870 card with 512MB of memory.
    Seems rather bizarre to crash on trying to get a language registry setting, so any ideas for correcting this would be most helpful.  Thanks.
    Pete

    I'm having a similar issue with After Effects.  I have Adobe After Effects CS5.5 (v.10.5.1) and it keeps crashing when switching between AE and other programs.  Here's a video of what's happening with mine.
    I don't have any special plug-ins loaded except for what came with the program.  OpenGL rendering is turned on and have tried turning it off to see if it make the problem go away and it doesn't make a difference. 
    Greatly appreciate any assistance I can get on this.
    Computer System
    Dell Precision M6600 Laptop
    Intel(R) Core(TM) i7-2920XM CPU @ 2.50GHz
    16GB RAM
    2GB NVIDIA Quadro 4000M
    Driver Version 285.62
    Optimus is turned off so it's just the Quadro 4000M Card - no Intel HD Graphics in the background
    413GB Free (687GB Total) Primary HD
    200GB Free (250GB Total) D Drive
    Windows 7 64-bit SP1 Professional
    Adobe Master Collection CS5.5 (Website Download)
    After Effects v.10.5.1 Update (Website Download version)

  • Work with a table in different schema depending on the user group

    I have 2 groups of users user_group1, user_group2 and also two different schemas schema_group1,schema_group2 containing the same table names with a different content.
    Now, i have to write a stored procedure which takes user name as input and depending on which group the user belongs to, i want to work with table in that user_group schema.  i.e.(if user_group1 then "schema_group1"."table". if user_group2 then "schema_group2"."table" )
    i tried to set schema using dynamic sql but it seems that the schema is changing only after the end of the stored procedure.

    yes, i do maintain a table to map user groups with schema name.
    i have two tables:
    table-1: USERS(user_name, group_name)
    table-2: GET_SCHEMA(group_name, schema_name)
    // Just to make it simple(for testing purpose), i am directly assigning the schema_name inside the stored procedure.
    CREATE PROCEDURE "TEJA"."RETURN_SCHEMA_OF_USER" (IN IN_USER_NAME VARCHAR(30))
    LANGUAGE SQLSCRIPT
    AS
    BEGIN
         DECLARE VAR_USER_GROUP VARCHAR(20);
         --DECLARE VAR_SCHEMA_NAME VARCHAR(20);
         DECLARE SCHEMA_NAME VARCHAR(20);
         DECLARE SQL_STATEMENT VARCHAR(200);
         DECLARE VAR_TEMP VARCHAR(200);
         SELECT USER_GROUP INTO VAR_USER_GROUP FROM "TEJA"."USERS" WHERE USER_NAME =      IN_USER_NAME;
         --SELECT VAR_USER_GROUP AS USER_GRP FROM DUMMY;
         -- SELECT GROUP_NAME INTO VAR_SCHEMA_NAME FROM GET_SCHEMA WHERE GROUP_NAME =      VAR_USER_GROUP;
         -- Instead of above statement, i am directly assigning the schema_name below
         IF VAR_USER_GROUP = 'UNION' THEN
                SCHEMA_NAME := 'USER_UNION';
         ELSE
                SCHEMA_NAME := 'USER_CORPORATE';
         END IF;
         SQL_STATEMENT := 'SELECT * FROM "'||:SCHEMA_NAME||'"."USER_DETAILS"';
         --I have USER_DETAILS table in both the schemas.
         --SQL_STATEMENT := 'SET SCHEMA ' || :SCHEMA_NAME || ' ';
         --sets the schema after the stored procedure is executed.
         EXECUTE IMMEDIATE SQL_STATEMENT;
    END;
    This dynamic sql statement does the job for me, but i don't want to use dynamic sql in all my stored procedures. I need this kind of functionality in almost all of my stored procedures. So, i am looking for a better approach.  I really appreciate your valuable inputs.
    Thank you

  • How can i determain the user language

    i have a user name how can i identfy is he indian user or german user.

    Hi
    But u need to know the logon language or the country of the user?
    In logon data the logon language is set for every user, u can find it in table USR01, but if need to know where the user is from: it's not easy, u can check the address data.
    Max

  • Can Drill-down paths being made dependent on the user roles and groups

    Hello Experts
    Is it possible to restrict user after certain level of drill down. Here I mean after drilling upto country level from Total World , can we restrict the user to further drill down upto state level.
    OR we can say that we need to restrict certain user to look into transaction level details
    thansk and appreciate any hlep on this.

    i Guess u can...by setting object level security? suppose if you dnt want to drill to state... you can restrict the state column inpresentation laye... so when the user uses the the report he cannot see state and also in drill down....hope this is helpful/answered...

  • How to mask a particular field depending on the user for a protected pdf?

    Hi,
    I have a requirement of showing a particular fiels data to only one user and to hide that critical data to others. For example, suppose I have two users viz, Primary user and Secondary user. I have a field named UID in my protected pdf form which has some critical data. I want only my Primary user enter and view the information entered in the UID field. When the Secondary user opens the document using his credentials, he should not be able to view the data in the UID field. It should be displayed in astrix as in a password field. Can anyone help me how to acheive this for a protected document?
    Thanks and Regards,
    Maria Johni

    It is possible. You should be having a field in your XSD schema for the username. Bind the username to a hidden field in your form.
    In the designer, in form initialize event,
    write the code: if hiddenfield.rawValue == "person A"
                                 subform1.presence = "hidden";
                           if hiddenfield.rawValue == "person B"
                                 subform2.presence = "hidden";
                                 subform1.presence = "visible"   }
    In your process, when your moving from one step to other step, update the uname accordingly and the form will respond according to the username.
    Regards,
    Chaitany

  • Layout shows different data depending on user-language (German or English)

    Hello best of the best,
    we are using layouts to enter data into BCS. In one of our layouts different numbers are shown depending on the user-language (German or English).
    This is despite the same layout is used.
    Have you got any idea what could cause this problem?
    Is there a setting somewhere that I didn´t know up to now (to distinguish in different languages)?
    Better to ask SAP using an OSS-message?
    Many thanks in advance,
    Thomas
    If you need more information about that case, pls tell me.

    The numbers are volumes (KWh, to, l).
    There are several positions with different "Breatdown Categories". In the english version of the layout only the KWh-volumes are shown. "to" and "l" (Diesel) are missing.
    To describe the problem more clearly, in the german version the layout seems to show correct data:
    Position                KWh         to         l
    Diesel (l)                   -            -       5.000
    Coal (to)                    -        3.000      -
    Electricity (KWh)   200.000      -         -
    The "-" shows fields that are grey --> no data can be inserted
    The english version looks like this:
    Position                KWh         to         l
    Diesel (l)                   -             -          -
    Coal (to)                    -            -           -
    Electricity (KWh)   200.000  200.000  200.000
    Here the white fields at Diesel (l) and coal (t) are empty, but the grey fields in the col´s "to" and "l" show the value of "KWh" in electricity as well.
    Does this answer your question?
    br,
    Thomas

  • When creating users in apex,how can i limit pages depending  the user?

    Hi,
    1.When creating users in apex,how can i limit every user in the pages he can run or see depending on the user profile ?
    2.Are the user that is created in apex also a user in DB ?
    Thanks in advance
    Yoel

    Yoel -
    We're talking about end users of applications you develop in Application Express, not users that login to the development environment.
    You do not have to use Application Express to create user accounts for your application. Your apps can authenticate using SSO, LDAP, or other methods. If you use Application Express user accounts, that is only for convenience which may not be convenient in the long run if you have to manage those accounts, but that's up to you.
    These Application Express accounts have no relation to database accounts. This situation is slightly different when using the XE database.
    Your application's authorization logic determines which users can access the application, pages, or other components, that is, it is not the user account properties, per se, that control application access but rather the application's determination about the properties of the authenticated account in use that allow it to control access. For example, you don't create an account and give it attributes that say this user can access application ABC and pages 1,2, and 7. Instead, you might give that account properties like SALES MANAGER ROLE and the the application would allow only users with SALES MANAGER ROLE (whatever that means) to access certain pages.
    Scott

  • How to make sub programs dependent on the parent program for ESS job in Fusion Applications.

    Hi Experts,
    We have a requirment to define the ESS jobs dependent on the parent program.
    Example:
    ESS_JOB_PARENT   -- Main ESS jobs which will trigger below mentioned jobs using "ess_runtime.submit_subrequest" through PL/SQL Package.
    ESS_JOB1                 -- Parent program has to wait will ESS_JOB1 is completed. If ESS_JOB1 is errored then parent program should also be errored.
    ESS_JOB2                 -- If ESS_JOB1 is successfull then Parent program should trigger ESS_JOB2 and it has to wait till ESS_JOB2 is completed. If ESS_JOB2 is error parent program should be errored.
    ESS_JOB3                 -- If ESS_JOB2 is completed successfully then parent program should trigger ESS_JOB3 and it has to wait till ESS_JOB3 is completed. If ESS_JOB3 is error then parent program should be errored.
    Any reference (document or sample code) are highly appericiated.
    Thanks,
    Praveen

    Is there a reason why "Job Set Steps" cannot be used, that is is there a reason you need to do this programmatically ?
    Jani Rautiainen
    Fusion Applications Developer Relations
    https://blogs.oracle.com/fadevrel/

  • Drilldown depending on the oracle application user's securing attributes

    Hi all,
    I created a html table and I have a specific column that is allowed to drilldown to details but I would like also make this drilldown be depended on the user's securing attributes. If the person has permission the he will see the value and can enter in details, but if he doesnt have the permission he just see the value.
    Any ideas?!?!
    Thanks in advanced,
    Adolfho

    Hi Adolfho,
    you could try binding the Read Only attribute of this item/region through SPEL. For example, if you have a profile and need to give permission only to users that have the "Y" value on this profile, you can add this to the select clause of your VO:
    SELECT fnd_profile.value("profile_name") = 'Y' AS PROF_VALUE
    and then you can put the following expression on the Read only attribute of the region:
    ${!ProfValue}
    You can also do this on the controller by getting a reference to the respective OA Bean and calling setReadOnly(boolean) or setAttribute(READ_ONLY_ATTR, Object)...
    Hope it helps
    Thiago

  • Can LabView Japanese be installed on Windows XP MUI with Japanese as the default language?

    I recently set up a computer for a client in Japan using Windows XP PRO MUI version.  When they tried to install their Labview Japanese, it "turned into garbled characters."
    From the Microsoft link it appears there are some differences between a fully localized Japanese Windows and the MUI version"
    on localized versions:
    The user interface resources are fully localized.
    The
    Windows Setup information, such as system locale, user locale, keyboard
    layout, etc. is customized for the specific language/country. This is a
    policy setting with the Multilingual User Interface Pack.
    Additional country specific device drivers are added in the East Asian versions only.
    There
    is support for upgrades from localized versions of Windows 9X or
    Windows 2000 to localized Windows XP. MUI only supports upgrades from
    English versions.
    Because the resources used in a localized
    version are used to create MUI, there is no difference between the
    actual translations. This results in a nearly full localization, apart
    from small elements that are still dependent on:
    INF files.
    UI strings stored in the registry.
    etc.
    My question: Should it be possible to install Japanese Labview on top of Windows MUI with Japanese set as the user language and default language?  My assumption was Yes, but now they appear to be unable to get this to work.  Are there specific workarounds, policy changes, or drivers that can be done to get this to work?
    Thank you in advance for any help or insight you can provide, or if you can point me to a better place to post this (I don't know Japanese myself).

    Hi,
    Here you have some interesting tutos about foreign languages in LV :
    Localizing Your LabVIEW Application to Different Languages
    Localize LabVIEW Applications in Multiple Languages
    Let me know what happens.
    Regards,
    Message Edité par Steve Mohamed le 02-27-2009 09:02 AM
    Steve M.
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    >> Vidéo-t'chats de l'été : présentations techniques et ingénieurs pour répondre à vos questions

  • Query in Portal User-Language-Independent

    Hi all
    Query and Portal: NW04S
    We have some users with different language as Query language.
    So the result is, when a query is developed in german and a user has default language english the query components are shown in technical values.
    We don't want to translate the query in english
    We don't want to change the users language to german
    So my idea was to change the query iview with the parameter "sap-language=DE", but this doesn't have an affect either in iview-Properties "Query-String BEx Web Application" nor in "Parameter forwarded to BEx Web Application"
    How can I solve this problem, so the bex-query is always shown in german.
    Any ideas?
    Thank you
    Roger

    Bex? or Web?
    Bex - no chance I thinkl - at leats not one that I know off
    I have the same problem with Chinese language in a hard coded English BI portal in a multi language Consumer Portal (!

  • How do I create a specific packages for users where in only the admin has the access of which software the user can download?

    Is there any possibilities that the admin of the team can limit the packages of the user? Only the admin can add and remove software to be downloaded for specific users.

    You can include single app plans in team packages, but otherwise no. This will exclusively depend on the users' local permissions on the computer - if the can install one app, they can install all of them, be it only as a trial.
    Mylenium

  • How to change the image dynamically depend upon the input parameter

    Hi All
    I have one report running depend upon the Organization specific, I have 15 operating unit and 15 different logo for each operating unit.
    How to change the Logo dynamically depend upon the input passed by the user.
    If I have three or four logo i can add in my layout using if else statement and its works fine but i have more that 10 logos so its no possible to keep these in My RTF Template.
    Is it possible to change the logo according to the input without keeping this in Template.
    I have seen this link but its not working fine
    http://erpschools.com/articles/display-and-change-images-dynamically-in-xml-publisher
    Regards
    Srikkanth.M

    Hi,
    I have not completed fully,so sorry i cant able to share the files, could you please give me some tips and steps to do.
    Without having the logo in RTF if it possible to bring the logo depends on the user input (Ie Operating unit).
    Regards
    Srikkanth

  • Mapping User Language vom LDAP to Portal Users

    Hi,
    Anyone knows how to map the user language available in an attribut from LDAP to the portal user language?
    (Working on NW04)
    Regards,
    Martin

    HI,
    For 2004s SP10,
    althought the manual tells you to use the preferredlanguage attribute in the datasource. Use the attribute 'locale' to map to your LDAP specific language attribute.
    example <attribute name="locale">
    <physicalAttribute name="preferredLanguage"/>
    </attribute>
    Use the 2-characters ISO language code set. For example en for English, nl for Dutch and de for German.
    Works fine for us.
    good luck,
    Joachim van Essen

Maybe you are looking for

  • How to send a email with a link

    Hi All,             I have a scenario where I have to send an email to a person informing him about the workitem             Now this user is not a SAP user so i have to send a link to him of a web page where he will execute             the work item

  • My page is not loading correctly after server work? Help?

    A couple of days ago I was having issues uploading files to my webserver and come to find out, they were working on something on their end.  So okay.  But now, certain pages on my website are not loading correctly.  These are not necessarily pages I

  • SapScript output spool to a POST script file

    We generate  billing invoice output using custom program/Sap script. Subsequently we release the invoice print out from the print spool to create a post script file from the print spool by configuring command set "G" in transaction u201CSPADu201D. Th

  • Keyboard shortcut to NSButton...

    Hi everybody, does anybody know a reason for a keyDown event to work on two different machines in my office but not on the machines of our client? Basically, what I do is to overwrite the keyDown event of my NSWindowController class to check if the k

  • Database link between 8i and 7.3.2.3 servers

    Hi all, 1 server HP9000 : ORACLE 8i 8.1.5.0 O.S : hp unix 2 server HP B132+ : ORACLE WG 7.3.2.3 O.S : hp unix when i am trying to connect to the remote data base from server 1 i am getting this error i.e ORA-12505:listener could not resolve SID given