Need to remove : trasaction OY01 overriding effect of user profile.

Hi ,
Can anyone please help me for the following scenarios :
I have Grand_Total field which is of type DEC 23,5 in table ZINV.
I want to display this(grand_total) in appropriate decimal format in which the user has logged in based on his userprofile setting.
But there is one problem I am facing...its that my report uses OY01 to do contry settings so the Deimal format of OY01 over-rides user profile settings.
Can anyone help me to display a field using User Profile barring OY01 settings.

- Strange, why do you use those not-required settings ?
- Use a [SET COUNTRY cntry. |http://help.sap.com/abapdocu_70/en/ABAPSET_COUNTRY.htm] with an initial value
When cntry is initial (contains a blank space in the first position), the formatting is set according to the fixed values in the user master record.
Regards,
Raymond

Similar Messages

  • The CSCup62113 bug also removes Personal Conferencing accounts from disabled users' profiles

    It has been confirmed that the CSCup62113 bug that has been confirmed in MR4 (CWMS version 2.0.1.407B) also removes Personal Conferencing accounts from disabled users' profiles, if CWMS has been configured for synchronization with CUCM/LDAP. There is no way to restore the Personal Conferencing accounts; all affected end users need to be notified that their Personal Conferencing accounts and PINs need to be manually re-created (with host/participant codes being re-generated).

    It has been confirmed that the CSCup62113 bug that has been confirmed in MR4 (CWMS version 2.0.1.407B) also removes Personal Conferencing accounts from disabled users' profiles, if CWMS has been configured for synchronization with CUCM/LDAP. There is no way to restore the Personal Conferencing accounts; all affected end users need to be notified that their Personal Conferencing accounts and PINs need to be manually re-created (with host/participant codes being re-generated).

  • Need urgent help on how to compare the user profile and process form attributes

    Hi All,
    We have a requirement  where after editing the  user profile attributes we have to compare the currently modified user  profile attributes and the existing     
    process form attributes and based on the differences we have to update the  process form accordingly.
    We have around 80 attributes so we cannot follow the procedure where
    we update the lookup process_triggers
    and add the "change attribute" task
    and "update attribute" taskin the process definition
    because it creates aroung 160 tasks in process definition. So we are doing it by writing a custom code. Is there any other simple way to do it or any API"s which can help us.
    Need very quick help.Thanks in advance.
    Regards,
    Geetha

    Check MOS: 1595938.1
    -Bikash

  • Do I need all those media cache files in my user profile?

    Hello Forum,
    When I installed Win 7 and Adobe Production Premium on a 120Gig SSD, I made this mistake of not putting only the essential part of Windows on this System and Apps drive. (I have separate 1Tb HDDs for media and rendering, and work with compressed HD files).  I noticed that my user profile has grown enormous, to the point of filling up the SSD, and when I searched to see why, the main problem is a substantial accumulation of media cache files in the folder...
    user/App Data/Roaming/Common/Media Cache Files
    Judging by their names, sizes, and dates, they seem to pretty much replicate all my raw media files on my media HDD, from all the projects I've done since last summer. This folder is about 40 gigs.
    So what is the function of this media cache folder? Can I move it, or direct PP to put this stuff on some other drive than my SSD? Do I even need the contents of this folder? All my scratch files go to the F: Rendering HDD.
    Thanks.
    PS: If any of you have suggestions on how to move my user profiles off the boot/apps SSD to one of the HDDS, without reinstalling everything, I'm all ears.

    To follow up, I now see this is a product of running AME, and AME gives me options of where to put all this stuff. Can I just change those options to my F: Rendering Drive, and move the contents of this folder there?

  • Need to develope report for Deleting user profiles

    Hi All,
    I need to develop a report to delete inactive user profiles from SAP system. We have  a found out a list of valid users but need to delete all the users which are not contained in this list.
    If anybody is having any inputs, they are welcome.
    Thanks & Regards
    Abhii

    REPORT  ztest5.
    PERFORM delete_user USING 'TEST' .
    *&      Form  DELETE_USER
    *       text
    *      -->USERNAME   text
    FORM delete_user USING username TYPE bapibname-bapibname .
      DATA : li_mess TYPE TABLE OF bapiret2 ,
             ls_mess TYPE          bapiret2 ,
             lv_mess TYPE          string   .
      CALL FUNCTION 'BAPI_USER_DELETE'
        EXPORTING
          username = username
        TABLES
          return   = li_mess.
      LOOP AT li_mess INTO ls_mess .
        CLEAR lv_mess .
        MESSAGE ID     ls_mess-id
                TYPE   ls_mess-type
                NUMBER ls_mess-number
                INTO   lv_mess
                WITH  ls_mess-message_v1
                      ls_mess-message_v2
                      ls_mess-message_v3
                      ls_mess-message_v4.
        WRITE : / ls_mess-type , lv_mess .
      ENDLOOP .
    ENDFORM .                    "DELETE_USER

  • HT204053 i just got a Mac book pro 13....i need to remove my husbands cell number from my iCloud on this device but don't know how

    I just got a Mac book pro 13 ... I need to remove my husbands cell number from this device but dont know how

    Are you sharing the same iCloud account as your daughter?  If so, that would explain why your contacts are merged.  To fix this, you would need to migrate her device(s) to her own iCloud account.  After doing so, you could then delete her contacts from your Mac without effecting the contacts on her device(s).
    As far as messages, do you have your own iPhone?

  • Do I need to remove the application?

    I am working on iPlanet 6.0SP4.Do i need to remove the old application when I redeploy the new one. Because there is also an option called "override" when doing the deployment, what that mean?
    If I didn't remove the application, and redeploy with override option, is it possible that two same classes will be stored in the ldap server with different id

    Hi,
    See when you deploy any ear application it first copy it in "<iAS-install-dir>/ias/JAR" dir and extract all the war/jar modules in it. And after it picks the modules from here and explode in respective directory under "<iAS-install-dir>/ias/APPS or .../APPS/modules". When you say Override modules, it replaces all the old modules having the same name with the new one and then explode them.
    Moreover when you deploy any module it will make entries in LDAP under "Application server/6.0/J2EE-Modules/<war/jar-module-name>" and for each Servlet/JSP/EJB under "Application server/ClassDef/<GUID>".
    So when you redeploy same application again and you don't change the module names then it will overwrite this registry information as the module names and GUID is same (in this case you have to restart iAS). But if you reassemble application using deploytool, then it will create new GUIDs for each components in your app and the second entry will be change in this case.
    Now when ever plugin will send the request for the new app it will read GUID from the "J2EE-Modules/<war/jar-module-name>" node and will send it to the KXS and the KXS will see what class to load after looking at "ClassDef/<GUID>" node.
    If the modules have the same name as original Application, then the old GUID entries in registry are of no use and will make iAS slow only as it reads the whole registry while starting.
    Please feel free to ask further questions.
    Sanjeev,
    Developer Support, Sun ONE Application Server-India.

  • Removing shake in after effects

    After deciding to take the jump to CC I discovered all that looks good has its own set of problems. I'm hoping in this discussion a skilled AE user might save me time and money. I'm a proficient Vegas Pro user. The jump from a mix of Adobe programs and apps from other vendors has left me floundering somewhat in needing to get up to speed on some Adobe products.
    My ask for help here is that I've used Mercalli to clean up shaky footage (such as taken in a moving 4WD on a rough track) with great success but now that I'm moving to 100% Adobe products, I'd like to hear from users of AE who have a prefered workflow when handling work like this. I'd greatly apreciate some help here.
    Sure... I could read up or school up on the topic, even buy a product I've used in the past that has an Adobe version but I'm hoping as working professionals who have done this themselves or know more than me about removing shake with after effects, suggesting their worklow might avoid the very expensive and time consuming  tasks of trial and error that gets suggested so often. RTFM is not going to help me either.
    My belief is that having signed up for the full house of Adobe CC, I should be using it instead of dealing wiht the update and upgrade mess I'll eventually face if I don't get on the program. Hopefull this makes sense and someone will help?
    Ryadia.

    I'd like to thank all who replied to my question. After a few days of experimentation I've found that Warp Stabilizer can certainly be used for correcting many hand help situations but like many components provided by Adobe in their graphic software, it has limitations that third party products do a much better job at.
    Warp Stabilizer is certainly able to level out the effects of a hand held camera phone or pocket camera but to a videographer needing to produce broadcast quality promos, the fact that it works but nowhere near as well as a specialist product developed for the specific purpose is quite clear to me after using some of the information provided in replies.
    I may be biased after using Mercalli for most of my stabalisation needs but installing their trial and working the same footage with firstly Warp and then Mercalli, I have decided this will remain my prefered stabaliser. I am still not entirely comfortable with AE after several years of Vegas but the learning curve for AE is not as bad as I'd expected. I'm sure I'll become familiar with it in a short time.
    The comment regarding the need for a stable component when shooting a vast areas of water is overcome quite easiely if you include some of the mast spreaders in the corner of the frame or as in a 4WD mounted camera, a small part of the vehicle the camera is attached to will provide the constant needed. It does take a little practice to avoid over Stabilization but isn't that so with everything?.
    Thanks all, I apreciate your help
    Ryadia

  • Removing the JButton press effect

    Hi,
    How can I remove the button press effect of JButton. I tried removing the borders and making the contentAreafilled property false; but nothing worked. Can anyone help me out.? I want to render this button in JTable
    Regards
    Clefies D S'ouza

    If you're talking about disabling a button's ability to respond to mouse clicks:
    The safest way to prevent a button from working would be to disable it like so:
        myButton.setEnabled(false);There are other ways to make a button not respond to the mouse but yet not change the appearance. One way (and I'm not sure how "safe" this is) would be to override the button's processMouseEvent method, for example:
            JButton myButton = new JButton("My Button")
                @Override
                protected void processMouseEvent(MouseEvent e)
                    if (allowMouseClick)  // a boolean variable in the program that turns button on and off
                        super.processMouseEvent(e);
            };Again, I'm not sure if the latter is kosher, but when I've tried it, it works. Also, this does not prevent the button from getting focus, nor does it disable the space bar from "pressing" the button.
    Message was edited by:
    petes1234

  • I need help removing CS3 from Windows 7 so I can reinstall

    I need help removing CS3 from Windows 7 so I can reinstall

    Before trying to remove try re-installing CS3 right on top of the current install.  Often re-installing Photoshop on top of itself fixes the install.  If it does be sure to apply the cs3 updates.
    Download Adobe CS4 and CS3 Free Trials Here (incl. After Effects) | ProDesignTools
    your product key can be retrieved from here https://www.adobe.com/account/my-products-services.html
    use these links for the updates.
    Adobe - Photoshop : For Macintosh
    Adobe - Photoshop : For Windows

  • I will give my laptop to someone else, how do I unlink my apple id? Do I need to remove the apps I downloaded with my id?

    I will give my laptop to someone else, how do I unlink my apple id? Is it just the app store unlink? Do I need to remove the apps I downloaded with my id? Will they get removed when I unlink my apple id?
    Are there any other procedures I need to take into account?
    Thanks

    You need to remove all software that you acquired from the Mac App Store, including newer versions of OS X. These are all registered to you and encoded with your Apple ID in the licensed copy. You cannot legally pass any of the software to the new owner, which is why Apple states to erase the Mac and return it to the version of OS X that shipped from the factory on the Mac. You must also remove any older Apple software that you installed by DVD or pass the DVD to the new owner with the Mac.

  • Need to remove space for a field when displayed in ALV Report

    Hi,
    I have material field of length 18, but the content is only 10 char. I need to remove the extra space when it is displayed on ALV Report.
    Is there any option in ALV field catalogue

    use statement condense.
    condense zmatnr.
    also giv output lenth of alv column as 10.

  • Need to REMOVE Apple ID account from previously owned iMac

    I recently purchased a previously owned iMac and need to REMOVE its previous Apple ID account to remove apps that they obviously purchased. Can this be done? I am being prompted to update these apps and when I try, I am asked to enter this OLD account. I actually want to REMOVE these apps for I have zero interest in them. The system was supposedly wiped of all previous info from previous owner but I guess they over-looked the apps.
    Can someone advise and give me a step by step break down on how to do this? Remember, I have my own Apple ID but the apps were downloaded from a previous Apple ID account that is NOT mine but was on this system.
    Thanks

    And thanks to you, HW.
    I see you got one quick answer.  But you need more.  
    Leave it until your post sinks near the bottom of the list then revive it by writing to your own post ... say, 'can anyone add to these answers?'   It's Sunday morning!

  • How do you remove a device off of an Apple ID? I have an I pod and an I phone hooked up to the same account need to remove the I pod and start up his own apple account.

    I have an iPod and iPhone connected to my apple account. I need to remove the iPod as it receives all my text messages. I want to sign him up with his own account and not use mine. 

    Yes, that erases everything from the iPod.
    He can redownload his purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Hi Support, how can I install photoshop again after disk failure. Still says I have 2 copies installed, need to remove one from my old pc.  Thanks for any help.

    After drive failure, I decided to install photoshopcc on my home pc.
    when I try to start it, I get the message "already installed on 2 devices"
    I need to remove it from one of those devices.
    It's not obvious how to do this.
    Thanks in advance for any help

    On one of your older PCs, Start Photoshop, go to the  Help menu > Deactivate...
    This is a forum of users like yourself volunteering our time to help, we are not Adobe support.
    Gene

Maybe you are looking for