How the categoryId is mapped?

Hi All,
If selecting one program i'm passing categoryId=001 as a query string. according to this categoryId only order is placing, how the all configurations and mapping will done in background. please any one can help on this in detail?? It means how the catalog will loaded all sku's??
Thanks.

It means how the catalog will loaded all sku's??In case of standard catalog we will use same catalog for all users.
I think it will happen only for custom catalog as we have property "catalog" in user item-descriptor "dcs_user" table in userProfile.xml. It is as below:
<property category-resource="categoryCommerceGeneral" name="catalog" item-type="catalog" display-name-resource="catalog" column-name="user_catalog"
          repository="/atg/commerce/catalog/ProductCatalog">
        <attribute name="resourceBundle" value="atg.commerce.UserProfileTemplateResources"/>
      </property>We can assign catalog to user(s);
-RMishra
Edited by: RMishra on Dec 13, 2012 7:14 PM
Edited by: RMishra on Dec 13, 2012 7:16 PM

Similar Messages

  • How the Trading Goods mapped in to Product costing and COPA in Controlling

    Dear Experts,
    I have a trading goods scenario in my client. How the mapping into Product Costing and COPA.
    They just purchase FG products from Vendors and Sell to their Customers, they received FG Products to Main Plant from Vendors and then sends to Branches from Main Plant, In between some expenses accured like Transport, Fright etc. this is my scenario.
    How the settings to be made in Product costing and COPA.
    I am waiting for your favorable reply.
    Thanks,
    KBR.

    Hi Bhaskar
    I believe branches are also created as Plants
    You have 2 choices....
    Choice 1: If the Freight amount is known @ the time of Transfer from Main plant to Branches, include the same in STO so that inventory value in Branch = Purchase Value + Freight amount
    CHoice 2: If thats not possible, then inventory value in Branch will be same as the Main plant... The expenses incurred on freight needs to be posted to a cost center... Then allocate them @ month end based on revenue / Quantity sold etc using KEU5
    Whichever choice you make, Product Costing is not relevant and required as well... You dont need to do any CK11N
    If you want to see in COPA Purchase value separate and the Freight, etc separate - Then choice 2 is the route for you
    br, Ajay M

  • How to integrate bing map for including or displaying multiple locations at the same time

    how to integrate bing map for including or displaying multiple locations at the same time

    Have you aware of the geolocation field that's been introduced with SharePoint 2013?  You can store location data within a list and then integrate this within Bing.  The second tutorial on this Bing team blog will show it well.
    https://www.bing.com/blogs/site_blogs/b/maps/archive/2013/03/26/connecting-a-sharepoint-list-to-bing-maps.aspx
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • How to find the most matched values in the set of map?

    Hi friends!
    I have two vectors
    vector<int> V1; vector<int> V2;
    and a map<int, set<int>> M1;
    I want to select common values from both V1 and V2 and check those values with the set in the map M1.
    For example:
    V1 contains;
    2  4  6  8  9
    V2 contains;
    4  5  6  9  10 
    M1 contains;
    1=>1  2  5  9
    2=>4
    3=>5   10
    4=>2  4  8
    5=>4   9
    6=>4   6
    7=>9  12
    When we select the common values of V1 and V2 it is 4, 6, 9.
    And we search for all 4, 6, 9 from the values of M1 which give more appropriate.
    But, no all values in the set of map.
    Then, we delete any value from 4, 6, 9, then remaining values would match any values from the map.
    From the example, if we delete 6, then remaining 4, 9 will match with 5=>4  9, or if we delete 9, then 6=>4   6. Any one of the keys can be selected.
    I know how to select the common values from V1 and V2, but I do not know how to match with the values and select the appropriate key from M1.
    Could anyone help me to solve this?

    This is not the question you asked, except perhaps in the subject. The subject is not the right place to put key features of the question. It is also important to use the body to ask just the question you want
    answered. For example your real question has nothing to do with V1 and V2, just the common vector V (e.g. 4 6 9).
    One way to solve your problem would be to create a new map
    map<int, set<int>> M2;
    with the same keys as M1. Each set of M2 should contain the elements of V that are
    not in the corresponding set of M1.
    Then pick the key of M2 that has the smallest set. If that set is empty, then the whole of V can be used. Otherwise the smallest set tells which elements of V have to be removed, and which is the desired key of M1.
    In your example, key 5 of M2 will contain just 6, so you should remove 6 from V and select key 5.
    Yes fine. I tried the following code and it creates the map M2 (NewMyMap in my code). But how to find the smallest set starting from size 1?
    #include <vector>
    #include <algorithm>
    #include <iostream>
    #include <map>
    #include <set>
    using namespace std;
    typedef vector<int> IntVec;
    typedef set<int> IntSet;
    typedef map<int, IntSet> SetMap;
    bool IsValueNotInSet(int value, IntSet& S);
    SetMap CreatNewSetMap();
    IntVec IVec; //This vector is for selecting certain keys from mySet map.
    IntVec myVec;
    SetMap mySet;
    SetMap NewMyMap;
    int main()
    IVec.push_back(3); IVec.push_back(4); IVec.push_back(5); IVec.push_back(6);
    myVec.push_back(4); myVec.push_back(6); myVec.push_back(9);
    IntSet tempS;
    tempS.insert(1); tempS.insert(2); tempS.insert(5); tempS.insert(9);
    mySet.insert(make_pair(1,tempS));
    tempS.clear();
    tempS.insert(4);
    mySet.insert(make_pair(2,tempS));
    tempS.clear();
    tempS.insert(5); tempS.insert(10);
    mySet.insert(make_pair(3,tempS));
    tempS.clear();
    tempS.insert(2); tempS.insert(4); tempS.insert(8);
    mySet.insert(make_pair(4,tempS));
    tempS.clear();
    tempS.insert(4); tempS.insert(9);
    mySet.insert(make_pair(5,tempS));
    tempS.clear();
    tempS.insert(4); tempS.insert(6);
    mySet.insert(make_pair(6,tempS));
    tempS.clear();
    tempS.insert(9); tempS.insert(12);
    mySet.insert(make_pair(7,tempS));
    cout<<"MYVEC\n";
    cout<<"-------------\n";
    for(IntVec::iterator itv = myVec.begin(); itv != myVec.end(); ++itv)
    cout<<(*itv)<<" ";
    cout<<"\n\n";
    cout<<"\nMYSET\n";
    cout<<"-------------";
    for(map<int,set<int>>::iterator its = mySet.begin(); its != mySet.end(); ++its)
    cout << endl << its->first <<" =>";
    for(IntSet::iterator sit=its->second.begin();sit!=its->second.end();++sit)
    cout<<" "<<(*sit);
    cout<<"\n\n";
    NewMyMap= CreatNewSetMap();
    cout<<"\nNEWMYSET\n";
    cout<<"-------------";
    for(map<int,set<int>>::iterator its1 = NewMyMap.begin(); its1 != NewMyMap.end(); ++its1)
    cout << endl << its1->first <<" =>";
    for(IntSet::iterator sit=its1->second.begin();sit!=its1->second.end();++sit)
    cout<<" "<<(*sit);
    cout<<"\n\n";
    return 0;
    bool IsValueNotInSet(int value, IntSet& S)
    IntSet::iterator it=find (S.begin(), S.end(), value);
    if (it!=S.end())
    return false;
    return true;
    SetMap CreatNewSetMap()
    IntSet TSet;
    for(IntVec::iterator it = IVec.begin(); it != IVec.end(); ++it)
    SetMap::iterator its = mySet.find(*it);
    if (its != mySet.end())
    TSet.clear();
    int key = its->first;
    IntSet& itset = its->second;
    for(IntVec::iterator itv = myVec.begin(); itv != myVec.end(); ++itv)
    if(IsValueNotInSet((*itv), itset))
    TSet.insert(*itv);
    NewMyMap.insert(make_pair(key,TSet));
    return NewMyMap;

  • HT5429 I have recently returned from a holiday in New Zealand and transited for 6 hours in China. Since returning to the UK my maps app on Iphone 5 will not show my surroundings in hybrid or satellite. How can i get this back?

    I have recently returned from a holiday in New Zealand and transited for 6 hours in China. Since returning to the UK my maps app on Iphone 5 will not show my surroundings in hybrid or satellite. I have also noticed that the data from section that usually displays data from TOM TOM and others now just says others. Has anyone encountered this before or know how to get the Satellite function on maps back?

    Your phone is "stuck" in the Chinese version of maps. This also happened to me once I got back from China recently. I believe I solved the problem by logging out of iCloud and reloging in.
    BTW the App Store app was also stuck in China. It only displayed Chinese characters and I had to log out and relogin.
    Hope this helps.

  • How to find what are  the  support-teams map with particular componant type

    hi experts,
    i am new in solution manager.. My requirement is when creating the support message in crmd_order t-code i have to give the componant type in transaction data after that in fast entry screen i have to assign support team for that componant type .. here i have to give only valid support team which are map with particular componant type .. when save the support message here i have to check that support team is map with that particular componant type (i.e that support team is belong to that componant type ) .. thats what i have to do in abap development .. so how to find the what are all the support teams mapped with particular componant type .. whether it is stored in any table or ?.. Please give solutions ..
    Regards,
    Kumar..

    Hi Kumaresan-
    I'm not sure I fully understand your requirement but I will try to help out. If you are trying to determine / associate the relevant support team according to which component they are responsible for, this might help.
    The determination of the support team is maintained by configuring rule 13200137 in transaction PFAC_RESPO.
    Click on the Responsibilities Tab
    Create your responsibility based on your support team requirements
    Assign the appropriate Support Team, this data will be taken from the settings you have maintained when creating your org chart in ppoma_crm
    Highlight a responsibility and click Change
    In this table you will see an entry for SAP Component, this is where you identify which support team will be determined based on component

  • HT4623 How to make Google Maps as the default Map App in my iPhone 5

    How to make Google Maps as the default Map App in my iPhone 5, so that I could still use the old bookmarks and use the pins to drop, Please assist.

    You cannot make Google Maps the default mapping app.

  • Could you explain how the read-write-backing-map-scheme is configured in...

    Could you explain how the read-write-backing-map-scheme is configured in the following example?
    <backing-map-scheme>
        <read-write-backing-map-scheme>
         <internal-cache-scheme>
          <class-scheme>
           <class-name>com.tangosol.util.ObservableHashMap</class-name>
          </class-scheme>
         </internal-cache-scheme>
         <cachestore-scheme>
          <class-scheme>
           <class-name>coherence.DBCacheStore</class-name>
           <init-params>
            <init-param>
             <param-type>java.lang.String</param-type>
             <param-value>CATALOG</param-value>
            </init-param>
           </init-params>
          </class-scheme>
         </cachestore-scheme>
         <read-only>false</read-only>
         <write-delay-seconds>0</write-delay-seconds>
        </read-write-backing-map-scheme>
    </backing-map-scheme>
    ...Edited by: qkc on 30-Nov-2009 10:48

    Thank you very much for reply.
    In the following example, the cachestore element is not specified in the <read-write-backing-map-scheme> section. Instead, a class-name ControllerBackingMap is designated. What is the result?
    If ControllerBackingMap is a persistence entity, is the result same with that of cachestore-scheme?
    <distributed-scheme>
                <scheme-name>with-rw-bm</scheme-name>
                <service-name>unlimited-partitioned</service-name>
                <backing-map-scheme>
                    <read-write-backing-map-scheme>
                        <scheme-ref>base-rw-bm</scheme-ref>
                    </read-write-backing-map-scheme>
                </backing-map-scheme>
                <autostart>true</autostart>
            </distributed-scheme>
            <read-write-backing-map-scheme>
                <scheme-name>base-rw-bm</scheme-name>
                <class-name>ControllerBackingMap</class-name>
                <internal-cache-scheme>
                    <local-scheme/>
                </internal-cache-scheme>
            </read-write-backing-map-scheme>

  • How do I change the settings in Maps from miles to kilometers?

    How do I change the settings in Maps from miles to kilometers?

    I've had an entirely different experience with Map units.  Maps on my iPad (iOS 8) will only deliver units in kilometers, no matter how I adjust the settings for Maps or Region/Language.  I am trying to calculate distances between two locations in the United States where all road distances are measured in miles.  My iPad region is set to United States.  When I open the settings for Maps, change the units from kilometers to miles, and close the window, IOS-8 changes the setting back to kilometers every time.
    Slick interfaces and device designs aside, at times these little annoying bugs just make the folks at Apple look like rank amateurs.

  • How do I adjust the route in Maps?

    How do you adjust the route in maps. For example, if I wanted directions from my current location (using the crosshair) to a friend's house 5 miles away, the directions given to me by maps has me travel on a freeway.
    How would I adjust the route to avoid the freeway, take different streets etc? Being able to drag google's route on desktop is invaluable, but seems this feature is missing in iPhone 3g

    I hope someone listens to this suggestion - as it is one of the biggest weaknesses of Maps in its current form.

  • How the Element panels are mapped in SpeedGrade CC

    Hi,
    We've just posted some documents on our website Support page that provide details of how the Element panels are mapped in SpeedGrade CC.
    See http://www.tangentwave.co.uk/support/documents/ElementSpeedGradePanelMaps.zip
    The only part that isn't covered is the Stereo3D controls.
    Don't forget you can also make up a keypress map so you can also control Premier
    For details on how to do this see http://www.tangentwave.co.uk/support/documents/KeypressAppQuickGuide.pdf
    Cheers,
    Chris

    That is what ColorMatch2 is there for ... to match to a snapshot you've got in the snapshot listing. Check the documentation for this, as it is something that is explained there. The process is to click on the camera/snapshot icon lower right of the program monitor panel ..
    ... which brings up a twin-view monitor and the most recent snapshots you've made within Sg. Pick one, or navigate to a different snapshot, and using the "Reference" right-side set of three controls, choose your dark, light, & mid value. Then do the same using the left-side set of three controls from the current spot in the playhead of the footage you're grading. Sg then tries to map everything else out accordingly.
    Neil

  • How and where the URL is mapped to welcome or Home template?

    Hi,
    Could any body tell me how the URL (say www.abc.com) is mapped to our home template(/home.tcl).
    we use the URL www.abc.com, when we access it display the home page. This home page is generated by a TCL template- "/home". I wanted to know where this template path is mapped to www.abc.com,
    Is it done at web-server level or Appserver lavel or VCMS lavel ? What configuration file I have to look into?
    Also we have one more registered URL "www.abc.fr".. accessing this URL should redirect to "www.abc.com/home_french?locSet=FR". How and where could I do this ?
    We use :Webserver -- iPlanet ,
    Appserver -- Websphere
    Content management server -- Vignette-6

    can you give me example of it
    i am trying with
    workflowProperties.Item[
    "WorkFlowState"] =
    this.PreviousStateName;
    and then checking
    if
    (this.onTaskChangedRequestorAction_AfterProperties1.ExtendedProperties["Workflowstatus"].ToString().Contains("Escalate-the-case-further")
    && workflowProperties.Item["WorkFlowState"].ToString().Contains("SupervisorAction"))
    do you have any example?
    MCTS,ITIL

  • How Does The security-role Mapping Work?

              I am studying the security part of the deployment descriptor. I am confused about
              how the mapping works.
              Suppose we have
              <security-role>
              <role-name>manager</role-name>
              </security-role>
              and
              <security-role-ref>
              <role-name>FOO</role-name>
              <role-link>manager</role-link>
              </security-role-ref>
              My first question is when a client of the servlet supplies a name for authentication,
              the name supplied should be FOO or can be, say, John Smith?
              Then, according to the Servlet Specification, a security role is a logical grouping
              of users defined by the Application Developer
              or Assembler. When the application is deployed, roles are mapped by a Deployer
              to principals or groups in the runtime environment.
              My second question is how deployer maps the role, say, manager, to principals
              or groups in the runtime environment?
              Thanks in advance.
              

              Thanks a lot, Udit.
              "Udit Singh" <[email protected]> wrote:
              >
              >Hello,
              >The role-name is mapped to principals or gruops based on the security-role-assignment
              >entrires in weblogic.xml. Let us say you have a role-name FOO and you
              >want to
              >assing this role to users John and Mark. You need to make this entry
              >in weblogic.xml-
              ><security_role_assignment>
              > <role-name>FOO</role-name>
              > <principal-name>John</principal-name>
              > <principal-name>Mark</principal-name>
              > </security_role_assignment>
              >
              >so now actually the user need to supply John or Mark as user name at
              >the time
              >of authentication . Hope it helps.
              >
              >Udit
              >
              >
              >"[email protected]" entrance wrote:
              >>
              >>I am studying the security part of the deployment descriptor. I am confused
              >>about
              >>how the mapping works.
              >>Suppose we have
              >><security-role>
              >><role-name>manager</role-name>
              >></security-role>
              >>
              >>and
              >>
              >><security-role-ref>
              >><role-name>FOO</role-name>
              >><role-link>manager</role-link>
              >></security-role-ref>
              >>
              >>My first question is when a client of the servlet supplies a name for
              >>authentication,
              >>the name supplied should be FOO or can be, say, John Smith?
              >>
              >>Then, according to the Servlet Specification, a security role is a logical
              >>grouping
              >>of users defined by the Application Developer
              >>or Assembler. When the application is deployed, roles are mapped by
              >a
              >>Deployer
              >>to principals or groups in the runtime environment.
              >>
              >>My second question is how deployer maps the role, say, manager, to principals
              >>or groups in the runtime environment?
              >>
              >>Thanks in advance.
              >>
              >>
              >>
              >
              

  • I hate the new Apple Map.  The directions are confusing.  How do I get google maps back on my iPad and iPhone?

    I hate the New Apple Map.  The directions are confusing and do not continue by pressing 'next.'  How do I get Google Maps back to my iPad and iPhone?  Thank you.

    Start Safari
    Enter the URL:  http://maps.google.com/#bmb=1
    tap "Go"
    Now that you have Google Maps up on Safari, tap the bottom center icon (box with arrow pointing to the right).
    Select "Add to Home Screen".
    You will now have a Google Maps icon on your iPhone/iPad/iPod Touch that will take you to Google maps.
    There are other map services available.  MapQuest, Waze, NavFree, OffMaps, etc...

  • How do I delete the old Google Maps applicaiton

    I think I have a problem that many wish they had prior to google releasing an updated Maps application.  I updated to iOS6 and got the new Apple Maps app, but still retained the Google Maps app as well.  This is one of the kind of apps that can't be deleted, like SMS, Phone, etc.
    I can move it around, and generally used to just stuff it away on the last page, but now I want to make an effort to remove it.
    Looking at the file system, at the .ipa files, the built in .ipa's are not included.  Anyone know where those are stored, so perhaps I could remove that, to see if it would remove it from my phone on next sync?
    I did a backup and restore the other day, still no change.  I did a backup, completely erased my phone to factory, then did a restore, which also didn't work.  And finally, though I really didn't want to, I went ahead and erased my phone with the intention of rebuilding it from scratch, though the darn Maps app was still there, so  just backed up a step and did a restore to my last backup point to save the hassle of setting up my phone from ground zero.
    I have added two screen shots, one wiht my mouse selecting a normal app so you can see I get the "X" to delete icon on the app, and the other with the maps application selected so that you can see I DO NOT get the "X".
    I filtered the left list to just the google ones, but have tried various other combinations such as "maps" to locate it, it is not in the list, just as "phone", "sms", and "mail" are not in the list.
    Any help would be appreciated
    Message was edited by: this-is-my-alias because I forgot to add the image attachments.

    Older versions of the SMS app I don't even believe we're called "SMS" but "Messages" though I could be wrong on that. There were differences in the SMS app regarding FaceTime. The current app has a button at the top that allows you to jump that conversation into FacrTime. Older versions didn't have that button as FaceTime was not released yet.
    Yes, I can delete the new Google Maps App, it is an app I downloaded from the App Store. What I can't delete is the icon labeled Maps, which is also a google app, not a bookmark.
    For the large majority of users of iPhones of compatable hardware, when they upgraded to iOS6 the Google maps application that was part of a default iPhone installation was deleted. In it's place was installed Apples debatably botched Maps application.
    In my case, that didn't happen. I was left with both applications still intact. At first I didn't even understand why everyone was so upset with Apples Maps implementation. From my perspective, if they didn't like it they could simply use the Google Maps application they had been using all along. Then I started to see people asking where they could download the old Google Maps App and it started to make sense. Their system no longer had the app. They only had one choice, Apple 's Mapping app, while I still maintained both choices.
    I'm looking for others who have experienced this and solved it. I've seen similar cases where different apps hang around longer than they should, but never found a solution. I assume over time enough users will report this to Apple and a software update will correct it. I however, would like to correct it now.

Maybe you are looking for

  • Non operational USB ports and stuck on grey apple start up screen

    Two problems 1. USB ports are non operational. I believe I fried them by accident. When hooking up an external USB hub, I may have connected an incorrect power supply. Now the USB ports on the front and back of my tower are non operational/do not wor

  • Error in SMTP in SCOT

    Hey guys i have configured alerts in my QA box,i m getting proper alerts in my alert inbox in RWB but in scot i see errors in SMTP,and ofcourse i dont see any alerts in my e-mail,i have been through sap help for scot and set the trace but nothing cam

  • Photoshop action script

    Hello, Can someone give me an action script which could position my layer on specific Y location depending on height of text. I have a hundreds of PSD files with text. Each text has a different height. I need a script which would put the text of ever

  • BTWifi App on BlackBerry - Problem Activating !

    Hi   I donloaded the App on my BB Curve - put in my BTinternet.com email address and passoword and pressed ACTIVATE It just keeps coming back to say "check your details"

  • Adjust end of clip and move all other clips accordingly

    having found this help topic about trimming clips: Adobe Premiere Pro Help | Trimming clips, i figured i might be able to figure out how to adjust the end of a clip and move all subsequent media content accordingly. the situation would be: adding a w