Error - The user has no workflow Linkage. Configure workflow.

Hi All,
I am getting following error in  transaction Users_gen.
<i><b>'The user has no workflow linkage. Configure workflow'.</b></i>
SAP note says, I need to run transaction BBP_CHECK_USERS and select repair level 2. I followed these instructions but still I am getting this error.
Any idea to resolve this.
Plese advice.
Thanks and Regards
Pras Durafe

Hi Pras,
you can get rid of this message: nothing important.
It just checks that the user has got a WF relationship: i.e. that there is a manager with the red hat in the org unit.
It should be a warning message, raised after a call of RH_GET_LEADING_POSITION during user check (BBPU_CHECK_EBP_USER), that should retrieves the user's manager.
If you display the long text of the error message, you should get:
<b>Short Text</b>
The user & has no workflow linkage. Configure workflow.
<b>Diagnosis</b>
The user has no workflow linkage. The relationship between position (S) and user (US) does not exist.
<b>System response</b>
In workflow configuration (table T77S0) you can set the indicator WFLOW/CRMUS to 'X'.
<b>Procedure</b>
You can set the indicator as follows:
1. Start transaction code SM30
2. Open table T77S0 (Maintain).
3. Create the following new entry:
Group: WFLOW
Semantic ID: CRMUS
4. Activate by setting the indicator to 'X'.
Important: This function is only available from Basis Release 6.1.
If you set an entry in T77S0 with WFLOW/CRMUS --> X, then this control is by-passed.
This control is brought by note 796742:
SRM 3.0 SP10
SRM 4.0 SP05
For one of my customers, I deleted this message, but I don't remember if I changed the code or if I changed the table entry...
Rgds
Christophe
PS: please reward points for helpfull answers

Similar Messages

  • Can not start Instant Message: The user has no SIP Address configured

    Hi Experts,
    Please provide your valuable suggestions in order to fix the error in collaboration Instant Messaging. We have configured collaborations chat in development system (EP 7.3 SP4) and added the required custom UME attribute named "sip" in System Administrator > System Config > UME Config > User Admin UI tab.
    "com.sap.security.core.usermanagement:sip" value is assigned to below attributes under Custom attributes of the user profile property:-
    Administrator-Managed Custom Attributes
    User-Managed Custom Attributes
    Portal users are stored in ABAP and no customizations are done through code for implementing collaboration chat.

    Hi,
    I believe you require SAP_XI_DEVELOPER role for this activity.
    If providing this authorisation is not possible, then you can use super id-PISUPER for this testing.
    -Supriya.

  • Logon failure; the user has not been granted the requested logon type at this computer (IE App)

    Hello,
    Question of a newbie:
    In Windows Server 2012 I'm using IE10 to simulate numerous different users. But for some of these "fake" users I got the error:
    Logon failure; the user has not been granted the requested logon type at this computer.
    So I opened PowerShell : GPEDIT.MSC
    Computer Configuration / Windows Settings / Security Settings / Local Policies / User Rights Assignment.
    In the detail zone : Double-Clic sur Allow log on locally.
    Dialog box : Allow log on locally properties
    But the Add User or Group
    button is grayed out!
    What can I do?
    Thanks for your help!

    Several months after...
    I found the solution : the user has to be member of the Server
    Operators in Active Directory. 
    That's all :)
    Thanks

  • ISA : The user has no authorization

    Hello Friends,
    I created a customer configuration " MYCONF"  under
    http://host:50100/shopadmin/admin/xcm/init.do
    and then i tried to connect to :
    http://host:50100/shopadmin/shopadmin/init.do?scenario.xcm=MYCONF
    i was directed to login page .
    i enter login : WEBADMIN and its pass but i get this error :
    An error occurred:The user has no authorization for Shop Management
    In SAP CRM back end , i gave the WEBADMIN user the roles :
    SAP_CRM_INTERNET_CUSTOMER
    SAP_CRM_ISA_UA_SUPERUSER
    SAP_CRM_ISA_WEBSHOP_MANAGER
    restarted all servers .
    but i still have the same error..
    what happens?

    Hi Blackman,
    try logging with just your own CRM logon.  It should work.  The webadmin user is this the one logging onto CRM that you set up in teh XCM settings?).  This should have the role SAP_CRM_ISA_ITSLOGIN assigned to it.
    Then your user just needs the webshop one you assigned but you should have sap_all anyway right?
    Cheers
    Andrew

  • How do I sign my VB / VS 2010 based shared COM add-in for Excel so it loads when the user has checked "Require application add-ins to be signed by a trusted publisher"?

    My COM add-in is developed using VS 2010 and VB. It's a shared COM add-in (not VSTO) and it works with Excel 2007 - 2013. My installer is signed with a code signing certificate but it would appear that my add-in's .dll should also be signed if the user has
    checked the "Require application add-ins to be signed by a trusted publisher" option.
    The "Sign the assembly" option is checked in my add-in's VB -> My Project -> Signing. I have a .snk file selected which I seem to recall generating 6 or 7 years ago when I ported the COM add-in from VB6 to .NET. 
    I have an up-to-date Comodo code signing certificate (a pfx file called MyCompanyCodeSigningCertificatePrivateKey.pfx) which I purchased to use with the installer and was wondering if and how I could use this.
    I tried selecting my pfx file in the My Project -> Signing -> "Choose a strong name key file" dialog. It made a copy of the pfx file in my project folder but when I tried to build the project, I got the following error:
    Error 1 Cannot import the following key file: MyCompanyCodeSigningCertificatePrivateKey.pfx. The key file may be password protected. To correct this, try to import the certificate again or manually install the certificate to the Strong Name CSP with the
    following key container name: VS_KEY_C0B6F251F0FB6016
    After a little research, I found out I might be able to use signtool to sign the dll in a post-build step.
    I added the following command to the post-build event, before the command I use to regasm the assembly.
    "path to signtool\signtool" sign /f "MyCompanyCodeSigningCertificatePrivateKey.pfx" /p "xxxx" /v "$(TargetPath)"
    When I built the project, the dll appeared to get signed (the output window showed a bunch of confirming text as well as "Successfully signed: c:\MyAddIn\bin\Release\MyAddIn.dll") but the next step in the post-build (regasm myaddin.dll /codebase)
    issued a warning RA0000 (see below) but reported "Types registered successfully".
    Here's the message I get from regasm, even though the output window says the dll was sucessfully signed:
    RegAsm : warning RA0000: Registering an unsigned assembly with /codebase can cause your assembly to interfere with other applications that may be installed on the same computer. The /codebase switch is intended to be used only with signed assemblies. Please give your assembly a strong name and re-register it.
    Types registered successfully
    I'm not using a shim if that makes a difference.
    How do I sign my add-in so it loads when the user has checked "Require application add-ins to be signed by a trusted publisher"?
    Any tips would be appreciated.

    Hello,
    Why do you need to use the regasm utility from the post-build action?
    There is a difference between signing the assembly with a strong name and digital signature. The
    How to: Sign an Assembly with a Strong Name article in MSDN explains how to sign an assembly with a strong name (.snk). See
    How to digitally sign a strong named assembly for adding a digital signature.
    You may also find the
    What's the Difference, Part Five: certificate signing vs strong naming article helpful.

  • Job scheduling failed because the user has no permission to access this rep

    Hi. I've OBIP 10.1.3.4.1.
    When I launch a print with the scheduler I see this error:
    oracle.apps.xdo.servlet.scheduler.ProcessingException: Job scheduling failed because the user has no permission to access this report. [REPORT_URL]=[folderreport/report/report.xdo], [USERNAME]=[administrator]
         at oracle.apps.xdo.servlet.ui.scheduler.SchedulerServlet.scheduleJob(SchedulerServlet.java:1140)
         at oracle.apps.xdo.servlet.ui.scheduler.SchedulerServlet.doPost(SchedulerServlet.java:295)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.xdo.servlet.security.SecurityFilter.doFilter(SecurityFilter.java:100)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    In this env. I've a LDAP Security Model and all the report and all the users work.

    Please check whether you have assigned below responsibility to the user trying to schedule report.
    XMLP_SCHEDULER

  • Error Message: User has no profile in this organization

    Error Message: "User has no profile in this organization."  
    Chrome browser.  Am downloading Mozilla in the meantime and will report after.
    Attempting to log into various TV subscription cable channels with a valid ID and password which ordinarily allows me to enter the on lne version of the cable channel, such as HBO and TNT and USA.     Works fine on Showtime.     Something is local to these channels, I suppose yet suggesting that something in the computer is blocking also.   Everything worked fine with my HP notebook, all subscription/ login required channels were accessble but this new computer actually refurbished but like new) an HP Elite sff 8000 seems to be blocking me from logging in.   Could it be the cable channels?   Also got a message that indicated something about "User repository".   Please sugget a detailed fix if there is one from this information. 
    HP Elite 8000 SFF, (Desktop) WIN 8.1 Professional, Intel Core 2 Quad 2.83GHz processor. Internal 750GB HDD. 8GB RAM memory. 3 external HDDs : 1TB primary external, 1.5TB backup external, special backup 250GB external (all externals for files, music, video). Please note: 750GB HDD for WIN OS and programs only. Backed up to an 80GB external Image Maker via WIN 7 system image maker. 1 DVDRW drive. 10 USB ports. Plus there are four extra USB via PCI card. 14 USB ports in all. 240 W power supply. Printers: LJ 1020, HP AIO 6480. 3 Monitors, 20" Acer; 22" Acer; 37" LG TV.
    ALSO:
    HP ENVY: 15 ENVY 15634 Laptop 8GB Memory 750GB Hard Drive Natural Silver
    And:
    HP DV6928us, (Notebook)
    AND:
    external 1.0TB HDD, 250GB external HDD, 1.5 TB external HDD,
    AND:
    HP LJ 1020,
    and:
    HP J 6480 AIO,
    Windows 7 Home Premium on Desktop, WIN8 on ENVY

    Did you have any luck with FireFox?
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • Error: The user does not exist or is not unique - when setting permission programmatically

    Hi,
    I am custom Sequential workflow in which I am breaking the permission and setting permission to list item.
    I have used the below code for setting Permission:
    SPRoleDefinition oSPRoleDefinition = oSPWeb.RoleDefinitions["RoleName"];
    //Grant permission to Manager
    SPRoleAssignment oSPRoleAssignmentManager = new SPRoleAssignment(strManagerLanID, strManagerEmail, "", "");
    oSPRoleAssignmentManager.RoleDefinitionBindings.Add(oSPRoleDefinition);
    CurrentListItem.RoleAssignments.Add(oSPRoleAssignmentManager);
    I am getting the error as :
    Error: The user does not exist or is not unique.
    How to fix this?
    Thanks

    I think you misunderstood the solution proposed by frederic, what he is suggesting is that the error doesn't come from your code but from the user account
    have you tried with another account ? (maybe the one you are using to log to your environment)
    With this information, it will help us to know if the problem comes from your code or from the user account
    Best regards, Christopher.
    Blog |
    Mail
    Please remember to click "Mark As Answer" if a post solves your problem or
    "Vote As Helpful" if it was useful.
    Why mark as answer?

  • Registry Error: The user ID and password pair passed in a get_authToken mes

    Hello
    I am trying to publish web service thruth the UDDI CLINET
    I got into
    http://sap-xiqas:50000/uddiclient/process/
    chose Publish Service Definition
    SAP Registry
    and tried login with my user which has sap_all
    and also with j2ee_admin
    and get the following msg
    Registry Error: The user ID and password pair passed in a get_authToken message is not known to the Operator Site or is not valid
    have some1 managed to solve it ?
    thx Shai

    Hi,
    Use should use:
    call function 'SUSR_CHECK_LOGON_DATA'
              exporting AUTH_METHOD = 'P'
                        USERID      = k_user
                        PASSWORD    = k_senha
              exceptions
                   others = 1.
    if sy-subrc = 0.
       write 'Ok'.
    else.
       write 'Not Ok'.
    endif.
    Best regards,
    Leandro Mengue

  • Error message: User has no profile definition

    Hello,
    When I try to run a custom transaction (related to SU assignment- program SAPLSHL2), I get an error message
    " User has no profile definition"
    Could you please explain what it means and how it could be corrected?
    The SU53 analysis shows authorization checks to be successful.
    Thanks in advance!

    you are getting error bcoz of the program below,
    Form  USER_OWN_DATA
    read data of active user into header line of lrf_wkqu
    FORM USER_OWN_DATA CHANGING LRF_WKQU LIKE LRF_WKQU.
      CALL FUNCTION 'L_USER_DATA_GET'
           EXPORTING
                I_UNAME        = SY-UNAME
           TABLES
                T_XUSER        = XUSER
           EXCEPTIONS
                NO_ENTRY_FOUND = 01.
      IF SY-SUBRC = 0.
        READ TABLE XUSER WITH KEY STATU = VER_ON.
        IF SY-SUBRC = 0.
          MOVE-CORRESPONDING XUSER TO LRF_WKQU.
        ELSE.
          MESSAGE E191 WITH SY-UNAME.
        ENDIF.
      ELSE.
        MESSAGE E192 WITH SY-UNAME.
      ENDIF.
    ENDFORM.                               " USER_OWN_DATA

  • Failed to start worker process: Logon failure: the user has not been granted the requested logon type at this computer. (0x80070569

    We just rebuilt our machine with server 2012, and it was working flawlessly and then randomly it started giving me this error if i would try to start up a machine. At first this was just an annoyance but now it is worrying me greatly. I have tried
    everything from logging on as the domain admin account to the actual server administrator account. Nothing seems to start these machines up, and I need them to start.
    'Computer1' failed to start worker process: Logon failure: the user has not been granted the requested logon type at this computer. (0x80070569). 

    Hi,
    As this thread has been quiet for a while, we assume that the issue has been resolved. At this time, we will mark it as 'Answered' as the previous steps should be helpful for many similar scenarios.
    If the issue still persists and you want to return to this question, please reply this post directly so we will be notified to follow it up. You can also choose to unmark the answer as you wish.
    In addition, we'd love to hear your feedback about the solution. By sharing your experience you can help other community members facing similar problems.
    Thanks!
    Lawrence
    TechNet Community Support

  • The user has denied all applications access to their media

    OK, so I have had this problem before and solved it unknowingly and now it is reoccurring!
    "error:
    Error Domain=ALAssetsLibraryErrorDomain Code=-3312 "Global denied access" UserInfo=0x169aa0
    {NSLocalizedFailureReason=The user has denied all applications access to their media.,
    NSLocalizedRecoverySuggestion=This setting can be changed in Preferences.,
    NSLocalizedDescription=Global denied access}"
    Please NOTE://I do not get this issue in the simulator - my code for iterating assets works perfectly on the simulator.
    Surely this is an easy fix but be damned if I can find anything under 'Preferences' anywhere that assists.
    Please halp!

    - Location services must be enabled for the application...
    I realise that there is geotagging involved but what a joke!

  • Error: The type initializer for 'Microsoft.Exchange.Configuration.Tasks.ThrottlingModule`1' threw an exception.

    having problems on new server so I followed instructions to remove Exchange Server 2013 Sp1 using ADSI edit p;er these instructions:
    http://blog.dargel.at/2012/11/20/complete-remove-exchange-2013-using-adsiedit/
    now when I re-run setup for exchange 2013 SP1 I get the error :    
    "Error: The type initializer for 'Microsoft.Exchange.Configuration.Tasks.ThrottlingModule`1' threw an exception."
    David Sheetz MCP

    contrary to what Ed says you can fix this, it is way harder than it should be and I have NEVER had this many issues on a  fresh build! 
    things to note on Exchange 2013
    1. IPv6 MUST work and also DNS set manually, verify port 25 is open on your firewalls!
    2. even if services are running make sure there are no errors in the application event log and check that all services on the Exchange server are set to ACTIVE. to find out type the below command in exchange management shell
    Get-ServerComponentState –Identity servername
    3. The group "everyone" did not have the right "Access this computer from the network". This could be seen by an audit failure in the security log stating that the user
    "<mailbox server name>" did not have the required login type (login type 3).
    Adding everyone to the "Access this computer from the network" right solved the issue. 
    To enable "Access this computer from the network" :
    Run "gpedit.msc"
    Navigate through
    Computer Configuration > Windows Settings > Security Settings > Local Policies > User Rights Assignment
    Double click
    on "Access this computer from the network", and ensure "Everyone" is added.
    4. verify all connectors are setup correctly
    Also I found an error in the event log Event
    ID: 1009 once I fixed that emails started to fly!
    To resolve the issue, use one of the following methods.
    Method 1
    Create a new Active Directory group that is named “ContentSubmitters,” and then grant Admistrators and NetworkService full access to the group. This is a dummy group and should be used as a placeholder only. You might want to add a description so that
    the group is not removed.
    Force or wait for Active Directory replication.
    Restart the following services:
    Microsoft Exchange Search
    Microsoft Exchange Search Host Controller
    Method 2
    You can also resolve this problem by removing a configuration entry that refers to the ContentSubmitters group. This entry is present in four files. Each file is calledWcfConfigurator.xml,
    and you can find each file in the following folder:
    %ExchangeInstallPath%\Bin\Search\Ceres\HostController\Data\Nodes\Fsis\<var style="border:0px;font-family:monospace, monospace;font-size:1em;font-style:inherit;font-weight:inherit;margin:0px;outline:0px;padding:0px;vertical-align:baseline;">NODENAME</var>\Configuration\Local
    Here, “%ExchangeInstallPath%” is the Exchange installation root path (available in the environment variable of that name), and the placeholder <var style="border:0px;font-family:monospace, monospace;font-size:1em;font-style:inherit;font-weight:inherit;margin:0px;outline:0px;padding:0px;vertical-align:baseline;">NODENAME</var> represents
    one of the following names. (There is one name for each of the four files that are to be edited.)
    Helpful articles
    http://blog.dargel.at/2012/11/20/complete-remove-exchange-2013-using-adsiedit/
    http://exchangeserverpro.com/exchange-2013-manually-configure-dns-lookups/
    David Sheetz MCP

  • I just tried to install the 11.4 update (or whichever one is the most recent update as of 1/26/2014) and when it failed i tried to install manually and now whenever i try to use it, i get the following error: the application has failed to start because MS

    i just tried to install the 11.4 update (or whichever one is the most recent update as of 1/26/2014) and when it failed i tried to install manually and now whenever i try to use it, i get the following error: "The application has failed to start because MSVCR80.dll was not found. Re-installing the application may fix this problem." Right after i click ok i then get this error: "Itunes was not installed correctly. Please reinstall Itunes. Error 7 (Windows error 126)." I tried to uninstall Itunes and then reinstall the 11.03 version but that didnt work either. I want to know if i copy all of the music in my itunes folder to an external without consolidating can i still transfer all my itunes music from my current windows xp pc to a brand new one and have my current itunes library in my new pc? Basically i just want to know 3 things: What exactly does consolidating the itunes library do? Can i copy, paste, and transfer my itunes library to an external and from there to a new pc? Will i be able to transfer my itunes library without consolidating the files?

    I have found a temporary solution, allowing the previous version of iTunes (v. 11.1.3 (x64) in my case) to be re-installed.  It will allow you to re-establish use of iTunes until the Apple software engineers fix the most recent disasterous upgrade (v. 11.1.4).  Please see and follow the procedure in the following article:http://smallbusiness.chron.com/reverting-previous-version-itunes-32590.html   The previous version works beautifully.

  • Reader SDK: any way to see what text the user has selected?

    I'm using the Adobe Reader SDK with C#, looking at the interapplication communication features.
    I can open a document in Reader and allow the user to user the reader tools like select text, etc.
    Here's the problem: I want to have my application know what text the user currently has selected.  And I'd like it to know the name of the field that the user has selected, not just the text of the field.
    Microsoft Office's Interop has something like this:
    currentDocument.GetSelectedText();
    Is there any way to do this with IAC or the javascript or plug-in features of the Reader SDK?
    If not, can it be done with the Acrobat API?  I've looked through both sets of documentation, and haven't found what i needed.
    Thanks for any help!

    To write a plug-in for the Adobe Reader you need to go through 2 separate steps.
    Step one - Download the Adobe Acrobat SDK (from here http://www.adobe.com/devnet/acrobat)
    and build your plug-in against the Acrobat product, following the documentation to make sure you only use API's that are available in the Reader program. The documentation tells you what version of the Adobe ACrobat or Reader program is needed for the function and whether the function can be called in Reader.
    Step two - Apply for a Reader certificate to allow your plug-in to be loaded by the Reader, the link is on the same web page as the above link. This step can be initiated before you have created your plug-in, and I would recommend that you do start this process before you develop your plug-in as Adobe can refuse to give you the certificate in which case all your development would be wasted.
    Only once you have permission form Adobe can you make your plug-in work with the reader application.
    Once you have done both these steps there are plenty of people on this forum that can help you with specific problems you may encounter.
    If you are not sure you have the knowledge to build the plug-in, there are plenty of people that you can hire to create the solution for you.
    HTH
    Malcolm

Maybe you are looking for

  • Music sync problems with ipad after 8.1.3 update

    So toady after many weeks of meaning to update my music on iPad, I got round to doing it. I could cry at this moment I had the same problems with my iPod a few weeks back, where I could get so far with putting music on and then iTunes would just wipe

  • Help needed regarding the deployment architecture for PROD env

    Dear All, Please help me with some clarifications regarding the deployment architecture for PROD env. As of now I have 2 single node 12.1.1 installations for DEV and CRP/TEST respectively. Shortly I will be having a PROD env of 12.1.1 with one DB nod

  • Issue in Rpadding with concatenation

    Hi, I have a issue with one of the column in RTF. The Column has the value of 'Two Hundred Nineteen And Twenty-Seven'( numbers may vary for different input) Required Output the column has TWO LINES,In single line it can print upto 49 characters (Cour

  • Setting chapter and sections after importing text document?

    I imported a 120-page Word document in Author. The original was 10 chapters and related sections. It came in as a single long chapter. Now I want to manually select a page and set it to be chapter 2, chapter 3, etc., and likewise for selecting a page

  • 1.2.0 reads TNSNAMES.ORA file multiple times and duplicates values in Alias

    Since upgrading to 1.2.0.29.98 (clean install on Win XP SP 2), I have noticed that SQL Developer appears to be reading the TNSNAMES.ORA file multiple times. This results in the Network Alias pop-list on the TNS connection type to have duplicate value