Restrictions in ChaRM - SDHF - Developer must not be the tester

Dear Experts,
we are using the SDHF correction and we want to check the workflow with system rules.
So is it possible that the developer of a SDHF correction can't be the tester of a SDHF correction?
We want to restrict this.
Regards,
Matthias Sander
Edited by: Matthias Sander on Jan 6, 2011 2:08 PM

Hi Matthias,
           This is very much possible. Please have a look at activity "Make settings for change transaction types" (img activity ID SOCM_MAIN_001)
        Create procedure type (select SDHF) / Assign conditions. In that list in E0005, the condition "SAME_USER" must be set to  "Cancel" or "Error" instead of "Warning"
Hope that helps!
Federico.

Similar Messages

  • Unable to set PIN - Error: "PIN must not be the same as the user's phone number"

    We are in an ongoing Lync Server 2013 deployment and have elected to set default conference PIN numbers for anyone that doesn't have them currently set.  We decided to make the default PIN the same as the person's telephone extension.  I realize
    this is not a secure PIN setting, but please bear with me.
    When I use PowerShell to loop through the people that do not have a PIN set and attempt to set the PIN to their five-digit extension, PowerShell returns the following exception:
    Set-CsClientPin : PIN must not be the same as the user's phone number (Error "18005").
    At line:1 char:1
    + Set-CsClientPin -Identity GenericUser -Pin '13579'
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (13579:String) [Set-CsClientPin], ArgumentException
    + FullyQualifiedErrorId : UserPin::SetPin::PinDoesNotMeetConstraints,Microsoft.Rtc.Management.UserPinService.SetOc
    sUserPinCmdlet
    I know what you are thinking:  by default, Lync has the AllowCommonPatterns setting set to $false on the Global (default) PIN policy.  But I have created another PIN policy called "Low-restriction PIN Policy" that has this setting set
    to $true and assigned this new policy to the users I am trying to set the PIN on.
    According to
    Microsoft's documentation on the Set-CsClientPin cmdlet, the description for AllowCommonPatterns is as follows:
    "Indicates whether or not "common patterns" are allowed in PINs.
    Common patterns include repeating digits (225577); 4 or more consecutive digits (991234); and
    PINs that match a user's phone number or extension number.
    If set to True common patterns (such as the PIN 123456, which includes consecutive digits)
    are allowed; if set to False common patterns are not allowed. The default value is False."
    Given this information, I do not understand why Lync Server 2013 is preventing me from setting a default PIN that matches their extension number when AllowCommonPatterns is set to $true on the PIN policy assigned to the user.
    Any ideas on what might be wrong?
    PS C:\Users\user> Get-CsUser GenericUser | Select-Object PinPolicy
    PinPolicy
    Low-Restriction PIN Policy
    PS C:\Users\user> Get-CsPinPolicy -Identity 'Low-Restriction PIN Policy'
    Identity : Tag:Low-Restriction PIN Policy
    Description : [20150224 SWS] Standard PIN policy.
    MinPasswordLength : 5
    PINHistoryCount : 0
    AllowCommonPatterns : True
    PINLifetime : 0
    MaximumLogonAttempts :
    PS C:\Users\user> Set-CsClientPin -Identity GenericUser -Pin '13579'
    Set-CsClientPin : PIN must not be the same as the user's phone number (Error "18005").
    At line:1 char:1
    + Set-CsClientPin -Identity GenericUser -Pin '13579'
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (13579:String) [Set-CsClientPin], ArgumentException
    + FullyQualifiedErrorId : UserPin::SetPin::PinDoesNotMeetConstraints,Microsoft.Rtc.Management.UserPinService.SetOc
    sUserPinCmdlet

    I just checked the management store replication status and it replicated.  I tried to set the PIN again and got the same error.  Here are my results:
    C:\Users\user> Get-CsUser GenericUser | Select-Object PinPolicy
    PinPolicy
    Low-Restriction PIN Policy
    C:\Users\user> Get-CsPinPolicy -Identity 'Low-Restriction PIN Policy' | Select-O
    bject AllowCommonPatterns
    AllowCommonPatterns
    True
    C:\Users\user> Set-CsClientPin -Identity GenericUser -Pin 13579
    Set-CsClientPin : PIN must not be the same as the user's phone number (Error
    "18005").
    At line:1 char:1
    + Set-CsClientPin -Identity GenericUser -Pin 13579
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (13579:String) [Set-CsClientPin
    ], ArgumentException
    + FullyQualifiedErrorId : UserPin::SetPin::PinDoesNotMeetConstraints,Micro
    soft.Rtc.Management.UserPinService.SetOcsUserPinCmdlet
    C:\Users\user> Get-CsManagementStoreReplicationStatus
    UpToDate : True
    ReplicaFqdn : edge.domain.com
    LastStatusReport : 3/3/2015 9:20:21 PM
    LastUpdateCreation : 3/3/2015 9:20:18 PM
    ProductVersion : 5.0.8308.556
    UpToDate : True
    ReplicaFqdn : frontend.domain.com
    LastStatusReport : 3/3/2015 9:20:21 PM
    LastUpdateCreation : 3/3/2015 9:20:18 PM
    ProductVersion : 5.0.8308.556

  • Must not modify the datatype of a mapped attribute

    Hi!
    I have an inputfield in my WD with extended value help (countryKey and CountryName, coming from R/3). The selected country should be passed to a bapi import parameter mapped in a model, but the problem is that an exception occurs stating that I cannot change the data type of the context attribute because it is mapped to a model.
    How is this usually done?
    Thanks,
    faB
    ContextException: AttributeInfo(SearchView.Iv_Land1): must not modify the datatype of a mapped attribute

    Hi,
    1. Create sub-node under your model node with cardinality 1..1 (non-singleton used in sample below)
    2. In this sub-node create calculated attribute with the same primitive type as desired attribute has (say, string).
    3. In setter / getter write code that will modify original attribute:
    /* getter */
    return element.node().parentElement().getAttributeValue("OriginalModelAttr");
    /* setter */
    element.node().parentElement().setAttributeValue("OriginalModelAttr", value);
    4. Rebind your input field to newly created attribute, and apply any value set modifications to it.
    VS

  • SignalR - Two Hubs must not share the same name

    I created asp.net mvc 5 application (call it "WebServices"), then i add my Hubs in a folder called "Hubs". Now
    what happened is that SignalR (2.0.2) generate JavaScript proxies for hubs in environment: 1-in local machine. 2-when i publish to azure web role. Now when i publish to azure website (.NET is 4.5 and websocket is opened),it didn't generate proxies. Now i tried
    to add hubs to App_Code folder ,and it generate proxies ,but the build action of the hub classes are "Content",when i change it to Compile it raised this exception :
    Two Hubs must not share the same name. 'Webservices.App_Code.MyHub1, App_Code.c9aucf2j, Version=0.0.0.0,
    Culture=neutral, PublicKeyToken=null' and 'Webservices.App_Code.MyHub1, Webservices, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' both share the name 'MyHub1'.
    I love Silverlight ^^

    Hello,
    It seems this issue is more reagrding ASP.NET MVC, I suggest you posting to:
    http://forums.asp.net/1146.aspx
    There are MVC experts who will help you better.
    Thanks for your understanding.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • MappedAttributeInfo(APPView.Node): must not modify the datatyp

    Hi,
    I used DropDownByKey element (DDLPROJE) and mapped it a contex element(PROJE).
    I tryed to fill PROJE with code below.No problem on compile, but when i run, it gets error below on line bold in code.
    How can i solve this problem?
    Thanks.
    error
    com.sap.tc.webdynpro.progmodel.context.ContextException: MappedAttributeInfo(FAALIYETappYeniView.PROJE): must not modify the datatype of a mapped attribute
    code
              IWDAttributeInfo attInf =
                   wdContext.getNodeInfo().getAttribute(
                        wdContext.currentContextElement().PROJE);
              ISimpleTypeModifiable stm = attInf.getModifiableSimpleType();
              IModifiableSimpleValueSet svs = stm.getSVServices().getModifiableSimpleValueSet();
              try {
                   InitialContext ctx = new InitialContext();
                   DataSource ds = (DataSource) ctx.lookup("jdbc/SAPEPTDB");
                   Connection con = ds.getConnection();
                   Statement stmt = con.createStatement();
                   ResultSet rs = stmt.executeQuery("select PROJE from ZHF_PROJE");
                   svs.put("", "");
                   while (rs.next()) {
                        svs.put(rs.getString("PROJE"), rs.getString("PROJE"));
                   con.close();
              } catch (Exception e) {
                   wdContext.currentContextElement().setMESAJ(e.toString());

    Hi,
    I guess you did as below.
    You have created the context attribute PROJE in View Context as well as in Controller Context.
    And then you have changed the type of PROJE attribute in View Context by binding it to some Simple type.
    After that you have mapped this attribute to the PROJE attribute in Controller context.
    That is why it is giving that error.
    If my guess is correct:
    Then delete the context mapping - by right click on the PROJE attribute in the View Controller.
    Now in Comp Controller change the type of PROJE attribtue by binding the simple type.
    And now do the mapping between the attribtues.
    Regards,
    Charan

  • Can not run the test form using servlet (patch 8)

    Installed 9I AS 1.0.2.2.1 and forms patch 8 on Windows 2000.
    Configured the Forms Listener Servlet by following the white paper "Forms 6i Patch 8: Oracle Forms Listener Servlet for Deployment of Forms on the Internet".
    I can get the page titled Forms 6i Listener Servlet using URL: http://myserver/servlet/oracle.forms.servlet.ListenerServlet.
    However, I can not run the test form using the servlet by the url:
    http://myserver/servlet/f60servlet?config=servlet. In the formsweb.cfg file I also added a section
    [servlet]
    serverURL=/servlet/oracle.forms/servlet.ListenerServlet
    No meaningful error message. At first it seems very slow, and then shows the "The page can not be displayed" page.
    Please advise.
    Thanks.

    u must add "Script Alias ifcgi60 "$ORACLE_HOME/forms60/cgi" in confirguration.

  • By default, Teststand will not include the test step result in subsequence, is there any way to include these step result in report?

    By default, Teststand will not include the test step result in subsequence, is there any way to include these step results in report?
    Thanks
    Jacky

    Hi,
    If your subsequence is in a separate sequencefile, then check the properties of the sequencefile to make sure that the record has not been disabled.
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • Scheduled refresh - Test connections settings validation failed: one or more connections did not pass the test

    I copied a workbook that has a working scheduled refresh
    modified the data model, added some new reports
    added a new source (PQ from azure market place)
    uploaded workbook to new powerbi location.
    get the following error when i try to turn on scheduled refresh - this is even if i just select one data source that is still identical to the original (working) workbook
    Test connections settings validation failed: one or more connections did not pass the test
    Technical Details ▼
    Correlation ID: ddcab6b8-ff2c-4881-9d8e-eeabbd23dff2
    Date and Time: 12/12/2014 06:13:06 AM (UTC)
    what's the problem?
    Jakub @ Adelaide, Australia Blog

    Still a problem and not just for me but other users going by the threads on here...
    https://social.technet.microsoft.com/Forums/en-US/eb8682f4-9b40-456a-a7f1-45627a0f4ff0/cannot-schedule-refresh?forum=powerbiforoffice365#eb8682f4-9b40-456a-a7f1-45627a0f4ff0
    Applies to all worksheets that utilise a PQ connection registered in the gateway. (my gateway is on an azure VM)
    Existing worksheets receive this warning. New workbooks that utilise these connections also receive this warning
    Adding a new PQ to the gateway and a new workbook that uses the new connection also receives this warning.
    Every PQ connection I have receives this warning. My PQ connections are all to web resources. Most are to the workflowmax.com API, and one is to the Azure Marketplace to retrieve data for a date dimension.
    Note: this does not prevent me from scheduling or triggering a refresh, and the refresh itself completes successfully. It's just a weird warning that caused confusion as it sounds like the actual refresh will fail as well seeing as the connection test failed.
    Jakub @ Adelaide, Australia Blog

  • Was diagnosed and this is what he wrote at the end - is protected by a link to itunes Storedid not pass the test.

    Was diagnosed and this is what he wrote at the end - is protected by a link to itunes Storedid not pass the test.before everything was working, firewall settings have not changed ... but in the itunes Store does not go

    If the phone is offline there is no way to track it or send a message to it.  You can place it in lost mode to lock it and send it a message (see http://help.apple.com/icloud/#/mmfc0f0165), but this will not take place until the phone goes back online, if it ever does.  If it does, you will get an email informing you.
    You might want to read this: http://support.apple.com/kb/HT5668.

  • SQL Developer is not exporting the time part of date data types.

    I need to export data from a table using sql developer. The column is a date data type but when I export the data to a csv, xls or an sql file with insert statements, sql developer only includes the date part without the time.
    Please kindly advise.
    Thanks,
    Erika

    What is your 4 digits Oracle version ?
    What is your SQL Developer version ?
    With Oracle XE and a schema named TEST I have:
    select * from t
    X                        
    04-FÉVR.-2010 21:24:40  If I use Tools/Database Export with all default settings with SQL Developer 2.1.0.63 I get following SQL file:
    --  Fichier créé - jeudi-février-04-2010  
    --  DDL for Table T
      CREATE TABLE "T"
       (     "X" DATE
    --   DATA FOR TABLE T
    --   FILTER = none used
    REM INSERTING into T
    Insert into T (X) values (to_timestamp('04/02/10 21:24:40,000000000','DD/MM/RR HH24:MI:SS,FF'));
    --   END DATA FOR TABLE T
    ---------------------------------------------------Edited by: P. Forstmann on 4 févr. 2010 21:26

  • Crop in Develop is not showing the change

    In the past, I have been changing my default image size to a 2:3 format by selecting it from the drop down list while in the Develop module or by pressing R. After adjusting the image, it used to display 2:3 under the lock, but now it is going back to AS SHOT.
    I am using a Windows 7 machine with LR 4.2.
    I like knowing I have a custom crop ratio, but have no idea if it is being applied by looking at images in LR.
    Any suggestions would be appreciated.
    M. Jackson

    Hi again,
    An uncropped image from my D4 is 3280 x 4928 pixels.  2/3 of 4928 is actually 3285.333333333333.   Or, if using the smaller side to set the ratio,  2:3 image would be 3280 x 4920. I doubt many printers would notice 5-8 pixels, but computers can definitely keep track of them.  Like I was mentioning in the OP, earlier versions of LR reflected the 2:3 change if I clicked on it, cropping 8 pixels off the sides (4 pixels each side).
    I am adding a screen grab from an earlier edit in an earlier version of LR. You can see the notation in this image indicating a 2x3 aspect crop. If I do the same thing now (in LR 4.2), it will show As Shot instead of 2x3 /4x6.

  • SQL Developer does not attach the selected glossary

    I am trying to use a glossary to control abbreviations when generating the Relational Model from the LDM. I go to Tools > Preferences, then select Naming Standards, click on the + to add the glossary, select my glossary, then OK. When I follow that same path there is no sign that the glossary have been attached and certainly no abbreviating taking place when I engineer the Relational Model from the LDM. Can anyone help?

    I have resolved the issue myself. It would appear that you have to attach the glossary BEFORE you create the blank relational model that you wish to forward engineer to. Odd but there you go!

  • When measuring 6 voltage signals in labview I found that there was a difference in voltage signals in my program but not in the test panel. The test panel is correct. What is wrong with my program?

    My labview program is not displaying equivelent voltages, but labview test panel is. So the computer is seeing the correct signals. My program is displaying a small difference in 3 out of 6 channels. All channels should be equal.

    G'Day Pops,
    You haven't really given us enough to go on - could you please post your VI so we can have a look at it?
    cheers,
    Christopher
    Christopher G. Relf
    Certified LabVIEW Developer
    [email protected]
    Int'l Voicemail & Fax: +61 2 8080 8132
    Aust Voicemail & Fax: (02) 8080 8132
    EULA
    1) This is a private email, and although the views expressed within it may not be purely my own, unless specifically referenced I do not suggest they are necessarily associated with anyone else including, but not limited to, my employer(s).
    2) This email has NOT been scanned for virii - attached file(s), if any, are provided as is. By copying, detaching and/or opening attached files, you agree to indemnify the sender of such responsibility.
    3) B
    ecause e-mail can be altered electronically, the integrity of this communication cannot be guaranteed.
    Copyright © 2004-2015 Christopher G. Relf. Some Rights Reserved. This posting is licensed under a Creative Commons Attribution 2.5 License.

  • IAd is not loading, not even the test advertisment

    I believe i have implenmented everything, but i get this error
    Error Domain=ADErrorDomain Code=3 "The operation couldn’t be completed. Ad inventory unavailable"
    Any one know whats going on?

    Is happening to me too.
    I think is related to some updates for the ios 7 release.
    I suggest to add a border to the iAD view and delete it on release, so you know where it is in the test.

  • Sales Order quantity Must not exceed Purchase order quantity

    Dear Experts,
    My requirement is when i am creating a Purchase order giving referenece as Sales Order .. system must not allow the user to enter  more than Sales order quantity.
    Ex : Sales Order 1234
            Material : AAAA
            Quantity : 100
    while creating a Purchase order for Mat AAAA giving  reference of Sales order i.e 1234 and quantity 150 system must not allow user to enter more than sales order quantity . If user wants to create PO for 150 he must have to ammend the sales order from 100 to 150  is it possible.
    Kindly do the needful
    Regards
    abhi

    Dear Abhinav,
    First of all, Purchase Order will get created with reference to Purchase requisition (T. Code: VOV7 --> Item Cat.: TAS --> Tab: Transaction Flow --> Field: Automatic PO Creation), and not with reference to Sales Order.
    This is Purchase requisition, which gets created with reference to Sales Order; based upon settings in:
    T. Code: VOV6 --> Schd. Line Cat.: CS
    Order Type            NB    Purchase Requisition
    Item Category         5     Third-party
    Acct Assgt Cat.       X     All aux.acct.assgts.
    Now, coming to your requirement (based up on my inputs),
    My requirement is when i am creating a Purchase order giving referenece as Sales Order .. system must not allow the user to enter more than Sales order quantity.
    To Restrict Purchase requisition quantity in PO, then in T. Code: OMCQ
    Or, Path: SPRO > img > MM > Purchasing > Environment Data > Define Attributes of System Messages
    Here make following messages as Error;
    06 076 Materials of requisition & item & alr. ordered in full
    06 254 Order quantity greater than requisition quantity
    Now,  in Purchase Requisition, if it is created for 100 qty (with ref. to Sales Order) and if you adopt the same in Purchase Order and try to change the qty to 150, then system will not allow you change and throws the error.
    Best Regards,
    Amit

Maybe you are looking for