Changing contet assiatance pattern lables/placing new button

Hi,
I need help on how to change Label or caption in "contet assiatance pattern"
To put it in other words, as these are events in portal eg:next,review etc etc.. Please let me know step by step process of disabling existing button and adding new button.
This requirement is for ECM- Compensation planning.
Here I need to hide plan button and need to have "print" button.
Thanks,
Srinivas.

HI Whipsnade,
I cant confirm for sure that the AGP voltage is dropping below 0.8v. But it does seem the logical reason when you look at the monitor going into standby and the freezes, yet its 100% stable at 1.5v. (Esp the standby in my optinion shows it most). I have tried some other 9700pros and 3 out of the 4 showed probs at agp 8x (1.1+3.0rev) but none showed probs at agp4x, if i had a non +9700 card that was agp8x i would test it - but i dont. All of the boards showed problems in the Asus p4s8x as well at AGP 8x which is why i think its the chipset to blame.
I had hoped MSI's tech team would have been able to confirm it...or SIS but that seems not to be the case.
ATI are going to speak to MSI now anyway, so i'll find out from ATI what MSI say.
Am i bothered by not being able to use AGP 8x?...enough to RMA the board - no , but i am going to buy a new MOBO as soon as i have some spare cash. And the new mobo will have an Intel chipset -so granite bay looks the best bet. (but due to the non response from MSI im not sure it will be the MSI GB board :-( )
Stu

Similar Messages

  • Placing a new button with WD configuration

    Hi experts,
    I'm trying to place a new button in Web Dynpro component /SAPSRM/WDC_UI_BEV_CA, with component configuration /SAPSRM/WDCC_FPM_UI_BEV_RFQ_CA.
    I've already placed a button on toolbar block and also added a new FPM event ID NEW_EVENT.
    When I debug the WD application FPM_OIF_COMPONENT, I'm able to detect that the new event is raised. But now I want to add some code for opening a new window. Where should I place this code? Please note that I need 1 parameter from the WD application (OBJECT_ID).
    Can you help me?
    Thanks in advance.
    André Sousa

    Hi,
    Thanks for your answer.
    I was not able to understand if I need to change the standard WD component FPM_OIF_COMPONENT.
    If not how does the developed WD know that should be started? Does this component need to instantiated somehow?
    Could you please give me more detail regarding what I need to do to implement this need?
    Example:
    Where to place the io_event and how to instantiate the developed WD?
    Thanks a lot!
    Cheers,
    André Sousa

  • Any way to change back button title without creating new button?

    Hi,
    Is there any way to change the back button title on a navigation controller without having to create a whole new button and action to go with it?
    Thanks
    Ray

    Yes, you don't need to create a new a new action mechanism etc.
    One way to change the back button text on a the navbar of a view is to create a new UIBarButtonItem (with nil tagget and nil action )
    Then set self.navigationItem.backBarButtonItem of the parent view controller to the new button
    Note that you're setting the backbarButtonItem of the parent view controller (and not the view controller on which this bar button will be displayed). This automatically plugs in the default target, action etc. So you don't need to implement it

  • How to add new button on Add content box in DVT

    Hello All,
    Currently we are using Dynamic Visitor Tool in weblogic portal 10.3.2 and want to add one new button e.g. "Favorite Portlets" along with portlet list when user clicks on Add Content menu option. Could any one explain what is the exact procedure to do it what are places/files we need to modify.
    Thanks in advance.
    Alka

    Hi,
    You will have to use the mixin mechanism provided in dvt. Here are the mixin classes you will need to add and methods to override within them.
    Original class - com.bea.wlp.dvt.uikit.wlp.menus.MenuBuilder
    Mixin class - com.bea.wlp.dvt.uikit.wlp.menus.MenuBuilderMixin
    Your mixin class will look like -
    wlp_dvt_dojo.setObject("com.bea.wlp.dvt.uikit.wlp.menus.MenuBuilderMixin", {
    buildNavigableMenu: function(scope, allowRemovePlaceables)
         var menuWidget = null;
              var menuWidgets = scope.getDescendants();
                   for(var widgetIndex=0;widgetIndex < menuWidgets.length;widgetIndex++)
                        var tempMenuWidget = menuWidgets[widgetIndex];
                        if(tempMenuWidget instanceof dijit.Menu)
                             menuWidget = tempMenuWidget;
                             break;
                   if(menuWidget)
                        try
                   if(wlp_dvt_WlpResourceDelegateInstance().isResourceUpdateable(scope.model.id))
                        //Change Appearance menu item
                             menuItemArgs = {label:scope.messages.changeAppearance,
                                       iconClass:"com_bea_wlp_dvt_uikit_menu_icon_laf",
                                       onClick:dojo.hitch(null, scope._onChangeAppearance, scope)};
                             mi = new com.bea.wlp.dvt.uikit.wlp.menus.NavigableMenuItem(menuItemArgs);
                             menuWidget.addChild(mi);
                        //Change Layout menu item
                             menuItemArgs = {label:scope.messages.changeLayout,
                                       iconClass:"com_bea_wlp_dvt_uikit_menu_icon_layout",
                                       onClick:dojo.hitch(null, scope._onChangeLayout, scope)};
                             mi = new com.bea.wlp.dvt.uikit.wlp.menus.NavigableMenuItem(menuItemArgs);
                             menuWidget.addChild(mi);
                        //Add Books menu item
                             menuItemArgs = {label:scope.messages.addBook,
                                       iconClass:"com_bea_wlp_dvt_uikit_menu_icon_book",
                                       onClick:dojo.hitch(null, scope._onAddBooks, scope)};
                             mi = new com.bea.wlp.dvt.uikit.wlp.menus.NavigableMenuItem(menuItemArgs);
                             menuWidget.addChild(mi);
                             //Add a menu separator
                             menuWidget.addChild(new dijit.MenuSeparator());
                        //Add Content menu item
                             var menuItemArgs = {label:scope.messages.addContent,
                                       iconClass:"com_bea_wlp_dvt_uikit_menu_icon_portlet",
                                       onClick:dojo.hitch(null, scope._onAddPortlets, scope)};
                             var mi = new com.bea.wlp.dvt.uikit.wlp.menus.NavigableMenuItem(menuItemArgs);
                             menuWidget.addChild(mi);
                             //Set As Default menu item
                             menuItemArgs = {label:scope.messages.setDefault,
                                       iconClass:"com_bea_wlp_dvt_uikit_menu_icon_setAsDefault",
                                       onClick:dojo.hitch(null, scope._onSetAsDefault, scope)};
                             mi = new com.bea.wlp.dvt.uikit.wlp.menus.NavigableMenuItem(menuItemArgs);
                             menuWidget.addChild(mi);
                   if(allowRemovePlaceables && wlp_dvt_WlpResourceDelegateInstance().isResourceRemoveable(scope.model.id))
                        if(wlp_dvt_WlpResourceDelegateInstance().isResourceUpdateable(scope.model.id))
                             //Add a menu separator, but only if we have something to separate it from
                             menuWidget.addChild(new dijit.MenuSeparator());
                        //Remove Book menu item
                             var menuItemArgs = {label:scope.messages.remove,
                                       iconClass:"com_bea_wlp_dvt_uikit_menu_icon_delete",
                                       onClick:dojo.hitch(null, scope._onRemove, scope)};
                             var mi = new com.bea.wlp.dvt.uikit.wlp.menus.NavigableMenuItem(menuItemArgs);
                             menuWidget.addChild(mi);
                   //If no menu items were added to the main menu, don't render it
                             if(menuWidget.getChildren().length < 1)
                                  scope.destroy();
                        catch(e)
                             //handle no DISC or no authentication.
    In the abve code, follow the pattern to add a new menuitem in the place where you need it to show up. The method that gets called when the menuitem is clicked will go in the following mixin class -
    wlp_dvt_dojo.setObject("com.bea.wlp.dvt.uikit.wlp.menus.NavigableMenuMixin", {
    // add the method that gets called when your new menuitem is clicked
    Note I haven't run the code above so please check for syntactical correctness before you run it. Also note that, unfortunately, the granularity of the buildNavigableMenu method above is very coarse in that you cannot add new menuitems as small snippets all by themselves. So you will have to include the base menu building code along with your new menu item building code snippet.
    Thanks

  • Create a new button in a sap-standard-view WD4A

    In webdynpro for ABAP
    I have changed the text on an existing button in a sap-standard-view using configuration (change application configuration/go to component configurator/implicit configuration and then on the view-component change the text) it works perfect.....
    my next step is to create a new button beside the old one with a new text on it, I created a new button by using "enhance view" (I copied the existing button) the new button appears (so far so good) but when I go into the configuration to change the text on the new button (using configuration the same way I did when I changed the text on the existing button) I  cant find my new button in the view-component list....why can't I find it there so I can change the text?
    Can anyone help me this one?

    I don't believe that the Configuration tool picks up Enhancement Objects because of the way they are linked to the original component at Runtime. Why set the text using configuration?  You can control the text within the enhancement object.  Do you want different texts based upon multiple configurations?

  • DVDSP3 Won't Make New Buttons, Won't Open Project Files

    HELP!!!!
    The button editor in my DVDSP 3.02 stopped working after it opens a new project file. I mean, when you go to a menu and then hold down the mouse button and drag, nothing happens. It will not create any new buttons. Even if you drag a button template over and use the pop-up submenu. It will not create any buttons.
    Worse is what happens when I open an existing project file. Then it stalls forever at the "Loading Menus" point in the "Loading Project" dialog. It doesn't crash, it just stalls there forever. However, if I click "cancel" - THEN the app crashes.
    But it won't make buttons in the new project files it can open, and it won't open any existing project files. Very confusing.
    Here's what I know and have done to this point...
    If I watch this whole process in the Activity Monitor, here's what I see. I find that two apps named "DSPX_AEncoderServer" and "DSPX_EncoderServer" get hung (and turn red) when the "Loading menus" point is reached in the document load. Sometimes DVDSP will say it's hung, too, but not always.
    However, I found that my DVDSP app still runs flawlessly if I boot from my "clone" backup drive, which is how I'm still able to get work done currently.
    Back on my normal boot drive, all of the other Apple Pro apps still run perfectly - FCP, Compressor, A-Pack, etc. But not DVDSP.
    OK, here's a clue, but I don't know what it means. Two months ago, I had the logic board replaced on my G4. All the pro apps made me re-register. Then this DVDSP problem appeared out of the blue. Nothing fixed it that I could find. What made it finally go away was the timely arrival of a new Security Update to the OS via "Software Update." Installing that made the problem with DVDSP go away, for good.
    Not doing hard drive maintenance, repairing privleges, fully optimizing OS, Disk Warrrior, Norton DiskDoctor - none of them worked. But that Security Update showing up, installing, and then doing the post-install optimize fixed the problem. That time. Or maybe it didn't? Because...
    Two weeks ago the FW ports on the "new" logic board blew, just like the original, so AppleCare gave me a third logic board.
    Same deal as before with all the pro apps wanting to re-register because they are seeing a different serial number in firmware.
    Also, just like before, I have this trouble with DVDSP. But I can't fix it this time.
    In the past three days (two of which were really one "large" day with no sleep period in between) here's what I have done in an attempt to fix this, without success.
    I dumped the receipts for the DVDSP v3 installs and upgrades, then I reinstalled the DVDSP components from my original disc, and then reinstalled the online 3.02 upgrade. No go.
    I did all of the above, except this time I found an Apple TechNote on deinstalling DVDSP v2. So using that as a guide I did my best to delete the app and all its supporting files, as well as the install receipts, before doing a fresh install of the app and the v3.02 upgrade. No go.
    I did a plethora of hard drive and system maintenance thinking that perhaps some files had been misplaced, a hard drive directory corrupted, a bundle bit here or there un-set, a few system libraries de-optimized, various font and system caches corrupted, as well as numerous log files too filled up with "essential" data to run correctly therefore in need of deletion.
    Along with anything else I could think of based on my 20+ years of supporting Macs in a production environment. Again, no go.
    So I deleted all the DVDSP files and receipts from my boot drive again. Then I dumped all the install receipts for OS 10.3.9 and ran the "combo" version installer for that OS upgrade. Next I dumped the receipts for the Security Updates and reinstalled those. Then I did drive maintenance, OS permission fixing and optimizing. Then reinstalled DVDSP and friends. Still no go.
    But my version of the app that is on my backup hard drive that I cloned right before taking the Mac to the shop for the 3rd logic board still runs just fine. I boot off that drive (connected via Firewire) and DVDSP will run fine.
    I'm confused.
    Now I'm not inclined to spend a lot more time on this since my DVDSP 4 upgrade is due for delivery any day now, and I'm sure that will work OK. Especially since I'm planning on moving to Tiger at that point, too.
    But in the meantime, it sure would be nice to know what happened to my "regular" copy of DVDSP.
    Can anyone figure this out, or at least give me some new ideas on now to troubleshoot this?
    Apple Support refuses to help me because I'm still using an "unsupported" version of DVDSP. Even though I'm still using it because my purchased upgrade is being delivered via "media mail" - the US Postal Service's version of the proverbial "Slow Boat."
    That was a difficult and frustrating conversation withthe Apple Support rep, too, let me tell you. I've been a fan, user, customer, supporter, and evangelist for Apple hardware and software since 1984. But when that voice on the other end of the phone essentially told me that...
    a) if I was not using the latest and greatest version of the software, AND...
    b) if I was not willing to spend several hundred dollars each year on support fees...
    ...then I was basically on my own and they would not help me. Worse, they didn't care that I was an old and loyal customer, or that I was even a stockholder in the company. The support system essentially told me to get stuffed. Yee-e-e-ow!!!!
    I was especially mad about this because I have this nagging suspicion that this whole problem I'm having with DVDSP is somehow related to some kind of copy protection scheme that Apple has going on but doesn't talk about.
    I mean why did I need to re-enter the serial numbers for all my pro apps when I changed logic boards? Is my problem being caused by some Pro App component that knows enough to stop working when it thinks it's been bootlegged, but doesn't know enough to trigger a re-registration of itself.
    At this point, that idea is beginning to sound more and more plausible as the cause of my trouble.
    Anyway, this problem is seriously hurting my workflow. I'm out of ideas and I need some guidance from the collected wisdom of the forum to solve this problem.
    Thanks in advance.

    I didn't see anywhere that you had downloaded and
    installed the latest proApplication Support file. If
    you haven't, you should do this next:
    http://www.apple.com/support/downloads/proapplications
    upport31macosx1039.html
    Hal:
    I had reinstalled that ProApps Support version, but I hadn't done it since I deleted all the app files and such, then done a complete reinstall from the DVD.
    So I just downloaded it afresh, and then installed it. Then I restarted, and then repaired permissions with Disk Utility.
    Still no go.
    I'm bamboozled. I thought I knew something about this stuff, but I guess it's good to stay humble.
    However, my 5.1 studio upgrade just arrived in today's mail. I think I'm going to take a chance. I'm between projects right now. So I'm going to upgrade my OS to Tiger>then 10.4.6 upd. Then I'll take a shot at installing the new FCP Studio upgrade and see what happens.
    Any comments or advice? Otherwise, wish me luck. I'll let you know how this works out with a post here.
    Sure wish I could figure out what's going on with my DVDSP v3, though. I really HATE to leave unresolved problems hanging out there. Seems like they always come back to bite you again if you don't deal with them.
    Thanks for the help.

  • Add a new button to BID Invitation screen

    Hi,
    How to Add a new button to Bid Invitation Screen in SRM?
    Thanks,
    Raveendra

    Hi
    Which SAP Version you are currently on ? What is the exact requirement ?
    If i understand you right, Incase you want to add a button to the existing screen template then it will require standard code change and also you need to plan out how will you will code the logic to activate the button.
    There is no BADI which can do this as this is not a SAP funtionality. You need to do a little bit of research on this to get the job done.
    Regards
    - Atul

  • PLM_AUDITMONITOR New Button

    Hi There,
    I'd like to put a new button on the PLM_AUDITMONITOR detail screen, I've checked a number or BADis from the below list but none of them seem suitable, does anyone know if it is possible to add a new custom tab or button to an existing tab?
    /PLMPCV/QRM_LICENSE_AUDIT      BAdI: License Audit
    ARC_PLM_AUD_CHECK              Archiving Object PLM_AUD: Checks for Add-On-Sp
    ARC_PLM_AUD_WRITE              Archiving Object PLM_AUD: Archiving of Add-On-
    BADI_PLM_AUD_AUDIT_ROLES       Extensions to Roles in Investigations
    BADI_PLM_AUDIT_ACTION_TYPE     Definition of Action Types
    BADI_PLM_AUDIT_ALV             Changes to ALV Table in Audit Management
    BADI_PLM_AUDIT_DS              BAdI for Digital Signature
    BADI_PLM_AUDIT_LIITEM_SERVICE  Enhancements to List Items Services
    BADI_PLM_AUDIT_LIST_ITEM_TYPES Definition of List Item Types in Investigation
    BADI_PLM_AUDIT_OPTIONS
    BADI_PLM_AUDIT_STRUCTURE       Structural View for Investigations (Audit, FME
    BADI_PLM_AUDIT_TYPE            Context Menu Extension
    PLM_AUDIT_ACT_LINK             Audit: Linkage of Objects with the Corrective
    PLM_AUDIT_ALV_GRID             ALV Functions
    PLM_AUDIT_APPEARANCE           PLM Audit Management: Determine Display of Aud
    PLM_AUDIT_ATTRIBUTES           PLM Audit Management: Process Attributes of Au
    PLM_AUDIT_AUO_UPDATE           PLM Audit Management: Create, Change, and Dele
    PLM_AUDIT_AUP_UPDATE           PLM Audit Management: Create, Change, and Dele
    PLM_AUDIT_AUTH_CHECK           Activities in Audit Processing
    PLM_AUDIT_BATCH_JOBS           Scheduling of Background Jobs
    PLM_AUDIT_CALCULATE            Calculation/Valuation of an Audit
    PLM_AUDIT_COR_UPDATE           PLM Audit Management: Create, Change, and Dele
    PLM_AUDIT_GOS                  PLM Audit Management:Generic Object Services -
    PLM_AUDIT_HELP_LINKS           PLM Audit Management: Enhancement for Maint. o
    PLM_AUDIT_IDENTIFIER           Identification of Objects in Audit Management,
    PLM_AUDIT_LAST_GET             Flexibilization of "Display Last Associated Au
    PLM_AUDIT_OBJECT               PLM Audit Management: Audit Object Enhancement
    PLM_AUDIT_QUEST_CONT           Controlling Procedure for Audit Questions
    PLM_AUDIT_QUEST_COPY           Assignment of Question Lists to Audit
    PLM_AUDIT_QUN_UPDATE           PLM Audit Management:Create, Change, and Delet
    PLM_AUDIT_SAP_TXT              PLM_AUDIT_SAP_TXT   Detach Long Text Managemen
    PLM_AUDIT_SEARCHHELP           Enhancement for Search Helps
    PLM_AUDIT_SIGNATURE            Provide Signature for Audit
    PLM_AUDIT_STATUS               PLM Audit Management: Audit Component Status M
    PLM_AUDIT_TEXT_ID              PLM_AUDIT_TEXT_ID   Definition of Text Types P
    PLM_AUDIT_XML                  XML Generation

    Have you looked at how SnippetRunner in the SDK implements the control strip for it's panel? It appears to me all the widgets are just regular widgets put in a ErasablePrimaryResourcePanelWidget, where its binding is set to kBindBottom | kBindLeft | kBindRight,. And of course, you want to specify the ErasablePrimaryResourcePanelWidget is in the bottom of your panel.
    thanks!
    lee

  • ALV  List Layout add new button  and modify Append Row Button Text and Logi

    Hi All,
    I am working on Employee custom development Application in Webdynpro ABAP>
    In my ALV list Layout  I have to add new  two Buttons  Top or Bottom of the ALV List.
    If I am adding I have to add logic for those Buttons. How to add and add logic for those buttons.
    as well as I have to Change the  Text  for  Existing Button ''Append Row''    to  "ADD NEW ROWS"
    and I have to add logic in this button while Append New Row I have to generate ID no for New Rows .
    Kindly help/advice  me to proceed further.
    Thanks in advance.
    Dav

    Hi Dav,
    To Add buttons please refer this thred,
    ALV with user-defined buttons on toolbar in wd abap
    To change or rename text in ALV standard buttons, please refer this ...
    How can i change the text of an standard button in ALV?
    and also see this article on self defined functions...
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/101df93f-4b5c-2910-14aa-9eb0338c2110?quicklink=index&overridelayout=true
    Thanks,
    Kris.
    Edited by: kissnas on Feb 22, 2011 5:59 AM

  • Presentation Director missing the "NEW" button

    Hi
    Does anybody know why the"NEW" button is gone in newer versions of Presentation Director?  We have been using this for years but now we have to import new profiles or change old profiles.
    Fn + F7, "choose more setting", there we have Copy,Edit, Delete, Apply and Capture but the new button is gone.
    Thank you!
    Valdimar

    You've probably figured this out by now, but for someone stumbling across this...
    Use the "Copy" button, then rename the copied profile.

  • Trying to change my region from uk to New Zealand but comes up with incomplete pass how can I get round this ?

    Trying to change my region from uk to New Zealand but comes up with incomplete pass how can I get round this ?

    Thanks for the Clarification...
    GlenieBoy wrote:
    ... method of payment is not valid in this iTunes Store as it's set to uk..?
    Try This...
    Close All Open Apps... Sign Out of your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear...
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons...

  • F-32 new button "Cash Disc Due" in ECC6

    Hello all,
    Does anyone know what is the new button in F-32 "Cash Disc Due" in ECC6?
    any documentation will be helpful.
    thanks,
    Michal

    Hi
    The cash discount which is taken into account during clearing providing the cash discount has not been set to inactive. The cash discount displayed there can be changed within the framework of the tolerance limits for users and customers/vendors.
    Regards
    Tanmoy

  • New button under Sales doc menu under "Environment"

    Hello,
    We have a requirement to add a new custom button under Sales document menu. Under "Enviornment" menu we have a standard button as "Changes". We want to add a custom button below this, to call a custom report. Is there a way to add a new button over there?
    Thanks & Rgeards,
    Amit

    Hi Murali,
       Where happening it ?
       If you go to: Content Administration->km content->choose a folder and try to upload a document, can you do it ?
       Which layout set are you using ?
       Have you enable debugging setting to see rendering information  (System Administrator->System Configuration->CM-KM->User interface->Advanced options) ?
    Patricio.

  • New Button : Custom Action

    Hi Experts,
        i have a VC application which display Sales Order Information based on the Customer, Material & Sales Organization. There are two buttons submit & reset everything works fine. Now i wish to add new button validate with custom event like checking if entry has been made for all the 3 fields.
    so i create a btnValidate & custom Action actValidate, where should i enter the logic of what should happen on actValidate ??
    i am on NW CE EPH1    visual composer 7.1
    Regards
    Prashant

    Hi Prashant 
    In order to validate the 3 fields (check they are not blank) using your new button follow the next steps:
    1. For each of the 3 fields you wish to validate do the following:
    Right click the field and from the context menu select Configure. In the Validation area of the Configure  task   panel u2013 where you set the validation rules and the validation behavior check the Required box (or set a specific rule in the Rules field) and change the Behavior to Severe (instead of Normal).
    2. Right click your new button and from the context menu select Action...
    After assigning your custom action to the button, in the Validation area of the Define Action Dialog Box (The right tab) of your new button  - where you set the validation scope (none, Control, Element, Window) make sure this scope is set to Element (this is the default) and change the validation behavior to Permissive (instead of Normal).
    I Hope this helps, for any further information feel free to continue the thread or contact me.
    Also, a more detailed information about using the validation rules can be found [here|http://help.sap.com/saphelp_nwce10/helpdata/en/ed/5f05491f814bb08865213d29f36af5/frameset.htm]
    Regards
    Yogev

  • New Button : New action

    Hi ,
    I have a form with 2 buttons (Ok and Cancel). I've added a new button (Update) with a custom action (Update)  . When i click on this button, it should execute e aservice (RFC FM). I link the output of the form to the Service Function with event name (update). But the FM is not called at all ? I use Breakpoints but the RFC FM is not called ? ANy idea ?

    Hi Prashant 
    In order to validate the 3 fields (check they are not blank) using your new button follow the next steps:
    1. For each of the 3 fields you wish to validate do the following:
    Right click the field and from the context menu select Configure. In the Validation area of the Configure  task   panel u2013 where you set the validation rules and the validation behavior check the Required box (or set a specific rule in the Rules field) and change the Behavior to Severe (instead of Normal).
    2. Right click your new button and from the context menu select Action...
    After assigning your custom action to the button, in the Validation area of the Define Action Dialog Box (The right tab) of your new button  - where you set the validation scope (none, Control, Element, Window) make sure this scope is set to Element (this is the default) and change the validation behavior to Permissive (instead of Normal).
    I Hope this helps, for any further information feel free to continue the thread or contact me.
    Also, a more detailed information about using the validation rules can be found [here|http://help.sap.com/saphelp_nwce10/helpdata/en/ed/5f05491f814bb08865213d29f36af5/frameset.htm]
    Regards
    Yogev

Maybe you are looking for

  • XY graphing with large amount of data

    I was looking into graphing a fairly substantial amount of data.  It is bursted across serial. What I have is 30 values corresponding to remote data sensors.  The data for each comes across together, so I have no problem having the data grouped.  It

  • What is a DEPENDENCY file?

    I need to import a certain class in my program. Say I need one.two.Three When I look in folder one, there is no class Three, only a one.two.DEPENDENCY file. What is a dependency file and where is the class? Thanks, cmp2

  • Contact E-mail property

    I need to display the page group Contact E-mail property from a UI template. What table is it in?

  • Currently restricted from purchasing services or r...

    I am receiving this message on my skype, so far I am sure, I have not violaited any terms and conditions of skype. All of a sudden, I got this error.

  • NI8451 SPI data transfer speed and SCLK setup time adjustment

    I'm using NI USB-8451 SPI bus to do communication. I can not reach the speed of communication 4MHz (NI USB-8451 module advertises speeds up to 12MHz). Actrually the data transfer speed is much slower than 4/8 Mb/s. The 16k*16bit data cost around 800m