Help on Approvers and Appoval rights

Kindly help me on how approvers and approval rights are configured in Oracle E biz. For example I need to find to find out whether a Purchase order or Purchase order had been rightly approved by the correct approver or not.
Pease five me the back end table names if possible so that I can track the employee details who has approved the PO and the details of the correct approver ( in case the approver is not the the person who ideally should have approved)
Please help
Thanks..
Harsh
[email protected]

Hi Paulo,
You want to use the approval preview for shopping carts? Then do a little searching on OSS and in the SAPHelp, because there are some restrictions on the agents to make sure they are shown correctly in the approval preview. I know it is mentioned in a note but I don't know which one it was.
From my experience I always ended up using the standard workflows, eg the n-level BADI approval and in a later version the n-level BADI approval on item level. I don't know from the top of my head which ones these were.
Regards,
Martin

Similar Messages

  • My macbook keeps freezing with the left side of the screen on the right and the right side of the screen on the left. Help

    My 17-inch early 2011 macbook pro keeps freezing on me.  The freeze usually occurs when I'm importing or exporting pictures, when I stream anything, or If I am watching a dvd.  The left side of the screen shifts to the right and the right side of the screen shifts to the left.  lines also appear on my screen and I can not force quit any open application.  I have not dropped my laptop at all. 
    Mac OSX Lion version 10.7.5
    2.2 Ghz Intel Core i7
    I would like to avoid going to the an apple store to fix this problem if possible.  The closest one to me is 40 miles away. 
    Help : )

    If you don't have the Applecare extended warranty then you will need to pay for the fix. The fix is a New Logic Board. It seems as your Graphics card is failing in some way. No there is no software fix for this.
    The Graphic chip is soldered to the logic board and the only way to change/fix it is to replace the complete logic board.
    Good Luck and Best Wishes

  • I want to be a good SAP user but please help me how and can i do the right step about SAP

    i want to be a good SAP user but please help me how and can i do the right step about SAP

    Hi,
    you can start learning SAP from an end-user/key-user perspective with the online learning portal of SAP Learning Hub, business user edition.
    Further information can be found here:
    SAP Learning Hub
    Regards,
    Arnold

  • My new iPhone 4s and my iPad 1 have the same problem: While working on one of them, the screen goes black and the right back to home screen. I've tried resetting the iPad with no chages to this problem. Need help, this is anoying.

    My new iPhone 4s and my iPad 1 have the same problem: While working on one of them, the screen goes black and the right back to home screen. I've tried resetting the iPad with no chages to this problem. Need help, this is anoying.

    I just did a reset all settings on both.
    Will see where this gets me.
    Thank you for your helpfull input.

  • Mac osx freezes right after start up and all desktop files disappeared and the mouse can't click on anything..help?, Mac osx freezes right after start up and all desktop files disappeared and the mouse can't click on anything..help?

    Mac osx freezes right after start up and all desktop files disappeared and the mouse can't click on anything..help?, Mac osx freezes right after start up and all desktop files disappeared and the mouse can't click on anything..help?

    This is sometimes caused by Bad Blocks on the Hard Drive.
    If 10.7, hold down Command-R at startup, and choose Disk Utility.
    If 10.6 or earlier, boot to the Installer/Utilities DVD, answer only the "what language" question and wait for the MenuBar to be drawn. Choose Disk Utility from the Utilities Menu.
    Select your Hard drive by Make & Model and check the SMART Status (lower right of the right window). Choose "Repair Disk" . This ONLY examines and repairs the Directory area of the drive, but may improve things a bit. If errors cannot be repaired, you may need a stronger tool, or a new drive.

  • Help with Applescript and Admin Privelages

    I just started using Applestript a few months ago and I can't figure out how to give my script Admin rights. Basically, it turns on and off my internet sharing and file sharing through dialog boxes. I copied and pasted the whole code below if you want to test it, but this is the part that is giving me trouble. There are 4 lines similar to this, the actions that turn on or off the services.
    do shell script "/bin/launchctl load -w /System/Library/LaunchDaemons/com.apple.InternetSharing.plist" with administrator privileges
    I've tried adding "with password _____" and "password_____" but neither worked. Can anyone help me make this script authenticate itself so I don't need to keep typine in my password? I could easily make a keystroke in system events to type it in but it doesn't always ask for it so I don't know how I'd make the script know when it needs to enter the password. any help is much appreciated!
    Some things to clarify: The first shell script is there to invoke the "authentication" dialog so I can sign in once I launch the app and get right into the settings. However, I'd like to make it so the script doesn't even need admin permission to run, or make it somehow have my password built in to it. Security is not an issue, its my personal computer that nobody else has access to so I really don't care if my password is written in the code. Also, if you have any tips on how to streamline the Quit/Hide/Resume dialog I'd appreciate that too. Resume is there because there's a chance I won't have to sign in again if the app does not quit, however more often than not I have to sign in anyways. Thanks again in advance, sorry this post is so long but like I said, I'm pretty new to all this so I don't know exactly what you need to be able to help me.
    The Whole Script:
    -- Variables and Authentication
    set done to "n"
    set quitapp to "no"
    display dialog "Please enter your password to allow Sharing Manager to make changes to your settings." with icon caution
    do shell script "/bin/launchctl unload -w /System/Library/LaunchDaemons/com.apple.AppleFileServer.plist" with administrator privileges
    delay 0.2
    -- Repeats
    repeat while quitapp is "no"
              repeat while done is "n"
      -- Choose Setting
                        display dialog "Choose Setting to Edit" buttons {"Internet", "File Sharing", "Exit"} default button 3
                        set the button_pressed to the button returned of the result
                        if the button_pressed is "Internet" then
      -- Commands for Internet Settings
                                  display dialog "Internet Sharing" buttons {"On", "Off", "Cancel"} default button 3
                                  set the button_pressed to the button returned of the result
                                  if the button_pressed is "On" then
                                            do shell script "/bin/launchctl load -w /System/Library/LaunchDaemons/com.apple.InternetSharing.plist" with administrator privileges
                                  else if the button_pressed is "Off" then
                                            do shell script "/bin/launchctl unload -w /System/Library/LaunchDaemons/com.apple.InternetSharing.plist" with administrator privileges
                                  end if
                        else if the button_pressed is "File Sharing" then
      -- Commands for Sharing Settings
                                  display dialog "File Sharing" buttons {"On", "Off", "Cancel"} default button 3
                                  set the button_pressed to the button returned of the result
                                  if the button_pressed is "On" then
                                            do shell script "/bin/launchctl load -w /System/Library/LaunchDaemons/com.apple.AppleFileServer.plist" with administrator privileges
                                  else if the button_pressed is "Off" then
                                            do shell script "/bin/launchctl unload -w /System/Library/LaunchDaemons/com.apple.AppleFileServer.plist" with administrator privileges
                                  end if
                        else
                                  set done to ""
                        end if
              end repeat
      -- Confirm Quit/Hide
              display dialog "Really quit? You will have to reenter admin info next time." buttons {"Quit", "Hide", "Resume"} default button 1
              if the button returned of the result is "Quit" then
                        set quitapp to ""
              else if the button returned of the result is "Hide" then
                        tell application "System Events"
      keystroke "h" using command down
                        end tell
              else
                        set done to "n"
                        set quitapp to "no"
              end if
    end repeat

    with respect to general improvements, a couple of points:
    If I'm reading this script correctly, it looks like you're putting up an applescript alert and leaving it hanging until it's dismissed.  This is an atypical approach (applescripts aren't really meant to hang around indefinitely waiting for a respons).  If I were doing this I would either go whole-hog and create an applescript application in XCode with a proper interface, or remove the hanging dialog and create a set of toggle scripts that I could use from the script menu.  if you really want to keep the hanging dialog, though, you can streamline it by absorbing the secondary dialogs into the main dialog.  that's like so:
    set netSharingStatus to checkService("com.apple.InternetSharing")
    set fileSharingStatus to checkService("com.apple.AppleFileServer")
    display alert "Current Settings" message "Click to change settings" buttons {"Internet " & netSharingStatus, "File Sharing " & fileSharingStatus, "Exit"} default button 3
    -- choose next action based on the button clicked and the status vairable
    on checkService(service)
              do shell script "launchctl list"
              if the result contains service then
                        return "On"
              else
                        return "Off"
              end if
    end checkService
    using handlers like the above can also streamline the rest of your script.  the following construction means you only have to write the do shell script line once, rather than the four times you currently do, and makes for much cleaner reading.
    if the button_pressed starts with "Internet" then
              toggleService("com.apple.InternetSharing", netSharingStatus)
    else if the button_pressed starts with "File Sharing" then
              toggleService("com.apple.AppleFileServer", fileSharingStatus)
    else
      --exit routine
    end if
    on toggleService(service, currentState)
              if currentState in "On" then
                        set action to "unload"
              else
                        set action to "load"
              end if
              set command to "/bin/launchctl " & action & " -w /System/Library/LaunchDaemons/" & service & ".plist"
              do shell script command user name "adminusername" password "password" with administrator privileges
    end toggleService

  • Error Message on the printer - Remove and check right cartridge

    How to fix error message:  "remove and check right cartridge" which you have done numerous times, plus cleaned cartridge nozzle.  Also, I have turned off power to printer, but nothing changed.  Help for HP Officejet 7210 All-in-One needed.
    This question was solved.
    View Solution.

    Funny that multiple people have this problem appear just after 9/1 on multiple printers/all-in-ones. I wonder how many people have this problem and don't report it here. Mine is on a 2710a all-in-one in excellent condition except for this cartridge problem.
    My contacts are not suddenly damaged and it is a relatively new well within the expiration date genuine HP cartridge that we have had for more than a few months. It has not been out of the printer nor has the printer been moved. It sits in a clean room with very little temperature variation from 72 degrees. All printers should be so lucky.
    This is not the first time nor the first printer I've had cartridge problems with HP printers. This is my third one and I'm done with HP printers. I love all other aspects of the printer but this one is infuriating enough to sour me for good.

  • HT1926 hey guys,i tried to install the latest version of itunes but when i try to open it,it just comes up windows error 2 apple application support was not found,can anyone help me out and tell me what i need to do pls ?

    hey guys,i tried to install the latest version of itunes but when i try to open it,it just comes up windows error 2 apple application support was not found,can anyone help me out and tell me what i need to do pls ?

    If you run into the "another installation" message even after the reboot of the PC (which is an excellent idea by HTP ProXy), reregistering your Windows Installer Service is worth a try.
    First, launch a command prompt as an administrator. In your Start search, type cmd then right-click on the cmd that comes up and select "Run as administrator".
    At the command prompt:
    Type %windir%\system32\msiexec.exe /unregister and hit enter.
    Type %windir%\syswow64\msiexec.exe /unregister and hit enter.
    Type %windir%\system32\msiexec.exe /regserver and hit enter.
    Type %windir%\syswow64\msiexec.exe /regserver and hit enter.
    Restart the PC and try another reinstalll.

  • Help getting worse and worse

    When CS5 went out, i spend a lot of time here trying to undertand what happened to the online help.
    I even stopped adding comment and being part of the community help because metric driven design is,
    as far as the help layout is concerned, a very very bad idea.
    My hopes were limited for CS5.5 and I really wanted Adobe to correct this in CS6...
    I wonder what happened with the online help part of Adobe apps in general, and AE specifically.
    I wanted to check some stuff on it, and it’s a complete disaster (at least in french).
    All the links in the "what’s new in cs6" are pointing to Todd’s blog home page, not even to the related post, and it even links to it when the topic is not disscussed at all on the blog. Hopefully, they all comes with another link to the home page of video brain, not even to the correct course or anything.
    I’ll be more specific; For a tutorial I’m recording, I wanted to check some info on the new material properties, because I’m not a 3D guy and wanted to use the correct french words and be sure not to mess-up.
    So I went to the online help home page, got in the what’s new in cs6 page, then scrolled down to new material option where it linked me to Todd’s blog and video brain. Both on the home page. Because I didn’t care about watching a video, and needed to read some stuff in french to get the correct words, I went to the Layer & properties part of the help.
    What a joy, 6 of the 7 topics wheren’t updated since january 1st (meaning no info about new stuff in CS6) and the only part updated is about 3D layers, yay ! So let’s open that page.
    I got 8 topics, none with info about the materials, old or new, only basics info about rotating,moving, 2d/3d layers, intersecting... and, on this "Product affected: Adobe After Effects CS6" page, info about Photoshop 3D layers, a feature removed from the product.
    That’s when I used that handy "search box", because that’s what I was told when I complained about how lame was the CS5 docs navigation compared to the CS4 one: the paradigm shifted from topic related discovery to keyword search related discovery.
    Let’s try to find out some info for the "Options Surface" category.
    it takes me to the community help results: http://community.adobe.com/help/search.html?searchterm=optionsurface&q=optionsurface&lbl=aftereffects_product_adobelr&x=0&y=0&area=0&lr=en_US&hl=en_US
    The first AE related link is 7th on the list despite a search in AE related docs... And on the 4 AE related links, nothing to do with what I need. Yes, I know, I searched the french name, but shouldn’t I get community results in french , or at least, official documention results in french ?
    If I select the "only adobe content" radio button, it’s worse. Less AE links, less relevant.
    If I click "support" instead of Community help, it’s not better, still more links pointing to Illustrator or Photoshop than After Effects. At least, 1 link is related to 3D layers in raytraced environment, but not what I’m looking for.
    Oh yes, now there's a topic browsing page. Let's have a try with that. Guess what ? Couldn’t find the info I was looking for.
    Removing the breadcrumb navigation in CS5 help was an ugly move, but this new help system is just... I don’t know how to say it politely. I haven’t been satisfied with the help system since CS5, when you removed the very usefull, always on context and organised bredcrumb navigation on the left hand side of the screen. I wished you stoped the "search" paradigm and went back to the "organised" one. I know your metrics shows people love searching. But how many search does they have to go through before getting the correct result ? How many unsuccessfull search before they don't bother anymore ? Honestly I’ve never seen such a messy help, and it really is confusing. It even feels like Adobe doesn’t bother about it anymore, and that it’s now relying only on external content, giving the feeling that the only thing up-to-date are the links to videobrain/creativecow/whatever rather than the official content itself. Hopefully, the curators for these links only points to very good tutorials.
    The other thing that is bothering me, is that we get more and more video content instead of text content. Don’t get me wrong, I love watching videos. But I also love to read the docs. It’s much more effective that trying to seek in the video for that special piece of info you are looking for (and there no way to know if the info you’re looking for is indeed in the video or not, or to "search" it's content).
    And don't get me started on the Help App, I never understood why you did it in the first place. Not as inconvenient as the website, but nearly.
    Not having an efficiant documentation is bad. I’ve been asking for an help redesign since CS5, complained in a blog post and on the community help forums. With this new non-sensical online help, where nothing is to be found easily, this will soon become mendatory. If Adobe doesn’t care for help anymore, they should remove it completly instead of making it less and less relevant, and more and more messy. If you have an email address where I can send this rant I’d be glad to let the right people know.
    Seb

    Thx for the reply Terri,
    i'll probably send you a mail with more thoughts, but what I feel from your answer is that you didn't get the major issue I have with the online doc since CS5.
    Sure it's nice to know that you'll fix your broken search engine and that you'll add some filters back (reference only). But the major issue here is your paradigm shift from indexed content to searched only content. Nothing can be found easily. Absolutely nothing. Either in localised versions or in the english version. The layout is nerve breaking, and the search results are really bad (but this is what you are going to fix someday soon).
    For an online help to be efficient we need properly organised and Indexed content first, and then a powerfull search engine to find it if we don't know where to look. Right now, you've wipped out the index & organisation and just piled stuff here and there leaving us the only way you think we want to browse the help: search. And that's the problem. We are not able to browse the help anymore; We can only search it, and we even cannot rely on that.
    Sincerly, go browse the CS4 online help. it was clear, and working like a breath with the always handy, and always displayed breadcrumb navigation. It also featured search. Now, go back to CS6, and tell me where is the improvment. No way to properly separate official docs, from adobe official blog posts, from 3rd party sites/blogs. Everything is mixed-up and unbrowsable. Even some of the "topic pages" makes no sens, as I demoed in my previous post. No way to keep on context. No way to explore more without returning back to the search results. Having more great content from 3rd party is really interesting, but it's poor integration with the official docs makes it an experience breaker.
    When I'm in my app and need help, I need to first and foremost go to the official help, I need it clearly organised and with an understandable and clean layout. And when I'm on my topic and feel I need more info/ in depth knowledge, a link to 3rd party tutorials, free or paying. And it's not the experience I'm getting. And it's the experience I need. I don't understand how it became so messy, but honestly, I've never seen something like that.
    Also, you've increased focus on video content. Yeah watching tutorial is cool. But video is not searchable. Video is not immediate. When I need help, I need to read the answer first to fix my issue, and then, if I feel I need to learn more, go to AdobeTV, Videocopilot, Videobrain & such to learn more stuff. Your enphasis on 3rd party and video content have shrank the volume of quickly available info. We need more text content, and more text content from within the official documentation, not from partners. Because once again, each time i'm redirected to a partner site, I loose context...
    So please, stop focusing on search only, and bring back the much stronger breadcrumb navigation, bring back in front the official documentation, so the info precise, findable, and not dilluted.

  • My Macbook Pro (OSX 10.6.7 2.26 GHz Intel Core 2 Duo) has started misbehaving on me. When I'm working, the cursor will start spontaneously moving to the left in a straight line, and randomly right clicking on things.  If I close the computer and open it b

    my Macbook Pro (OSX 10.6.7 2.26 GHz Intel Core 2 Duo) has started misbehaving on me. When I'm working, the cursor will start spontaneously moving to the in a straight line, and randomly right clicking on things.
    If I close the computer and open it back up, it sometimes stops for a little while, then will spontaneously start again. Any help would be truly appreciated. Thanks!

    See this knowledge base article. Also, you might want to update to 10.6.8 (don't know that that will fix your problem, but it's the latest version of Snow Leopard).
    Clinton

  • Proper user and group rights

    Dear readers and admins
    My question is about the "correct" setting of the user and group rights, so the following is possible. It relates to Server 10.3 and to 10.4.
    Requirements:
    Group 1 = "Regular user"
    Group 2 = "Administration, Accounting"
    User 1 and 2 belong to Group 1, users 3 and 4 belong to Group 2.
    User 1 & 2 must have read/write access to files and folders in Group 1, but may not have access to files and folders of Group 2.
    User 1 & 2 must be in a position of creation and deletion of file and directory of Group 1, as if they were their own files and directories. I.e. User 2 must be in a position to delete or change files and directories that an other user of Group 1 has created.
    User 3 & 4 must have read and write access to files and directories of Group 1 & 2. They must be able to creating and changing such files and directories, as if they were their own files and directories. I.e. User 3 & 4 must be able to create and change files and directories which belong to user 1 & 2.
    As I understand it, this can be achieved with ACL's under Server 10.6.
    Am I right?
    What would such a structure look like with ACL's?
    I unfortunately don't have a server 10.6 running, as, down due to technical problems, my server is down.
    Thank you in advance for your help.
    All a happy new year.
    Regards
    Thomas Thaler

    Yes - and it's pretty easy.
    1. You would create whatever share points you would like (very easy to do)
    2. You would make sure in Workgroup Manager you have the users assigned to the correct groups that you discussed.
    3. On the folders for Group 1 you would add ACL permissions of Full Control for Group 1 and Full Control for Group 2.
    4. On the folders for Group 2 you would add an ACL permission of Full Control for Group 2.

  • What can I do simply  to keep all my previous contents, (own pics, videos, etc.) on my previously authorized iPad on PC, but get a new authorisation and a right syncronization, without data loss with a new  iTunes on my new Mac?

    Friends,
    I already had an iPad(1) and its full contents (not only the purchased items, applications from Apple, but my all own pics, videos, songs etc.) is normally syncronized with an authorized PC (Windows) computer.
    Now,  I've bought a new MacBook Air computer, and want to sell my PC. But I don't know how to transfer (or syncronize) all of the contents from my previous iTunes on PC to the new one on the Mac.
    When I connected my iPad to my new MacBook Air, I promted, if I want to change authorization of my iPad to the MacBook.
    But also got a warning, that the new iTunes will delete from my iPad all my previously syncronized items, pics, videos and music, with the previously authorized  iTunes on the previous computer, expect the saved pics from the net.
    What can I do just like that, simply  to keep all my previous contents on my iPad, but have a new authorisation and a right syncronization, without data loss with the new  iTunes on my new Mac?
    Thanks a lot for your answer.
    ([email protected])

    Here are some instructions that I have posted several times that may be helpful to you as they have been to others. You can simply ignore anything that does not apply or that you have already done.
    As Alan stated above - transferring the iTunes library is the best first step. If you can transfer the iTunes library to the Mac, most of this will be unecessary for you to do.
    Very Important ....
    1. Authorize the computer.
    2. Turn off auto sync in iTunes
    3. Transfer purchases
    The text in italics is from the other thread - non italics are my words.
    The following was copied from this thread. This is essentially what you want to accomplish.
    https://discussions.apple.com/message/11527071#11527071
    1) Without connecting your iPad to your new computer, start iTunes. Click on iTunes. Click on Preferences. Click on Devices. Check the box next to "Prevent your iPod etc. from automatically syncing." Click OK.
    2) Now connect your iPad to your computer and start iTunes.
    3) When iTunes starts, right click on your iPad under Devices in the left column. Select Transfer purchases etc.
    4) After it finishes transferring all your apps to your computer, right click on your iPad and select Backup your iPad.
    5) After it finishes backing up your iPad, right click on your iPad and select Restore etc.
    6) After it finishes restoring, left click on your iPad , then click on the Apps tab on top, and check the box next to Sync Apps, then click on Apply below.
    If everything on your iPad looks good after the sync, go back and click on iTunes / Preferences / Devices and UN-check the box next to Prevent your iPod etc. The only other thing you may want to check is if your contacts, bookmarks, etc. are syncing correctly now. If not, go to the Info tab after connecting and make sure you indicate which features you want to sync with what sources.
    Read this thread and the support links as well. There are apps that you can purchase that will allow you to transfer photos from the iPad to your computer. Look at Photo Transfer App in the App store and you can search for others as well.
    https://discussions.apple.com/message/13016026#13016026
    This support site will help you with transferring iTunes music to your new computer.
    http://support.apple.com/kb/HT4527
    One final note - you may want to leave auto sync turned off - but that is totally up to you. I never did use auto sync.

  • Help! Safari and trojan? How do I identify and get rid of it?

    Please help me understand and get rid of this—your expertise sincerly appreciated! I posted about this problem a couple of weeks ago, but got no response. I seem to have a trojan attached to Safari (my analysis). It delays or stops loading of all pages, thumbnails don't load (such as in ebay), overall response is slow or freezes, etc. My console shows the following sets of messages whenever I try to open a page:
    4/13/11 8:27:14 AM Safari[286] iSkysoft: removeObjectFromDic: ReloadPage
    4/13/11 8:42:16 AM Safari[286] iSkysoft: removeObjectFromDic: ReloadPage
    4/13/11 8:57:22 AM Safari[286] iSkysoft: removeObjectFromDic: ReloadPage
    4/13/11 9:12:23 AM Safari[286] iSkysoft: removeObjectFromDic: ReloadPage
    4/13/11 9:25:18 AM Safari[286] iSkysoft: removeObjectFromDic: ReloadPage
    4/13/11 9:25:19 AM Safari[286] iSkysoft: removeObjectFromDic: ReloadPage
    4/13/11 9:25:45 AM Safari[286] iSkysoft: Add Button.
    4/13/11 9:25:45 AM Safari[286] iSkysoft: Show Button: <SFSButton: 0x12b194a60>(146.0,46.0)
    4/13/11 9:25:46 AM Safari[286] iSkysoft: disappearBtn
    4/13/11 9:25:47 AM Safari[286] iSkysoft: Hidden Button.
    4/13/11 9:25:55 AM Safari[286] iSkysoft: Show Button: <SFSButton: 0x12b194a60>(146.0,46.0)
    How do I identify this iskysoft, where it is located, and delete it?? Please help if you can.
    I have followed all (possibly-related) advice I could find in the forums, including deleting all safari extensions, repeated cache empty, reload safari from scratch, delete safari library folders as admin and user, scan with sophos and intenet cleanup, etc. Finder doesn't locate anything named iskysoft on my computer, but the iskysoft website has to do with video conversion.
    The slowdown has lasted since the end of 2010, but I just discovered the console messages a few weeks ago, and have been trying to understand and deal with that since.
    Thanks for your time and knowledge. I could really use the help!

    Hi,
    Try MacScan for malware.
    http://macscan.securemac.com/
    You are positive you haven't installed the iSkysoft software??
    Purchased as a bundle by chance by another name?
    http://www.squidoo.com/current-mac-bundles/144089781-Previous-Mac-Bundles
    The slowdown has lasted since the end of 2010,
    Maybe it's not the iSkysoft causing the slow down. Check to see how much free space there is on the startup disk.
    Right or control click the MacintoshHD icon. Click Get Info. In the Get Info window you will see Capacity and Available. *Make sure you always have a minimum of 15% free disk space.*
    Try using Spotlight (top right corner of your screen, the magnifying glass icon, to find the software.
    Carolyn

  • Guidelines to help center objects and text in pages

    Where are the guidelines to help centre objects and text in the new pages?

    well YMMV.  https://discussions.apple.com/thread/5472111?tstart=0
    You have to do it manually.  Also can be in the accomplished in the right hand column Format>Select your image>Arrange

  • How to sign and enable rights

    I know there have been some discussions about Reader Extensions and the like, so please forgive me.  I'm new to all of this and I just don't understand.
    Is there a very simple, plain English guide on signing and enabling rights?  My agency has finally informed me that we don't have Reader Extensions, and likely won't be getting it at any point in the near future.  In order to enable user rights for people that only have Reader, is it pointless now for me to design forms in LiveCycle?  Filling in forms seems to work out OK with Reader, but there are some things I can't restrict (markup, comments, etc).  And there are some things I can't enable (adding attachments, for example).
    As really the only guy working here that seems interested in Adobe products (IT didn't even know Reader has the ability to add attachments to a document), what are my options for restricting/enabling usage rights for forms created in LiveCycle, but without the aid of Reader Extensions?  Can some/all of these rights be controlled via Acrobat X Pro? In other words, can I create a form in LiveCycle, and manage the rights enabling/restricting in Acrobat X Pro?  I would imagine that would require a digital signature or certificate. I went over to Verisign and got lost.  If I can do such things with a digital certificate, where and how would I go about obtaining one?
    Sorry, again, for such basics.  Most of the literature and discussions seem to aim at those more familiar with the products and services.

    I'm sure that others on the forum would have a better answer for you but I'm going to take a stab at this.
    Once you create the form in LiveCycle, open it in Adobe Acrobat Pro. Once open, select File/Save as and from the fly out menu select "Reader Extended PDF" and from that flyout menu, select "Enable Additional Features". Then it will ask you to save it again.
    Once you do this, the form can be filled in with the regular Adobe Reader, the form can be saved, and the form can be used for Markup tools, such as sticky notes, redaction, digital stamps with the users' name and date, and digital signatures.
    When the person selects to sign the document in the "Extended" section of Adobe Reader X, they will create a self signed signature certificate. Each signature generates it's own serial number. Unfortunately, Adobe doesn't restrict the creation of digital signatures so you can make one in your name, your dog's name, etc and yet all the signatures will validate and look absolutely legitimate.
    And unfortunately, the same is true of digital stamps. All you have to do is right click the stamp and you can change the sign on id and forge another's stamp.
    I hope this helped for what you are trying to do. Good luck.

Maybe you are looking for

  • I just got my iPhone in the mail

    Just got off the phone with Sprint-I was her first iPhone customer. I am up and running! I couldn't believe that everything automatically synced from my Macbook to my phone. I love this-now to figure out how to use it!

  • Very slow query

    Hi, we execute the following : select count(*) from mytable. We wait more than 20 minutes and then stop. I generated a AWR report for the time it was running : Instance Efficiency Percentages (Target 100%) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

  • Can i use GoLive6.0 with os10.8

    Can I use GoLive60 with os10.8

  • A carriage return within a string

    Hi all, Have a string which oracle is reading from Foxpro but ORACLE doesn't recognize + CHR13 + which means new line. " blah blah + CHR13 + blah " Used + /n + but that isin't working either...Any ideas? " blah blah " /n " blah " S Emberg

  • Installing Apps in Creative Cloud

    I have downloaded creative cloud but am unable to download Illustrator or Photoshop apps. I have previously downloaded the free trial and then unistalled both of these apps but now that I have purchased creative cloud i am unable to re-install them o