Timezone from portal user settings not used in DateNavigator

Hi experts
I'm facing a problem with DateNavigator component.
There is a WDJ application that used with different timezones in NW Portal.
In the app there is a DateNavigator which bound to the date context attribute.
When user select some date in DateNavigator, system converts selected date to the context using system default timezone, rather than timezone in portal user settings. This leads to the fact that the time in context is wrong - the system considers that user works in "Default" timezone but really user works in its own timezone, which different with default.
If I force TimeZone.setDefault(WDClientUser.getCurrentUser().getTimeZone()) everything works fine, but this is an empty and wrong way.
I'm using NW 7.2 CE.
Thanks in advice, how to solve this issue!

mwohlf wrote:
After Installing Patch 121657-19 the Calendar Express view seems to mix up
the default preferences with the user selected preferences.I hit the same issue with a 6.2->6.3 upgraded system and a fresh 6.3 installation. A quick search didn't reveal any pre-existing bugs nor could I find any obvious problems delving into the xsl code -- please log a Sun support case to have this issue looked into further. Please note that in 6.3 calendar express is a deprecated interface so you should be making every effort to move to UWC/CE anyway.
Regards,
Shane.

Similar Messages

  • If user locked (backend) then from portal i m not able to send data

    If user locked (backend) then from portal i m not able to send data
    both user are same in front end and backend.
    But once user is unlocked i am able to send data from portal to backend...
    Regards
    Ruturaj

    Hi
    Since you are in CUA landscape(as u said portal and r3 user are same) unless and utill you unlock it data will not be process.
    [Help|What's the right user to access;
    BR
    Satish Kumar

  • Mac users DO NOT use this Desktop software! it will cause hours of heartache

    I have exactly the same issue with a Bold and have still to find any option to resolve the issue other than to entirely wipe the device and go through the tiresome process of reinstalling and updating everything to the way i had it.
    I am utterly furious with myself for trusting RIM to release a desktop option for Mac users. I choose a Blackberry for its push email and i love the device very much, even despite Initially going through 6 Bolds until i received a new one from Vodafone UK that was not reconditioned and finally worked properly. Since then everything has been fine until this amateur attempt at writing software for Mac users.
    I don't have a lot of time to myself and i can think of nothing worse than spending the little time i have searching through endless ill concieved solutions that simply do not work. Just by plugging in my Bold and hitting sync has destroyed my contacts, ringtones and other settings. Why bother to release software until it is entirely tested? Why would you want to put your customers through this demorolising procedure which does nothing more than further emphasise your true lack of interest in supporting anything Mac. I dont want an iphone, i believe that your phones aresuperior for business users like myself.
    Please, please, if you are a Mac user DO NOT use this software unless you really want to go through hell just trying to get it back to the customised form you spent loving hours to get right. It destroys your address book and other elements and not one solution posted anywhere on the Blackberry web site works. YOU HAVE BEEN WARNED.
    The reason i am a Mac users is because i need a reliable hardware/software solution that works out of the box. It is entirely obvious that RIM havent quite realised the long term benefits of this really very simple idea!

    thecount wrote:
    well, I attempted to use it, but I initially just tried syncing just the tasks and it would not do that!  so I gave up and uninstalled.  
    I now have been trying to sync with pockmac but that also has issues.
    Only reason I am not going to get an iphone, is that I really need to sync with entourage and I use notes on it extensively. and I don't think you can sync an iphone with entourage notes?
    can't win can we?
    this was one reason i've been sticking with the blackberry as well. it appears though that now you can... http://support.apple.com/kb/HT1670
    i really have liked my blackberry, and have been waiting for this software for some time now, but if this is rims idea of a client i have no choice but to go to the iphone...

  • Share Point 2013 - User Settings not initialised

    Hi there, 
    We are using the SharePoint 2013 server on top of Windows 2012.
    We've recently created  user profile application service and activated the Site Feed feature. 
    After that one of our users experiences an annoying thing, she is being redirected from the Home Page to another page that says "Edit user settings" and "User settings not initialized ". No other user is experiencing these issues. Please
    help.

    Hi,
    According to your post, my understanding is that a spectial user got "Edit User Settings" when visiting a site collection.
    I recommend to
    remove the user from that site collection completly and then re-add him. You can select Site Settings, under "Users and Permissions", click People and groups. Select the group and user to remove it.
    In addition, you need to check the user permission. You can select Site Settings, under "Site permissions", click People and groups. Click Check Permissions, enter the user.
    Here is a similar thread for you to take a look at:
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/62179303-d2d4-4f04-818b-9645a18f3425/user-gets-edit-user-settings-when-visiting-a-site-collection-and-redirected-to?forum=sharepointadminprevious
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • SRM user settings not populated

    Hello,
    We are using SAP SRM 7.02 with NWBC and  we are testing this in sandbox.user id has been assigned to sap_all and new and SAPSRM/employee_ehp1 role.
    NWBC Launched --> Click on SRM user settings---> not populating the details/page navigation to details page is not opening.Pls see the screen shots.
    When click on the SRM user settings same page is opening.
    Please provide you inputs to resolve this.
    Ranjit.

    You observation is correct and it is the standard design of such portal roles as SRM Administrator, SRM Strategic Purchaser, or SRM Operational Purchaser to not have "personalization", but only Employee Self Service role.

  • User Settings Not Saved

    Hello,
    I am using the VB .Net Autoupdater for my app, its working perfect however.
    Lets say I am using version 1.0.0.10, Initially when the app ran after I installed it I had to fill in a bunch of user settings via a form a created.
    I can close the app, re-open it and the user settings are saved, all is good. Now
    I need to make a change and now have version 1.0.0.11 I use the autoupdater and it pulls down the .exe file overwrites the existing .exe.
    Now when I launch the app again, the correct version is used however I have to re-enter my user settings again.
    How can I preserve my user settings without using a Click Once install?
    Thanks
    MW

    Sure,
    I'm always open to learn new ways of doing something.
    Thanks
    MW
    Ok, have a look at the code that I posted on a page of my website here.
    It's very specific to what you want saved and how it's to work, so that's what you'll see: It's very much customized to what he wanted.
    One important part is what you'll see early on:
    Private Shared _instance As Settings
    and this:
    Private Sub New()
    End Sub
    Those are private, so only that class can access it. The backing field (variable) is shared so that it's relevant to the class as a whole, not to any instance of it; that is -- there can only ever be one instance of it.
    The constructor is parameterless and PRIVATE, so that the consumer of that class can't create an instance; that's only done through the shared method meant to do it:
    Public Shared Sub GetInstance(ByRef instance As Settings)
    See what I mean?
    Still lost in code, just at a little higher level.

  • How can I print a text message conversation from my iPhone? Not using screenshots.

    How can I print a text message conversation from my iPhone? Not using screenshots. It's around 500 messages so screenshots is not a option.

    Yes, you can delete from iphone:
    http://manuals.info.apple.com/enUS/iPhone_iOS4_UserGuide.pdf
    It is covered in the manual.
    Page 172:
    "Delete a podcast: In the Podcasts list in iPod, swipe left or right over the podcast, then
    tap Delete. "

  • Most users can not use TEST PANELS or run EXE built vi's?

    On any fresh install of NI-DAQ, the System Administrator and the first user logged in afterwards can use the Test Panels... button in the "Measurement & Automation Explorer" as well as run the Standalone programs made by Application Builder (LabView 7.1)...all other users can not use the Test Panels... or run the Built-vi's that shows up with plenty of error code 21, "an external subroutine required for execution could not be found", and it seems to be vi's that are called by the vi's we use, like one step away. I have set the permissions to all the related files to FULL as well as hacked the registry's HKeyLocalMachine->Software->NI... as well as the CurrentControlSet->...->DAQCARD... all to full control.
    Since the Administrator and the frist user can run the programs it is definitely not a case of missing software, but just permission rights. Please help to get the other users productive as well!

    Hi, they have not got the application builder license here...

  • Null entry (from portal webdynpro)  is not getting updated in R/3?

    Hi Gurus,
    I have a webdynpro application which has user input field where in which user can pass the data and it will get updated once user hit the update button in the view.
    But in some case if user don't enter any value in the above said input box it has to update the r/3 with the blank entry.
    But in my case r/3 system refers the value (which is passed from portal last time) instead of blank entry?
    How to overcome this problem.
    More detailed way:
    If user don't enter any value in the input box then R/3 record has to be updated with the blank entry
    else
    whatever the data user enters in the particular input it has to be updated the r/3 with that value.
    Right now If i pass some value in the input box it properly getting updated in r/3 but next time if I pass the blank entry in the input box it has to update the r/3 with this blank entry (as per the requirement)
    But its not happening like that it referring previously entered data.
    Please help me
    Thanks in Advance
    Dharani

    Hi,
    Suppose you are using a function Module X  which takes input "empno"  ..., and exports name, city , rcode
    Go to se37 ,  check the code ....it can be like this ...
    if empno = .... then
    update .......
    // updated
    else
    // not updated ........
    end if .
    if updated ... u will observer 0 else some other number say 4.
    Now when u  do modelling in your webdynpro application , u can find export parameters know..
    now u can check ...if rcoe = 0 ..updated else ...not updated ...
    by that u can know...
    Thanks,
    Srini

  • User Settings not working.  Please help!

    <TD noWraplign=right>I am trying to build some interactive portlets using User prefs and have had no luck. Any help would be greatly appreciated.
    Here is my code for the first portlet (view_course_defaultView is set as a user preference in the web service):
    privatevoidPage_Load(objectsender, System.EventArgs e)
    IPortletContext context = PortletContextFactory.CreatePortletContext(Request, Response);
    IPortletRequest pRequest = context.GetRequest();
    IPortletResponse pResponse = context.GetResponse();
    IPortletUser user = context.GetUser();
    try
    if(user.HasSettingsRight(SettingType.User))
    pResponse.SetSettingValue(SettingType.User, "view_course_defaultView", "All");
    else
    Response.Write("You can't do that");
    catch(Exception ex)
    Response.Write(ex.Message + ex.StackTrace);
    Here is my code for the second portlet (again view_course_defaultView is set as a User preference in the Web Service):
    privatevoidPage_Load(objectsender, System.EventArgs e)
    try
    IPortletContext pContext = PortletContextFactory.CreatePortletContext(Request, Response);
    IPortletResponse pResponse = pContext.GetResponse();
    IPortletRequest pRequest = pContext.GetRequest();
    IPortletUser pUser = pContext.GetUser();
    if(pUser.HasSettingsRight(SettingType.User))
    Response.Write(pRequest.GetSettingValue(SettingType.User, "view_course_defaultView"));
    Response.Write(pRequest.GetSettingCollection(SettingType.User).Count);
    catch(Exception ex)
    Response.Write(ex.Message + ex.StackTrace);
    The only thing written to the screen in the second portlet is 0 for the User settings count. Does anyone see what I am doing wrong?
    Thanks,
    Jackie Kajdzik

    I am having the same issue.  The Admin, Portal and CommunityPortal prefs set fine.  However, the user pref will not set.  Could this be because this pref is not to be set in this manner?

  • Office 2010 User Settings NOT Migrated After Uninstall-Upgrade to 2013

    Greetings,
    We are in the final stages of preparing for an enterprise rollout of Office 2013, upgrading our user base from Office 2010. When we deployed Office 2010, we used the Office scrubber tool to remove Office 2003 and install Office 2010. Employing this same
    technique, which is
    fully documented by Microsoft as the recommended approach, the user settings from Office 2010 do not migrate to Office 2013. For example, the default save paths. If you set this to say, "C:\Temp", in Office 2010, that path will be changed
    after upgrading to 2013. There are other settings impacted as well and hoping that someone has seen this or knows what might be going on. The method we've used during pilot is an in-place upgrade from 2010 to 2013 and that will retain settings but we also
    see cases where the upgrade isn't clean and components of Office 2010 can be left behind. It is critical to a successful deployment that the uninstall-upgrade approach works flawlessly.
    Thanks,
    Doug
    Douglas Cote

    Hi Jori,
    There are three types of permissions in the Manage User Permissions in User Profile Service Application(UPS): Create Personal Site, Follow People and Edit Profile and Use Tags and Notes.
    If all the three permissions have been revoked from the user, then the user will not existed in the Manage User Permissions in UPS.
    So you don’t need to anything else to remove the users from Mange User Permission in UPS after revoking all the permissions from the user.
    As for the error when accessing Mange User Permissions in UPS, I recommend to restart the User Profile Service and add the user account to the Administrators of the User Profile Service Application.
    In Central Administration, highlight the User Profile Service Application and then click Administrators in the ribbon.
    If above cannot work, please provide more error message for the correlation ID in ULS log for further research.
    For SharePoint 2013, by default, ULS log is at C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Windows 2012 RDP "resets" user settings while using Roaming Profiles

    Last month we installed a RDP environment running a Windows 2012 DC and 2 Windows 2012 RDP servers. The RDP servers are running in a pool.
    For the rest it's nothing fancy.
    The problem is that user-settings are reset, most likely during logon. This only occurs when we use Roaming Profiles.
    - We create a new user, in a container with no GPO's attached.
    - This user gets a RP while logging on, no errors, at logoff the RP is written to it's correct folder.
    - Logging on again. Now for example I make Chrome standard browser and change the program which opens JPG files.
    - Logging off
    - I check the NTUSER.DAT in the RP folder and the changes I made can be found in the file. So it has been saved to the NTUSER.DAT.
    - Now I login again and check the settings I made. IE is standard browser again and the JPG setting is also back to standard.
    - Logging off
    - Checking the NTUSER.DAT in the RP folder and yes, everything is back to default.
    Now the funny part is, when I create a user with a local profile, everything is working properly. Settings been saved.
    It doesn't make a different what kind of user it is. Domain User, Domain Admin. They all have the same problems when using RP's.
    No error messages in the Event Viewer.
    I'm clearly unable to solve this problem. Hoping someone can help me on this one.
    What makes the settings reset at logon while using Roaming Profiles?
    Thanks!

    Hi,
    Thank you for posting in Windows Server Forum.
    Have you enable Cache copies option of roaming profiles?
    This issue might occurs because the User Profile service does not load the terminal server roaming profile correctly after the user account password is reset.
    When the Delete cache copies of roaming profiles Group Policy setting is enabled, and when a user is prompted to change the user account password, the User Profile service loads a local temporary user profile. The User Profile service loads this user profile
    to perform the password reset operation. However, the profile changes to a combination of the local temporary profile and of the roaming profile after the user password is reset. Therefore, the terminal server roaming profile is not loaded correctly.
    In addition, please try to delete the SID of the user from registry key and check the result. You can follow the below path.
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList
    More information:
    You receive a "The User Profile Service failed the logon” error message
    http://support.microsoft.com/kb/947215/en-us
    Also check “User Profiles on Windows Server 2008 R2 Remote Desktop Services” article.
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • Feedback: Infering the user does not use Libraries

    Infering the user is not actually using Libraries in Windows 10 - greatly optimizing the experience of opening Explorer
    Feedback: If user does not have a collection of folders in any Library on install an algorithm in Windows 10 should automatically disable Libraries.
    In that case Explorer > Folder Options > General > Navigation Pane > Show libraries should be automatically set to off when creating the user profile for the Windows 10 user for the first time.

    I was facing the very same, when trying to sync my MS Project with SharePoint. On first sync between MSP and SP all the names I had assigned in the Project plan were not transferred to the SP list.
    I tried to enter the names manually in the SP list (Current View: "Project Task"), but always got the message "The User does not exist or is not unique. Permissions to the SP site are ok and I tried users from different domains, all the same result.
    When switching to the view "All Tasks" and edit the list item manually, it works w/o any issue. Not sure why, but at least a workaround for the 1st issue, even though one more step to add a user.
    Now I added a few names which were not in my MSP plan before and syncing back did not work. Reason here is the differences of Regional settings. On SP name fields do apear e.g. like this: "Klick, Heiko ; Simpson, Bart". In MSP "Heiko Klick, Bart Simpson".
    So in SP the field delimiter is ";" and per default in MSP ",". Once changing this in my local regional settings, the names are getting synced back.
    The way you setup resources in MSP is important. When picking names from the Outlook Adress book they occur as e.g. "Bart Simpson" and I can not sync between MSP and SP. When picking the names from Active Directory they get added as "Simpson, Bart"
    and everything works well.
    I hope this will help others with the same issue.

  • PT 8.53.10/CS9.0 & HR 9.1, PORTAL 9.1 - Mozilla Firefox 37.0.1 & 37.0.2 are not supported ? I am not getting the log in page & If i access from portal i am not able to get the CS or HR pages in portal !

    Hello
    We are getting following error in Mozilla Firefox 37.0.1 & 37.0.2 versions, when we tried to access HR PIA or CS PIA, But we are able to get the PORTAL PIA login and able to log in to Portal PIA and If we access CS or HR pages from Portal we are getting the same error below, It was working fine with until Mozilla Firefox 36.0.4 version.
    ========================================================================================================================================================
    Secure Connection Failed
    The connection to cs.ntc.edu was interrupted while the page was loading.
         The page you are trying to view cannot be shown because the authenticity of the received data could not be verified.
         Please contact the website owners to inform them of this problem.
    ========================================================================================================================================================
    Environment details:
    PT 8.53.10/CS9.0 & HR9.1, PORTAL 9.1
    MS SQL Server 2012
    Windows 2008 R2 (64-bit).
    Weblogic & Tuxedo.
    IE  &Google Chrome works fine.
    Appreciates your help !
    Thank You

    My first guess would be because Firefox disabled insecure TLS fallback in 37.
    We have disabled insecure TLS version fallback. If a secure site isn’t working, you can try setting the “security.tls.version.fallback-limit” preference in about:config to 1 and see if it works then.
    Weblogic out of the box does not use the newest protocols and is version intolerant.  I would need detailed config info to say for sure why PORTAL might still be working.  Are they running different Java versions for Weblogic?  Is there a mix of Certicom and JSSE being used for SSL?  Check out this analysis for more details.
    http://remotepsadmins.com/2015/01/24/ssl-weblogic/
    Let us know what you find.  Others may experience the same thing if they are configured similar to you.

  • My document.numbers can not be opened how can i recover the version from yesterday i was not using time machine and it was not in icloud. is there an app i can buy that might help

    my document.numbers can not be opened how can i recover the version from yesterday? i was not using time machine and it was not in icloud. is there an app i can buy that might help

    Thanks Andy,
    I wish I could have told my sister about this as she could not open my homepage back before my new iWeb site. She now can open my site without the yet in case denial window does appear = I thank you.
    I think my iWeb site works as Noone has said otherwise from any platform etc...
    Alex L
    I do agree that should not have to be a consideration for any users so i agree that it would be great if Apple could allow simplicity to run seemlessly.
    I have had this problem since Homepage, and here is
    what has worked for me. I send out the link, and
    then for PC users I send the link with "<" after the address (without quotation
    marks. e.g., <http://site.com>).
    I also put a note that if that doesn't work, to just
    copy and paste the link into a browser. With that I
    have only had 1 person say they still can't open.
    Everyone else gets it to work.
    It's a lot to do and seems like a hassle, but you get
    used to it.
    Hope this helps!
    Andy Martini
    PS - APPLE! When are you going to fix this??! It
    seems like such a small thing yet you guys have been
    stumped for YEARS on this!

Maybe you are looking for

  • Working with XI Message and Sender Mail Adapter

    Hello I have a task - To use one email address for several interfaces. In this case I think XI Message is the choice. The question is How to tie payload and SOAP header? Do I need to pass SOAP Header as mail message body and payload as mail attachent

  • Roll, extended and heap memory EXTM

    hi Dear, I am getting issue performance issue one new server while the system specs is: *Processor 2 *  x3690 X5, Xeon 8C E7-2820 105W 2.00GHz Cache  18MB L3 Memory (Installed)  32 GB PC3L-10600 CL9 ECC DDR3 1333MHz Instance Profile Parameter Name   

  • Open report on clicking the section in dashboard in obiee 10g

    Hi, I have number of sections in dashboard and in each section I have a report. When we click on report link, the report will be open. Now we have a requirement such that, if we click on anywhere in the section (just not only on report) the report sh

  • BDC ( Call Session Method)

    how to make bdc using call session method.

  • OBIEE presentation services

    Presentation services login no longer recognize my username and/or password. My username: Admin and Pass word; Admin results to invalid. Any suggestion on how to resolve this?