Validation problem for Network Header

Hi Colleagues,
I try to use the following validation in Network Header at the prerequisite section:
CAUFVD-PROFID = 'YP00020' AND CAUFVD-PRONR :1-3: = 'WBC'
However, I get a system error message as followed:
Formula cannot be saved because it is incomplete
I will be glad for any idea how to solve this issue.
Thanks in advance and Best Regards
Nir

Hi,
I tried the following in my system and it did gave me the green light.
CAUFVD-PROFID = '0000002' AND CAUFVD-PRONR ":1-3:" = '12.00002'
Maybe this will help you.
Regards
Sreekanth

Similar Messages

  • Validation is not working properly for network header

    Hi,
      I have created  a validation rule at network header level
    Pre Requisite:
                         If the network profile is a particular value system should check for a particular network type. If the check is not met ,error should be thrown.
    But the system is behaving like this.
    It is going to pre requisite .If the pre requisite is met,it is throwing error.
    Any idea, why system is behaving like this

    Hi,
    Check the boolean logic in the validation.
    Regards,
    Mrinal

  • Validation in the network header for the responsible cost center field

    Hi Experts,
           I want to do the validation for the network header that, the cost center in responsible cost center field of WBS & network should be same... If the user enters other than WBS in the network it should give an error message....
    when i am trying to do validation in the network header i am  unable to see the filed of the responsible cost center for the WBS element.
    kindly suggest how can i achieve these....
    with regards
    Raman T S

    Hi Abdul,
       Thank you for your reply. There was no entries in the GB01. I went to SM30 & in view V_GB01C i maintained the entries
    as
    Boolean Class - 71 - WBS element
    Class type - B
    Table - PRPS
    Field - FKSTL.
    Next i went to maintain the validation in the T-Code OPSI, i am unable to find the field of the WBS element cost-center in the Network header.
    Can u tell me if i had done anything wrong in the above steps.
    what the user exit for the network can u tell me...
    With Regards
    Raman T S

  • Different user status profile for network header and activities

    Hi everyone!
    Is there any way to define different user status profile at network header level and at network activity level? As far as I know, it is only possible to enter a user profile at network type level, and both netwok headers and activities use the same statuses. Does it work this way?
    Thanks!
    Regards.
    Edited by: Thalos on Jul 2, 2011 12:27 AM

    Hi Punith, Hi abdul!
    Thanks for the reply!
    I've gone through the OPSC, but the thing is that here you define a user status profile at network plant level. But I need to define it at network activity level.
    The reason why I need this is because we have types of activities. We use network activities for client activities, for internal activities, to identify and follow-up risk management, etc. Each group of activities -since they have different usages- has different user status associated. But as I don't have any way to assign different user status profiles, all the activities have the same statuses, although  they will only use some of them.
    Thanks!
    Regards,
    Thalos.

  • Spry validation problem for long forms

    I used the Spry Validation Widgets for my form validation. It
    works great, BUT the problem is that if you have a very long form
    and the user doesn’t fill in one of the top required fields,
    it doesn’t scroll the browser back up to the required field,
    or present a message next to the submit button telling the person
    that not all required fields have been filled in. Nothing appears
    to happen at all, which would be confusing to users. I added my own
    message underneath the Submit button which reads "If this form does
    not submit, check for required entries at the top of this page.*",
    but is there a way to add an extra popup message that could appear
    next to the Submit button instead? (I know that we can't mix the
    Validate Form behavior with the Spry Validation widgets.)

    Came across the same issue as well. To solve this I added in
    three lines of code into the 'SpryValidationTextField.js' file that
    is created via DW. Inside of that include look for the following
    code:
    if (!Spry.Widget.Form.validate) {
    Spry.Widget.Form.validate = function(vform) {
    var isValid = true;
    var isElementValid = true;
    var q = Spry.Widget.Form.onSubmitWidgetQueue;
    var qlen = q.length;
    for (var i = 0; i < qlen; i++) {
    if (!q
    .isDisabled() && q.form == vform) {
    isElementValid = q
    .validate();
    isValid = isElementValid && isValid;
    return isValid;
    Right before you return the "isValid" parameter you want to
    check and see if the value is false. If it is, have the page
    refreshed to a specific html anchor. For example:
    if (isValid == false) {
    window.location.hash = "formtop";
    return isValid;
    Where "formtop" is would be the name of your html anchor tag
    on the page. So right before my html form starts I have:
    <a name="formtop"></a>
    Hope that helps ... enjoy!
    - Larry Daughenbaugh
    http://www.jplprod.com

  • XML validation: how to check ALL validation problem for XHTML

    I have a lot of documents in HTML format (not very good) that I would like to convert in XML (XHTML). I know it is not so easy and I would use this strategy in a Java program:
    1. Try to check the well-formness and validation with a XML parser (SAX or Xerces)
    2. If not valid: try to individuate ALL the problems the file has (*and not only the first one that halts the processing process*)
    3. Try to transform the HTML to a validable XHTML with some approach: regular expression or other methods
    So the questions I do to you are the following:
    1. What XML parser do you think is the best for this purposes? SAX or Xerces?
    2. How can I understand what are all the validation problems in the file and not only the first one (If I remember well XML parsers halt the parsing process at the first error...)?
    3. How can I transform the HTML to a valid XHTML? I have only to use RegEx or is there other tools to do this for XHTML and HTML problem?
    Thanks
    r
    Edited by: robertobat on Feb 21, 2009 7:09 PM

    >
    1. Neither of them. (Disregarding the fact that SAX and Xerces aren't in the same category and don't cover all the possibilities.I would say SAX default implementation in JRE and SAX parser in Xerces.
    2. I think you have "valid" and "well-formed" confused. And HTML isn't a dialect of XML so the idea of trying to use an XML parser to handle HTML isn't a good idea.I know very well what is the difference between valid and well-formed but I've used "validation" to represent all the conversion problem. But you are right. I'm convincing myself that using a XML parser as the first step is not a good idea.
    3. Well, this is the real question, isn't it? Those other two were just a waste. Don't screw about with regex, for one thing it doesn't work well for hierarchical structures and for another you won't finish in a finite time. Just use an HTML parser which can produce a DOM, like TagSoup for example. Or run them through HTMLTidy. You could also submit them to one of the internet sites which will validate XHTML for you.I've seen Tidy and its capability to convert an HTML to a XHTML and I think it is better then TagSoup because I have to implement this mechanism in a production environment and I want to use only open source projects that have a very long story and that are strong. But I'll see TagSoup as you say.
    I cannot use an Internet service to convert millions of private documents.

  • PROJECT PROGRESS ANALYSIS FOR NETWORK HEADER

    < MODERATOR:  Message locked.  Please read the [Rules of Engagement|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement] before posting next time. >
    Dear all,
    We can get the progress analysis data (tcode CNE5) for a network activity and also for WBS element. However data is not cumulated at the network header. Need your urgent help for getting this at the network header level. Is there a workaround like user exit for doing this?
    Also let me know available user exists for PS. Please guide me how to find an user exit for PS in particular.
    Regards,
    Prakash.

    arenk03 wrote:
    > Is there any possibility to assign progress versions to network activitys automatically when creating a new network activity?
    No , it is not possible.
    Please search the forum for further details, as it discussed many times earlier.

  • FM for Network header change and activity element change

    Hi Sdn,
    I am trying to find a FM where we can change the network hedaer details and the activity elements in SAP.
    I tried the FM BAPI_NETWORK_MAINTAIN
    it is giving me an error saying the reciver function missing.
    Thanks
    Naresh

    Hi Punith, Hi abdul!
    Thanks for the reply!
    I've gone through the OPSC, but the thing is that here you define a user status profile at network plant level. But I need to define it at network activity level.
    The reason why I need this is because we have types of activities. We use network activities for client activities, for internal activities, to identify and follow-up risk management, etc. Each group of activities -since they have different usages- has different user status associated. But as I don't have any way to assign different user status profiles, all the activities have the same statuses, although  they will only use some of them.
    Thanks!
    Regards,
    Thalos.

  • Network Header Start Date is not accepted by the system

    Hi,
      When I try to create a Network and put the start date I get an error message-
    Date 01.01.2011 is later than the validity period of the factory calendar
    Message no. CO032
    Procedure
    Enter a date which lies within the validity period of the factory calendar.
    And this does not allow me to cfreate the network.
    But the same date is accepted by the system for WBS element and activities.So I doubt it has anything to do with the factory calendar.
    Please assist.
    Thanks and Regards

    Hi,
    The validity end-period has been maintained as 2011 for the calandar.
    One difference I noticed is that for activity and WBS element the calendar maintained is 01.While for network header we do not have any explicit factory calendar concept but I think the system derives the Factory Calendar from the assigned Plant.But even in the Plant the Factory Calendar maintained has the validity end-period as 2011.
    In the network header's Basic Start field when I hit F4,then all the 2011 dates show in Italics-like the non-working SAT and SUN days.
    Thanks and Regards

  • Time in Network Header

    Hi all,
    How can i have basic start TIME and Basic finish TIME for Network header? In Plant maintance SAP has provided these fields in Service order header, but these fields are not available in Networks though technically SO and network are the same. Was it made purposefully. I need these fields in Networks very desperatly,
    Regards,
    Pavalavel.

    Hi all,
    My requirement is complicated... Ok you ask for it...
    I need to copy dates and times from one network activity to another network header and schedule the second network based on the dates and times received from the first network activity. This is done through an enhancement. When i am not able to copy time, the second network gets scheduled taking time as 00:00:00 start time. If the time in first network activity is say 23:00:00. My deviation would be 23 hours in the second network, this is an unacceptable deviation in a shop floor.
    Note : The second network cannot be a sub network of first network activity. Because i have a functionality called as MEB(maintainance event builder working there). The volume of this copying dates functionality is very huge, if i had this as a std functionality(through BAPI NETWORK MAINTAIN)... It would save lot of system resource...For your info this is not a new requirement... It is available in PM service orders and PP orders...if you are aware of scheduling types pls check it....
    for any info contact me at [email protected]
    Regards,
    Pavalavel.
    Edited by: Pavalavel Kanagavel on Mar 12, 2008 2:21 PM

  • Valid to date for BOM Header and Item

    Hello everyone,
    I have been searching for "valid-to" date for BOM header and Items since several days but no luck ..
    I know we can see it using transactions cs11/cs03 etc. But i wish to know the table where they are stored. As I need to extract them to BW.
    Any help will be highly appreciated.
    Thanks in advance!
    Regards,
    Anuj

    Hi Anuj
    In table STPO,the field AEDAT gets updated only when a change number is used,otherwise the valid to date will be shown nil here.
    And also ref the link
    Problem finding Valid To Date or Change number to on BOM
    pavan

  • ORA-19563:  header validation failed for file

    hai all ,
    i faced problem when restore database from tape backup ,
    my current database 11.1.0.7.0 , with AIX OS
    im running RMAN to restore with set new name to change poiting to new lun.
    but when end of restore show this :
    channel c05: restore complete, elapsed time: 01:00:34
    channel c06: piece handle=PRFN_DB_bk_31518_1_831778821 tag=HOT_DB_BK_LEVEL0
    channel c06: restored backup piece 1
    channel c06: restore complete, elapsed time: 01:01:39
    Finished restore at 22-NOV-13
    released channel: c01
    released channel: c02
    released channel: c03
    released channel: c04
    released channel: c05
    released channel: c06
    released channel: c07
    released channel: c08
    released channel: c09
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of switch command at 11/22/2013 15:13:04
    ORA-19563:  header validation failed for file
    im open alert.log and see the error
    Errors in file /oracle/PROD/db/tech_st/11.1.0/admin/PROD_smjkt-prfn01/diag/rdbms/prod/PROD/trace/PROD_m000_5243492.trc:
    ORA-51106: check failed to complete due to an error.  See error below
    ORA-48251: Failed to open relation due to following error
    ORA-48122: error with opening the ADR block file [/oracle/PROD/db/tech_st/11.1.0/admin/PROD_smjkt-prfn01/diag/rdbms/prod/PROD/metadata/HM_FINDING.ams] [0]
    ORA-27041: unable to open file
    IBM AIX RISC System/6000 Error: 22: Invalid argument
    Additional information: 2
    ORA-01122: database file 30 failed verification check
    ORA-01110: data file 30: '/oradata51/PROD/data/ctxd01.dbf'
    ORA-01565: error in identifying file '/oradata51/PROD/data/ctxd01.dbf'
    ORA-27037: unable to obtain file status
    IBM AIX RISC System/6000 Error: 2: No such file or directory
    Additional information: 3
    Fri Nov 22 15:11:58 2013
    Errors in file /oracle/PROD/db/tech_st/11.1.0/admin/PROD_smjkt-prfn01/diag/rdbms/prod/PROD/trace/PROD_m000_5243494.trc:
    ORA-51106: check failed to complete due to an error.  See error below
    ORA-48251: Failed to open relation due to following error
    ORA-48122: error with opening the ADR block file [/oracle/PROD/db/tech_st/11.1.0/admin/PROD_smjkt-prfn01/diag/rdbms/prod/PROD/metadata/HM_INFO.ams] [0]
    ORA-27041: unable to open file
    IBM AIX RISC System/6000 Error: 22: Invalid argument
    Additional information: 2
    ORA-01122: database file 221 failed verification check
    ORA-01110: data file 221: '/oradata51/PROD/data/a_txn_data86.dbf'
    ORA-01565: error in identifying file '/oradata51/PROD/data/a_txn_data86.dbf'
    ORA-27037: unable to obtain file status
    IBM AIX RISC System/6000 Error: 2: No such file or directory
    Additional information: 3
    info
    '/oradata51/PROD/data/a_txn_data86.dbf' --> path original from production
    SET NEWNAME FOR DATAFILE 221 TO '/oracle/PROD/db/apps_st/data/a_txn_data86.dbf' --> path in Testing that do full restore
    this file already exist a_txn_data86.dbf
    someone can help me ?
    Imron

    Hi Imron,
    Ensure the file is available at the OS level, if yes then follow the below link and see if it helps you
    https://forums.oracle.com/thread/2544292
    https://forums.oracle.com/message/1237966
    https://forums.oracle.com/message/
    Thanks &
    Best Regards,

  • 4S ios updated to 7 is giving me problems for using wifi Thus it is difficult for me to use internet. The wifi comes on for a while and goes off in a few minutes The phone is unable to scan networks available for use

    4S ios updated to 7 is giving me problems for using wifi Thus it is difficult for me to use internet. The wifi comes ON for a while and goes off in a few minutes The phone is unable to scan networks available for use
    Am having ipad2, ipad mini and iphone 4 with family of two persons. One hp laptop and a DELL professional computer also in operation
    Myself an engineer for projects
    Looks the company apple cannot grow if they do not support solving the problems of their existing customers
    Ashok Dhingra
    India

    You are not addressing Apple here. If you have a problem, describe it and someone might be able to help. Just to be sure, the wi-fi on the phone will go off after the phone goes into sleep mode unless it is actively being used. This is a battery saving measure. If you are actively using the internet, and the phone is still awake, then the wi-fi should remain connected.
    What troubleshooting steps have you tried.

  • On my new iMac, mail has no sound after waking from sleep.  If I select do not wake for network access in general preferences, the problem does not occur.  Anyone have an idea on how to fix this?

    On my new iMac, mail has no sound after waking from sleep.  If I select do not wake for network access in general preferences, the problem does not occur.  Anyone have an idea on how to fix this? Thanks --

    Same here on an older iMac since Lion. Thanks for the uncheck wake for network access tip though, it doesn't do it either in that case, I will leave it that way.

  • Checksum validation failed for some Xtext Maven artifacts and corresponding problems

    Hi
    I've been noticing some Checksum validation warnings during the build
    for some Xtext Maven artifacts, e.g.,
    [INFO] Downloading:
    https://repo.maven.apache.org/maven2/org/eclipse/xtext/org.eclipse.xtext.util/maven-metadata.xml
    [INFO] Downloading:
    https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/xtext/org.eclipse.xtext.util/maven-metadata.xml
    [WARNING] Checksum validation failed: Checksum validation failed,
    expected 872cc77705d19d8f59e22b784036430356246697 but is
    56dfb41a5a16e797f052660debc509bd44d10880 for
    https://repo.maven.apache.org/maven2/org/eclipse/xtext/org.eclipse.xtext.util/maven-metadata.xml
    [INFO] Downloaded:
    https://repo.maven.apache.org/maven2/org/eclipse/xtext/org.eclipse.xtext.util/maven-metadata.xml
    (649 B at 3.2 KB/sec)
    [INFO] Downloaded:
    https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/xtext/org.eclipse.xtext.util/maven-metadata.xml
    (380 B at 0.9 KB/sec)
    [INFO] Downloading:
    https://repo.maven.apache.org/maven2/org/eclipse/xtext/org.eclipse.xtext.util/2.8.3/org.eclipse.xtext.util-2.8.3.pom
    [WARNING] Checksum validation failed: Checksum validation failed,
    expected 25d651226b11727df3b99a6325e989f4e08c82ee but is
    453418e3e74ace9b69e7c34094ee712f81c55991 for
    https://repo.maven.apache.org/maven2/org/eclipse/xtext/org.eclipse.xtext.util/2.8.3/org.eclipse.xtext.util-2.8.3.pom
    similar for org.eclipse.xtext.dependencies, org.eclipse.xtext.xbase.lib
    This hasn't prevented the build from completing so far; but now that I
    started to play with some mwe2 custom generator fragments in my DSL,
    when running the mwe2 workflow during the build it fails with such
    exception, which I guess might be related:
    java.lang.SecurityException: class
    "org.eclipse.xtext.util.XtextSwitch"'s signer information does not match
    signer information of other classes in the same package
    can it be related?
    thanks in advance
    Lorenzo
    Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
    HOME: http://www.lorenzobettini.it
    Xtext Book:
    http://www.packtpub.com/implementing-domain-specific-languages-with-xtext-and-xtend/book

    We have the same problem for weeks now. Seems, that there is really a wrong checksum in the maven repo.

Maybe you are looking for