Hide/display charactersitics in ISA Webshop applications

Hi All,
I am new to CRM development and I am trying to understand the CRM-ISA applications.
I am stuck up at a place where, I have to display a specific characteristic of a selected product.
Used the "showmodulename" parameter to get the required jsp file , and I have extracted the standard code and had a look at the characteristic.jsp file.
I would like to know if this feature(hide/display) is done in backend as part VC configuration or can i manually hardcode the property of a field to  hide/display ?
Need you inputs on this.
Thanks,
Aman

Hello A S,
I have to display a specific characteristic of a selected product
What you (or your VC design time consultant) do in R/3 design time is what you see during the runtime in ISA (via IPC).
If a characteristic C1 is displayed in a Characteristic Group (tab) CT1 in R/3, you will have the same visual effect in ISA. The JSP you saw displays the characteristic names and values dynamically as it found from the design time (a.k.a KB in CRM). In effect, the IPC UI painstakingly mirrors the R/3 runtime behavior. So, you have to see if this hide and seek is acceptable in R/3 runtime.
Alternatively, if you want to hardcode the behavior of some characteristics in ISA alone, nothing stops you from coding inside the loop in these pages. But you must hardcode the characteristic name in your code and change the behavior. For different types of data (text, number, list) need different types of treatment.
Remember, if you have multiple configurable products (KBs) with different design time and runtime behavior and if the characteristic names are different in different KBs, then you have to be careful. Also, whenever the KB changes, you have to check if your JSPs that contain the characteristic names require any new tinkering.
Easwar Ram
http://www.parxlns.com

Similar Messages

  • Difference between ISA webshop and ISA application

    Hi ,
    I have a basic question regarding the ISA , I work on ISA b2c and b2b application and came across webshop what is the difference betwwen an ISA application and ISA webshop where does this Webshop reside ? on J2EE engine and is it default provided by when a application server like 6.2 or 6.4 is installed or where dose it reside ?  I know it is accessed through and URL shopadmin or so ? but not sure how to install it on my local server and so forth please some one give me anidea of it and let me know in lane terms what does this webshop mean . If you want to send any documents feel free to send it to [email protected]
    Thanks in advance

    Instead of explaining it all again here are some posts around the same subject
    Re: what is the Differenc between Classic Planning and EPMA
    Hyperion Planning - Classic Administration vs EPMA ....
    Re: The advantage of using EPMA?
    EPMA compare to Classic
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Conditionally Hide/Display fields in a region

    How can I conditionally hide/display fields in a region. Based on a user selection whether they want to 'Enter' or 'Select', I want to dispaly the appropriate field .i.e. if the user selects 'Enter' then I want to display a Text field and if they opt for 'Select', then I want to display a Select list.
    Thanks in Advance.
    Regards,
    Hilal

    Hi Halil,
    I've been trying to reproduce what the linked site does.
    Here's my solution:
    1 - Add all items to the page whether or not they are going to be displayed
    2 - Ensure that all items that could be shown/hidden are on lines on their own (ie, set New Line to Yes)
    3 - In the region's Region Footer (or in a new HTML region in the Before Footer position), add in this bit of javascript:
    <script type="text/javascript">
    html_HideItemRow('NameOfFieldToHide');
    -- repeat for each item to be hidden when the page first loads
    </script>
    4 - On the radio button's definition, add the following in the HTML Form Element Attributes setting:
    onclick="html_ToggleItemRow('NameOfDisplayedItem');html_ToggleItemRow('NameOfHiddenItem');"
    Now when the page is loaded, one field is automatically hidden then clicking any of the radio button options will toggle the hidden/displayed fields and their labels.
    As stated before, if you do a View Source on the linked application's page, you will see either more methods that are used to show/hide items/regions, but the above should be a starting point for you.
    Regards
    Andy

  • Display image in standalone AIR application

    I have loaded images and like to display image in standalone AIR application. But I cannot get it work. The code as follows:
    private function ImageLoader(url:String):void
    var request:URLRequest = new URLRequest(url);
    var loader:Loader = new Loader();
    loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loaderComplete);
    loader.load(request);    
    private function loaderComplete(event:Event):void
    var scaleFactor:Number = 1;
    var uic:UIComponent = new UIComponent();
    try
    var bmp:Bitmap = event.target.content as Bitmap;
    var bmd:BitmapData = bmp.bitmapData; //Bitmap(event.target.content).bitmapData;
    var scaledBMD:BitmapData = new BitmapData(400, 400);
    var matrix:Matrix = new Matrix();
    matrix.scale(scaleFactor, scaleFactor);
    scaledBMD.draw(bmd, matrix, null, null, null, true);
    uic.x = 40;
    uic.y = 40;
    uic.addChild(new Bitmap(scaledBMD));
    catch (errObject:Error)
    trace(errObject.message);

    Found answer by adding mx:Canvas and add
    iconCanvas.addChild(uic);
    after
    uic.addChild(new Bitmap(scaledBMD));
    <mx:Canvas id="iconCanvas" width="10" height="10" horizontalScrollPolicy="off" verticalScrollPolicy="off" x="0" y="0" clipContent="false"/>
    Is anyone create "Canvas" by using new Canvas and get it works? example:
    var canv:Canvas = new Canvas(...);

  • Query on SoD matrix for CRM-Webshop applications - RAR 5.3

    Hi,
    We are implementing RAR 5.3 for CRM system. We observed that GRC has standard SoD matrix for CRM application. But there is no SOD matrix available for the Webshop (B2B/B2C/BOB) where access will be provided to the external users
    We are of the opinion that there will be no SoD conflicts for the Roles/Users created for the webshop applications as the webshops are used by the external users i.e. customers.
    Is there any standard SoD matrix available for the authorization objects of the webshop application with SAP? Has anybody configured SoD rules for the webshop application roles? If yes, please provide us the link of the information where we will get this rule matrix
    Thanks in advance.
    Srihari.K

    Hi Sri,
    The standard rule for CRM is available in the marketplace.
    But I don't think SAP has created standard rule for webshop.
    Thanks,
    Sudip.
    Edited by: Sudip Saha on May 18, 2009 4:05 PM

  • Displaying Picture in a Java APPLICATION please help!!

    I have been trying to write a method that Displays a .jpg file when called. However I have not gotten far, every book I have tell you how to display pictures in an applet but not an application. I did find some code that is supposed to be for an application, but It does not compile right. Any help would be apprecidated!
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class PictureIt{
    public void makeImage() {
    //***Image Output Stream
    String imgFile
    = "d:\\temp\\TestImage.jpeg";
    out = new FileOutputStream(imgFile);
    BufferedImage image = null;
    image = (BufferedImage)createImage
    (panelJpeg.size.width, panelJpeg.size.height);
    Graphics g = image.getGraphics();
    panelJpeg.paintAll(g);
    }

    Displaying Picture in a Java APPLICATION please help!!
    Hope this helps.There is going to be two classes compile seperatly first class is what does the drawing
    here it is
    import javax.swing.*;
    import java.awt.*;
    public class draww extends JPanel {
    Image ball;
    int width1 = 100;
    int height1 = 100;
    public draww() {
    super();
    Toolkit kit = Toolkit.getDefaultToolkit();
    ball = kit.getImage("pic1.gif");
    public void paintComponent(Graphics comp) {
    Graphics2D comp2D = (Graphics2D) comp;
    comp2D.drawImage(ball, 20, 20, width1, height1, this);
    sound class is the container JFrame here it is
    import javax.swing.*;
    import java.awt.*;
    public class drawing extends JFrame {
    public drawing() {
    super("draw");
    setSize(400,400);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Container pane = getContentPane();
    draww d = new draww();
    pane.add(d);
    setContentPane(pane);
    setVisible(true);
    public static void main(String[] args) {
    drawing drawing1 = new drawing();
    PS Hope this helps and see you around

  • Is it possible to change the display order of Apple TV applications on my home screen?  i.e. move Watch ESPN toward the top, move the WSJ to the bottom, etc.

    Is it possible to change the display order of Apple TV applications on my home screen?  i.e. move Watch ESPN toward the top, move the WSJ to the bottom, etc.  That way you won't have to scroll all the way down to the bottom to access an applicaton you use most often.

    Yes. Just select and hold until the app starts to jiggle and then you can move it.

  • How to hide display details in sap gui and create ad-hoc request in UWL?

    Hi,
    how to hide display "details in sap gui" and "create ad-hoc request" in UWL?
    Please telme the step-by-step procedure to hide "details in sap gui" and "create ad-hoc request".
    Thanks,
    Rashmi

    Hi,
    Thanks for the information. It was very helpfull.
    Can you please tellme where can we fine UWL iView? I tried to find this out in two ways.
    1) Portal Content -> Content Provided by SAP -> End User Content -> Standard Portal Users -> Views -> com.sap.coll.iviews -> Universal Worklist (finally i got this iView). Here i dint find any property called "List of UWL Actions to exclude". In the link which you had given, its written that we can modify the iView and add the name of the actions under the Actions to exclude from the UWL property.
    Which iView do we need to modify and where can i find that property?
    2) I downloaded the xml file and then tried to find this property "List of UWL Actions to exclude" or " Actions to exclude from the UW". But i couldnt find both the properties in xml file.
    Thanks,
    Rashmi

  • Want to change Date format in ISA webshop

    HI,
        I want to know how to setup a date format in ISA webshop. Currently our webshop is showing as mm/dd/yyyy format. we wanted to change it to dd/mm/yyyy format.
    Can any body suggest me how to change it.

    Hi,
    Do this.
    DATA: lv_dt(10)  type c.
    lv_dt =  table1-f1( the field from which ur date is coming.)
    concatenate lv_dt6(2)  lv_dt4(2)  lv_dt+0(4)
                                    into lv_dt
                                    separated by '.'
    write:/ lv_dt.
    This will sove ur problem
    Regards:
    Sapna
    Do reward points if u find this helpful

  • How to to display the JSP report in Application Server ? URL for displaying

    Hi Experts,
    Last week, we tried to change the memory of Response Cache and buffer Cache to increase the speed of the Excel report. But it didn’t work out.
    And from the below link, I understood we can convert the oracle 9i report to excel by converting the Oracle 9i report to JSP report.
    http://www.oracle.com/technology/products/reports/htdocs/getstart/demonstrations/index.html
    I’ve converted the Oracle 9i report to JSP report and finding the way to display the JSP report using Application Server. I am trying to find out the REPORT URL of simple JSP report and using Reports Servlet . Right now I am trying to display the JSP report in Application Server.
    Please suggest the URL for displaying the JSP report
    Thanks & Regards

    Hi,
    You can directly call you .jsp file, http://<host>:<domain>:<port>/<jsp report path>?userid=<if your report requires userid>/<pwd>
    Refer to metalink documents:
    Frequently Asked Questions About JSP Reports [ID 301714.1]
    Here --> Question 4. How do I execute a JSP report?
    Also refer, How to deploy JSP reports [ID 220943.1]
    Hope this helps.
    Regards,
    Mithun

  • Displaying HTML in a java application

    Is there any other way to display HTML in a java application besides JEditorPane and JLabel (which are fairly restrictive). Its tableing I'm really after.

    Eureka!
    http://home.earthlink.net/~hheister/

  • Displaying image on the swings application

    Hi All,
    I want to display images onto my swing application. I was using ImageIcon and Class to getResource(filename). It can only provide me images that i have placed in my package not outside my package.
    Please help me, how to to do?
    Thanks in advance.

    [url http://java.sun.com/docs/books/tutorial/uiswing/components/icon.html]How to Use Icons

  • Portal Tabs - Dynamic Hide/Display

    Hello:
    We have a Portal Page Group with multiple TABS. We like to be able to display/hide (or enable/disable) tabs based on the Portal Roles assigned to the current user.
    Is it possible to Hide/Display tabs dynamically based on certain conditions? What is the best way to enforce this without creating multiple page groups?
    Thanks

    The only way I know to conditionally hide/show tabs is to grant access on each tab to one or more groups. The tab will then only be displayed on the page to logged-in user that is a member of a designated group for that tab. (Portal admins will be able to see all the tabs.) If there's another way to hide/show tabs based on other criteria - I'd like to know too! :-)

  • Hide / display conditionally export links and export options

    Hi all,
    Is there a way to hide / display conditionally export links in a dashboard. Also, is there a way to limit the export options to display only Export to Excel, and not all the other options such as pdf, etc.
    Thank you
    Regards,
    Laurent

    Hi Laurent,
    Regarding limiting the choices of export, you can refer to below post:
    Re: Export to only PDF,Excel, PPT
    Thanks
    Hyder

  • Fail to access a modifed ISA B2B application

    Hi,
    I have an ISA B2B application (say b2b) in a remote server accessed by the link http://A.B.C.D:53200/b2b/b2b/init.do. Then I made a local copy called b2b_mod; made some minor changes and did the deploy with no problems so far. Using Visual Admin, it was restarted but I failed to access it. So, how can I make this access? There is a suitable URL to do that? Or something else must be done? I would apreciate any directions,
    Att.
    Diego Fernandes

    Hi,
    To setup the trace logs you need to use the following URL.
    https://<system domain name>:port/<application_name>/admin
    typically it should look like as below:
    https://abc.com:50001/b2b/admin
    Here there is an option to start and stop the logs and after stopping it will generate a Zip file which you need to download and from there you can easily find out the BAPI's or teh RFC calls.
    Also when you search you should alwways keep one thing mind that these FM's normally start with CRM_ISA*
    Hope it helps.
    Regards
    Sidd

Maybe you are looking for

  • How to create an animated gif with CS4?

    Trying to create an animated gif from 8 images using FW CS4.  Can't find "how to" via online FW help.  Have done it before with version 8 -- followed the in-house Help db but CS4 doesn't have in-house db.  I found a tutorial: http://www.entheosweb.co

  • "Show All" in Spotlight missing the number of items that were found?

    how do i allow Spotlight results page to display the total number of results for the search? say i search for "compare" the top result would be Show All (427), the 427 being the number times Spotlight found the word "compare" anyone have a solution?

  • One page in my site won't load

    When I click on one of the links inside my site, I get the "We're Sorry. We can't find the HomePage you've requested" message. I have checked the link many times to make sure it is correct (using Inspector) and have deleted and recreated the link, as

  • Re: How do I turn off the auto keypad lock ?

    Hi,i just got zis phone nokia asha 300.i really need to remove zis auto key lot.its just a headache.i want to use the key lock manually.please help

  • Enterprise Service for Vendor Creation

    I would like to know whether there is any Enterprise Service for Vendor Creation in SAP. I have found out an Enterprise Service for the same -- SupplierERPCreateRequest_In. However this is an Asynchronous Enterprise Service. I need to know wheter we