ISA50 : Can I add a custom parameter to a webshop ?

Hi experts,
In the ISA50 Dev and Ext guide, it is explained how to add custom configuration parameters in XCM. This works great, but the parameter is the same with the same value for all the application (b2b or b2c, whatever the xcm scenario and the crm catalog and variant, my parameter has the same value).
I have a b2b and a b2c site, with different crm catalogs, and different variants (different countries), and I'd like to add a custom parameter for which I could set different values depending on either the XCM scenario or the catalog variant, a parameter depending on the webshop.
Do you know how to do this ?
Thank you for your help, I'll give points for this

The need is : access to a parameter whose value depends on the webshop or on the catalog variant. For example we have a b2c application with different webshops (linked with different catalog variants) for different countries. For this application I have to set a parameter whose value should be different depending on the webshop I select at the first page off the application.
The easy way will be to pass the value through an URL parameter and process it inside the application.
Or maintain the list in a custom table in the backend.
See the starting page of Sony style Europe
"https://shop.sonystyle-europe.com/"
For each country / language (Locale), they have a URL link with a shop variant.
Easwar Ram
http://www.parxlns.com

Similar Messages

  • How can I add a custom attribute to a catalog area? (CRM Isa Sales)

    Gents,
    How can I add a custom attribute to a catalog area? (CRM Isa Sales)
    Actually I would like to use the Catalog Area Type (maintained in trx COMM_PCAT_ADM on Catalog Area Header level). This field doesn't seem to be available in J2EE webshop. (The field documentation says it is for documentation purposes only so I don't expect it to be transferred).
    As this field is not readily available, I would like to add is as an attribute to the Catalog Area. BADI's PCAT_IMS_FEED_ATT and PCAT_IMS_FEED_VAL seem to indicate that it should be possible to add additional fields not only on product level, but also on Area level:
    Example implementation code:
    method IF_EX_PCAT_IMS_FEED_ATT~READ_NEW_FIELDS.
    * Example, how to add new attributes to a indexcategory
    * Possible levels are 'C'ategory and 'P'roduct.
    * Field 'VALUE' carries the attributetype ('S'tring, 'I'ntegar or
    * 'F'loat)
    * Structure 'IS_OBJECTS' carries actuall identifiers
      data: ls_fields        type comt_pcat_ims_feed_ux.
      case iv_level.
        when 'C'.                        "Category Level
    *     no new field
        when 'P'.                        "Product Level
          ls_fields-field = 'CUSTOMER_EXIT_FIELD'.
          ls_Fields-value = 'S'.
          append ls_fields to ct_fields.
    *     exproduct fields
          ls_fields-field = 'REMAN_ABL'.
          APPEND ls_fields TO ct_fields.
          ls_fields-field = 'EXCH_BUS'.
          APPEND ls_fields TO ct_fields.
      endcase.
    endmethod.
    However, when I create an implementation and add some code in the when 'C' part, the attributes do not seem to get transferred. (I've checked in the debug mode of the developer studio).
    - My example code:
    METHOD if_ex_pcat_ims_feed_att~read_new_fields.
    * Possible levels are 'C'ategory and 'P'roduct.
    * Field 'VALUE' contains the attributetype
    * ('S'tring, 'I'ntegar or * 'F'loat)
      DATA:
      ls_fields LIKE LINE OF ct_fields.
      CASE iv_level.
        WHEN 'C'.                        "Category Level
          ls_fields-value = 'S'.
          ls_fields-field = 'ZTEST'.
           APPEND ls_fields TO ct_fields.
        WHEN 'P'.                        "Product Level
      ENDCASE.
    ENDMETHOD.
    and:
    METHOD if_ex_pcat_ims_feed_val~read_new_fields.
      CASE iv_level.
        WHEN 'C'.
         ls_fields-field = 'ZTEST'.
         ls_Fields-value = 'Value 1'.
         append ls_fields to ct_fields.
        WHEN 'P'.
      ENDCASE.
    ENDMETHOD.
    In the ABAP debugger, I can see that my code is touched during initial and delta replications, however, after replication, the fields do not show up in the Java debugger.
    Any ideas?
    regards,
    Wilco Menge

    Hi,
    How can I customize the /bin/wcmcommand or how can I make use of [2] to create a custom WCMCommand?
    I think the "formUrl" is to post those input value to the jcr repository?
    var createDialog = {
            "jcr:primaryType": "cq:Dialog",
            "id": CQ.Util.createId("cq-createdialog"),
            "title":CQ.I18n.getMessage("Create Page"),
            "formUrl": CQ.shared.HTTP.externalize("/bin/wcmcommand"),
            "params": {
                "cmd":"createPage",
                "_charset_":"utf-8"
    I have added a field called "starred"
    Moreover, when I using the firebug to trace the post command, I can see that the starred value is posted also.
    :status
    browser
    _charset_
    utf-8
    cmd
    createPage
    label
    b
    parentPath
    /content/keyword_elaboration
    starred
    c
    template
    /libs/collab/commons/templates/form
    title
    a
    Source
    cmd=createPage&_charset_=utf-8&%3Astatus=browser&parentPath=%2Fcontent%2Fkeyword_elaboration&title=a&label=b&starred=c&template=%2Flibs%2Fcollab%2Fcommons%2Ftemplates%2Fform
    However, when I go to the crxde to view the node's attribute, the properity starred is not created
    Are there anything I did wrong or missing?
    Thanks.
    Message was edited by: aslkit

  • How can I add a custom attribute to the create page dialog?

    I followed the following link to add a custom attribute called starred and this attaribute can be displayed in siteadmin grid
    http://dev.day.com/docs/en/cq/current/developing/customize_siteadmin.html
    I would like to let the user input the value when they create a page. That's why I would like to add a custom field in the input dialog box as attached pic.
    The method you describe before can only added those CQ bulid-in attribute.
    For those custom attribute, how can I added it?

    Hi,
    How can I customize the /bin/wcmcommand or how can I make use of [2] to create a custom WCMCommand?
    I think the "formUrl" is to post those input value to the jcr repository?
    var createDialog = {
            "jcr:primaryType": "cq:Dialog",
            "id": CQ.Util.createId("cq-createdialog"),
            "title":CQ.I18n.getMessage("Create Page"),
            "formUrl": CQ.shared.HTTP.externalize("/bin/wcmcommand"),
            "params": {
                "cmd":"createPage",
                "_charset_":"utf-8"
    I have added a field called "starred"
    Moreover, when I using the firebug to trace the post command, I can see that the starred value is posted also.
    :status
    browser
    _charset_
    utf-8
    cmd
    createPage
    label
    b
    parentPath
    /content/keyword_elaboration
    starred
    c
    template
    /libs/collab/commons/templates/form
    title
    a
    Source
    cmd=createPage&_charset_=utf-8&%3Astatus=browser&parentPath=%2Fcontent%2Fkeyword_elaboration&title=a&label=b&starred=c&template=%2Flibs%2Fcollab%2Fcommons%2Ftemplates%2Fform
    However, when I go to the crxde to view the node's attribute, the properity starred is not created
    Are there anything I did wrong or missing?
    Thanks.
    Message was edited by: aslkit

  • How can i add an custom attribute and assign it to an existing custom object class in sun ds

    I need to add an attribute to sun ds schema and assign it to an existing custom object class.
    I know how to add an attribute but how can i add the attribute to an existing custom object class.
    Please help.
    Thanks

    The objectclasses attribute is multi-valued, so you can add several values to it as long as they are unique.
    For instance, I think you can add several declaration of the same objectclass as below (note the difference is the number of spaces in the value) howewer, from a schema perspective, only 1 will be taken into account:
    objectclasses: ( 2.5.6.6 NAME 'person' DESC 'Standard LDAP objectclass' SUP top MUST ( sn $ cn ) MAY ( description $ seeAlso $ telephoneNumber $ userPassword $ CustomAttr) X-ORIGIN 'RFC 2256' )
    objectclasses: ( 2.5.6.6 NAME   'person' DESC 'Standard LDAP objectclass' SUP top MUST ( sn $ cn ) MAY ( description $ seeAlso $ telephoneNumber $ userPassword $ CustomAttr) X-ORIGIN 'RFC 2256    ' )
    That's the reason why it is safe to delete previous value if you want to update an existing objectclass. No problem to add a new objectclass (new oid and new name) to the schema.
    -Sylvain

  • I can't add a custom alert sound.

    I'm trying to add a custom sound for when a buddy logs in. The problem is, after I go through the add sound steps, the sound never shows up in the list and the event alert goes back to its default alert. I'm using iChat AV 3.0.1 (v392), and using AIM.

    Hi Robert,
    Welcome to the Apple Discussion Pages.
    The sounds need to be of the right quality (too high does not work).
    They also need to be in the right folder. Sounds can be put in your Home folder/Library/Sounds and will appear in the third division of the sounds available to iChat. They are iChat's Own sounds, the System Sounds and any in your Home/Library/Sounds folder, separated by feint lines in the drop down.
    Ralph

  • Can SCM add/edit custom ADM template ?

    I can't find a way to add ADM in SCM.
    Also, I can't find any custom ADM settings in a imported GPOPack (which I export from my local computer with custom ADM added)

    Hi,
    Please follow the steps on this article to add the ADM you created:
    Add or remove an Administrative Template (.adm file)
    http://technet.microsoft.com/en-us/library/cc739134(WS.10).aspx
    If the problem continues, please let us know if there is any error message. You may also paste the content of the ADM you
    created and we will check it.
    Meanwhile, you can use Registry Extension in Group Policy Preference instead of a custom ADM to set registry value on clients.
    For more information, please refer to:
    Registry Extension
    http://technet.microsoft.com/en-us/library/cc771589.aspx
    Hope it helps.
    Regards,
    Bruce

  • Can we add Resource custom fields into ASSIGNMENT TIMEPHASED CUBE

    Hi,<o:p></o:p>
    <o:p> </o:p>
    We want to add Resource custom fields into
    ASSIGNMENT TIMEPHASED CUBE in project server 2010.<o:p></o:p>
    Is it possible?<o:p></o:p>
    <o:p> </o:p>
    Please help me in this.<o:p></o:p>
    <o:p> </o:p>
    Thanks,<o:p></o:p>
    Sarath<o:p></o:p>

    Once column is for assignment and another one is for Resource.
    Assignment means when you crate a task then assign that task to resource then task become assignment.
    when you will create report in for Resource_skill_resource you will be able to group by or filter resource as per their skill. 
    As far as Resource_Skill_R_Assignment is concerned  you can group by or filter assignment for resource as per their skill 
    Resource CUBE: The
    Resource Non Timephased and Resource Timephased OLAP cubes contain resource data. These two OLAP cubes do not contain any Total fields in common, but do contain several Dimensions in common (such as Booking Type and Resource List).
    Assignment: The
    Assignment Non Timephased, Assignment Timephased, MSP
    Portfolio Analyzer, and MSP
    Project Timesheet OLAP cubes contain assignment data. Each of these OLAP cubes includes many
    of the same Total Fields (such as Actual Cost, Actual Overtime Cost, Actual Work, and Actual Overtime Work) and many of the same Dimensions (such as Assignment Owner and Project List)
    kirtesh

  • How can I add my custom ringtone to iTunes 10.7?

    I recently got an iPhone 5 and I want to add a custom ringtone to it. I created a 29-second clip of a song using a software called Audacity and then saved it as an .m4r file. Then, I tried the drag-and-drop method to add the file to my Tones playlist on iTunes; it did not show up anywhere in iTunes. Then I tried moving the file into the "Automatically Add to iTunes" folder; it still didn't work. I tried shortening the file name, and making the clip of the song shorter (to 20 secs), and nothing worked. Am I doing something wrong? Does anyone know how to solve this problem?
    (FYI: I am using iTunes 10.7.0.21; I have Windows 7.  I also tried using the "Create AAC Version" function on iTunes, but then I couldn't change the file type from .m4a to .m4r, so that's why I used Audacity.)
    Thanks in advance.

    I found the answer to my own question! The following discussion really helped, so if you have the same problem, check it out: https://discussions.apple.com/message/18885997#18885997

  • How can I add a custom title to multiple ALV reports selected by layout?

    Greetings and good day, everyone!
    Within the past week or so, I posted a question asking the best way to create a program that would generate multiple ALV reports.  I got some great ideas, and I've actually coded up a few simple demos based on your feedback -- thank you!
    Here's the issue I'm running into:  Many of you suggested that I put all report records into one table, and create a field that I could use to filter on later to determine which fields I want to display for the report.  For example, if I have 3 different reports, I put all the fields for all 3 reports into a table.  I then add a "report key" field.  As I put records into the report table for report 1, I code "01" into the "report key" field.  I do the same for reports 2 and 3, assigning each a "report key" of "02" and "03", respectively.
    I then set up layouts in the ALV for each of the three reports, using the filter option to only pull records with the "report key" value for that particular report.  This all works wonderfully!  However, I seem to have lost the ability to show a custom title for each layout.  I can create a generic TITLEBAR (like "Reporting Center") but I don't know how to reset the grid's title when a layout is selected.  I was hoping that SAP might use the layout description as the title on each page, but it doesn't -- it uses the TITLEBAR text.
    Any ideas?  I think this might be the best way to program multiple ALV reports, but if I can't display the right report title for a particular layout, I'll probably have to go back to my other alternative of putting each report in its own container/screen, and having a button to access each report from the application toolbar.
    Thanks,

    Srikanth,
    I don't have any Selection Screen radio buttons for the user to select a particular report; in my case, they specify some needed criteria by the program in the Selection Screen, the program goes off and does a fair bit of processing/updating, and then displays the ALV reports when finished.  They don't want to choose one particular report to view ahead of time; they want to have all 3 (in my case) there to see what processed correctly, what was eligible to process but kicked out with errors, and what failed some matching checks done up front (this layout includes additional fields from the input file so they can see what didn't match up against R/3).
    So, while I do like the code example you presented, I don't think it's going to help me in my case.

  • How can I add a Custom Field in Work Item "Bug" in VisualStudio Online agile MSF Template?

    We are using Visual Studio Online for task and bug tracking. The problem we are facing is that very few fields are available to working with. We need to add custom fields to filter bugs on multiple attributes like OS, Device model, Verified in build etc.
    We do not have local TFS server setup. The support questions i have read, they ask to update XML file for work item but i dont know how and where to get that xml file. Also is there any particular Role needed to access such configuration files?

    hi Zahid
    as already written above currently it is not possible to customize a process template on Visual Studio Online.
    but for your purpose you can use tags to save the attributes.
    see here Visual Studio Online - Work Item Tagging
    Please use Mark as Answer if my post solved your problem and use Vote As Helpful if a post was useful.

  • How can I add a custom footnote at the beginning of my document?

    Hi, I need to start a document adding my credentials using a custom footnote (the traditional * footnote...), but can't seem to do that without having to change the whole numbering of the other footnotes in the document. Is there any way to do it?

    Just curious: Why whould you want to add navigation Rules at run time. I believe the navigation rules should be set to begin with - "by s/w Architect Design".
    Else you can always use Redirect / Forward.

  • Can I add a custom .html page as a separate page within my site?

    I'm creating a website for my local baseball association using iWeb 1.1.2.
    I'm given several .xls files for schedules, rosters, etc. and I can save them as an .htm/hmtl page.
    But within iWeb, it doesn't look like I can import them as a separate page within my site.
    Is this possible? I suppose my only option is to create an external link to the pages correct?
    Will iWeb '11 allow me to do this?
    Thanks!

    Yes, you can in one of two ways:
    1 - put the custom page on your server and embed it into one of your iWeb pages using an HTML snippet and iFrame code as done in this demo page: Embed a Site Within an iWeb Page.
    2 - put the custom page on your server and in iWeb create a totally blank page, name it for the custom page and add the following redirect code in an HTML snippet:
    <script type="text/javascript">
    parent.window.location = "URL TO THE CUSTOM PAGE"; </script>
    Thanks to Cyclosaurus for this code
    When the visitor clicks on the page in your iWeb navbar they will immediately be redirected to the custom page.  You'll need to add a link on the custom page to send them back to your iWeb site.
    If you modify/update the custom page it will be automatically updated in your iWeb site without having to open iWeb.
    UPDATE:  3 - or add an HTML snippet to on of your pages and put the HTML code from the custom page into it.  That will display the custom page on your iWeb page.
    OT

  • How can I add a custom property to an object, like a paragraph?

    Hi,
    We have a merge process that combine multiple document into one and I need to store the filename of the imported file at the beginning of each merge point.   Each document that we merge contains a Title paragraph and I was wrongly assuming that I could set the label property of this paragraph with my value for future references, but only to find out that the paragraph object doesn't have a label property.
    I also tried setting a custom property by doing this
    paragraph.properties["myCustomProperty"] = "value";
    It doesn't crash, but if I try reading the value it is always undefined.
    I'm looking for alternative, or on how would you approach this, can you please advice?
    Your help is much appreciated.
    Thanks

    Peter Kahrel wrote:
    You could label the paragraph's parent story. Is that any good?
    Peter.
    Well I tought about it, but then I have to find a way to keep track of which paragraph this value belongs to and so far I havent found a way to uniquely identify a paragraph and I can't assume that the merged document won't be edited so I can't use the index.
    Peter Kahrel wrote:
    Otherwise use a paragraph property that you never use and that doesn't affect composition, such as .bulletsTextAfter
    P.
    It may be an alternative, but that may cause problem in the furture if they ever decide to use or change that properties.  Plus, I'm not sure if can put anything I want in there, but that would be worth the try.

  • How can I add a custom made share button for Facebook?

    Hi!
    I have built a custom "share"-button for Facebook (with an additional layer for rollover/active states, using photoshop), but I don't know how to make it work?
    What code do I have to use, or can I just create a link using my button? What would the adress be?
    I googled this but couln't find anything that helped...
    Thanks in advance!

    It doesn't appear so simple Tobi. The image is pulled from Facebook's servers and the button in itself is an altogether different HTML page from Facebook shown on your site within an iFrame.
    I found something similar to your request (this requires PHP support on your server). Please check the below link.
    http://www.daddydesign.com/wordpress/how-to-create-a-custom-facebook-share-button-with-a-c ustom-counter/
    Thanks,
    Vikas

  • How can I add a url parameter to choose the right database row to delete using php in Dreamweaver CC

    Hi all,
    I have just upgraded to Adobe Creative Cloup.  Though I find it very good there was one flaw and that was the omision of the database section.  I got this sorted but now I find that once I have set up the connection to the database and want to eithger delete or update records there is no 'url parameter' button to do so.  Can someone advise we how to get round this.
    Seasons Greatings from
    David J

    The link will look similar to
    myPage.php?ID=myVariable

Maybe you are looking for

  • How do I send e-mail to a distribution list using LabWindows/CVI?

    I need to be able to send e-mail to a user-defined distribution list using LabWindows/CVI? Has anyone done this? Any ideas where I could look?

  • Ipod not showing up in Itunes

    When I plug in my ipod, it doesn't show up in itunes at all. but it charges fine, and it shows up in my computer. What do I do?

  • Printing address bar codes in Appleworks

    I use the database function in Appleworks to make a custom invoice system. Each 8.5" by 11" database "card" is an invoice. Prints out very nice, and I spaced things so it fits perfectly in a #9 Window envelope. Problem is I would like to make more pr

  • Page incomplete in edit mode

    I use frames, and when attempting to edit one of the frames, the correct frame comes up but it is incomplete with about 50%missing. I suspect this may be from a far earlier version of the page. So how do I get to the current page to edit. If you go t

  • Will Flash Catalyst give me a jump start on a phone ap?

    I want to create two applications for different media formats for an idea I am developing in Illustrator CS5. One for the web or desktop. The other for a phone. I have taken a Lynda.com course on how to develop with Flash Catalyst CS5. I have also ta