Validation Rule for the coding mask and project profile

Hi,
I have two project profile and two coding masks. I want one project profile to be only used by defined coding mask for that profile.
So i have maintained a validation rule as follow -
Prerequisite - Project Def. :1-3: = 'A5M'
Check - Project Profile = 'ABC'
And if the above check is failed then give me an error message.
Now i am trying to add the project profile other than 'ABC' for the coding mask starting with 'A5M', but still the system is not giving me an error message configured and allowing me to save the project.
Is there any other thing which is tobe activated other than assigning the validation rule in project profile and clicking the Autom. validation check box in OPSA.
Request to confirm share the views.
Thanks

Hi,
Try the following, this must work.
Prerequisite
PROJ-PROFL = "ABC"
Check
PROJ-PSPID: 1-3: = "A5M"
Message
Project profile & Coding mask wronly assigned
Repeat the same for other project profiles also.
Enter this validation in your project profile. Check in "Auto Validation"
In transactinal data,
Enter project def and select the wrong profile. when you save the project system will show you the error message.
Hope this will help you.
Regards
Prabu

Similar Messages

  • Please clarify rules for the buy iphone and get $200 off ipad

    Buy an Iphone and get $200 off an ipad----This offer is posted on the home page of Verizon but I cannot get it to work on my plan even though I have upgrades on 2 lines. It will not let me do it. Could not get through on customer service- cut off after waiting an hour and no local store knew about this offer.

        Sweeneys we'll clear up the confusion! The promotion is available when trading in your current iPhone and upgrading to either an iPhone 6 or iPhone 6 Plus. For all the details on our Trade in and Trade Up Promo, please visit http://bit.ly/1i1vrCu
    AshleyS_VZW
    Follow us on Twitter @VZWSupport

  • [PKGBUILD] new rulez for the creation

    Hi,
    I'll be perhaps a new users.
    I was looking for a new linux distrib, I come from slackware then freebsd, tried Gentoo for a long, but not satisfied
    I'm want sources+packages, and find out that Arch could the one
    I've looked to pacman, abs, etc., I've looked to some PKGBUILD, and notice there wasn't any (perhaps wrong) options that could be pass in order to modify a bit the way packages are build from sources, as it's done in FreeBSD.
    I don't want something like gentoo USE flags, too much options I think, and some are not really usefull.
    I've read the rules for the creating PKGBUILD, and here is my idea (sur not the only one, don't blame me if it was already discuss and rejected).
    I think we can put some predefined variables within the packages, those variables are independant from the installed packages, except if they need the installation of an extra package for dependencies. (for FreeBSD users, it's exactly what is done in the ports). By default the behaviour is the one define by the maintainer.
    To illustrate I've modify a bit the vim PKGBUILD :
    Original :
    # $Id: PKGBUILD,v 1.19 2005/06/22 02:37:09 judd Exp $
    # Maintainer: judd <[email protected]>
    pkgname=vim
    pkgver=6.3
    pkgrel=5
    pkgdesc="VIM - Vi IMproved console"
    url="http://www.vim.org"
    depends=('glibc' 'ncurses')
    backup=(etc/vimrc)
    source=(ftp://ftp.vim.org/pub/vim/unix/$pkgname-$pkgver.tar.bz2
    vim.patch filetype.patch)
    md5sums=('821fda8f14d674346b87e3ef9cb96389' '386938c7bd7890b7d1900615f40ee9a7'
    '916fd94f2546007c637ad08e88400d1a')
    build() {
    cd $startdir/src/vim63
    patch -Np1 -i ../vim.patch || return 1
    patch -Np1 -i ../filetype.patch || return 1
    cd src
    ./configure --prefix=/usr --localstatedir=/var/lib/$pkgname
    --disable-gpm --with-x=no --enable-gui=no --enable-multibyte
    --enable-cscope
    # --enable-perlinterp --enable-pythoninterp --enable-rubyinterp
    make CPPFLAGS=-DSYS_VIMRC_FILE="/etc/vimrc" VIMRTDIR= auto/pathdef.c
    make CPPFLAGS=-DSYS_VIMRC_FILE=\"/etc/vimrc\" VIMRTDIR= || return 1
    make DESTDIR=$startdir/pkg VIMRTDIR= install
    cd $startdir/pkg/usr/bin
    ln -sf vim vi
    mkdir -p $startdir/pkg/etc
    cp $startdir/pkg/usr/share/vim/vimrc_example.vim $startdir/pkg/etc/vimrc
    My proposal :
    # $Id: PKGBUILD,v 1.19 2005/06/22 02:37:09 judd Exp $
    # Maintainer: judd <[email protected]>
    pkgname=vim
    pkgver=6.3
    pkgrel=5
    pkgdesc="VIM - Vi IMproved console"
    url="http://www.vim.org"
    depends=('glibc' 'ncurses')
    if [ ! -z $WITH_PERL ];then
    depends=($depends 'perl')
    fi
    if [ ! -z $WITH_PYTHON ];then
    depends=($depends 'python')
    fi
    if [ ! -z $WITH_RUGBY ];then
    depends=($depends 'ruby')
    fi
    backup=(etc/vimrc)
    source=(ftp://ftp.vim.org/pub/vim/unix/$pkgname-$pkgver.tar.bz2
    vim.patch filetype.patch)
    md5sums=('821fda8f14d674346b87e3ef9cb96389' '386938c7bd7890b7d1900615f40ee9a7'
    '916fd94f2546007c637ad08e88400d1a')
    build() {
    cd $startdir/src/vim63
    patch -Np1 -i ../vim.patch || return 1
    patch -Np1 -i ../filetype.patch || return 1
    cd src
    PKGBUILDOPTIONS=""
    if [ ! -z $WITH_PERL ];then
    PKGBUILDOPTIONS="$PKGBUILDOPTIONS --enable-perlinterp"
    fi
    if [ ! -z $WITH_PYTHON ];then
    PKGBUILDOPTIONS="$PKGBUILDOPTIONS --enable-pythoninterp"
    fi
    if [ ! -z $WITH_RUGBY ];then
    PKGBUILDOPTIONS="$PKGBUILDOPTIONS --enable-pythoninterp"
    fi
    ./configure --prefix=/usr --localstatedir=/var/lib/$pkgname
    --disable-gpm --with-x=no --enable-gui=no --enable-multibyte
    --enable-cscope $PKGBUILDOPTIONS
    # --enable-perlinterp --enable-pythoninterp --enable-rubyinterp
    make CPPFLAGS=-DSYS_VIMRC_FILE="/etc/vimrc" VIMRTDIR= auto/pathdef.c
    make CPPFLAGS=-DSYS_VIMRC_FILE=\"/etc/vimrc\" VIMRTDIR= || return 1
    make DESTDIR=$startdir/pkg VIMRTDIR= install
    cd $startdir/pkg/usr/bin
    ln -sf vim vi
    mkdir -p $startdir/pkg/etc
    cp $startdir/pkg/usr/share/vim/vimrc_example.vim $startdir/pkg/etc/vimrc
    No modification needed to abs or pacman or anything else.
    no more need, create our own PKGBUILD in order to get some usefull options, the default behaviour is still the same.
    Are we allowed to do that (I've seen that the less we use vars the better it is)
    I think there could be a rule to define the use of such can of vars, in order to prevent getting to much options like gentoo.
    I hope I was clear, waiting for your suggestion

    baptux wrote:I think if it's written as a rule, and every maintainer follow this rule, there won't be any problem nor a hudge number of options
    it's just that simple! ok everyone, get to work!
    baptux, this isn't going to happen.  it doesn't make sense in Arch.  I think this happens about twice a month "Hey, I found this neat feature in distro X and want to shoe-horn it into Arch!!" and then a few weeks later, that user is never heard from again.
    PKGBUILDs are made to be simple and straightforward.  Can you imagine a package with, say, 20 of your "arch-flags" (you seem offended when I call them use flags, which is exactly what they are)? And what about, say, adding an "arch-flag" to vim which also requires a recompile of, say, cscope? now you get into the realm of cyclic recompiles... ok, so I want to "use" feature "Z" with vim, which requires cscope to be recompiled to support feature "Y", but feature "Y" requires perl to be installed, and also compiled with feature "Z"... it's just too complicated...
    The Arch Way wrote:If you try to hide the complexity of the system, you'll end up with more complex system.
    You're trying to extrapolate configuration options made by developers to a system which anyone can use like switches without knowing the full impact (i.e. USE=gtk emerge vim, ENABLE_GTK=y makepkg, etc).  This is how you get from 150 lines (xorg PKGBUILD) to 3000+ lines (xorg ebuild).
    It's too impractical and goes against the standard arch mantra of simplicity and the KISS philosophy.
    I'll use a real example based on the PKGBUILD you've changed: in my entire time I've been with arch, no one has ever complained "why isn't vim compiled with option X??" people who cared (like myself) simply used abs to get the PKGBUILD, added "--enable-pythoninterp" at the right place and ran "makepkg -i" - problem solved... no wacky "arch-flags", no excess work on the package maintainers... it's simple, and simplicity rules here

  • Validation for Project defination and project profile

    Hello,
    I have to create validation for Project Definition and Project Profile.User requirement is when the project (Exp: Z/0120) is creating with project profile Exp: Z0001_Z system should allow , If user is trying to select other than this profile system has to give the error.
    I tried below validation but it is not working:
    Prerequisite - PROJ-PSPID = 'Z'
    Check   -  PROJ-PROFL = Z0001_Z
    Kindly any suggest how can i give the validation for the same.
    Regards,
    Lakshmi.
    Message was edited by: Mohamed Rafi - Many threads available on this topic search for those.

    Hi,
    Have you tried to save the project? Because validation rule will call at time of saving the Project.
    I have created the same but for start with 'U'
    When I create project and at time of saving, validation rule will call and system throw error if I don't create project start with 'U'.
    Now If I am creating here, start with 'J'. System  is throwing error as per validation rule.
    Also Pl check if you have assigned same correct rule on project profile.
    Regards
    Shishir

  • How to set the default settment rule for the same kind project.

    hi experts:
       the project of the same kind of the project profile have the same settment rule to one account (G/L).
    how to set the default settment rule for the project of  this kind of the project profile.
    regards

    Hi,
      You need to define the settlement profile and allocation structure.
    next you need to define the  Strategy for settlement rule.
    navigation-PS> costs> automatic and periodic allocations> settlement> Settlement rule for WBS
    --> Define strategy for settlement rule.
    Select the strategy and click on settings. in that new entries, check the Acc Assg element, enter Settlement profile and mention accass category as reposnsible cost center.
    Save this transaction.
    Now create a project assgin responsible costcenter for the WBS element in the project buider and save the transaction.
    Now run CJB2 transaction for the project, settlement rule will generated automatically.
    even you can configure the same for profitability segment.
    Rgds
    Sudhir Reddy

  • HT1311 I have done all of the above but when I try to update my Apps it still says that my ID is not valid for the US store and I must switch to the UK? My settings already say I am with the UK? What do I do?

    I have done all of the above but when I try to update my Apps on my iphone it still says that my ID is not valid for the US store and I must switch to the UK? My settings already say I am with the UK? What do I do?

    ok well like lllaass said, most apps require 4.3 or later iOS software. chances are since the apps worked before, the apps themselves got updated and will no longer work with your software version.

  • "Validation" enabled for the composite and my testsuites are not working

    I have posted the below issue in Test suite in JDEV - Studio Edition Version 11.1.1.2.0 But I felt that this is the right forum, so posting this again here:
    I have mediator calling bpel. Mediator is exposed as web service. Whenever I run the service using "Test" button on EM with validation turned on
    then it works and the process will be completed.
    But I have initiate xml in the test suites. I select "UnitTests" and select my test case xml that was associated to "Initiate Message for operation",
    I see that the process is still in the "Running" state. I put in exactly the same values as I use for testing the service from EM.
    Did anybody face this issue? This happens only when we turn the validation to "Enabled" in EM.
    I have "Validation" enabled for the composite and my testsuites are not working. When I test using unit tests, I am only seeing "Running" status of the processes and these are not getting completed.

    Hello there, RevDebMN.
    The following Knowledge Base article is always a great fallback article for troubleshooting Mail issues:
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/ts3276
    Particularly useful, in your case:
    Mail Connection Doctor shows one or more red dots () in the account Status column
    Check your Incoming IMAP or POP and Outgoing SMTP email account settings
    Use Apple's online Mail Setup Assistant to discover what the correct settings should be for both your Incoming (IMAP or POP) and Outgoing SMTP email servers. If your email service provider is not listed in the Mail Setup Assistant, visit your email service provider's website or contact their support staff to get the correct settings. You can use this "cheat sheet" when asking your email service provider about the settings you need.
    After you have the correct email service provider settings, make sure Mail is configured properly.
    Click here if your Incoming and Outgoing email account settings are correct, but the issue persists
    What alert message is shown in the Mail Connection Doctor "Details" column affected account?
    Click here if a "Could not connect to this (server type) server…" message appears
    Click here if a "Trying to log in to this (email server provider name) account failed…" message or any other error message appears
    If the issue persists, then you'll want to remove the account and then add it again using this article:
    Mail (Mountain Lion): Remove accounts
    http://support.apple.com/kb/PH11794
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • I am trying to log into the itunes store for the first time and it asks me to review my account so I do but every time I get to the bit where you fill in your bank details and address it tells me my payment method was declined and that its not valid?

    I am trying to log into the itunes store for the first time and it asks me to review my account so I do but every time I get to the bit where you fill in your bank details and address it tells me my payment method was declined and that its not valid?

    Same here and this is driving me crazy. I can buy, but can't upgrade. Grrr.

  • HT4740 i already did the Hidding part and later moved the events and projects to the FCP events and projects folder . I still cannot share - keep getting this message "THE SHARE OPERATION 1080P FOR APPLE DEVICES (10 MBPS) HAS FAILED. Quicktime Error -50

    i already did the Hidding part and later moved the events and projects to the FCP events and projects folder . I still cannot share - keep getting this message "THE SHARE OPERATION 1080P FOR APPLE DEVICES (10 MBPS) HAS FAILED. Quicktime Error -50
    I dont know what else to do to be able to share my project - I know i updated FCPX before i shared this project  but i dont know what im doing wrong

    masterpieces wrote:
    later moved the events and projects to the FCP events and projects folder .
    Can you explain in detail what you did?
    Do any other shsre destinations complete? If not, do you get the same error message?

  • Tool for the coding of pl/sql and drawing the flow chart

    dear sir,
    please kindly recommend one tool for the coding, debuging the
    pl/sql and drawing the flow chart.
    thanks

    Hello,
    You can use Tools Provided by KeepTool It includes,
    1. ER Diagrammer
    2. SQL Editior
    3. HORA,DBA Tool
    4. Pl/SQl Debugger
    www. keeptool.com
    www.keeptool.de
    Adi

  • I have an iPad 2 and want to use video mirroring. I bought a VGA adapter for the iPad, iPhone and iPod so that I could plug the iPad into any monitor, TV, projecter, etc without it being an HD device. I plug it in and it appears the monitor has no communi

    I have an iPad 2 that I want to use with video mirroring to give lectures with. I bought a VGA Adapter for the iPad, iPhone, and iPod as I want to be able to connect with any TV, monitor or projector for lectures, not just an HD device.. After plugging in my iPad to the VGA adapter and then to the video device, it appears that there is no connection with the iPad. Anybody have any thoughts?
    Thanks, Steve

    This article outlines how to use the Apple AV adapter or VGA Adapter to connect your iPhone 4, iPhone 4S, iPad, or iPod touch (4th generation) to an external TV, projector, or display. http://support.apple.com/kb/HT4108
    This explains how to set up AirPlay Mirroring, and how to troubleshoot AirPlay Mirroring issues that may occur between your iPhone, iPad and Apple TV (2nd generation).  http://support.apple.com/kb/TS4085

  • Error (Data mining): The specified mining structure does not contain a valid model for the current task.

    I'm trying to run the Cross validation report on a mining structure that contains just Microsoft Association Rules mining model. In Target Attribute, I've tried:
    Actual(Service Description).SE value
    Actual([Service Description]).[SE value]
    Actual(Service Description)
    Actual([Service Description])
    just because i don't know what is the exact correct format, but none of them worked, and I always get the following error:
    Error (Data mining): The specified mining structure does not contain a valid model for the current task.
    the following is my mining model structure

    Association rules does not allow for cross-validation
    Mark Tabladillo PhD (MVP, SAS Expert; MCT, MCITP, MCAD .NET) http://www.marktab.net

  • How to Add/Edit validation rule for Column in ADf table(Jdeveloper11g)

    I am working on Jdevloper11g with ADF table. There i have one column where user can enter numeric value in range 1-1000 .So i have to add validation as such he/she can't enter value apart from 1-1000 range also not any other charcters.
    I know on form, if i select attribute from binding and right click i will find one option "Edit Vlaidation rule..." and from there i can change validation rule for perticular field.
    But how i can achive same on Column's filed??
    Thanks for all help.
    Jaydeep

    Hi Barnislav,
    I tried the way you mentioned but i am getting below exception.
    Could not complete Edit validation Rule... Because it would result in an invalid document
    oracle.bali.xml.model.XmlInvalidOnCommitException: SEVERE: Element RangeValidationBean not expected [ node = RangeValidationBean ]
    <tree IterBinding="searchConfigurationDataIterator" id="searchConfigurationData" ApplyValidation="true">
    <nodeDefinition DefName="com.oraclecnm.util.search.SearchAttributeBean">
    <AttrNames>
    <Item Value="searchAttributeName" />
    <Item Value="searchAttributeId" />
    <Item Value="weightage" />
    <Item Value="isAttributeSearchable" />
    </AttrNames>
    </nodeDefinition>
    <RangeValidationBean OnAttribute="weightage" ResId="pages.SearchConfigurationPageDef.searchConfigurationData_Rule_1" Inverse="false" Severity="Error" Name="searchConfigurationData_Rule_0" OperandType="LITERAL" MinValue="1" MaxValue="1000" />
    </tree>
         at oracle.bali.xml.model.XmlModel._validateSubtree(XmlModel.java:3669)
         at oracle.bali.xml.model.XmlModel._validateDocument(XmlModel.java:3577)
         at oracle.bali.xml.model.XmlModel.__precommitTransaction(XmlModel.java:2825)
         at oracle.bali.xml.model.XmlContext.precommitTransaction(XmlContext.java:1166)
         at oracle.bali.xml.model.XmlContext.__precommitTransaction(XmlContext.java:1653)
         at oracle.bali.xml.model.XmlContext.__commitTransaction(XmlContext.java:1684)
         at oracle.bali.xml.model.XmlModel.__requestCommitTransaction(XmlModel.java:2898)
         at oracle.bali.xml.model.XmlModel.commitTransaction(XmlModel.java:586)
         at oracle.bali.xml.model.XmlModel.commitTransaction(XmlModel.java:556)
         at oracle.bali.xml.model.task.StandardTransactionTask.__commitWrapperTransaction(StandardTransactionTask.java:469)
         at oracle.bali.xml.model.task.StandardTransactionTask.runThrowingXCE(StandardTransactionTask.java:208)
         at oracle.bali.xml.model.task.StandardTransactionTask.run(StandardTransactionTask.java:103)
         at oracle.adfdtinternal.model.ide.validation.RuleEditAction.actionPerformed(RuleEditAction.java:35)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:357)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1220)
         at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1261)
         at java.awt.Component.processMouseEvent(Component.java:6041)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3265)
         at java.awt.Component.processEvent(Component.java:5806)
         at java.awt.Container.processEvent(Container.java:2058)
         at java.awt.Component.dispatchEventImpl(Component.java:4413)
         at java.awt.Container.dispatchEventImpl(Container.java:2116)
         at java.awt.Component.dispatchEvent(Component.java:4243)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4322)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3986)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3916)
         at java.awt.Container.dispatchEventImpl(Container.java:2102)
         at java.awt.Window.dispatchEventImpl(Window.java:2440)
         at java.awt.Component.dispatchEvent(Component.java:4243)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)

  • Validation Rule for making Trading Partner mandatory in FB50

    Hi,
    Validation Rule for making Trading Partner mandatory in FB50
    I am trying to make trading field mandatory in FB50. If trading partner is not entered for the line items in FB50, User should get a  error
    I have tried the  follwiong (at the Line Item level) and it does not work:
    1)
    Prerequiste:
    Transaction code = 'FB50'
    Check:
    Trading Partner = ''
    Message:
    2) 
    Prerequiste:
    SYST-TCODE = 'FB50'
    Check:
    Trading Partner = ''
    Message:
    Any ideas?

    The message will only be issued when the result of the check is false.  If you want to issue an error when a trading partner value is not entered, then your check needs to be Trading partner &lt;&gt; ''.  If the user enters a Trading partner value, the check will be true and no message will be issued.  If the user does not enter a Trading partner, the check will be false and the message will be issued.

  • Increase the coding Mask of the WBS

    Hi SAP Experts,
    My client would like to increase the WBS levels , as currently we have configured the code mask with only four level along with project definition (XX-0000000.00.00.00.00) , we need to add two levels more like (XX-0000000.00.00.00.00.00.00).
    Is there any way to change the coding mask without any impact of the existing data .
    Thanks

    Thanks again,
    I have added one more level to the existing mask to complete the mask with 24 char. like this (XX-0000000.00.00.00.00.0) , a  new message appearing (Cannot make this change to the editing mask ) .. ??
    Is there any way to change the current mask with one more numeric level .
    Waiting for your reply
    Thanks

Maybe you are looking for

  • SAPRouter set up in Solman 7.1 sr1 release

    Dear All, we completed the installation Of Solman Server 7.1.  Now we are in the process of activity "Configuration Of SOlman Server ". RFC Destination SAP OSS not working. Connection and Authorization test for SAPOSS is failing with "Connection Erro

  • How to use iTunes gift card without shipping

    How can you purchase a gift card on Apples website and then use the credits immediately!?

  • Apple Magic Mouse to iPad

    Can I connect Apple Magic Mouse with my iPad 3 ?

  • Strange behaviour of OS X Server DNS with IPv6 reverse zones

    I am running a full IPv4 / IPv6 dual stack setup across several machiens including a server (OS X 10.9.1 / OS X Server 3.0.2). I also have IPv6 Internet access via TunnelBroker and have a /64 prefix assigned to me. All my systems have valid and corre

  • Spacebar Scrolling Bug/Feature - CS4

    Hi guys, recently upgraded to CS4 - loving it, so far - but I have come across a feature/possibly a bug that I'd like to switch off. The best way I can explain it is this: When I have a tool selected, pressing the spacebar + another tool's hotkey (ie