GL Balance only display

Dear all,
I am facing the problem how to restrict some users to see line items on specific accounts but they must be able to see the balance on these accounts...
Many thanks for your ideas & Brgds. Michal

Hi,
There is an authorisation object F_BKPF_BES, where you can restrict account access.  This depends on the Authorisation group field in the control tab of the GL master.  Play around with that; reasonably certain you may achieve what you are looking for.
Cheers.

Similar Messages

  • New to Macs just purchased a 27-inch: 2.7GHz mac when I open e.g my company website or facebook it only displays centre of the screen How do I set it up show full screeen also the bar at the top is hard to read as so small can this be increased, ??

    Hi I need some help please as above I have just purchased my first mac 27" and as much I love it as a newbie im having some teething troubles, when say Facebook or my company website is displayed it is only displayed in the centre of the screen I know I can zoom in and out but that doesnt look great and dont want to have to that on each page display, how do i fix this please.
    Also the toolbar at the top of the page is so small and hard to read is there a way to increase and fix the size
    Thanks for your help

    For the browser window, just drag it to the top left of the screen (click and hold on the top bar with the traffic lights to drag), then in the bottom right of the window you'll see a rectangle with diagonal hatching. Click and hold on that and drag the window to the size you want.
    Clicking on the green dot at top left will expand the window to fit the screen, clicking it again will shrink it back to where it was (this doesn't work in Finder windows quite the same).
    The menu bar size is set in the bowels of the OS, though there may be third-party applications which can alter it.
    As it's size is relative to the screen resolution, you could try reducing the resolution in System Preferences > Displays to see if that would suit you better.

  • Spry Menu Text only displays in hover color, doesn't sense browser edge

    I have a Spry horizontal menu in a website that is working fairly well in everything except IE6.  Firefox, Safari, and IE7 are all fine.
    In IE6, random menu items only display in the blue hover color, so they are invisible until you hover over them.
    My second problem is that the menu is right-aligned, and the button on the far right has three submenus.  I would like the second two submenus to automatically open to the left of the first submenu when opening to the right would cause them to be cut off by the edge of the browser window.  How do I do this??
    Here is my code (I've customized it with suggestions online, but just can't seem to fix the problem with IE6).
    Thanks for any help, I'm really stuck!!
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 9pt;
    cursor: default;
    font-family: Helvetica, Arial, sans-serif;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
    z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    position: relative;
    text-align: left;
    cursor: pointer;
    width: auto;
    float: left;
    height: auto;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    z-index: 1020;
    cursor: default;
    width: 8.2em;
    position: absolute;
    left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
    width: 12em;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
    position: absolute;
    margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
    left: auto;
    top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    /*ul.MenuBarHorizontal ul
    border: 1px solid #CCC;
    /* Menu items are a blue block with padding and no text decoration */
    ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    background-color: #0000ff;
    color: #fff180;
    text-decoration: none;
    li.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    background-color: #0000FF;
    color: #FFF180;
    text-decoration: none;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
    /* Menu items that have mouse over or focus have a yellow background and blue text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
    background-color: #fff180;
    color: #0000ff;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
    background-color: #fff180;
    color: #0000FF;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
    background-image: url(SpryMenuBarDown.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
    background-image: url(SpryMenuBarRight.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
    background-image: url(SpryMenuBarDownHover.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
    background-image: url(SpryMenuBarRightHover.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
    position: absolute;
    z-index: 1010;
    filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
    ul.MenuBarHorizontal li.MenuBarItemIE
    display: inline;
    f\loat: left;
    background: #FFF;
    @media screen {
    * html ul.MenuBarVertical ul {position: relative!important; float: left;
    margin: -10px -1000px -1000px 80px; display: inline;}
    * html ul.MenuBarVertical {position: static!important; }
    *:first-child+html ul.MenuBarVertical ul {position: relative!important;
    float: left; margin: -10px -1000px -1000px 80px;}
    *:first-child+html ul.MenuBarVertical {position: static!important; }

    If you want to see the website and menu in action, go to http://www.gwnetworks.com/playtri/index_new2.html
    Thanks again!

  • HT2486 My address book only displays e-mails. How can I sync it with my i-phone to display the address book the same way as my contacts in my i-phone?

    Currently my address book only displays e-mail addresses. It uses the portion of the address in front of the @ as the name. How can I sync it with my i-phone 4S that has name/numbers and addresses of my contacts?

    Hello there, Seta.
    You are correct that this can be done with iCloud. The following Knowledge Base article provides some great instruction for syncing contacts:
    iOS: How to transfer or sync content to your computer
    http://support.apple.com/kb/ht1296
    Particularly:
    Contacts, Calendars, Bookmarks, and Notes
    You can sync contacts, calendars, bookmarks, and notes with other applications on your computer. This allows you to keep all your information in sync across multiple computers and iOS devices. The settings for these items are all in the Info tab for your iOS device in iTunes. With your iOS device connected to the computer, select your iOS device. Then click the Info tab.
    For details on syncing content on your iOS device with your computer, click the sections below.
    Contacts
    To sync contacts with your computer, choose "Sync Contacts with" within iTunes for Windows, or "Sync Contacts" in OS X v10.8, or "Sync Address Book Contacts" in OS X v10.7 and earlier.
    You can sync your contacts with:
    Microsoft Outlook 2003, Microsoft Outlook 2007, Microsoft Outlook 2010 (Windows XP, Windows Vista, Windows 7, and Windows 8)
    Windows Address Book (Windows XP)
    Windows Contacts (Windows Vista, Windows 7, and Windows 8)
    Address Book (Mac OS X v10.7 and earlier)
    Contacts (Mac OS X v10.8)
    Microsoft Entourage 2004, Microsoft Entourage 2008, or Microsoft Outlook 2011 for Mac
    Notes:
    When syncing contacts, you can choose to sync all of your contacts or only selected groups. The option to sync selected items may not show up until after the first sync.
    You can select a group of contacts to which all new contacts created on your iOS device will be added.
    Additional options for syncing include syncing your contacts with Yahoo or Gmail/Google Mail. You will need to configure it with the user name and password for your Yahoo or Google account.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Problem with Flash videos. They are only display in "Private Browsing" mode, in Safari 5.1.7

    The symptoms is: The flash videos are only display with a full red bar and nothing happen, no video no sound nothing. The Flash player was upgrade with 11.2.202.235. before safari 5.1.7. I have an iMac with SL, and a Macbook with SL too. However after I upgraded safari 5.1.7 the flash videos are not display correctly, (only videos). The same happen in both computers.
    I need to tell you that I follow all the possible recommendations that I founded in internent. I uninstall flash pug-in many times. I restore both. I switch many buttons and options like "reset safari", "empty cahe", "block pop-up windows", "enable java-script", "enable java". I turn off and on the firewall. I switch all the options in the flash player plug in preferences. And nothing. I turn on and off the plug ins. In fact I tried all the possibilities in the preferences menus from the programs.
    In one occasion I had a glimpse of functionality for only one hour without problems after I reinstall safari from the Apple website, but only worked until I turned off the computer. The next day was the same problem.
    After I fought with safari 5.1.7 and the plug-in flash player 11.2.202.235. Now I noticed something wired, only when I switch the "Private browsing" option in safari is when the videos are displayed correctly.
    The same videos work perfectly in Firefox.
    Some Suggestions?

    Thank you everybody, the problem was corrected in a unexpected way, I decided no to pay attention to the problem after a week fighting with that. I was navigating in a private browsing for two days. I turned the private browsing off again the next Monday, after a week I noticed that all the videos were display correctly, I do not have the problem again. That was wired because at the same time in the laptop everything is ok too. I have my extensions ON, Block Pop-up windows, In Flash payer all the options in ask....something. Only the option Disable Java script in not activated, only when I activate that option all videos are not display.
    I think maybe I updated the computer and maybe something happened in the middle. I always update my imac and my macbook at the same time. There is a Flash removal security update in may 14. Maybe that fixed the problem.
    Thanks to everybody, everything is ok now however I wanted to know what was the problem.

  • Upon opening a thumbnail to view full size image, it often spontaneously zooms to only display bottom left quarter of image.

    When double-clicking on the thumbnail image of an iPhoto album, the full size image will often spontaneously zoom to only display the bottom left quarter of the entire photo when it displays in full size. I can easily work around this by clicking on the right arrow to go to the next full size image (which will display properly) and then click on the left arrow to go back to the initial affected image (which will also then display properly). It does not do this when full-sizing all images from their thumbnails - probably less than 10% of the time; but still often enough to be a pian. I cannot find anything in the preferences which would appear to cause or correct it.
    It is a recent problem. I have been using iPhoto extensively for many years without any problems. I cannot recall for sure, but it may have started after my update to version 9.4.2.
    Using an iMac with plenty of RAM, latest version of iPhoto 11 and Mountain Lion version 10.8.2.

    What is the format of the PS photos and are there any alpha channels in them? You might try to re-edit them with PS, making some insignificant change and then saving.  See if the new edit will display properly.  Are you saving as jpgs with the Baseline format?
    I may be preaching to the choir here but this may be of interest:
    Using Photoshop or Photoshop Elements as Your Editor of Choice in iPhoto.
    1 - select Photoshop or Photoshop Elememts as your editor of choice in iPhoto's General Preference Section's under the "Edit photo:" menu.
    2 - double click on the thumbnail in iPhoto to open it in Photoshop.  When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done. 
    3 - however, if you get the navigation window
    that indicates that  PS wants to save it as a PS formatted file.  You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    NOTE: With Photoshop Elements  the Saving File preferences should be configured as shown:
    I also suggest the Maximize PSD File Compatabilty be set to Always.  In PSE’s General preference pane set the Color Picker to Apple as shown:
    Note:  to switch between iPhoto and PS or PSE as the editor of choice Control (right)-click on the thumbnail and select either Edit in iPhoto or Edit in External Editor from the contextual menu. If you use iPhoto to edit more than PSE re-select iPhoto in the iPhoto General preference pane. Then iPhoto will be the default editor and you can use the contextual menu to select PSE for your editor when desired.

  • HT204291 Using Azul media player app on my ipad  Apple tv will only display sound but not video from movies.  Any ideas on a fix.  I set mirroring to on but it still does not display video.  It will display photos and video recorded from my iphone.

    Using Azul media player app on my ipad  Apple tv will only display sound but not video from movies.  Any ideas on a fix.  I set mirroring to on but it still does not display video.  It will display photos and video recorded from my iphone.

    Here are the steps for AirPlay:
    Before starting Azul from your (running iOS 5.x/6.x) home screen where have have all your apps we need to turn on mirroring
    On your iPhone 4S/5 or iPad 2 or 3, double-click the Home  Button to view your recently-used apps.
    Swipe all the way to the right to until you see the  icon.
    Note: If the icon does not appear, go to the "If AirPlay Mirroring is not visible or available on your mobile iOS device" section.
    Tap the  icon to see the list of available AirPlay devices.
    Enable AirPlay Mirroring in this menu by tapping on an available Apple TV, then sliding the Mirroring slider to ON.
    Now you should be seeing your iPad/iPhone on your TV.
    Start up Azul now and using the settings icon on the top right corner go to the option that say "TV out" ON.
    When you do that you will see an Orange screen
    Now click "Done" and play the video you want to watch and it will AirPlay

  • 7th generation ipod nano only displaying white screen with blue horizontal lines

    Hi,
    My 7th generation ipod nano is now only displaying a white screen with blue horizontal lines along the bottom. It still plays music and is recognised in itunes with I connect it to my PC.
    I have reset is and restored it and it is charged.
    Please advise.
    Thanks,
    Jess

    Hi jkjuarez2012,
    Thank you for visiting Apple Support Communities.
    It sounds like your iPod nano is only showing the Apple logo with a white background, and you've tried many good steps including resetting and restoring the device. I know I'd miss my music in this situation.
    Make sure that you followed the steps in this article when restoring your iPod:
    Restoring iPod to factory settings - Apple Support
    If the issue continues after restoring, your iPod nano may need to be serviced. You can use this link to find out more about iPod service:
    If the issue is still not resolved, please read this information on servicing your iPod.
    From:
    iPod nano (7th generation): Hardware troubleshooting - Apple Support
    Best Regards,
    Jeremy

  • Itunes app no longer showing genres or the top charts/genius bar in the top bar ... it only displays a faint music in the centre with just the search box..why? i need them back:-(

    itunes app no longer showing genres or the top charts/genius bar in the top bar ... it only displays a faint music in the centre with just the search box..why? i need them back:-(

    The iTunes Store listing of your podcast is simply reflecting the contents of your podcast feed. Make sure all of the content you want displayed in the iTunes Store is still contained within your feed.
    Are you able to supply your feed for reference?

  • Read Only Display Settings Help

    Hello,
    I am trying to control what some users can see in a page. Right now I have an item field (Roles) display as checkbox. Roles is a field in my table that I created with RolesA, RolesB, RolesC. Note: these are not htmldb roles.
    In my Edit Page Item --> Read Only Display Settings --> Read Only Condition Type --> PL/SQL Function Body Returning a Boolean. Under Expression 1, I coded:
    return not htmldb_util.current_user_in_group(p_group_name => 'APP Admin')
    I want this item to read-only unless the user happens to be a member of group 'APP Admin'.
    The expression is not working. It seems that no matter what user is logged in they can modify this item. Is there another way I can do this for controlling what my RolesA, RolesB, and RolesC can modify? BTW, this item is a checkbox.

    Dung,
    That API seems to have a bug, it returns true/false/null, so you could use 'return not nvl(htmldb_util.current_user_in_group(p_group_name => 'APP Admin'),false)' to get a false value.
    Unfortunately there's another problem: using the read-only attributes for checkbox or radiogroup item makes them hidden. My suggestion would be to create another item that has disabled="disabled" in the HTML Form Element attribute in the item definition and display that item or the non-disabled item alternately, using conditions based on the current_user_in_group logic.
    Scott

  • Problem with Read Only Display settings

    Hi Guys,
    When you use the "Read only display setting" for a field (bgcolor="#FF0000") it actually makes the whole cell red. The cell is longer then the field. Is there a way to just adjust the color of the display-only field. Firefox displays the read-only fields with the grey background (good). IE displays them as a normal text field (stupid).

    Sorry, found it. You set it in HTML Form Element Attributes.
    Would it not be better to have an option in the "Read Only Display setting" to set the HTML Form element aswell or instead of the cell?

  • Windows 8.1 default video driver only displays 1024x768 on Satellite A665D-S605​1

    My laptop came with Windows 7 Home Premium.  I upgraded to Windows 8.0 and had driver poblems. The Windows 8 installation was getting a bit buggy after 18-mos so I finally decided to upgrade to 8.1.  I did a format and clean install of 8.0, then updated software before installing 8.1 upgrade. After upgrade Windows 8.1 used a default driver that only displays 1024x768 instead of 1366x768. I tried to install video drivers from AMD website and crashed the new Windows 8.1 installation.  I'm back running 8.0 with no problems. Anyone know where I get the correct driver for my A665D-S6051? This is an AMD Pheonom II Quad Core processor with ATI Mobility Radeon HD 4200 series video display.
    Solved!
    Go to Solution.

    Satellite A665D-S6051 (PSAX0U-008004)
    Your model is supported by Toshiba for upgrade to Windows 8, but not to Windows 8.1.
       Computers with Windows 7 pre-installed that are supported by Toshiba for update to Windows 8.1
    Windows 8.0 will not be supported by Microsoft after January 12, 2016.
    I would restore the hard disk to its original out-of-the-box contents using Toshiba recovery media.
    (Some would kill to downgrade to Windows 7!)
    -Jerry

  • 2nd gen iPod touch only displays start-up apple icon, and is not recognized by iTunes - what to do?

    2nd gen iPod touch only displays start-up apple icon, and is not recognized by iTunes - what to do?

    Thanks, but I've checked those articles out already. I drained the battery and finally got the needs charge (battery w/red line + arrow pointing to a charging bolt), I plugged the USB into the laptop and held down the start key +home key until I saw the apple logo. However, it still was not recognized by itunes. It's been plugged in for over an hour now and the screen is cycling apple logo/low battery (battery w/red line)/and black screen.

  • Only display image if filename in database

    Hi,
    I'm trying to write the code to only display an image if
    there is a file name in the database for the image (i.e. if there
    is no image for the item, no image tags are written to the page
    etc)
    Heres what I have:
    <code>
    <%
    Dim bookImage
    bookImage = (rsBooks.Fields.Item("book_imageURL").Value)
    If bookImage > 1 then
    Response.Write("<img
    src='i/bookCovers/<%=bookImage%>'/>")
    Else
    End If
    %>
    </code>
    I'm getting the following error:
    Unterminated string constant
    /index.asp, line 197
    Response.Write("<img src='i/bookCovers/<%=bookImage
    ---------------------------------------------------^
    I can't figure the problem.
    Appreciate any advice.

    Thanks for your repsonse, that worked perfectly.
    I'm now in trouble with the same thing, I can't figure out
    what"s what !:
    <%
    Dim spanishReview
    spanishReview =
    (rsBooks.Fields.Item("book_spanish_title").Value)
    If spanishReview > "" then
    Response.Write("<A HREF='ReviewSpanish.asp?<%=
    Server.HTMLEncode(MM_keepURL) & MM_joinChar(MM_keepURL) &
    ""book_id="" & rsBooks.Fields.Item(""book_id"").Value
    %>'>Revisi&oacute;n espa&ntilde;ola
    &raquo;</A>")
    else
    End If
    %>
    I've tried to put the double quotes in the right places, but
    can't get it right. Any help much appreciated.

  • Why all of a sudden has one of my apps (Condition Report App) only displaying at the top right hand corner it is a quarter of the size it should be, i have tried setting my ipad back to factory settings and this hasnt helped some please help??? :)

    One of my apps (condition report app) has decided to only display on the top right hand corner which is only a quarter of the screen, not sure what has happened as i have not changed any settings went to go into it one day and it was just like it.
    Please help!!!! Thanks Kristy

    Do you have the most up-to-date version of the app? Did you upgrade to iOS 6? Did you check to make sure that the developer has updated the app for the new OS? Have you tried resetting your device by pressing and holding the Home button and power button until the silver apple appears? Have you tried uninstalling and re-installing the app?

Maybe you are looking for

  • Error in the DataBindings.cpx file

    Hi all, I noticed that a really wired error message occurs in the DataBings.cpx file after I added a ADF table from the DataControls to a jsf page. The Datatcontrols is developed from the entity objects in an imported ADF library. Here is the error m

  • I just bought Mac Book pro; trying to hook up dual monitor with Samsung syncmaster 2033 but no signal; I am using dvi to hdmi converter. Please assist.

    I just purchased a Macbook Pro but unable to set up dual display with samsung syncmaster 2033 via DVI to HDMI port. Thank you in advance for help.

  • Smartform Main window problem

    Hi, I have a requirement wherein i have to print data for an employee from more than  30 different sections , the data for which is stored in different internal tables. As there can multiple records in each internal table for an employee and data has

  • Privacy Settings and Outlook 2013 shared mailbox

    We just switched to Outlook 2013.  There is one vendor who had been sending emails with the sensitivy setting set to "Private" to a shared mailbox.  It worked fine until the switch to Outlook.  She may also be setting some permssions, but I could not

  • OID Passwords

    Hi We are planning to import our existing user data into OID including passwords. Our passwords are currently a customized version ( we convert a 16bit encoded MD5 hashes into a long integer). According to Oracle support, OID supports only 64bit enco