Row size of Structure in CRM ISA

Hi Guys,
I want to iterate a Structure on Java side of CRM ISA but I don't know the row size of that structure. Could you please tell me how to get the row size or length of that structure so that I can iterate the structure. Or if there is any other method to iterate or get the multiple values from the structure please tell me.
Thanks & Regards,
Sunil Patidar

Are you trying to iterate through the fields of the structure?  If so there appears to be a .fields() method on the structure object that gives you a JCO.Iterator.  You can try something like this:
JCO.FieldIterator fields = sapStructure.fields();
while (fields.hasNextFields()) {
          JCO.Field fld = fields.nextField();
          String fieldName = fld.getName();
          String fieldVal = recordField.getValue();
I've never tried this before so I don't know if its what you need.

Similar Messages

  • CRM Open Catalog Interface (OCI) - What data is sent from CRM/ISA to SRM?

    RE: CRM4
    We have an SRM customer that is able to access our online catalog as expected, create a shopping cart and transfer it to their SRM system.  However, they're asking that we provide additional information on the item(s) and I can not determine what data is sent in the first place, let alone how to add additional information.  Specifically, they require that the UNSPSC code is included in the data...the format for which should look something like this:
    NEW_ITEM-MATGROUP = 465120000
    I have determined the 'how' the data is sent (via HTML if OCI_VERSION = 1) and the file that's called once the SRM customer clicks the TRANSFER button on our CRM/ISA (ocilinessend.jsp)
    But, I am unable to determine the 'what' data is sent.
    According to the javascript file, here's the code that is activated:
    <%-- send list with oci lines --%>
    <form action="<%= request.getAttribute(OciLinesSendAction.OCI_HOOK_URL)%>" method="post"
    name="SUBMITFORM" target="<%=request.getAttribute(OciLinesSendAction.OCI_TARGET)%>">
    <% String param = (String)request.getAttribute(OciLinesSendAction.OCI_OKCODE); %>
    <% if (param != null) { %>
        <input type="hidden" name="<%=OciLinesSendAction.OCI_OKCODE%>" value="<%=param%>">
    <% } %>
    <% param = (String)request.getAttribute(OciLinesSendAction.OCI_CALLER); %>
    <% if (param != null) { %>
        <input type="hidden" name="<%=OciLinesSendAction.OCI_CALLER%>" value="<%=param%>">
    <% } %>
    <% OciLineList ociLineList =
        (OciLineList)pageContext.findAttribute(OciLinesSendAction.OCI_LINE_LIST); %>
    <% for (int i=0; i < ociLineList.size(); i++) { %><%=ociLineList.get(i)+"\n"%><% } %>
    </form>
    So, does anyone know how this works?  How does data get flagged as being relevant to be sent via an OCI Transfer?
    I can not believe how limited the SAP documentation is on the CRM side of this connectivity...the SRM side has a huge amount of documentation, but none of it specifically deals with how to get a CRM connection up and running.  You'd think they'd especially want to have customers using SAP on both sides of the connection...

    I have made some progress finally.
    The items that the .jsp file sends are apparently triggered when the customer clicks on the Transfer button and the FM CRM_ISA_BASKET_GETITEMS_BBP runs.
    The FM ends up pulling data from the UI Structure CRMT_ISALES_BASKETITEM_BBP which you can modify the fields sent by using transaction CRMC_MAP to add a New Entry -> UI Field, named MATGROUP with Object ORDERADM_I and one of the 42 Obj.Field's available.  I ran a test with our customer and they confirmed that the MATGROUP was now indeed being sent during the transfer.
    So, now my dilemma is trying to figure out which Obj.Field already is set up for UNSPSC numbers or if there is another Object in CRM that I should look in.
    In the IMG, there are SRM settings for UN/SPSC numbers, but I can not find a corresponding CRM setting.
    Anyone have an idea on which Obj.Field we should use ... or perhaps one which we can map from our ERP backend to CRM that will work without having to create a new Obj.Field, which is really not what we want to have to do.

  • 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 to display total "items" and "amount " in header.jsp in CRM ISA B2B

    Hi,
    I am modifying “header.jsp” in standard CRM ISA B2B application.  Here we have summary of total number of items and total amount but it is coming in to button and for that below code is there in “header.jsp” and it display it as button text.
    if (!ui.homActivated) { %>
    !!" alt="" border="0" height="16" width="20">
    </td>
    <td class="vertical-align-middle" name="miniBasket" value="<isa:translate key="b2b.header.minibasket.default"/>" >
            <form name="basketForm" action="javascript:show_basket();">
         <input class="green" name="miniBasket" type="button" value="<isa:translate key="b2b.header.minibasket.default"/>"/>   
        </form>
    </td>   
    <% } else { %>
    <!-- HOM scenario - minibasket displays collective order -->
    <td  class="vertical-align-middle" align="right">
    !!" alt="" border="0" height="16" width="20">
    </td>
    <td  class="vertical-align-middle" name="miniBasket" value="<isa:translate key="b2b.header.collorder.default"/>">
    <form name="basketForm" action="javascript:show_collective_order();">
        <input class="green" name="miniBasket" type="button" value="<isa:translate key="b2b.header.collorder.default"/>"/>   
    </form>
    </td>
    <% } %>
    Now I want to display total number of items and total amount separately in two different <td> element.
    How I can get total number of items and total amount in “header.jsp” I tried below code but did not get any success.
    Insert below line in “header.jsp” with respective page import statement for class or let me know which class I have to import.
    <%
         HeaderSalesDocument  hdr =
                (HeaderSalesDocument) request.getAttribute(MaintainBasketBaseAction.RK_HEADER);
        ItemList items =
                (ItemList) request.getAttribute(MaintainBasketBaseAction.RK_ITEMS);
    %>
    And then I use
    <td><%= hdr.getNetValue() %></td>
    <td><%= items.size() %></td>
    But it is not printing any thing and header page not display at all.
    Pl. tell me how to get total amount and number of items in header area. Which class or object I have to use here.
    I really appreciated any help from any one.
    Thanks and regards.
    Ashish Patel.

    Hi, I tried another logic. I took value from  Standard button, in which B2B application display total items and amount and I hide this field, to another text element.
    Now I Am breaking that value in words and stored them in array  and then trying to display that array with particular number which contains total item and amount through Java Script on Focus.
    But problem here is, It is not getting updated automatically I have to click on new text files to trigger Onfocus event. How I can achieve effect like as soon as Standard button changes it's value which is now hidden filed my new text box should update automatically.
    Thanks.
    Ashish

  • Why there is a huge difference between a row size on a disk based table and a row size in memoptimized table of SQL 2014?

    Hi All,
    I have two table with similar structure and data, one is on disk and the other is in memory. I somehow calculated the difference between a row size of on disk and in memory table and found that the row size of in memory is 700 Bytes more than the disk based
    tables.
    aa

    As others mentioned, memory optimized tables and disk based tables have different structures in SQL Server 2014.
    For memory optimized tables, the number of indexes on table also contribute to the size. You can calculate the exact size of rows and thus the table size using the formula given in the below articles
    Table and Row Size in Memory-Optimized Tables
    Estimate the Size of a Table
    Krishnakumar S

  • XCM Settings for CRM ISA 4.0 SP10

    Hi !
    We are currently upgrading a CRM 4.0 ISA application from SP5 to SP10. The XCM settings for the vanilla 'b2c' webshop has been completed and the vanilla 'b2c' application  has been extended to a new b2c application using the old extended application files with the new 'buildtool'. However, when we try to run the extended b2c project, after successfully deploying the new .ear file, we get an error that the XCM settings couldn't be found. The vanilla 'b2c' application runs perfectly though.
    Could anyone with experience in CRM 4.0 ISA application SP10 list any unique steps to get the extended XCM data for the extended application correctly in the 'web.xml' file ?
    Cheers,
    Ashok.

    Hi Amit,
    The config path for "%sys.global.dir%/xcm/${com.sap.dc_name}" should normally point to the standard XCM settings and ideally it should be outside the folder structure of the application (ie) not within either <Inst-Dir>:\usr\sap\SID\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\crm.b2c\servlet_jsp\b2c\root\WEB-INF
    or <Inst-Dir>:\usr\sap\SID\SYS\global\xcm\crm.b2c. Prior to CRM ISA 4.0 SP6, context parameters would determine this path during each deployment. This would ensure that an extended application would always point back to the standard XCM settings rather than having to maintain multiple XCM settings for each extended application. The reply from SAP OSS suggests that post CRM ISA 4.0 SP6, XCM settings would have to be maintained for each extended application (something that SAP supports) or the value of the config path of "%sys.global.dir%/xcm/${com.sap.dc_name}" should be changed individually for each extended application using the visual administrator to point to the standard XCM settings (something that SAP suggests as a work around but doesn't support).
    Again, this problem is mainly caused by the fact that the context parameter of the XCM settings during deployment of any application has been removed from the SDM post CRM ISA 4.0 SP5. Removal of this context parameter from the SDM means that one would have to adopt either approach as suggested by SAP as above.
    I hope this helps others out there who are migrating from a pre CRM ISA 4.0 SP6 to a post CRM ISA 4.0 SP6.
    Cheers,
    Ashok.

  • Need some help in SAP CRM ISA.

    hi ,
    I am very new to the SAP CRM ISA environment .So please suggest me some documents ,books name etc.
    To develope ISA applications what java skills we should have.
    Please help me ...
    Thanks in advance to all of you..
    With regards
    shanto aloor

    Hello Shanto,
    You need a couple of months of time to attend the following courses and couple of more years for really working in few projects to understand Well that is for people like me.
    CR010 - CRM Basics,
    CR100 - CRM Overview,
    CR300 - CRM Sales,
    CR800 - E-Commerce with CRM and
    CR850 - E-Commerce with R/3
    Okay, for the programming skills, you need very good Java / Web Application development experience. The application (ISA) is a simple Java based Web application (not a J2EE application) built on Struts framework. So, a good knowledge / experience of Struts is a big plus.
    The [E-Commerce Enhancement / modification guide|https://websmp210.sap-ag.de/sapdownload/011000358700000469462006E/] is THE reference for ISA enhancements. I can not emphasize more on this. Every page, sentence is a must read in this document. This next document has [Examples and Tutorials |http://service.sap.com/sapdownload/011000358700006120622006E/]that go with the first document.
    It is also good to have ABAP development and debugging knowledge to do good development. Basic understanding of the request - response cycle - the Java to ABAP integration are all good topics to focus and learn.
    You must also know the Java development process in the NetWeaver (NW). You need to know the concepts of NW Development Infrastructure (NWDI). The enhancement guide has some information relevant to ISA development.
    If you really go through the enhancement guide thoroughly, you will know what more you should know!
    Easwar Ram
    http://www.parxlns.com

  • Open Catalog Interface (OCI) - Is CRM/ISA ready to be an External Catalog?

    I have found much information here and on help.sap.com talking about how to set up an external catalog to be part of our catalog(s). But, there is a severe lack of information to educate myself as to whether our catalog(s) are ready to be added as an external catalog to our customer's SRM system for example.
    The only valuable information I have been able to find on how to be sure that our CRM/ISA Partnershop can be used by our business partners in their various (SRM) procurement systems is here:
    http://help.sap.com/saphelp_crm40sr1/helpdata/en/73/fd147fcaaf41489508aaac8e3e37b5/frameset.htm
    We have a specific request that our CRM/ISA Partnershop be made available via our business partner's SRM system.  I can find no guide to help me provide the requested information without basically just guessing on my part.
    This is what they provided as a worksheet to return. 
    I assume the following or would like additional input:
    1)  They will need a Userid and Password.
    2)  For Language, we currently only support EN.  Would I enter EN or just leave blank?
    3)  What do the following refer to?  (These are the fields as requested and their suggested value by our customer)
      ~OKCODE       ADDI
      ~TARGET       _top
      ~FORCETARGET       YES
      ~CALLER       CTLG
      HOOK_URL       (Assumed to be blank)
    4)  These are the required OCI fields they would be expecting from the our catalog, but they can accept all OCI Release 4.0 fields...Assuming the connections from the above settings are made properly, will CRM automatically provide the approrpriate detail or do I need to set something somewhere?  All the XCM/DCM config settings for OCI seem to deal with an incoming External Catalog, not outgoing. 
    OCI fields
    <input type='hidden' name='NEW_ITEM-QUANTITY[1]' value='3'>
    <input type='hidden' name='NEW_ITEM-DESCRIPTION[1]' value='Descriptio'>
    <input type='hidden' name='NEW_ITEM-UNIT[1]' value='DZN'>
    <input type='hidden' name='NEW_ITEM-PRICE[1]' value='1.62'>
    <input type='hidden' name='NEW_ITEM-LEADTIME[1]' value='5'>
    <input type='hidden' name='NEW_ITEM-CURRENCY[1]' value='USD'>
    <input type='hidden' name='NEW_ITEM-MATGROUP[1]' value='44121704'>
    5)  Do I need to 'do' anything not listed above to be sure our catalog(s) are ready to perform as requested?
    Thanks for any clarification/links, etc
    I've spent weeks off and on now to try to determine an answer I could feel confident in.

    1/25/07 - Found a bit more info, but still need help determining if there are any additional settings/configs we need to make before starting to test with our Business Partner.
    http://help.sap.com/saphelp_crm40sr1/helpdata/en/19/3a74482f5811d5b3890050da4cccf0/frameset.htm
    I did these steps already, but have not tested yet:
    Customizing and Settings in CRM / Internet Sales
    Settings for receiving purchase orders in CRM
    Purchase order without reference to a quotation:
    In the CRM Business Connector, an XML purchase order is received via HTTP and it is converted into a sales order IDOC. This IDOC is then transferred to CRM and is posted there.
    The delivered mapping service expects a purchase order in the OLD_EBP XML format, which is transformed into a NEW EBP XML, xCBL and finally a CRM IDOC XML.
    The following settings must be made in CRM:
    · Creating a partner profile for the sender
    Path in SAP Menu
    Tools -> Business Communication -> IDoc-Basis -> Administration -> Partner profile.  
    Partner type: Customer
    Partner number: Number of the sold-to party in CRM
    Transaction code: APLI (Individual IDoc processing)
    Message type: CRMXIF_ORDER_SAVE_M
    (key fields of table EDPP1:
    -PARNUM partner number
    -PARTYP partner type)
    ·         To view CRM address management errors in the document, the parameter CRM_USER_LEVEL must be set to value 9.
    Path in SAP Menu
    System -> User profile -> Own data -> Parameters.
    I have asked my Basis contact to look into this portion:
    Business Connector
    Install a Business Connector 4.0 or higher.
    Required packages:
    · Sap_crm
    · Sap_crm_customizing
    · XSLT (only for BC 4.0, not required for BC 4.6)
    After processing the purchase order that was received first, an inactive routing rule is created that is completed and activated.
    Path in BC
    BC Manager -> Adapters -> Routing -> Edit.
    Transport: ALE (R/3 IDoc)
    SAP Destination:  
    The ports must be activated and the service EbpXmlToRfc must be accessible before the Business Connector can receive documents.
    Some CRM settings are hard coded in the transformations. They are in the file BasicOrderSettings.xsl, that are in the directory ...ServerpackagesSap_crmxsltincludesxcbl2sapcrm_xif.
    These are:
    Transaction type: TA (standard order)
    Item object type: BUS2000131(sales item CRM)
    Text ID under which the order text is created in the CRM order: 1000 (customer note)
    Make sure that all of the available Business Connector patches are installed.
    Our customer contact says they went with WebMethod instead of Business Connector, but I'm hoping we can make it work using BC without having to research yet another piece of the puzzle.
    Any additional detail/advice from anyone that's set up their Partnershop to be connected to SRM EBP via OCI?
    Message was edited by:
            Mike Anecito
        1/25/07

  • Export-csv output maximum row size

    Hi all. May I know the maximum row size that can output to .csv using 'export-csv'??

    There's no limit on writing to a CSV file.
    You can try:
    # max rows to export to CSV:
    $i=0
    While ($true) { #Forever
    $i++
    $i
    "Some text" | Export-Csv -Path .\test12.csv -Append -NoTypeInformation
    until you run out of disk space, which may take a while. A million lines using the above script makes a 5 BM file..
    Now reading it back is an entirely different story. Try
    Delimit..
    Sam Boutros, Senior Consultant, Software Logic, KOP, PA http://superwidgets.wordpress.com (Please take a moment to Vote as Helpful and/or Mark as Answer, where applicable)

  • Bapi for  org structure in crm

    Hi Experts !
    Pls tell me the BAPI for the ORGANIZATIONAL structure in CRM.
    Thanks in advance.
    Regds
    Navneet

    Hi Navneet,
      Goto SE80 -> package : CRM_ORGMAN.
    Here you will get all the FM used for Organisation structure in CRM.
    I doubt if CRM as any BAPI in general for Organisation
    Regards,
    Anand.

  • CRM ISA b2b Vs ECC ISA b2b - IPC and BADI

    Experts,
    1. In CRM ISA b2b - We use CRM_COND_COM_BADI to implement the userexit logics and to populate custom attributes. What is the equivalent BADI or procedure in ERP scenario assuming I am using IPC in both the scenarios.
    2.   in CRM ISA b2b scenario, we have item and header BADI's like crm_isa_basket_head...What is thew equivalent BADI/Procedure in ERP ISA b2b scenario.
    Thanks,
    Bala

    Hello Bala,
    Regarding your first question, AFAIK, the userexit logic of pricing should be developed in IPC pricing routines and uploaded to the SAP system with appropriate userexit assignment.
    About the second question, I am not very clear on what is the requirement? Do you want to modify certain data before a document is actually created/simulated in the SAP system? In this case, there are some enhancement points in the FM SD_SALESDOCUMENT_CREATE. This is what I used to modify/add/delete some data before the basket data is simulated or created as a quotation/order in the SAP ECC system.
    Pradeep

  • Image server and images in the product catalog(CRM ISA)

    Dear Gurus,
        I am using CRM ISA 5.0 R/3 version. My products in the product catalog has got images. I have assigned the image's to the products in the R/3 product catalog(WWM2)
    In the b2b XCM for the webcatalog node, I need to specify the imageserver url. Can you please tell me what goes here. How do I find out what is my image server in my landscape. Please advice me how do I get the images in my ISA product catalog.
    Thanks!
    Vivek.

    Hi Vivek,
    In general image server is the web server. You need to talk to your network administrator to identify and setup the web server. Pass on the below document to your administrator to setup the publishing directories on the web server:
    http://help.sap.com/saphelp_crm40sr1/helpdata/en/c7/d64e3c719d1742e10000000a11405a/frameset.htm
    <b>Reward if helps</b>
    Regards,
    Paul Kondaveeti

  • Product catalog from mdm to crm isa

    HI MDM GURUS,
    COULD ANYONE PLEASE TELL ME THE STEPS TO REPLICATE PRODUCT CATALOGS DIRECTLY FROM MDM TO ISA (INTERNET SALES APPLICATION)
    PRIYA

    Hello,
    I wish the answer was simple and I get all the 10 points. But, I have lot more to add than just giving a report program name.
    Usually the CRM E-Commerce accesses the MDM product catalog as an external catalog. It is not customary to export the Catalog content from SRM-MDM to CRM-ISA. Instead the MDM catalog is Web Enabled for use as an external catalog by CRM-ISA. In the SRM system, the report program
    /CCM/PE_START_REG_PUBLICATION
    can be used to publish the catalog. Usually, this is scheduled as a background job to run periodically to publish the catalog.
    The E-Commerce (CRM-ISA) has Open Catalog Interface (OCI) hooks available to do this. But this needs to be configured in the XCM to access such external catalogs.
    Please read the contents in this link for a overview idea of [External Catalog Integration (via OCI)|http://help.sap.com/saphelp_crm50/helpdata/en/2f/86653fac7ab21ae10000000a114084/content.htm]
    Also, start from [Service Market Place - SRM|http://service.sap.com/srm] and goto SRM-MDM Catalog to know more about the catalog and see the Export process for other possibilities.
    Easwar Ram
    http://www.parxlns.com

  • Custom field in CRM ISA order header

    Hi,
    I was able to add a custom field in our CRM ISA B2B website order entry header following the instruction on the ISA_30..modification guide.
    Right now I am able to store that custom header field data in a table in CRM called CRM_ISA_ADD_DATA which is also specified in the guide.
    My question is how do I transfer this field to the actual CRM ISA Order Header text field so that it can be replicated to R/3? 
    Any suggestions would be appreciated.
    Thanks,
    Prasoon

    Hi Hitesh,
    I am also looking for the solution for the same problem.
    I hope you have found the solution.
    If you have found the solution please let me know and help me how to do it.
    I really appreciate your help on this and I will assign you points for this.
    Thanks for your help.
    Ashish.

  • Authorization check in CRM ISA

    Dear All,
    I need some small help.
    We have SAP CRM ISA MSA 5.0 SP8. We need to create some roles for the end users who access the system via the CRM Webshop. But we are not able to trace what authorization a user requires or lack. Like when I give a role which doest not contain the required object, few functions in the CRM webshop does not work. But we are unable to trace it, do we have something similar to su53 or a a trace (st01/st05). I tried actiavating the trace, but it does not work.
    How do I know which object is checked/missing when user clicks something in a webshop?
    Please help me in this.
    Will surely reward points if I find anything which helps me.
    Thanks.
    Rajeet

    Hi Rajeet,
    The following links would help you to some extent.
    http://help.sap.com/saphelp_nw70/helpdata/en/03/37dc4c25e4344db2935f0d502af295/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/43/3ab19fa272376de10000000a422035/frameset.htm
    Cheers
    Soma

Maybe you are looking for

  • Java in Safari

    I know that Java is no longer natively supported by OS X and is not backed by Apple anymore. But I've been trying to install Java directly from Oracle in Safari, and everytime an update pops up, the whole thing simply fails. If I update it websites w

  • Dynamic Measure - Selecting which fields to include in a calculation

    Hello all, and thank you so much for spending your time reading this. I'm working on PowerPivot in Excel 2010. But if you know there's a solution in 2013, please let me know and I'll try to justify an upgrading. I have a table for my data source wher

  • Displaying content in separate frames

    When a user clicks on a link in a portlet, how can I have that content display in a separate portlet? That is, if the user clicks on a link on my menu on the left, how do I then have the page that link points to appear on the right?

  • SQL strange behaviour

    Hi I have created two tables temp_n and temp_c 1) DESC TEMP_N Name    Null    Type      COL2         NUMBER 2) DESC TEMP_C Name    Null    Type      COL3             NUMBER(1) 3)  SELECT * FROM TEMP_C COL3        1        2 SELECT * FROM TEMP_N COL2

  • Os x lion doesn't shut down automatically

    I have for about two weeks a problem with the automatic shutdown.I scheduled a shutdown in the Energy Saver preference panel but for some reason it stopped to work.Everytime my imac is in sleep mode the clock seems to stuck,preventing the mac from sh