Issue with users accessing video card and /dev/nvram

Hello,
I have Lenovo x60s and i can't access with normal user (group users) the file
/dev/nvram
ever I restart de computer have execute "chmod 777 /dev/nvram" for fallowing access for users
and with users i can't use video i810 alone use vesa
with root i can use driver i810 on xorg, why??
I don't understand?!?!?!

The problem with my video is with root i can play games 3D, with users i can't, my config video card on xorg:
Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option "ShadowFB" # [<bool>]
#Option "DefaultRefresh" # [<bool>]
#Option "ModeSetClearScreen" # [<bool>]
Identifier "Card0"
Driver "vesa" ---->> Now I write "VESA", while I write i810 i can't execute "startx" with normal user
VendorName "Intel Corporation"
BoardName "Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller"
BusID "PCI:0:2:0"
EndSection
the /dev/nvram is device when i use especial keys of keyboard on my notebook,
ever restart my pc the permissions change, I have execute "chmod 777 /dev/nvram" else i can't use with normal user.
i think the udev always create this device on start and always create with the permission alone read and write for root, but I just find that the group is kmen and I add my user in the group.
I restart system and verify the result.

Similar Messages

  • Photoshop CS4 Issue with NVIDIA 8800 Video Card?

    I have an Mac Pro Intel 2 x 2.8 GHz Quad-Core Xeon with 6GB RAM running OS X 10.5.5 and an NVIDIA GeForce 8800 GT driving two monitors.
    I just installed Adobe Photoshop CS4 fresh from a factory CD.
    When I perform a Distort -> Lens Correction or do a Free Transform to rotate an image an arbitrary amount, and then follow that with a resize (tried 133% and 166%), the image ends up with a pattern of gray plaid overlaid -- especially visible in the darkest shadows. The pattern appears only on the rotated layers of an image.
    This pattern persists if I quit and restart Photoshop, BUT -- there's no pattern visible if I open the same image in Photoshop CS3. It only appears in CS4.
    This is easy to reproduce -- I just tried it with an image I created in Photoshop at 5x7" at 240dpi and filled with solid black.
    I dropped a Bug Report to Adobe, and they wrote back suggesting "This is most likely an issue with your video card driver."
    Anybody else out there having this issue? Anyone with an identical setup want to test this?
    -=-Joe

    You are in the PowerMac (PPC) G5 discussion....
    Mac Pro is over http://discussions.apple.com/category.jspa?categoryID=194
    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb405745&sliceId=2
    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb404898
    Would be nice if there were separate graphic drivers to play with.... ;-(

  • I was having issues with my 80G Video iPod and had to restore it, but now it seems all of my music on it previously is "corrupt" . How did all my songs get corrupted and how do I fix them?

    I was having issues with syncing my 80G video iPod, so I restored it, and now all my songs in my library are "corrupted" and I can't get them back on my iPod. I keep getting error(-69). How did my songs all get corrupted, and how do I fix this without having to purchase these songs all over again?

    Go to the iTunes Store, log into your account, and click the Purchases link under the Quick Links. From there you should be able to re-download some or all of your purchased content. Note that not all content has been licensed for re-downloading in all countries at this time; you can see what content you can download here:
    http://support.apple.com/kb/HT5085
    You can also re-download content using an iOS device.
    For more information, see:
    http://support.apple.com/kb/ht2519
    This if course will not apply to songs you did not buy through the iTunes Store.
    Regards.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Communities page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums and in the Apple Knowledge Base, before you post a question.

  • Issue with assistive access not keeping permissions

    Since a recent upgrade (likely from OS X 10.9.x to 10.10.2) I've had issues with Assistive Access blocking Automator and Applescript from interaction with dialogs.
    If I run my script or my Automator workflow (which basically has the same script in it) I get the error:
    System Events got an error: Automator is not allowed assistive access. (in the case of Automator).
    If I open Automator, and then untick and retick the Automator entry in the Accessibility options within Security & Privacy (System Preferences), then workflow can run again. It continues to work until I Quit Automator. Then it's as if OS X no longer trusts Automator to be the same app I gave Accessibility permissions to.  And the situation repeats. It's much as if it were not code-signed. The exact same issue plays out with Apple Script.
    I came across this info, which I hoped would solve the problem, but it made no difference: http://macscripter.net/viewtopic.php?id=43394 and http://bit.ly/1x3SRmc
    In my Accessibility permissions I now have:
    Script Editor
    Automator
    1Password 5 (which the script interacts with)
    com.apple.security.agentStub.xpc (in case that's being called up and triggering the Accessibility issue)
    osascript (in case that's handling the script and triggering the Accessibility issue)
    SecurityAgent.xpc (in case that was triggering the Accessibility issue)
    I added all these because the post at http://bit.ly/1x3SRmc     indicated that anything Apple Script is interacting with needs Accessibility access permissions.
    My script is as follows:
    set appName to "SecurityAgent"
    set passApp to "1Password 5" (* set this to the name of your password manager *)
    tell application "System Events"
      if not (exists window 1 of process appName) then -- test if SecurityAgent window exists
      set answer to display dialog "The password dialog was not found. Please check." buttons {"Ok"}
      return -- abort if SecurityAgent window does not exist
      end if
    end tell
    tell application "System Events"
      set position of window 1 of process appName to {10, 10}
    -- move SecurityAgent window out of the way
    end tell
    activate application passApp
    tell application "System Events"
      tell application "SystemUIServer"
      set answer to display dialog "Make sure correct 1Password item is actively selected (i.e. click it again if it was previously selected), then click “Continue” to proceed." buttons {"Continue"}
      end tell
      tell process passApp
      (* If you are not using 1Password, you may need to change the menu item clicks, below, to whatever is correct in your particular password manager *)
      click menu item "copy password" of menu "item" of menu bar 1
      delay 1
      set appData to the clipboard
      end tell
      tell application "System Events"
      tell process appName
      set value of text field 1 of window 1 to appData
      if exists (text field 2 of window 1) then
      set value of text field 2 of window 1 to appData
      if exists checkbox 1 of window 1 then
      if value of checkbox 1 of window 1 is 1 then
      click checkbox 1 of window 1
      end if
      end if
      set value of checkbox 1 of window 1 to 0
      delay 1 (* gives  a moment to see what's going on *)
      click button "OK" of window 1
      else
      if value of checkbox 1 of window 1 is 1 then
      click checkbox 1 of window 1
      end if
      delay 1 (* gives  a moment to see what's going on *)
      click button "OK" of window 1
      end if
      end tell
      end tell
    end tell
    In Automator it would appear the script is generating an error as soon as it reaches line 5, "if not (exists window 1 of process appName) then"
    I would greatly appreciate some assistance in resolving this issue.

    Starting with Mavericks, Apple changed the way that the accessibility works (see Using AppleScript with Accessibility and Security features in Mavericks) - each individual application needs to be given access, instead of a global option.  A regular AppleScript application saves properties and global variables with the script, which makes it a new application as far as the system security is concerned, so it needs to be re-added to the accessibility list.  To work with this new security feature, you need to code-sign your AppleScript application or make the script(s) in the bundle read-only so that they don't get changed (note that an AppleScript-based project in Xcode does not modify the application bundle by saving properties and globals).

  • [T410] discrete gfx - Problem with Video Card and Windows Aero -anyone using 4Gb memory modules?

    [3/3/2010 Update]
    There's a issue of using 4Gb sticks on T410 currently that results in video output artifacts and aero interface problems when using Lenovo supplied drivers v8.16.11.8825. I think I can call it confirmed (Three people including me face this issue).
    Possible workaround is to install modified EliteBook 8440p video driver (read along this thread) comes with a BIG drawback of not being able to change brightness level within Windows 7. To sweeten it a little bit - you can set luminance level at POST screen, when computer boots up.
    [Original Message]
    Encountered strange behavoir of my T410.
    I have a T410 with 256Mb of Video Memory and 1440x900 display, a T61 with 128Mb of Video Memory and 1400x1050 dsplay and external monitor HP w2338h with 1920x1080 resolution.
    If I connect external monitor to my T410 and launch Visual Studio 2010 Beta 2 - image blinks and comes back with Aero disabled. Looking through event logs reveals the lack of memory. Entry information can be found further.
    Now If I do the same with my old Thinkpad T61, connect the same monitor using the same cable - I can open as many Visual Studio 2010 Beta 2 instances I like (tried 5) and nothing blinks and Aero stays enabled.
    Actually I find ridiculous, a notebook with more VRAM cannot archive the same performance as notebooks with less.
    Does anyone know what path should I pursue to solve this issue?
    UPDATE: Simply running multiple instances of Visual Studio 2010 Beta 2 without external monitor causes Aero disabled as well.
    Log Name:      Application
    Source:        Desktop Window Manager
    Date:          2/4/2010 7:32:21 PM
    Event ID:      9020
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:     
    Description:
    The Desktop Window Manager has encountered a fatal error (0x8007000e)
    Error 2/4/2010 7:32:21 PM Desktop Window Manager 9020 None
    Solved!
    Go to Solution.

    mat3y wrote:
    I have the same problem with T410 and aero disabled.  I am not using VS and I get this error anyway.
    The Desktop Window Manager has encountered a fatal error (0x8007000e).
    This must be buggy drivers, on Lenovo download site is just the one and the only initial driver for T410 graphics card.
    What software were you actively using when this error occured?
    Thinkpad T500-2081 CTO | T9400 2.53GHz | 8 GB RAM | ATI HD3650 + Intel GM45 | 15.4" LED WXGA+ | Windows 8 | ATI Catalyst 13.1 (non-switchable)
    Thinkpad 390x | PII 333 | 256mb ram | NeoMagic 256AV | SVGA LCD | OS/2 v4.52

  • PE 13 crashes due to incompatible video driver detected. Running on Win 7 SP1 with ATI 540v video card/driver.  Deleting bad driver file in adobe program data does not fix the problem,  it simply replaces the text file and crashes again.  My video driver

    PE 13 crashes due to incompatible video driver detected. Running on Win 7 SP1 with ATI 540v video card/driver.  Deleting bad driver file in adobe program data does not fix the problem,  it simply replaces the text file and crashes again.  My video driver is just fine.  Any help out there?

    rb
    Your video card driver may be fine for something, but just not compatible with Premiere Elements 13/13.1.
    For those with the display card error, the answers include
    a. assure your video card/graphics card driver version is up to date according to the web site of the manufacturer of the card -
    if necessary consider a driver roll back.
    b. determine in Device Manager/Display Adapters if the computer is using 2 cards instead of 1
    c. delete the BadDrivers.txt file
    the rationale for that deletion is found in post 10 of the following older post...principle applies to 13 as well as 9.
    Re: Premiere Elements 9 Tryout Serious Display Problem
    Have you looked for computer ATI card settings that might be more compatible with Premiere Elements 13/13.1?
    When is the program crashing - just opening a new project or rather crashing if editing a particular video format at the Timeline level?
    ATR

  • Will this video card and power supply work on my computer? HP Pavilion p6213w Desktop PC

    I have a HP Pavilion p6213w Desktop PC, will this video card and power supply work on my computer?
    Video Card: http://www.tigerdirect.com/applications/SearchTools/item-details.asp?EdpNo=8379339&sku=A455-0760
    Power Supply: http://www.tigerdirect.com/applications/SearchTools/item-details.asp?EdpNo=4668507&sku=C13-2511
    Any help is greatly appreciated, thanks.

    It is unlikely that the power supply will fit/work in your HP Pavilion p6213w Desktop Computer. Please consider the Corsiar CX500, CX500M, CX600, and CX600M for your power supply needs. These power supplies are the same physical size as the factory unit and are known to fit and work in most HP full-sized consumer desktop computers.
    There is a chance that the GTX 760 and other current generation video cards may not work in your computer. These newer cards typically require the computer to support the most current UEFI standards and many motherboards don't meet this criteria. Please know the return policy on any video card you purchase, in case it doesn't work. If the GTX 760 doesn't work, consider the GTX 650/660 Ti or equivalent AMD graphics card for your graphics card needs.
    If you have any further questions, please don't hesitate to ask.
    Please click the White KUDOS "Thumbs Up" to show your appreciation
    Frank
    {------------ Please click the "White Kudos" Thumbs Up to say THANKS for helping.
    Please click the "Accept As Solution" on my post, if my assistance has solved your issue. ------------V
    This is a user supported forum. I am a volunteer and I don't work for HP.
    HP 15t-j100 (on loan from HP)
    HP 13 Split x2 (on loan from HP)
    HP Slate8 Pro (on loan from HP)
    HP a1632x - Windows 7, 4GB RAM, AMD Radeon HD 6450
    HP p6130y - Windows 7, 8GB RAM, AMD Radeon HD 6450
    HP p6320y - Windows 7, 8GB RAM, NVIDIA GT 240
    HP p7-1026 - Windows 7, 6GB RAM, AMD Radeon HD 6450
    HP p6787c - Windows 7, 8GB RAM, NVIDIA GT 240

  • Issues with Mercury Engine GPU acceleration and stills

    Hi folks, recently made the switch to CS6 Creative Cloud and for the most part I am loving Premiere Pro CS6 except I am having one major issue. I've got a early 2011 Macbook Pro with the 1GB AMD Radeon HD 6750M video card and 16GB of RAM and I am using Lion 10.7.4. Mercury Engine GPU mode works great on this machine (fast timeline renders, accelerated effects, quick exports) except whenever I try to use a still image on the timeline. It doesn't matter if it's a JPG, TIFF, PSD, or anything else. It also doens't matter what the size of the image is either. As soon as I drop a still on the timeline the responsiveness of the entire program starts to grind to a halt. Parts of the timeline that were playing back soomthly (in GPU or software mode) now can barely play at 10-15 fps.
    I don't have this issue in Software Mercury Playback mode (I just loose all the benefits of the GPU acceleration).
    If I switch back to Software Mode, delete the previews and restart Premiere things go back to working well in software mode.
    I'm working on projects with Canon DSLR footage (1080P 30fps) and I am working off of a fast RAID 0 hard drive set-up.
    If anyone has any advice on how I can actually use the amazing GPU mode I would be most grateful.
    thanks
    Daniel

    >doens't matter what the size of the image is either
    Well... exactly what pixel sizes have you tried?
    Photo Scaling for Video http://forums.adobe.com/thread/450798
    -Too Large May = Crash http://forums.adobe.com/thread/879967
    -And another crash report http://forums.adobe.com/thread/973935

  • What is the best PC platform for LR 4? Especially optimum video card and amount of RAM?

    I have a high end i7 Windows 7 64bit PC with 12GB ram and 3TB disks - some in RAID 0, yet LR sliders lag and image scrolling/rendering can take up to 5 seconds, which makes editing hundreds of images in a session a pain.
    I am using an ATI Radeon video card and 27" monitor (2560x1440). I am prepared to buy any graphics card or even switch to an iMac, but want snappy LR performance.
    What is the recommended setup, please?

    Running LR in a window, approx 1400 x 900 made the sliders responsive and smooth!
    My system drive, which is also the LR Catalog is RAID 0 and is 250MB/sec access, which is as good as I can get with SSD
    I have an AT Radeon HD4800 video with latest driver
    I am running LR 4.1 RC2
    I have tried exiting all non-essential programs, including AV (with internet disconnected) - made no difference
    How much would I spend on a video card upgrade? Up to $750, however from what I am reading, LR doesn't use GPU acceleration so this is a waste of time and money.
    I am going to try my i-7 MacBook Pro, driving the 27" monitor, as a comparison, and report back.
    Thanks for all the responses so far. If you can add anything, please do so.
    Are there any configuration guidlines to make LR quicker, anywhere?
    My other band-aid is to manually transfer my project's raw files to the HDD, and then pre-view them with a fast browser, to weed out the rejects, before importing the rest into LR for editing and filing.
    I looked some good programs, for this:
    PhotoMechanic ($150)
    Seems to be the ultimate, and is both Mac and Windows, however price is difficult to justify.
    Breeze Browser Pro ($70)
    Fast but pricy compared to LR with all its features, but may be a goer, considering the time it saves.
    Fast Picture Viewer ($40 + $10 for code pack)
    Also very fast, but no tree folder view, which I find limiting. Price is getting better.
    XNView (Free)
    Good option. Bit slower than the paid apps, but still quite good.
    FastStone Image Vewer (Free)
    Comparable to XNView, just a tad slower, but seems that development has been suspended. I did see a 64bit codepac though, which I hadn't look ed at.
    There are too many more to list. Do any of you guys use anything like this?

  • AMD 8750M Video Card and Windows 10

    Is Windows 10 really not compatible with the AMD 8750M Video Card and the version 12.151.1.9002 (1/21/2004) driver? Or does AMD need to issue a driver update? Thank you

    And if you will turn 8750m off via bios, you might get this issue where you can't turn it ON!here the link to the topic:http://h30434.www3.hp.com/t5/Notebook-Display-and-Video/WIN10-HP-470-G1-AMD-8750m-doesn-t-show-up-dGPU-option-doesn/m-p/5170662

  • Upgrade video card and power supply or upgrade my pc?

    I have a :
    HP
    Series Pavilion Model M8530F(KT334AA) Type Media Center / HTPC Processor AMD Phenom X4 9550(2.2GHz) Processor Main Features 64 bit Quad-Core Processor Cache Per Processor 4 x 512KB L2 Cache Memory 5GB DDR2 800 Hard Drive 750GB 7200RPM SATA Optical Drive 1 SuperMulti DVD Burner with LightScribe Technology Graphics NVIDIA GeForce 9300GE with Hybrid SLI Technology with 256MB dedicated video memory, DVI and HDMI capabilities, and support for Microsoft DirectX 10. Up to 1919MB Total Available Graphics Memory as allocated by Windows Vista Audio High Definition audio Ethernet Integrated 10/100/1000Mbps network interface Keyboard HP multimedia keyboard Mouse HP optical mouse Operating System Windows Vista Home Premium 64-bit Software Included Photo and Video
    muvee autoProducer Basic: Automatically create professional looking home videos and burn to DVD
    Entertainment
    Cyberlink DVD Suite Deluxe: Automatically fix and edit videos and create CDs and DVDs. Edit, burn and archive data to discs.
    Productivity
    Microsoft Works 9: Includes a word processor, spreadsheet, database and calendar
    Microsoft Office Home and Student Edition 2007 Trial: 60-day trial version
    Adobe Reader 8: Read and print PDF file
    PC Security
    Norton Internet Security 2008: Protect your PC out of the box (60 days of complimentary live updates)
    Online Services
    Easy sign-up to major dial-up and broadband Internet Service Providers:
    - MSN dial-up (offer included)
    - NetZero Dial-Up (offer included)
    - NetZero Accelerated Dial-Up (offer included)
    - Juno Turbo Dial-Up (offer included)
    - High Speed Internet Services Comparison Shopping
    Motherboard Chipset NVIDIA GeForce 8200 Chipset
    CPU CPU Type Phenom X4 Installed Qty 1 CPU Speed 9550(2.2GHz) L2 Cache Per CPU 4 x 512KB CPU Socket Type AM2+ CPU Main Features 64 bit Quad-Core Processor
    Graphics GPU/VPU Type NVIDIA GeForce 9300 GE Graphics Interface PCI Express x16
    Memory Memory Capacity 5GB DDR2 Memory Speed DDR2 800 Form Factor DIMM 240-pin Memory Spec 2GB x 1 & 1GB x 3 Memory Slots (Available/Total) 0/4 Maximum Memory Supported 8GB
    Hard Drive HDD Capacity 750GB HDD Interface SATA HDD RPM 7200rpm
    Optical Drive Optical Drive Type DVD Super Multi Optical Drive Spec SuperMulti DVD Burner with LightScribe Technology
    16x DVD±R, 8x DVD+RW, 6x DVD-RW, 8x DVD+R DL, 4x DVD-R DL, 5x DVD-RAM, 16x DVD-ROM, 40x CDR, 32x CDRW, 40x CD-ROM
    Audio Audio Chipset Integrated
    Communications Modem 56K LAN Chipset Integrated LAN Speed 10/100/1000Mbps
    Front Panel Ports Front USB 2 Front IEEE 1394 1 Front Audio Ports 2 Card Reader Front panel 15-in-1 memory card reader: supports SmartMedia, xD, MultiMedia Card, Secure Digital (SD), Mini Secure Digital, Compact Flash I, Compact Flash II, IBM Microdrive, Memory Stick, Memory Stick Pro, Memory Stick Duo, Memory Stick Pro Duo, RSMMC, MMC Mobile, MMC+
    Back Panel Ports PS/2 2 Video Ports 1 DVI, 1 HDMI Rear USB 4 Rear IEEE 1394 1 RJ45 1 port Rear Audio Ports 6 ports S/P DIF 1 port
    Expansion PCI Slots (Available/Total) (2/3) PCI-E x1 slots
    (0/1) PCI-E x16 slot
    Mouse Mouse Type HP optical mouse
    Keyboard Keyboard Type HP multimedia keyboard
    Physical Spec Dimensions 16.54" x 15.16" x 7.60" Weight 32.00 lbs.
    Manufacturer Warranty Parts 1 year limited Labor 1 year limited
    Sorry for the long copy and paste. I read that I can upgrade the video card and power supply. But atm when I play world of warcraft at ultra settings, I tend to lag really bad in the new instances with the new cat expansion that came out. I wanted to know if I should upgrade the video card and power supply for better performance or just upgrade my whole pc tower.  Fyi, I am running a Acer X243w lcd flat panel monitor if that helps too.

    My brother has a high end laptop with a built in, high end gaming video card (I forget which one). He's able to run the game on full-on Ultra. 
    I have an integrated video card which games the game on.. 'cartoon'.. mode. It's lower then low. When someone shoots a powerful spell at me, I go into a DOS Prompt. (not really, but it's pretty bad).
    Funny thing is, I can still kick my brother's butt in any PVP match he wants to set up. 
    But I guess his graphics are pretty....
    As for which video card works best, I'd have to do some research. After that graphics update they did with CAT,  it's kind of a toss up again.
    I am a Bestbuy employee who volunteers on these boards on my own time. I am not paid for posting here, and you should understand that my opinions are exactly that - opinions. I do not represent Bestbuy in any way.
    : Open Mailbox

  • HT204053 I recently had to cancel my debit card because of unauthorized purchases on Facebook. I have tried to update with 4 different credit cards and every time I get a message saying invalid security code. How do I fix this?

    I recently had to cancel my debit card because of unauthorized purchases on Facebook. I have tried to update with 4 different credit cards and every time I get a message saying invalid security code. How do I fix this?

    Debit card? Are you sure?
    USA iTunes Store does not appear to accept debit cards - http://www.apple.com/legal/itunes/us/terms.html  "The iTunes Store, Mac App Store, App Store, and iBookstore services (“Services”) accept these forms of payment: credit cards issued by U.S. banks, payments through your PayPal account, iTunes Cards, iTunes Store Gift Certificates, Content Codes, and Allowance Account balances."

  • Issue with Acrobat 10.1.2 and Windows 7 64-bit Preview Handler

    Hi. I work in an enterprise environment that is currently migrating to  64-bit Windows 7. The only version of Acrobat we have approved for Windows 7 is 10.1.2. We're seeing an issue with this version that causes the preview handler to not work. The preview panel in Explorer is just white and will eventually give the error "Preview handler surrogate host has stopped working."  I've tried to fix listed on http://www.pretentiousname.com/adobe_pdf_x64_fix/index.html but that registry key is already correct. Our current work around for these users to just install Reader X1 and make it the default PDF handler, but I would like to find a better solution. Is there a known issue with Acrobat 10.1.2 and 64-bit operating systems? Or is there a way to change just the default preview handler?

    Most of the info on the web page you link to is 2-4 years old. I doubt it applies. Your workaround is actually the best solution: It's always preferred to use the latest PDF viewer. Reader and Acrobat can exist on the same machine.
    Also, why 10.1.2? There have been 6 releases since then with documented security enhancements (meaning there are also published vulnerabilities which are patched), bug fixesm, and feature enhancments.
    I'll ping some folks about the error you are getting. . .
    hth,
    Ben

  • Issue with User decision handler in UWL

    Hi Friends,
      I am facing an issue with user decision hander in UWL. We have modified the XML file to show up the comments box to enter the rejection reason, this is working fine with two approval tasks already but the same thing is not working now with a new task id. In the back end(R/3) everything is the same for both the tasks, in the Portal side my portal consultant says the same. But we were not able to figure out the issue. I even created a new task and tried to use implement the handler changes, but still it is not working. Please advice what could be the issue

    Hi,
    can you elaborate what the issue, what do you mean by not working. you are not getting the reason box, or it's giving error,something like that.
    Hope we'll be more clear then about your requirement.
    venu

Maybe you are looking for

  • Can we have a search and find widget in Muse?

    Customers want the ability to search for content in our muse sites. This way we can also use Muse to built Portals, etc... So I believe this a widget we need!

  • Primary Index on CDHDR table not working

    Hi Experts, I am accessing the Table CDHDR with following fields in the WHERE clause of the SELECT Query (For All Enrteis). OBJECTCLAS---- >'EINKBELEG' OBJECTID---- >Here I am passing Purchase order No TCODE---- >'ME21N' CHANGE_IND---- >'I' I haven't

  • Prevent Hourly Employees from Ordering Non-stocked Materials and Creating Purchase Reqs in Work Order

    Our SAP plant maintenance system is configured to create a purchase req when a non-stocked material is ordered. We would like to prevent hourly employees from creating a purchase req or ordering non-stocked materials. Only supervisors should be able

  • New order type.

    Dear all, We have created a new order type. When we use the new order type, for the sale order item, in the condition tab, for the respective condition type, no gl account is showing against the account key. We are able to see the account key. If we

  • Preview Problem - Fine When Uploaded

    I'm working on this page: http://www.autosurftech.info/pift Looks great... but when I preview it in Dreamweaver it looks like this: