Cannot create Org. and Groups BP.

I'm trying to create a BP Org. but the button in BP is grey-out. The only BP I can create is Person.
When I look at the Settings->Authorization Overview, I can see the the option to create Org and Grp is unchecked.
The account I'm using has the profile SAP_ALL. I've checked the BAPU_GRP and BAPU_RLT, all are * as default.
Where else should I check?

Hi Larry,
What is the ABA release you are on?
IF it is below 640, check the following:
Transaction:BUSD
Check the details of the BP Role '000000'.
It should be valid for all the business partner categories 'Organization', 'Person' and 'Group'.
Regards,
Sudheer.

Similar Messages

  • Cannot Create a New Group

    All of a sudden, I cannot create any new groups within Address Book! Will not work either from the plus sign at the bottom of the group list or the main menu!
    Any advice on how to resolve?

    quit Address book and delete the file homedirectory/library/application support/address book/AddressBook-v22.abcddb. then start Address Book and see if you can create groups.

  • Error message:FRM-12001: Cannot Create the record group(check your query)

    Requirement: Need to get employee name and number in the LOV in search criteria.
    So I created LOV "full_name" and Record group Query under Employee Name property palette with
    select papf.title||' '||papf.last_name||', '||papf.first_name||' '||papf.middle_names emp_full_name
    ,papf.employee_number
    from apps.per_all_people_f papf, apps.per_person_types ppt
    where sysdate between papf.effective_start_date and papf.effective_end_date AND papf.person_type_id=ppt.person_type_id AND ppt.system_person_type IN ('EMP', 'OTHER', 'CWK','EMP_APL')
    AND PPT.default_flag='Y' and papf.BUSINESS_GROUP_ID=1
    order by papf.full_name
    I was unable to save and getting error message "FRM-12001: Cannot Create the record group(check your query)".
    I cant use PER_ALL_PEOPLE_F.FULL_NAME since full name here is last_name||title||middle_names||firstname.
    But my requiremnet is papf.title||' '||papf.last_name||', '||papf.first_name||' '||papf.middle_names emp_full_name .
    Can any one of you help me.

    First, Magoo wrote:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy">create or replace function emp_full_name ( p_title in varchar2,
    p_last_name in varchar2,
    p_first_name in varchar2,
    p_mid_names in varchar2 ) return varchar2 is
    begin
    for l_rec in ( select decode ( p_title, null, null, p_title || ' ' ) ||
    p_last_name || ', ' || p_first_name ||
    decode ( p_mid_names, null, null, ' ' || p_mid_names ) full_name
    from dual ) loop
    return ( l_rec.full_name );
    end loop;
    end;</font></pre>
    Magoo, you don't ever need to use Select from Dual. And the loop is completely unnecessary, since Dual always returns only one record. This would be much simpler:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy">create or replace function emp_full_name
    ( p_title in varchar2,
    p_last_name in varchar2,
    p_first_name in varchar2,
    p_mid_names in varchar2 ) return varchar2 is
    begin
    Return ( Ltrim( Rtrim ( p_title
    ||' ' ||p_last_name
    ||', '||p_first_name
    ||' ' ||p_middle_names )));
    end;</font></pre>
    And second:
    user606106, you did not mention how you got your record group working. However, you DO have an issue with spaces. If you change this:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy">select papf.title||' '||papf.last_name||', '||papf.first_name||' '||papf.middle_names emp_full_name
    ,papf.employee_number </font></pre>
    to this:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy">select Ltrim(Rtrim(papf.title||' '||papf.last_name||', '
    ||papf.first_name||' '||papf.middle_names)) AS emp_full_name,
    papf.employee_number</font></pre>
    it should work. The Ltrim(Rtrim()) removes leading and trailing spaces from the resulting full name.

  • FRM-12001:  Cannot create the record group (check your query).

    I WANT TO ADD A RECORD GROUP IN PRI BUILD FORM THE QUARY IS VERY SIMPLE LIKE
    SELECT item_code
    FROM items
    WHERE active = 'Y'
    AND item_code like 'FAJ%'
    BUT THE SYSTEM SHOW THE ERROR MESSAGE
    Cannot create the record group (check your query).

    Make sure the user connected to the database from the forms builder has the privilege of select from the table, or there's a synonym.
    Try your query from SQL*Plus connected with the same user.
    Tony

  • Cannot create cursor for group

    Hi All,
    Iam trying to Integrate Reports(jsp) with our J2ee application. I have deployed the Application throgh OEM . I have a created sample report JSP through Reports Devloper Suite and it is displaying fine. Now when I try to run the JSP created by the Reports Devloper team. They are not running fine.One of the reports gives the following message in browser "Cannot create cursor for group " . I see no exception in the logs too.
    Iam using 10g 10.1.2.0.2 Oracle Application server.
    Iam also using thin Client.
    Thanks In Advance for the Help.

    seel my previous posting

  • Fiori Error while creating catalog and Group in Fiori Launchpad

    Hi ,
    We are getting following error while creating Catalog and Groups in Fiori Launchapd:
    Error (500, Internal Server Error) in OData response for GET "/sap/opu/odata/UI2/TRANSPORT/CustomizingRequests?$filter=isDefaultRequest%20eq%20true": HTTP request failed
    Details: Model 'ZTRANSPORT_MODEL_0001_BE' contains errors. Contact Adminstrator
    Regards,
    Trilochan
    Message was edited by: Michael Appleby

    Hi Trilochan,
    Have you assigned transport request? Select the config icon at right top.
    Creating Transport Requests for User Changes - User Interface Add-On for SAP NetWeaver - SAP Library
    Also look at SAP Fiori - UI Add-on SP09 update troubleshooting
    Regards, Masa
    SAP Customer Experience Group - CEG

  • Creating users and groups

    Hi all,
    I have about 100 users and many groups.
    How can i create users and groups quickly?
    Appreciate any help

    Like the way you export planning application to file system and use it as a source to migrate it, In the same way take shared services file system export in the file system and migrate it to the new environment.
    Cheers..!!!
    Rahul S.

  • How to create users and groups using WLST Offline with Weblogic 8.1.4

    How to create users and groups using WLST Offline with Weblogic 8.1.4?
    Any ideas?

    Hi this is how i created a user using WLST Offline?
    cd('/Security/' + domainName)
    # Delete the default user name weblogic
    # incase you want to remove the defualt user weblogic
    delete('weblogic','User')
    # Creating a new user defined
    create(userName, 'User')
    # Setting the password of the user you created.
    cd ('/Security/' + domainName + '/User/' + userName)
    cmo.setPassword(password)
    Regards
    Makenzo

  • Cannot create to distribution group for a tenant on hosted exchange 2010

    hi everyone,
    I have installed a hosting exchange 2010 than created a tenant1 and users in this tenant1. 
    I would like to create a distribution group named "dist group1" for tenant1 for exp: [email protected]
    but while I was trying, I got following the errors;
    [PS] C:\Windows\system32>New-DistributionGroup -name "dist group1" -Alias distgroup1 -PrimarySmtpAddress "[email protected]" -DisplayName "distgroup1" -Organization tenant1 -ManagedBy "onder.cloud/Microsoft Exchange
    Hosted
     Organizations/tenant1/tenant1 Admin"
    Name                          DisplayName                   GroupType                     PrimarySmtpAddress
    dist group1                distgroup1                Universal                     [email protected]
    [PS] C:\Windows\system32>Get-DistributionGroup
    [PS] C:\Windows\system32>Enable-DistributionGroup "distgroup1"
    The operation couldn't be performed because object 'distgroup1' couldn't be found on 'clouddc01.onder.cloud'.
        + CategoryInfo          : NotSpecified: (0:Int32) [Enable-DistributionGroup], ManagementObjectNotFoundException
        + FullyQualifiedErrorId : 11C76BCC,Microsoft.Exchange.Management.RecipientTasks.EnableDistributionGroup
    please help me,

    Hi,
    In order to narrow down the cause, I’d like to recommend you can try the following troubledhooting:
    1.  Check if the distribution group exists in ADUC on your DC server. And you can refer to the following path:
    DC>ADUC>Domain.com>users
    2. Create another distribution group to have a test.
     I refer to the following article to create a new distribution group, and it works well:
    http://www.msexchange.org/articles-tutorials/exchange-server-2010/management-administration/managing-distribution-lists-exchange-server-2010.html
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make
    sure that you completely understand the risk before retrieving any suggestions from the above link.
    Thanks,
    Angela
    Angela Shi
    TechNet Community Support

  • Cannot create new Calendar Group in Mountain Lion

    I am using a brand new iMac. I didn't use the migration tool-- instead I exported all of my Calendars from Snow Leopard and Imported them via the File menu in the Calendar application in Mountain Lion.
    Under the File menu, there is no "New Calendar Group" option. Command-Shift-N results in an error alert sound and no action.
    I do not use iCloud for anything other than email-- everything is turned off in System Preferences.
    In Calendar, under the Preferences -> Accounts section, I have NO accounts. It is completely blank.
    My previous groups from my export/import are there under the "On My Mac" section of the Calendars panel. I can edit them. But I cannot create any new ones.
    Any suggestions? Everything on the internet says I need to deactivate my iCloud account calendars... but I don't use them.

    Ah, Barney, you are a lifesaver!
    Sorry for the late reply, I was away from my computer this weekend.
    All of my calendars had been in groups. I moved one of them outside, and TA DA-- "New Calendar Group" appeared.
    Thanks so much for the help. I will have to leave 1 calendar outside of a group so I can add as many as I'd like.

  • AME iExpenses: Cannot create new approver group

    We need to set up approver groups for iExpenses. I assigned myself Approvals Management Administrator and Aprovals Management Business Analyst roles. With these roles I can create new attributes and conditions. However, I cannot create new action types and approval groups. The create button for the approval group just does nothing.
    What am I missing? We are 11.5.10.2, AME.B

    Pl see if ML Doc 420387.1 (How to Create the Approval Transaction Type for AME.B or higher ?) can help
    HTH
    Srini

  • Cannot Create, open and run task in NI MAX

    Using the NI MAX is very perplexing to me.
    I have been using it for a lone time and I had no problems in my my PC
    Till then I installed NI MAX and NI DAQmx in another production PC.
    In it, I could not open  or run the tasks which I had imported.
    Worse still I could not create a new task.
    What could be the problem?
    I had used the same versions for both PCs.
    When there are errors, I saw that said it is standalone program I am puzzled. Is that because the prodcution PC does not have Labview Development?
    It cannot be.
    Pls advise
    Clement

    Ok Here are snap on clips
    Here I cannot create  a new task or I do not see a similiar like this above.
    Here are errors when I tried to open the device's  test panels.
     Pls advise
     Thanks in advance

  • Create user and group

    I want to create a user and group for an Squid installation, I have no problem creating the User, but I don't know how to create the group. Can anyone help me?

    The most appropriate way to do this depends on the specifics. I assume you created the user in the Accounts pane of System Preferences. If so, you will automatically have created a group of the same name if you're using Tiger. Whether this is a good way to do it depends on whether the user needs to be a "normal user" who can log in to the machine etc. If not, it is better to create the user and group using another method (command line in Terminal or using NetInfo Manager, for example).
    - cfr

  • Extended Classic Scenario PPOMA_Purchasing Org and Group

    Hi gurus,
    We are working with SRM 5.5 and we are having problems with the assignments for the Purchasing organization and Purchasing groups in the PPOMA.
    In the documentation it says we should have one box for the R3 Purchasing Organization (flagged and referred to the backend POrg) and one for the Local Purchasing Organization (flagged but NOT referred to the backend POrg). The same for the Purchasing Groups, the one under R3 POrg will be flagged and referred to the PGroup in R3 and the one under the Local POrg will have the flag but it will not be referred to the backend PGroup.
    Afterwards, in the attributes for the Local POrg and Local PGroup, with the attributes PURCH_ORGX and PURCH_GRPX the local and the R3 POrg and PGroup will be assigned each other.
    The purchasers will be located in the Local PGroup. The R3 POrg and PGroup will never have users assigned.
    The problem is that all the workflow is only working if the "Local" POrg and Group have the backend purchasing organization and purch group assigned in the Function Tab. This means that the 2 boxes for R3 are no longer necessary. In the documentation it says that this version of SRM needs both boxes for the POrgs and the 2 boxes for the PGroups. We have flagged the Extended Classic Scenario.
    Any help on this? It's because of the version?
    Many thanks and regards,
    I will give Points!

    Hi Ana
    PURCH_GRP     Purchasing group     Number of an organizational unit that is indicated as local purchasing group in the organizational plan.
    This attribute is simulated. You define an organizational unit as company on the Function tab.
    PURCH_GRPX     R/3 purchasing group     Number of an organizational unit that is indicated as the R/3 purchasing group in the organizational plan. The value contains the ID and the associated backend system of a backend purchasing group.
    This attribute is simulated. You define the ID and the associated system on the Function tab.
    PURCH_ORG      Purchasing organization     Number of an organizational unit that is indicated as local purchasing organization in the organizational plan.
    This attribute is simulated. You define an organizational unit as purchasing organization on the Function tab.
    PURCH_ORGX     R/3 purchasing organization     Number of an organizational unit that is indicated as the R/3 purchasing organization in the organizational plan.
    This attribute is simulated. You define the ID and the associated system on the Function tab.
    can you elaborate more?
    in ECS also we can map the backend purchase organisation/ purchase group for purchasing activity.
    there might be a resposibilty tab for the backend purchase group might be mapped the responsible purchaser list (dept).plz check it up
    regards
    Muthu
    regards
    Muthu

  • Cannot create links and bookmarks in version 10.1

    I am trying to create links in version 10.1 for an e-book from table of contents. I know you are supposed to highlight words and use the link tool (chain image) however I cannot find this either on the tool bar or under tools. I am using PC.

    Your in the Adobe Reader Forum.
    You've a  good question "thread" for this Acrobat Forum: http://forums.adobe.com/community/acrobat/creating__editing_%26_exporting_pdfs
    Be well...

Maybe you are looking for

  • App Downloads to more than 1 playbook

    how do I purchase an app for one of my playbooks but download to all three I own.  Each Playbook is bridged to three different phones.  All phones are connected to one wireless billing account

  • Payment Run Deletion

    Hi, We would like to know if there is a way to remove or purge the list of payment/proposal runs for the automatic check creation transaction F110? There are now over 500 or so items in the list and though we know you can't delete the run from SAP we

  • My document don't print the same color when I print it from PDF rather than InDesign

    I have a vector image that don't print the same color when I export it to PDF but the colors are the same on the screen. How can I be sure to have the same colors as my InDesign original document when I print it as a PDF ?

  • Wouldn't it be cool if...

    Just thinkin.. Imagine if Logic had: 1) dedicated buttons to toggle monitoring the headphone bus or main stereo outs? 2) A "take" folder for mixer automation (like the tempo alternative list), so you could save several different mixes in one project?

  • Photoshop CS3 for MAC.

    Adobe don't recognize my S/N on "start-up Also Photomerge don't launch but gives me an "error message" to long to enter here. I have to then do a "force Quit" of the application. Harry 1