Sales Agreement workflow errored on 3205: is not a valid role or user name.

Hi experts,
We're currently on EBS R12.1.2 We're running into an issue that seems like a very general issue that other businesses would have encountered before. We have a business user who creates most of sales agreements. When this business user left the company, we set active end date on the particular userid. Now, when we go into these sales agreements originally created by this particular userid, and put in the expiration date to expire these sales agreement. We're seeing the sales agreement workflow erroring out in the pre-notification workflow email with error 3205: is not a valid role or user name.
It seems to be this is a very typical business scenario. If you have encountered this problem, please share how you resolved this issue within your oracle apps environment.
Thank you in advance for your help,
Jennifer

Hello,
We have the same problem in 11.5.10.2. If we want use this blanket sales agreement I have to skipped this notification by sysadmin and after this I can extend end date and another user can use this BSA.
Look at Extend The Expiration Date For Closed Non-Active Expired BSA Blanket Sales Agreement [ID 1394888.1]     
Regards,
Luko

Similar Messages

  • Error Message = 3205: '~WF_ADHOC-1446' is not a valid role or user name

    Hi,
    I have an Item attribute of type 'Role' ('CREDIT_COMMITTEE_MEMBERS') and I am using that attribute as performer for two notification activities.
    For first notification, I create an adhoc role and assign it to the attribute and the notification goes successfully.
    I want to send reminder to the people who have not responded to the first notification.
    So I used the following query:
    SELECT recipient_role
    FROM wf_notifications
    WHERE (message_name = 'MSG_TO_CREDIT_COMM_NEED_APPR' or message_name = 'MSG_REMINDER_CREDIT_COMM')
    AND item_key = itemkey
    AND status = 'OPEN';
    The following code was used to update the Item attribute of type "Role"
    FOR rec_cc_role_names IN cur_cc_role_names
    LOOP
    IF l_role_count = 0 THEN
    l_role_users := rec_cc_role_names.recipient_role;
    ELSE
    l_role_users := l_role_users || ' ' || rec_cc_role_names.recipient_role;
    END IF;
    l_role_count := l_role_count + 1;
    END LOOP;
    wf_directory.createadhocrole
    ( role_name => l_role_name,
    role_display_name => l_role_display_name,
    notification_preference => 'MAILTEXT',
    role_users => l_role_users,
    expiration_date => NULL);
    wf_engine.setitemattrtext
    ( itemtype => 'XXCCVOTP',
    itemkey => itemkey,
    aname => 'CREDIT_COMMITTEE_MEMBERS',
    avalue => l_role_name);
    The second notification activity is throwing the below error
    Error Name = WFNTF_ROLE
    Error Message = 3205: '~WF_ADHOC-1446' is not a valid role or user name.
    Error Stack =
    Wf_Notification.SendGroup(~WF_ADHOC-1446, XXCCVOTP,
    MSG_REMINDER_CREDIT_COMM, 07-APR-10, WF_ENGINE.CB)
    Wf_Engine_Util.Notification_Send(XXCCVOTP, 154009, 186344,
    XXCCVOTP:MSG_REMINDER_CREDIT_COMM)
    Wf_Engine_Util.Notification(XXCCVOTP, 154009, 186344, RUN)
    Kindly help.
    Thanks,
    Amit

    The users list was null for the role, which was causing the error. The query populating the user list was not returning any row.

  • WFNTF_ROLE : 3205: ' user1 , user2 ' is not a valid role or user name

    Hi
    I have a workflow, in which I pass the names of performers(people who should receive notification) at run time through an Item Attribute.
    I have created Ad-hoc role using wf_directory.CreateAdHocRole and assigned users to this role using wf_directory.AddUsersToAdHocRole.
    wf_directory.CreateAdHocRole( role_name => v_role_name
    ,role_display_name => v_role_display_name
    ,language => NULL
    ,territory => NULL
    ,role_description => 'ROLE DESC'
    ,notification_preference => 'MAILTEXT'
    ,role_users => v_Recipients -- Comma or space delimited list
    ,email_address => null
    ,fax => null
    ,status => 'ACTIVE'
    ,expiration_date => null
    ,parent_orig_system => null
    ,parent_orig_system_id => null
    ,owner_tag => null
    wf_directory.AddUsersToAdHocRole(role_name => v_role_name,
    role_users => v_Recipients);
    The v_Recipients is an item attribute ( Recipients) got using wf_engine.getitemattrtext. The performer for workflow is also specified as the item attribute Recipients.
    Now, my workflow runs fine when notification is being sent to one user.
    But, when I try to send it to 2 or more users (seperated by space or comma), I hit the error:-
    Failed Activity NOTIFICATION
    Activity Type Notice
    Error Name WFNTF_ROLE
    Error Message 3205: '<user1>,<user2>' is not a valid role or user name.
    Please note that I have also run "Synchronize WF LOCAL tables" Concurrent program. But, that also does not help.
    What am I missing?
    Thanks
    Ajay K. Garg

    Hi Matt
    Appreciate your patience.
    I am almost there, but not there yet. :(
    I made the following changes:-
    1. Created a new item attribute of type role called 'RECIPIENT_ROLE'.
    2. The performer for the notification is set as Item Attribute RECIPIENT_ROLE.
    3. In the code:-
    a) v_Recipients := wf_engine.getitemattrtext(itemtype => p_item_type,
    itemkey => p_item_key,
    aname => 'RECIPIENTS'
    b) wf_directory.CreateAdHocRole( role_name => v_role_name
    ,role_display_name => v_role_display_name
    ,language => NULL
    ,territory => NULL
    ,role_description => 'ROLE DESC'
    ,notification_preference => 'MAILTEXT'
    ,role_users => v_Recipients
    ,email_address => null
    ,fax => null
    ,status => 'ACTIVE'
    ,expiration_date => null
    ,parent_orig_system => null
    ,parent_orig_system_id => null
    ,owner_tag => null
    c) wf_engine.setitemattrtext(itemtype => p_item_type,
    itemkey => p_item_key,
    aname => 'RECIPIENT_ROLE',
    avalue => v_role_name
    Pl. note that v_role_name and v_role_display_name values are being set in the code before call to wf_directory.CreateAdHocRole.
    I am hitting the error:-
    Failed Activity NOTIFICATION
    Activity Type Notice
    Error Name WFENG_NOTIFICATION_PERFORMER
    Error Message 3120: Activity 'DISTLIST/188309' has no performer.
    Error Stack Wf_Engine_Util.Notification_Send(DISTLIST, 1965, 188309, DISTLIST:DIST_LIST_NOTIFCATION_MSG) Wf_Engine_Util.Notification(DISTLIST, 1965, 188309, RUN)
    At run time, I am passing the parameter RECIPIENTS as name of one apps user ( to whom I want to send notification), and not passing anything to RECIPIENT_ROLE.
    What mistake am I making?
    Thanks
    Ajay K. Garg

  • WFNTF_ROLE 3205 Not a valid role or user name ...

    I have been assigned the job of cleaning up the SYSADMIN notification queue and need some help. I have a role that does not have a user assigned. The role name / display name is :
    FND_RESP1:50195 / OAM Read Only Mode:Any security group
    I am guessing I need a user assigned to this role or need to add an email address to the role. Looking for some advice as to what and how to do it.
    Thanks in advance!
    Dave

    Hi,
    DECLARE
      l_display_name      WF_ROLES.display_name%TYPE;
      l_email_address     WF_ROLES.email_address%TYPE;
      l_notification_pref WF_ROLES.notification_preference%TYPE;
      l_language          WF_ROLES.language%TYPE;
      l_territory         WF_ROLES.territory%TYPE;
      l_module            VARCHAR2(100);
      l_role              WF_ROLES.name%TYPE := '&role';
    BEGIN
      WF_DIRECTORY.getRoleInfo ( role                    => l_role
                               , display_name            => l_display_name
                               , email_address           => l_email_address
                               , notification_preference => l_notification_pref
                               , language                => l_language
                               , territory               => l_territory );
      IF l_display_name IS NULL THEN
        dbms_output.put_line('Role is invalid');
      ELSE
        dbms_output.put_line('Role is valid');
      END IF;
    END;
    /That'll tell you whether the role is valid or not.
    HTH (Hope that helps)
    Matt
    -----

  • Error 'RecoveryMgr.exe is not a valid Win32 application' when trying to restore in Win7

    I really hope someone can help as this is driving me mad!
    System details - G62 Notebook running Windows 7
    The notebook crashed after a Windows update and wouldn't boot up.  I made it into the recovery manager and back my files before restoring to factory settings. 
    Since getting back in I am unable to get my files back.  I have tried through the recovery manager but it does not allow me to see the files on the dvd.  I have also tried through backup and restore but no joy there either.  When I click on RecoverMgr.exe on the dvd I get error 'RecoveryMgr.exe is not a valid Win32 application' and it won't open.
    I hope someone has managed to solve this before as I would love my files back.  All suggestions greatly appreciated and thanks in advance.

    Thanks Mumbodog.  Unfortunately I have tried and the files won't copy.  Starting to think they are corrupt!  Have tried on a few different PC's but no luck.  Really annoyed   Any other suggestions?

  • Error Message ABC is not a valid Windows 32 application

    I have an error message “ABC is not a valid Windows 32 application even the games are not working properly. This always occurs when open a file or program. Please suggest way to manage it. My systems configurations are Windows 7, 1GHz 32 Bit processor, 1
    GB RAM. 
    Help required.

    If this occurs for a certain executable, this indicates a corruption of the file, redownload or reinstall it. Perform a chkdsk.
    If this occurs on multiple executables,causes might include disk corruption/failure, memory corruption, malware infection,...
    Check if the issue also occurs in safe mode. http://windows.microsoft.com/en-us/windows/start-computer-safe-mode#start-computer-safe-mode=windows-7 
    Run chkdks on the affected drive(s) ,run antivirus/antimalware and do (from an elevated prompt) sfc /scannow to scan for and repair system files.
    MCP/MCSA/MCTS/MCITP

  • "1325 Error: iTunesHelper.Resources is not a valid short file name"

    I recently got a new hard drive, and I tried to drag all of my iTunes information to it, and it did. But when I opened iTunes, it said that it was not installed properly and that if I wanted to get cd track names I would have to install it again. So I deleted it, and now when I try to reinstall iTunes, I get the following error:
    "1325 Error: iTunesHelper.Resources is not a valid short file name" I don't remember if it was iTunesHelper or iTunesMiniplayer, but it was one of the two. I have tried everything I can think of to fix this. I have tried doing a system restore, getting rid of the registry information for the entire apple corp. folder, and searching for anything iTunes and deleting it. HOW DO I FIX THIS!? I need iTunes to put music on my ipod (which also got deleted during this).
    PLEASE HELP!!

    Ok first of all never try just copying a program folder again. You always need to do an fresh install.
    Try uninstalling iTunes, then going into C:\Documents and Settings\<<Your user Name>>\Application Data\and rename the "Apple Computer" folder to "_Apple Computer"
    Then go to C:\Documents and Settings\All Users\Application Data\ and rename the "Apple Computer" folder to "_Apple Computer"
    Then go to My Documents > My Music and move the files iTunes Library.itl and iTunes Music Library.xml any where else. Do not delete them.
    Then go to C:\Program Files and delete the iTunes folder if it is still there.
    Then reboot.
    Then try re installing.
    After you have that copy your music files to the new PC and use the File > Add Folder option to add them to iTunes. Use the other import features under File to import the other music data

  • I get the following error message when I try to receive e-mail in this hotmail account: "Configuration could not be verified – is the user name or password wron

    I have tried to add a hotmail account to Thunderbird because my Internet provider will stop e-mail support in the near future. I was able to add a hotmail account to Thunderbird, but I get the following error message when I try to receive e-mail in this hotmail account: "Configuration could not be verified – is the user name or password wrong?" (The hotmail website receives the e-mail.) User name and password is certainly correct. I have a 8.1 OS. Thank you.

    got an anti virus that thinks it should scan email. Turn that function off.
    Have a firewall, check that Thunderbird has full internet access, not some Auto rubbish that somehow fails.

  • Dynamics 2015 Installation error SetupServer.exe is not a valid Win32.exe application

    My enviroment:
    Hyper V virtual server
    Windows Server 2008 R2 w/ SP1 running on a domain
    IIS installed
    SQL 2008 installed
    8GB memory on Quad core i7
    I extracted the installation files from the ISO and copied them to a local directory on the server. Right clicked on setupserver.exe and ran as administrator and I get the following error:
    SetupServer.exe is not a valid Win32.exe application
    I tested the same setup files on the Hyper V server and received no errors.
    Any advise most appreciated.

    Windows Server 2012 and SQL Server 2012 are the minimum requirements for 2015:
    http://technet.microsoft.com/en-us/library/hh699671.aspx
    Probably causing you an issue or two.

  • TS2776 i am getting an error itunessetup.exe is not a valid win32 application. please help.

    I have downloaded the itunes setup but i am unable to install it. I am getting an error itunessetup.exe is not a valid win32 application. I have a toshiba laptop with windows 7 starter pack. please advise me what to do. thanks.

    That's a Windows PC issue. What is the Mac OS X Lion issue? In other words what are you posting in the Lion forums about?

  • Error message: iTunes could not back up the iPod "iPod name" because an error occurred

    Every time I try to back up my iPod I get this error message: iTunes could not back up the iPod "iPod name" because an error occurred. How do you fix it?

    Try moving the existing backup file to a safe location and then try again. The backup file is located:
    Mac: ~/Library/Application Support/MobileSync/Backup/
    Windows XP: \Documents and Settings\(username)\Application Data\Apple Computer\MobileSync\Backup\
    Windows Vista and Windows 7: \Users\(username)\AppData\Roaming\Apple Computer\MobileSync\Backup\

  • Installation error 1325 Templates is not a valid short name

    Installing the latest XE on Windows 2000 with 1 GB of RAM. I get the message 'Error 1325 Templates is not a valid short file name'. (I'm installing as administrator by the way.)
    I've checked the forum and found one hit for this problem. I have been over to Microsoft.com (http://support.microsoft.com/?kbid=328162) and got the download for the installer clean up utility.
    When I run this utility, I do not get an option to clean up Oracle XE anywhere - so I cannot proceed any further with the install.
    I have had a previous version of XE installed, but I received a few errors during running of the scripts so I had to manually run the failed scripts and all was well. Unfortunately, I have had to remove it (it killed the PC as I only had 256 MB of RAM back then) but now I cannot re-install.
    Anyone got any ideas about how I can get past this error please?
    Thanks,
    Norman.

    I have finally found the solution. The problem affected all subsequent installations of any app using an MSI installer.
    The registry entry for HKEY_CURRENT_USER\software\microsoft\windows\currentversion\explorer\UserShellFolders\Templates was defined as %USERPROFILE%\Templates with a type of REG_SZ. Unfortunately, because of the %USERPROFILE% part, it should have been a REG_EXPAND_SZ to get the expansion of the environment variable.
    Using REGEDT32 (Regedit doesn't allow the type to be specifically chosen) navigate to the above location and note down the Template setting. Delete the Template value. (Edit->Delete when Templates is highlighted.
    Now Edit->Add Value.
    Enter Templates as the name.
    Choose a Type of 'REG_EXPAND_SZ'
    Click OK.
    Type in the value you noted down earlier, probably %USERPROFILE%\Templates
    Click OK.
    Check it and exit from the regedt32 app.
    Now, double click on the OracleXE.exe file to install it. You do not need to be an administrator to do this.
    If you do try to install as an administrator, you will have to redo all of the above because you only changed it for your own login.
    Trying to Shift+Right-Click and Run as to install as an administrator will continue to give you the same error that I originally reported.
    I suspect that another method of changing the registery is simply to change the %USERPROFILE% part of the original REG_SZ entry to the fully expanded path to something like c:\documents and settings\username\.
    Have fun.
    Cheers,
    Norman.

  • "This message may not have been delivered to User Name because there was no response from the server." in IM chat

    Hello All, 
    Sometime users are getting below error message on the IM windows when they having P2P IM Chat. 
    "This message may not have been delivered to User Name because there
    was no response from the server."
    I can see below error on the Lync 2013 Monitoring page. 

    Hi,
    Please make sure all required ports have been allowed. You can verify that all ports are open can accepting connections using telnet.
    Telnet from External Client:
    Test to SIP.domain.com 443/SIP
    Test to WebConf.domain.com 443/PSOM
    Test to AV.domain.com 443/STUN
    Telnet from Lync 2013 Edge:
    Telnet to Pool.domain.com 5061/SIP
    Telnet from Lync 2013 Pool:
    Telnet to LyncEdge.domain.com 5061
    Telnet to LyncEdge.domain.com 443
    Telnet to LyncEdge.domain.com 5062
    Telnet to LyncEdge.domain.com 4443
    Telnet to LyncEdge.domain.com 8057
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • When I try to log into the app store to update apps or buy apps the user name that appears is an old one and it will not bring up the current user name/ email how do I stop that so that my current email show up ??

    When I try to log into the app store to update apps or buy apps the user name that appears is an old one and it will not bring up the current user name/ email how do I stop that so that my current email show up ??

    Settings>Store: Tap the AppleID and choose "Sign Out", it will then prompt you to sign in and you can use the new AppleID.
    NOTE: Apps must be updated with the AppleID they were purchased under.
    EE

  • Documents that are park in FBV0 do not update with the new user name when

    Hi,
         I need to find out why documents that are park in FBV0 do not update with the new user name when any changes are made.  Also when we park using MIR7 and make changes to the documents at a later time the document updates with the new users name.
    Requesting you to please suggest what could be the reason.
    Earliest reply will be highly appreciated,
    With regards,
    Rj

    Hi,
        I have checked this in system. I posted one Parked invoice using T.code FV60 and there i appeared my name because i created. But after some time one of my collegue changed the reference and text field with his login i.d. But still in the invoice it is showing as my name whereas if we go to the environmnet, there in the changes we can see what are the changes done and it is appearing my collegues user i.d. But in the main invoice it is still appearing my name.
    Regards,
    Rj.

Maybe you are looking for

  • How install my jar+native package for JRE plugin

    I cannot figure out how to deploy a plugin consisting of a Java package that calls native code. The calling order is: Applet -> installed classes in lib/ext/my.jar -> DLL in C:\\WINDOWS\SYSTEM32 I have gotten my plugin to work on Windows IE using the

  • Problem compiling Coin3D from AUR

    I'm trying to build coin for the freecad package and I am running into what looks like some kind of conflict with freetype. I have extra/freetype2 2.4.11-2  and extra/libxft 2.3.1-1 installed. I just did a full system upgrade this morning before tryi

  • Creating Sales Order for "Payer" thru VA01 trans.

    Dear All, In our project, we have stations which r  <b>Sold-to-party</b> and <b>Credit customers</b> which is a <b>Payer</b>. We have to create <b>Sales order</b> for both <b>Stations</b> and <b>Credit customers</b>. Creating Sales order for Station

  • How can I view iTunes charges without having iTunes?

    How can I view iTunes charges without having iTunes? Unless you have iTunes installed. I cannot find a way to see details about charges to my account. I understand that a confirmation email is sent after each charge, but unfortunately I delete those.

  • [SOLVED] Can't update because of xmonad dependencies

    I noticed some trouble I've been having with xmobar and xmonad, so I figured I would try making sure everything is up to date before I did anything else, since that often solves problems. But when I try to run pacman -Syu or yaourt -Syu, it halts bec