Partmer schema assignment Doubt ......

Hi Gurus,
I hv a doubt/query,
1.Partner schema is assigned to Account group,
as All the PO, having vendor with that account group will get the partners from partner schema.
2.Partner schema is also assigned to doc. type of po.
As all the POs for that doc. type will get the parters from partner schema.
but if I have done both of the seeting i.e. assign partner schema to account group as wll as doc. type of po.
then,which partner schema wil be pulled ?
and what happen, if I will assign diffenent partner schemas in account group and doc. type,
then to whom the system will give priority ?

Hi Himanshu,
Apart from the said partner schema. You must have to maintain the schema group (which is defined for the respective main vendor accoung group) for vendor in the Vendor master record. Otherwise it will not pull any of the partner schema that you have configured for the vendor.  And thats how the schema group for vendor master will workout.
Eg. this schema group for vendor master is always when a vendor is having its own specific pricing procedure. then we have to go for schema group for vendor.  And system will always look for the schema group that is assigned in the vendor master. If it is not there (say for eg. blank ---)  then it will pick default pricing procedure/calculation schema (that is RM00000 - which is pricing procedure - purchasing Big) for calculating the pricing for the material/goods when it is ordered (that is while creating the PO for the respective item).
Hope it clarifies you.
Regards,
Sapsrin

Similar Messages

  • No Categorization Schema assigned to application Area

    Hi Friends,
    I am getting following error message while creating a BP Contact persom from IC WebClient.
    "No Categorization Schema assigned to application Area(BUS_ACTIVITY, SUBJECT_PROFILE, ACT000001)"
    The BP's are getting created, but the message appears once we try to identify the account.
    I think I am missing some configuration.
    Can you pls help me on this ?
    Thanks and warm regards
    Purnendu

    Hi Maiti ,
    Category modeler provides you four fields in the order type you wish to see it these fileds can be used as per your requirements and you can set a logical drop down say if A is selected in the first field then what should appear in the second & so on .
    To activate
    1.Add the CRM BSP application CRMM_ERM_CAT
    2.Launch the category modeler
    3.Select the advanced search and then go
    4.Create new schema
    5.keep the status in general tab as draft,go to application area and select the service ticket(where you want to see it).Go to categories tab
    6.Here you create a sub note say product
    7.create a subnote to this which will appear in the next field when product is selected in the first....and so on.
    Now once the logical seq is set ,go to general tab and set the status to released.It takes 24 hours for the schema to be active .Once it is active you can see the fields in your application area

  • No categorization schema assigned to application area SERVICE_ORDER ...

    Hy guru,
    when i go to the service ticket in Interaction center Web Client, i canu2019t use the multilevel categorization.
    I have created in ic_manager a schema which I assigned the area application u201Cservice orderu201D, but when I go to the service ticket the following message error is shown:
    No categorization schema assigned to application area (SERVICE_ORDER, SUBJECT_PROFILE, SERVICE),
    and in the area u201Ccategorizationu201D, there is only the button u201CAuto Completeu201D disabilited.
    Can you help me???
    Thanks
    Virginia

    Ok, then go through it and do not forget to deploy your settings.
    For more information regarding the CM, check this [link|http://help.sap.com/saphelp_crm50/helpdata/en/cf/86c9c802dc4c92a9f8d43bdf5d426e/frameset.htm]
    I hope it will be helpful.
    Regards
    AleX
    Edited by: Alexandro St. Torro on Dec 1, 2008 5:38 PM

  • Error  No categorization schema assigned to application area (, , )

    hi all,
    i am getting the error( No categorization schema assigned to application area (, , ))
    in web ui while clicking on category drop down in service request.
    it is working fine before ehp1 enhancement but now it is showing error.
    but still functionality is working only error is displayed.
    plz tell me the required step for it.i have even tried note:1268739

    Did you resolved this issue? I am facing same error message now in EhP1...

  • Permissions issue - schema assignment?

    Hi,
    Running application express 2, Oracle 9i (I know!)
    I'm looking into using apex as an alternative to crystal reports for some of our staff, they only use crystal to generate xls documents so apex should work fine for them. However I'm running into a permissions issue, most likely due to my lack of understander of how workspaces and schemas really work together.
    We have some internal tools written in APEX which I don't want these new developers to be able to mess with, so I've created a new workspace called "crystal", I've also created a schema "crystal_apex" which has been assigned to the crystal workspace. This schema/user has been granted select access on the various tables it needs to access in other tables via a role, "crystal_role" (this is pre-existing and gets granted to anyone who needs to log in via crystal).
    So, if I log into sqlplus as crystal_apex, I can happily run queries against the tables this user has access to via the role, however, access via the SQL Commands tool, any sql run against tables not in the crystal_apex schema fails. Even if I add another schema to the workspace, I can only query against that schema by changing the "schema" dropdown in the SQL Commands tool. If I do switch to using the other schema, the workspace now has full access to that schema, something I do not want, the crystal users have a very restricted level of access.
    Is it possible to query/create reports against schemas other than the one apex is connected as? If not, how can you do any cross schema queries (something very common in our database). I'm sure I have done this before in our other workspace, however I cannot recall how I set it up.
    It seems if I grant the rights directly to the schema (apex_crystal) rather than via a Role, then the permissions work fine, however only the schemas explicitly granted in apex show up in the query builder/object browser. Is there any way around this, or is this different in newer versions of apex?
    Any help in the right direction would be greatly appreciated.
    Edited by: nib000 on Aug 12, 2009 2:49 PM
    Edited by: nib000 on Aug 12, 2009 2:56 PM

    Hi,
    Since this is a somewhat related topic I am cross posting from another thread.
    I have successfully made a policy using dbms_fga, however am having trouble viewing the audit view based on dba_fga_audit_trail. I had the dba create a view based on the dba_fga_audit_trail limited to my schema--call it 'my_audit_view'. So she granted all on 'my_audit_view' to 'my_schema'. She also did same grants to my userid in Apex. I still cannot see the view in the Workspace -- 'table or view does not exist'. What does she need to do to make this audit view available to an apex user in this workspace? Does the grant actually have to be done to apex_public_user (hope not)?? It is interesting that I was able to create the policy from the Apex workspace SQL Worksheet:
    begin
    dbms_fga.add_policy(
    object_schema => 'my_schema',
    object_name => 'my_table',
    policy_name => 'my_table_audit',
    audit_condition => null,
    statement_types => 'insert, update,delete');
    end;
    And she showed me that the view does exist and shows the inserts, updates I performed subsequent to the execution of the above, but I cannot run the view myself at this point within my Apex workspace -- which has only 1 schema -- 'my_schema'
    Secondly, assuming I get beyond this issues of being able to see the view as a developer, if I want to create a report based on 'my_audit_view' in an application that an 'admin' type user can run on a page in an application (assuming the authorization is set up for the page), is there some other security step that has to be done to make audit view available to the application report??
    Thanks,
    Pat

  • Flexconnect dynamic VLAN assignment doubt

    Hi, all,
    I am trying to understand how FlexConnect with dynamic VLAN assignment works. We have the need to dynamically put people in different VLANs based on their AD groups (all employees use the same SSID), I can understand that in traditional CAPWAP mode, AP just tunnels all traffic to WLC, WLC is the authenticator and it knows  what users' identities are and can encapsulate user traffic to different VLANs before send the traffic to the switch it connects. Here is the part I don't understand:
    1) If APs are operating in Flexconnect mode (APs are trunking to switches), how does each AP know what VLAN tag to put a specific user traffic on? AP is not authenticator, it knows nothing about associated client's AD identify. How does WLC convey the dynamical VLAN information to APs?
    2) I want to eliminate WLCs in remote offices by letting all remote office APs join HQ WLC with FlexConnect mode, I can keep the same VLAN mapping scheme in remote office switching environment, in some offices I want to do local authentication (Domain controller + Radius Server), looks like I can specify Radius server in FlexConnect group, in this case will APs become authenticator? Since Radius clients have to be explicitly configured on NPS/Radius server side, does this means I have to statically configure each AP's IP?
    3) I have over a dozen APs in HQ which are operating at FlexConnect mode, but the SSID's "local central authentication" checkbox is not checked, if I want to have local authentication in remote office,  seems that I have to turn on "local authentication" on this SSID, does that mean I have to add each and everyone of those HQ APs to Radius/NPS server client list?
    Thanks,

    Hi ,
    1) Aps knows about Vlans as we can define them inside the Flex connect groups. This is the same way we define flex connect ACLs which are pushed to the Flex APs and are returned by the Radius server later on.
    2) If you are going for Central authentication + local switching ....WLCs will always act like central authenticator and would talk to the radius server. If you have some radius servers at the local site and you want them to use without going through the central authentication..you can do that using (local authentication + local switching). Yes, In this case AP will be authenticator and would be AAA client to be added in the Radius server.
    3)yes ,,you are correct. If you want that your AP should do authentication and talk to the local radius server at the site , it has to be added in the Radius server.
    Regards
    Dhiresh
    **Please rate helpful posts**

  • Service Pricing schema assignment

    Dear All
    I've configured service pricing condition and created new Service schema in External Service Management.I have done the assignment in "Variable calculation schema for services" by assigning the new document type with new service schema.
    But when I'm creating Service PO with respect to Service Master, system is throwing this error
    Conditions for service price determination incomplete
    Message no. SE477
    I've created my own Service PO document type.
    In normal document type, system is picking the Standard Service conditions.But when i'm putting my document type to create Service PO,I'm getting the error.
    Can anybody help me out from this issue???
    Thanks & Regards
    Madhesh Kumar

    Hi,
    Even if you set up your own calculation schema, it is advisable         
    to first adopt the SAP standard setting from client 0 and then          
    change this schema in accordance with your requirements.  
    Select transaction: Schema for services                           
    Copy procedures MS0000 and MS0001 from client 0.                  
    Then select the two procedures and perform the "Control"          
    function.                                                         
    On the following overview screen you copy all levels from client  
    0.                                                                
    You do this for procedure MS0000 and procedure MS0001.                                                                               
    If price determination problems still occur with regard to services even         
    after you have adopted the schema, check whether the exclusion indicator         
    has been set for condition type PRS.                                             
    In Customizing, you do this via the following menu path:             
    -> Materials Management -> Service                                   
    -> Maintain Conditions for Services                                  
    -> Conditions: Condition types  
    -> Double-click on condition type PRS    
    If this exclusion indicator has not been set, fill this field with an             
    "X".                                                                               
    If the system does not allow this value, you must first maintain it               
    using Transaction SM30.                                                           
    After starting transaction SM30, enter the value "V_T686A" in the field           
    "table/view" and press the function "Maintain".                                   
    Enter the value "MS" in the field "Application" in the dialog box "Work           
    area".                                                                            
    On the overview screen which is displayed, you can again perform the              
    function "Comparison with client 0" in the menu "Utilities".                                                                               
    When you have done this, the system should allow the value "X" in the             
    field "Exclusion indicator" of condition type PRS.                                                                               
    Copy the condition types from client 0.     
    Regards,
    Edit

  • Multiple schemas assigned to a workspace

    I'm trying to write an app that accesses other schemas besides the apex user I'm using. I can't figure out how to assign more than one schema to a workspace. All help is sincerely appreciated
    Rich

    you don't have to assign other schemas ... but you can access them.
    Suppose you have default schema X (x is user that own that schema) in worspace, tableA is in schema A and tableB is in schema B.
    Then you login as user A (that own schema A) and exceute:
    grant select on tableA to X;Then you login as user B(that own schema B) and exceute:
    grant select on tableB to X;Now you can as user X (whose schema is default in your workspace) select data from both tables: tableA and tableB as well.
    Login as X user and execute:
    select * from a.tableA;
    select * from b.tableB;If you want to ommit that schema prefix in front of table names, you can as user X execute:
    create synonym tableA on a.tableA;
    create synonym tableB on a.tableB;Now you can execute query like:
    select * from tableA;
    select * from tableB;but thoise object are not in schema X but in scema A and B...
    Hope this helps! The best way for other questions in this subject to place in other forum...

  • Schema Assignment to WORKSPACE

    Hi,
    I developed Application in one of the custom Schema.
    WORSPACE : DEMOSPACE
    SCHEMA : DEMO
    Can i assign one more existing schema to "DEMOSPACE" like OE,SCOTT,HR..
    Best Regards
    Perumal Swamy.R

    Actualy while adding schema the process is
    completed.Eh? You are one confusing person. So you are already able to successfully associate another schema to your workspace?! So why in the world are we talking about that part? Why not focus on your real problem.
    Creation Method: As an application on a database
    table
    Table / View Owner DEMO (LOV Shows only DEMO
    Schema which is the Workspace owner).Clearly, you are using HTML DB Version 1.6 (that is something else you should mention up-front to avoid confusion)
    That Schema dropdown on that page is supposed to show you all the schemas associated with that workspace.
    If it does not, maybe your userid is restricted to access only subset of all schemas available to the workspace.
    Log in as a workspace admin and go to
    Home>HTML DB Workspace Administration>Manage HTML DB Users>Existing Users>Edit User for the userid that you are logging in as.
    Make sure that the "Accessible Schemas (null for all)" box is blank. This will ensure that the user will have be able to build applications using any of the schemas available to the workspace.

  • ECCN Numbering Scheme Assignment

    Hi,
    When you have defined numbering scheme(NS) for ECCN for exports
    what is use of assignment to
    1. Assignment NS of Export List to License management
    2. Assignment NS of Export List to Legal Control
    I understand 1st one for license determination but what is the 2nd assignment used for? In Help both have same description
    Can anybody guide me?
    Thanks,

    Hi Kiran,
    Yes you are right, this is not properly explained in Help.
    First one is for license maintenance i.e. You have defined a numbering scheme for each of the legal regulations with which you maintain ECCN's in the licenses and in the
    customs product master.
    Second one i.e assignment of numbering scheme to Legal Control is for license determination. Because license determination tables contain the attribute Export Control Classification Number.It is important to determine the relevant license type at control class and legal regulation level
    Regards
    Vivek Nair

  • No categ. schema assigned to applic. area(SERVICE_ORDER, SUBJECT_PROFILE, )

    Hi SAP CRM experts,
    I'm working on SAP CRM 2007 with interaction centre web UI - Service
    Tickets management.
    I'm encountering a problem with multilevel categorization:
    let suppose that I identify an employee, the Interaction record is
    created, than I create a service ticket as a follow up from it. The
    multilevel categorization works correctly.
    Then I end the interaction by clicking on the button end under the
    Header Area.
    The current interaction ends and I'm able to identify a new BP: the
    Interaction Record is correctly created. Now I create a Service Ticket
    as a follow up from the Interaction Record. In this case, the
    multilevel categorization schema is no more available and an error
    message is displayed by the system.
    What should I do?
    Thanks in advance,
    Andrea Ricci

    Hi Andrea
    Would you be able to share with the Forum how the issue was resolved.
    Regards
    Arden

  • Application Builder Applications List View Detail - Parsing Schema

    When viewing all applications in the Application Builder using the View Detail option the list of applications is shown with the Parsing Schema showing APEX_040100 or APEX_040200 according to the apex version. Shouldn't it show the actual schema that the application will use?

    Prabodh wrote:
    Hi,
    How will Apex know the actual schema without getting into the code and analyzing it?
    I meant just showing the actual "parsing schema" which is set for the application, not all the possible schemas the application may actually reference. The parsing schema is one of the parameters asked for when importing an application. It is also defined in the application definition.
    A workspace can have any number of schema assigned to it, other than the Default Parsing one. So, the only other option would be to list all the assigned schema. Which in my opinion (and most probably in the mind of the designers of Apex as well ) will be an unnecessary long list.In my opinion it seems unnecessary and fairly useless to show the APEX schema (APEX040100, APEX040200) when listing a few details of the application. Just wondering if it is on purpose or an overlooked bug.

  • Pricing Conditions in Foreign Price Calulation Schema

    How do we handle the duties and charges for foreing PO that are not known at the time of creation of PO. These costs are only confirmed after the material is delivered or invoice is received by vendors.

    you can have conditions in schema for CVD, BCD, AED, Cesses etc, you can see standard condtions in m/06.
    in the schema assign the account key and accural keys. in OBYC you will have to assign the corresponding GL
    assign the CVd condtion to default values in SPRO LG tax on goods movement India default values.
    in P.O put the percentage values. enter the custom vendor number by clicking open the condiditon in PO
    when the material arrive, you can do MIRO for plan costs for the actual custom valuation amount.
    while doing MIGO you can transfer the plan MIRO value by entering the MIRO doc number in the pop up

  • Schema owner identified externally

    I have an oracle 11g, apex 3, OHS implement. The schema assigned to my workspace has owner, identified externally. I can find no workspace/schema relation administering Oracle-XE. Looks like the database username that logs in to the Administration Home is the schema to be parsed. My trouble is that I cannot login to the Administration Home with the user identified externally.
    Please advise.

    I've upgraded the version of Apex that was installed with Oracle-XE. I matched Apex version with that of the Oracle 11g environment; that is, version 3.1.2. So, now I can create developers and workspaces that reference schemas of the developers' choosing, than the one developer (database user) owning the schema it references.

  • Transaction ME23N; Create purchase order- Account assignment tab

    Hello , do you know in which table the info for account assignment for a purchase order is kept?
    e.g just like EKBE is used for Purchase order history.
    thx.

    Table Description u2013 All Tables: Purchasing
    EBAN  Purchase Requisition 
    EBKN  Purchase Requisition Account Assignment 
    EBUB  Index for Stock Transport Requisitions for Materi
    EINA  Purchasing Info Record: General Data 
    EINE  Purchasing Info Record: Purchasing Organization D
    EIPA  Order Price History: Info Record 
    EKAB  Release Documentation 
    EKAN  Vendor Address: Purchasing Document 
    EKBE  History per Purchasing Document 
    EKBEH  Removed PO History Records 
    EKBZ  History per Purchasing Document: Delivery Costs 
    EKBZH  History per Purchasing Document: Delivery Costs 
    EKEH  Scheduling Agreement Release Documentation 
    EKEK  Header Data for Scheduling Agreement Releases 
    EKES  Vendor Confirmations 
    EKET  Scheduling Agreement Schedule Lines 
    EKETH  Scheduling Agreement Schedules: History Tables 
    EKKI  Purchasing Condition Index 
    EKKN  Account Assignment in Purchasing Document 
    EKKO  Purchasing Document Header 
    EKPA  Partner Roles in Purchasing 
    EKPB  "Material Provided" Item in Purchasing Document 
    EKPO  Purchasing Document Item 
    EKPV  Shipping Specific Data on Stock Tfr. for Purch. D 
    EKRS  ERS Procedure: Goods (Merchandise) Movements to b 
    EKUB  Index for Stock Transport Orders for Material 
    EORD  Purchasing Source List 
    EQUK  Quota File: Header 
    EQUP  Quota File: Item 
    T- Tables
    T024  Purchasing Groups 
    T024E  Purchasing Organizations 
    T024W  Valid Purchasing Organizations for Plant 
    T024Z  Purchasing Organizations 
    T027A  Shipping Instructions, Purchasing 
    T027B  Texts: Shipping Instructions 
    T027C  Codes for Compliance with Shipping Instructions 
    T027D  Compliance with Shipping Instructions: Texts 
    T069  Certificate Categories 
    T069Q  Control Data for Source Determination and Checkin 
    T069T  Certificate Categories: Text Description 
    T160  SAP Transaction Control, Purchasing 
    T160B  SAP Transaction Control, List Displays, Purchasin 
    T160C  SAP Transaction Control for List Displays in CALL 
    T160D  Function Authorizations: Purchase Order 
    T160E  Function Authorizations: Purchasing: Descriptions
    T160I  Control of Intrastat Reports 
    T160J  Text Table for Intrastat Reports 
    T160L  Scope of Purchasing Lists 
    T160M  Message Control: Purchasing (System Messages) 
    T160O  Description of Scope of List 
    T160P  Entities Table Routines 
    T160Q  Scope of List: Buyeru2019s Negotiation Sheet: Routine
    T160R  Routines for Buyeru2019s Negotiation Sheet 
    T160S  Selection Parameters for Purchasing Lists 
    T160T  Description of Selection Parameters 
    T160V  Default Values for Purchasing 
    T160W  Description for Default Values for Purchasing Ope
    T160X  Scope of List: Buyeru2019s Negotiation Sheet 
    T160Y  Scope of List: Buyeru2019s Negotiation Sheet: Descrip
    T161  Purchasing Document Types 
    T161A  Linkage of Requisition Doc. Type to Purchasing Do
    T161B  Default Business Transaction Type for Import 
    T161E  Release Codes 
    T161F  Release Point Assignment for Purchase Requisition
    T161G  Release Prerequisite, Purchase Requisition 
    T161H  Fields for Release Procedure, Purchase Requisitio
    T161I  Determination of Release Strategy 
    T161M  FineTuned Control: Message Types 
    T161N  Message Determination Schemas: Assignment 
    T161P  Check of Document Type, Document Category, Item C
    T161R  REORG Control, Purchasing 
    T161S  Release Indicator, Purchase Requisition 
    T161T  Texts for Purchasing Document Types 
    T161U  Texts for Release Indicator 
    T161V  Shipping Specific Data for Stock Tfr. for Purch. 
    T161W  Order Types for Stock Transfer 
    T161Z  Additional Checks for Outline Agreements on Reorg
    T162  Field Selection, Purchasing Document 
    T162K  Field Selection, Account Assignment Fields, Purch
    T162T  Description of Field Selection Reference Key 
    T162X  Description of Field Groups from T162/T162K 
    T162Y  Groups: Field Selection 
    T163  Item Categories in Purchasing Document 
    T163A  Check Item Category/Account Assignment Category 
    T163B  Purchase Order History Categories 
    T163C  Texts for Purchase Order History Categories 
    T163D  Assignment Internal/External Confirmation Categor
    T163E  Confirmation Categories 
    T163F  Confirmation Categories: Descriptions 
    T163G  Confirmation Control 
    T163I  Texts for Account Assignment Categories 
    T163K  Account Assignment Categories in Purchasing Docum
    T163KS  Assignment of Tax Indicator to Account Assignment
    T163L  Confirmation Control Keys 
    T163M  Confirmation Control Keys: Description 
    T163P  Release Creation Profile 
    T163S  Description for Release Creation Profile 
    T163X  "Zombie" T163X 
    T163Y  Texts for Item Categories 
    T165K  Copying Options: Header Texts 
    T165P  Copying Options: Item texts 
    T166A  Supplement Text in Purchasing Document Printouts 
    T166C  Print Relevant Purchasing Document Changes 
    T166K  Header Texts in Purchasing Document Printouts 
    T166P  Item Texts in Purchasing Document Printouts 
    T166T  Change Texts in Purchasing Document Printouts 
    T166U  Headings in Purchasing Document Printout 
    T167  Number Range Management for Purchasing Master Dat 
    T167T  Transaction Description 
    T168  Screen Control, Purchasing 
    T168F  Function Codes, Purchasing 
    T168T  Screen Titles 
    T16FB  Release Indicators: Purchasing Document 
    T16FC  Release Codes 
    T16FD  Description of Release Codes 
    T16FE  Descriptions of Release Indicators: Purchasing Do 
    T16FG  Release Groups 
    T16FH  Descriptions of Release Groups 
    T16FK  Release Statuses 
    T16FS  Release Strategies

Maybe you are looking for

  • App manager will not let me install photoshop after I put it in trash and emptied?

    When I go to the app manager it says "up to date" for photoshop and won't let me install it again. I have read a bit and found a suggestion to look in utilities to properly uninstall it, but there are no photoshop files in the utilities folder and wh

  • Do i have a virus? pages not loading

    Hi, my macbook keeps having these moments every once in a while in which pages just stop loading. sometimes it only happens to videos, sometimes nothing will load at all-they usually redirect me to a "no data received" page. my internet connection is

  • How do I set up flickr to use photos in ATV screen saver

    I uploaded photos to Flickr, but ATV expects things to be in a specific place.

  • Equivalent for Word's Format Painter?

    I've bought iWork 09 to use on my MBA as a substitute for Word. One of the feature I used most in Word is the format painter, where you copy complete formatting from one area to another with one click. Is there any equivalent to this in Pages?

  • ICloud control panel 3.1 hangs on PC

    I have a problem with the installation of iCloud control panel 3.1 on to a PC running Windows 7 - essentially, I think I may have input the wrong login info for the email (my Apple ID is different from my @me.com email account) when first set up and