No images in browser

Kinda going round in circles this morning!
When I preview in browser the images on my site are there. On
uploading the entire site (currently one page!) the images aren't.
I'm sure there is a simple solution, but I just can't see it.
To view the page in question click
here
Thanks in anticipation

PS I just double checked your link again before posting the
message below
as a last resort and now I see two images in FFox and Ie6....
so whatever
you did fixed the issue............
If you can't see them, you may need to clear your cache.....
Disregard now ;)
ok, a long shot, if you are absolutely certain the images are
uploaded and
the links are correct...would these be CMYK and not RGB jpg
images.
Nadia
Adobe� Community Expert : Dreamweaver
http://www.DreamweaverResources.com
|Tutorials|SEO |CSS Templates
http://www.csstemplates.com.au
http://www.adobe.com/devnet/dreamweaver/css.html
CSS Tutorials for Dreamweaver
"RobynSian" <[email protected]> wrote in
message
news:ee3p04$j19$[email protected]..
quote:
Originally posted by:
Newsgroup User
RobynSian wrote:
> Yes, have uploaded
>
>
http://www.bijoubabe.co.uk
>
> just checked and can see my image-free page!
Youre linking the images root-relative rather than
documen-relative. Try
re-linking them. Look for the options you can choose when
getting the
image, choose document-relative
It should change from
<img src="/image/BBlogo.jpg" width="240" height="55">
to, without the leading slash infront of image:
<img src="image/BBlogo.jpg" width="240" height="55">
See if that solve the proble. If it doesnt the images havent
been uploaded
Good point... so have tried exactly this, but still no
positive
result....mmm...

Similar Messages

  • Error: Unable to locate an image file browser...

    I get the error below when I insert an image element and try to associate a picture to it by either double clicking it or using the browse button in the Draw palette.
    I have looked in my install directory and the "FileSystemBrowser.dll" file is present as well as the "ImageFileBrowserIDL.dll" file, so what gives?
    Running LiveCycle ES2 9.0.0.2.20120627.2.874785

    Hi,
    you should be able to fix that problem by re-registering Designer file browser DLL.
    http://thelivecycle.blogspot.de/2014/02/diy-bugfix-image-file-browser.html

  • Double clicking an image in Browser view

    I see that the behavior for double clicking an image in Browser view has changed between Aperture 2 & 3. In version 2, double clicking an image would jump from Browser view to zoom in on that image in full screen mode. Now in version 3, double clicking just switches to that image in Viewer mode in the main window, without entering into full screen mode.
    While I guess this change makes some sense given the changes to full screen mode in v.3, my old fingers have gotten used to doing things the old way. To recreate what I used to do in v.2 I need to double click, then hit 'F' to do to full screen mode and then do the reverse to get back where I started.
    Is there anyway I can change this behavior to the old v.2 way? I see lots of ways to customize hotkeys and commands, but nothing to change behaviors for a double click.
    Thanks!

    I can't find anything, but I'm still finding my way around!
    I don't think you need to double click and press F..... just pressing F should change views.
    Another way is to drag the "Full Screen" icon into the toolbar, and you can just click that.

  • Ghost images in Browser windows

    I now have may thousands of photos and iPhotos is struggling to cope. I am trying to use Aperture but find it very frustrating. Whenever I try and look at images on browser they are ghost images (just dotted lines around) and I can only see them if double click on ghost. This seems to happen whether or not I have imported the images into Aperture or left them where they are. Sometimes it says iPhoto original and shows nothing see attached screenshot
    Any advice appreciated
    No filters applied.
    Thanks
    Rick

    I have also tried "Generating Thumbnails" and "Updating Preview" Neither had any effect.

  • Displaying Tiff Image on browser

    Hi friends ,
    I want to display tiff image on browser . For that i have written one servlet witch will desplay tiff image on browser
    Here i am sending my code snippets for servlet.
    Here file is source file which i want to display.
    FileSeekableStream ss = new FileSeekableStream(file);
              ImageDecoder tiffDecoder= ImageCodec.createImageDecoder("tiff", ss, null);;
              p = tiffDecoder.getNumPages();
              for(int x=0;x<p;x++){
              RenderedImage tiffPage = tiffDecoder.decodeAsRenderedImage(x);
              ByteArrayOutputStream stream = new ByteArrayOutputStream();
         TIFFEncodeParam tiffOptions = new TIFFEncodeParam();
         // You may want to set compression or tile attributes on the     EncodeParam here
         RenderedOp l_return = JAI.create("encode", tiffPage, stream,"TIFF", tiffOptions);
         bt = stream.toByteArray();
    then writing this byte array(bt)
    OutputStream out;
    out.write(bt);
    and responce .setContentType("image/tiff");
    i also want to know whether mime type image/tiff is supported or not in servlet.
    When i run servlet i am getting File Downloading dialog box.
    also when i download image file it's size is very large than original.
    Plz correct my code.It's verry urgent.
    Thanks in Advance

    hi, could you post the solution?
    I'm looking forward to know the solution.
    Thanks

  • Show image in browser

    hi,
    i am new in PHP and oracle. can i show image in browser using image path from database?

    vikash wrote:
    No, Actually I m putting the path of image in database in varchar2 and i want to show image in browser using this path...plz helpGotcha - that actually makes life a little easier...
    What you'll want to do with PHP (I'll lay this out for you a bit - I don't have a code editor/environment handy at the moment..)
    1) You'll retrieve your image path from the database. Note that this path has to be the 'web accessible path', not a full file system path. (e.g. if your "Web Root" is /var/http/www and the full file system path to your image is /var/http/www/images/myimage.png, then the image you should have in the database is /images/myimage.png. This could also be a relative image path, etc.)
    2) Use your retrieved database path to insert into your HTML <img/> tag. If you have 'short tags' enabled, it should look something like this:
    <img src="<?= $myImagePath ?>" />
    That's the basics - is there anything here that sounds familiar?

  • Sending Image to Browser

    Hello Guys !
    I need to load TIFF Image on Browser. Before this I'm converting to JPEG format whitout saving image on disk, just sending it to browser. This is the point: how can I format image in HTML format ?
    response.setContentType("image/jpeg");       
            ServletOutputStream sos = response.getOutputStream();
            RenderedOp src = JAI.create("fileload", "g:\\java\\00000001.TIF");
            ImageEncoder encoder = ImageCodec.createImageEncoder("JPEG",sos,null);       
            encoder.encode(src);Thanks !

    OK ! Now I see. But I don't know how to do that.
    I created a JSP FILE:
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@page import="obj.*"%>
    <%
      NewServlet objServlet = new NewServlet(); 
      out.println("<img src=" + ?????????? + "/>"); 
    %>
    <html>
    <head><title>Image View</title></head>
    <body>
    </body>
    </html>And have a code in NewServlet:
    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException {       
            response.setContentType("image/jpeg");       
            ServletOutputStream sos = response.getOutputStream();
            RenderedOp src = JAI.create("fileload", "g:\\java\\00000001.TIF");
            ImageEncoder encoder = ImageCodec.createImageEncoder("JPEG",sos,null);       
            encoder.encode(src);       
        }HOW CAN I LINK THE NEWSERVLET WITH JSP FILE ???
    PS: I HOPE I'M NOT BORING YOU !!!!
    THANKS !

  • Very freaky, image in browser is not what's displayed

    I was planning on doing a little organization in Aperture, and it seemed images
    were out of place, as not in the right album.
    Then clicking on image in browser to move it, discovered it's not the same displayed is really weird.
    I quit the application before adding any from memory card that I was about to load in.
    I'm at a loss as to what to perform w/o messing up the whole thing.
    If more details are needed, feel free to inquire.
    Thanks

    Wow, now that link was hidden therapy. What a Nice Tour.
    The menu's language at Aperture are so tech writer challenged, for me anyway.
    If I ever get around to writing a third party program or scrip,
    I'd love to create an add on to take every drop down menu item and
    create a hovered cloud explanation as to what's going to happen if it's clicked.
    At 50 something, it would make my day.
    Maybe loading Aperture on a separate drive, and just slam through the gears to see
    what happens vs doing burn outs on existing image files.
    The built in manual I'm afraid is not reader friendly.
    Thanks Much.
    Phil

  • Rotated images in browser view but correct in viewer

    Aperture 3. In numerous projects when looking at images in browser view some (not all) of the images are rotated incorrectly and some look as though they have been stretched. If I click on one of these images it opensin the viewer mode rotated correctly. Why is this happening and how do i fix it? Many thanks

    Preview uses the testing server.  When you say it doesn't work what happens?

  • Lightbox image 100% browser height or width

    Hello everybody,
    I am new here but I have a question regarding the lightbox. I am searching for a way to show an image in a lightbox that presents the image 100% browser height or width. The lightbox in muse only can show an image in native format. So if the image is too large for the height or width of the browser, the image will be cropped.
    Is there a widget or another way to make the image scale in a lightbox with the browser height and width?
    I hope someone could help me with this.

    You can use any other slide show with full width as because lightbox will show the original image centrally on screen.
    Thanks,
    Sanjit

  • Preloading images to browser's cache

    Hi,
    I'm working on a flash gallery project where images are
    loaded through xml file.I have some buttons in the gallery for
    different categories of images to be shown. Is there a way to
    preload images to browser's cache prior to them being called.?,I'm
    using AS2.
    Thanks in advance...

    You can simply load images into an empty movieClip, off
    stage.
    Dave -
    www.offroadfire.com
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • Dragging images from browser to a folder force-saves them as .bmp, how to fix?

    So here's the thing: I'm using the latest Firefox. If I click an image and drag it from the browser page to a directory/file it saves the image as a .bmp, even if it were .jpg or .gif or whatnot.
    Right-clicking and saving the images works fine.
    I've tried uninstalling and reinstalling firefox, downgrading to a 25 (newest is 26) and this: https://support.mozilla.org/fi/questions/833095
    Didn't fix.
    Downgrading to 25 did fix a sign-in issue related to steam store page, it's back now that I upgraded back to 26, but that's not the main issue here.
    I have AdBlock Plus and Nicofox as addons, but disabling them didn't help at all.
    I noticed this problem after christmas, so roughly a week ago.

    Hello,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information. <br>
    '''Note''': ''This will cause you to lose any Extensions and some Preferences.''
    *Open websites will not be saved in Firefox versions lower than 25.
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Won't display background image in browser.

    My background image displays in dreamweaver and in the live view but it doesn't display in the browser when I try to view in a browser or when I publish the website.  I have spend hours looking for a solution and I am not sure what the problem is. I have checked the code on the following websites and it comes out ok:
    http://jigsaw.w3.org/css-validator/validator
    http://validator.w3.org/check
    I have also tried my code with and without the overflow: hidden;  under #container where the image should be displayed.  (i was trying a new way to design -ie without basic grid and floating everything so the container can be removed if needed)
    here is my code. Please help!!! thank you in advance!!!
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Jan Kardys' Literary Agency</title>
    <style type="text/css">
    #header {
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        float: left;
        width: 930px;
        color: #3F9;
    #Menu_bar {
        float: left;
        width: 190px;
    #Page_Content {
        float: right;
        width: 725px;
        height: 500px;
    #footer {
        float: left;
        width: 930px;
    #Main_content {
        float: left;
        width: 510px;
    #xtra_content {
        float: right;
        width: 190px;
    #container {
        width:  930px;
        margin: 0 auto;
        background-image: url(/Images/Parchment.gif);
        overflow: hidden;
    </style>
    <script src="file:///C|/Users/james/Documents/DREAMWEAVER SITES/SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="file:///C|/Users/james/Documents/DREAMWEAVER SITES/SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    body {
    </style>
    </head>
    <body>
    <div id= "container">
    <div id="header"><h1>Jan kardy's Literary Agency</h1></div>
    <div id="Menu_bar">
      <ul id="Vertical_menubar" class="MenuBarVertical">
        <li><a href="#">Home</a></li>
        <li><a href="#">About Jan Kardys</a></li>
        <li><a class="MenuBarItemSubmenu" href="#">Rescources</a>
          <ul>
            <li><a class="MenuBarItemSubmenu" href="#">Education Connection</a>
            </li>
            <li><a href="#">Submission Guidelines</a></li>
            <li><a href="#">First Steps to Publishing</a></li>
            <li><a href="http://advancenetworkingunicorn.blogspot.com/">Advanceced Networkinig Blog</a></li>
            <li><a href="#">Library &amp; Publishing Events</a></li>
    </ul>
        </li>
        <li><a href="#">Client Links</a></li>
        <li><a href="#">Art Gallery</a></li>
        <li><a href="#">Contact Jan Kardys</a></li>
      </ul>
    </div>
    <div id="Page_Content">
      <div id="Main_content">Content for  id "Main_content" Goes Here</div>
      <div id="xtra_content"><h3>News &amp; Events
        </h3>
        <p><a title="http://scotlandpubliclibrary.org/" onkeypress="window.open(this.href); return false;" onclick="window.open(this.href); return false;" href="http://scotlandpubliclibrary.org/">Scotland Public Library</a>, Scotland, CT April 21, 2011 6-8pm<br />
      </p>
        <p><a title="http://www.plymouthct.us/library.htm" onkeypress="window.open(this.href); return false;" onclick="window.open(this.href); return false;" href="http://www.plymouthct.us/library.htm">Plymouth CT Library</a>, Plymouth, CT April 30, 2011 10am<br />
        </p>
        <p><a title="http://www.hplct.org/" onkeypress="window.open(this.href); return false;" onclick="window.open(this.href); return false;" href="http://www.hplct.org/">Hartford Public Library</a>, Hartford, CT May 7, 2011 10am<br />
        </p>
        <p><a title="http://www.middleburghlibrary.org/" onkeypress="window.open(this.href); return false;" onclick="window.open(this.href); return false;" href="http://www.middleburghlibrary.org/">Middleburgh Library</a>, Middleburgh, NY May 14, 2011 1pm<br />
        </p>
        <p><a title="http://dewlib.org/" onkeypress="window.open(this.href); return false;" onclick="window.open(this.href); return false;" href="http://dewlib.org/">Dewitt Community Library</a>, Dewitt, NY June 21, 2011 7pm<br />
        </p>
        <p><a title="http://gilfordlibrary.org/gpl/" onkeypress="window.open(this.href); return false;" onclick="window.open(this.href); return false;" href="http://gilfordlibrary.org/gpl/">Gilford Public Library</a>, Gilford, NH July 7, 2011 6:30-7:30pm<br />
        </p>
        <p><a title="http://www.athollibrary.org/" onkeypress="window.open(this.href); return false;" onclick="window.open(this.href); return false;" href="http://www.athollibrary.org/">Athol Public Library</a> Athol, MA July 14, 2011 5:30pm<br />
        </p>
        <p><a title="http://www.goshenpublib.org/" onkeypress="window.open(this.href); return false;" onclick="window.open(this.href); return false;" href="http://www.goshenpublib.org/">Goshen Public Library</a> Goshen, CT July 23, 2011 11am<br />
        </p>
        <p><a title="http://columbiactlibrary.org/" onkeypress="window.open(this.href); return false;" onclick="window.open(this.href); return false;" href="http://columbiactlibrary.org/">Saxton B. Little Free Library</a>, Columbia, CT July 26, 2011 6:45pm<br />
        </p>
        <p><a title="http://hampden-library.org/" onkeypress="window.open(this.href); return false;" onclick="window.open(this.href); return false;" href="http://hampden-library.org/">Hampden Public Library</a>, Hampden, MA Sept. 10, 2011 10:30am<br />
        </p>
        <p><a title="http://fortlee.bccls.org/" onkeypress="window.open(this.href); return false;" onclick="window.open(this.href); return false;" href="http://fortlee.bccls.org/">Fort Lee Public Library</a>, Fort Lee, NJ Sept. 14, 2011 7:00pm<br />
        </p>
        <p><a title="http://prosserlibrary.info/" onkeypress="window.open(this.href); return false;" onclick="window.open(this.href); return false;" href="http://prosserlibrary.info/">Prosser Public Library</a>, Bloomfield, CT October 3, 2011 6:00-8:00pm<br />
        </p>
        <p><a title="http://iwwg.org" onkeypress="window.open(this.href); return false;" onclick="window.open(this.href); return false;" href="http://iwwg.org">IWWG. org</a>, New York City, October 16, 2011 2:30-6pm<br />
        </p>
        <p><a title="http://www.hchlibrary.org/" onkeypress="window.open(this.href); return false;" onclick="window.open(this.href); return false;" href="http://www.hchlibrary.org/">Henry Carter Hull Library</a>, Clinton, CT October 24, 2011 6:30pm<br />
        </p>
        <p><a href="http://town.canton.ma.us/library" title="http://town.canton.ma.us/library">Canton Public Library</a>, Canton MA Janurary 7, 2012  2:00pm<br />
        </p>
        <p><a href="http://www.town.sturbridge.ma.us/Public_Documents/F0000F86A/library" title="http://www.town.sturbridge.ma.us/Public_Documents/F0000F86A/library">Joshua Hyde Library</a>, Sturbridge, MA March 24, 2012 10:30am<br />
        </p>
        <p>Otis Library Norwich, CT April 14, 2012 12:00am-2:00pm<br />
        </p>
      </div>
    </div>
    <div id="footer"> <h6>Webpage designed by James S. Molina</h6></div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("Vertical_menubar", {imgRight:"/SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </div></body>
    </html>

    In regard to the files you currently have on your server, the links to your Spry menu files are still pointing to your local computer.  This is caused when a site has not yet been defined in Site Manager, so DW is forced to link them locally.
    To fix your page, just go into code view and remove the part of the link path that I have underlined and made BOLD.
    <script src="file:///C|/Users/james/Documents/DREAMWEAVER SITES/SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="file:///C|/Users/james/Documents/DREAMWEAVER SITES/SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css" />

  • Muse 7.0 plus Chrome: browser does not show images full browser width

    Hi there,
    I have a serious problem with the latest Muse version: the images which I use as parallax-masks for the background won't work with Chrome, though Safari and Firefox are not showing any problems. The issue: Chrome does either not scale the images to 100% browser-width or does not show them at all, or even shows the images cut into narrow stripes. This problem did not show in the previous version of Muse.
    Of course I already restarted application and computer. System: Mac OSX Mavericks.
    What to do now? The presentation with the client is very soon and this bug makes me very nervous.
    Best,
    bartl

    The problem bartl encountered and reported was fixed by the 7.1 release (November 21st). The problem you're describing sounds different.
    As of yet, I'm unable to reproduce what you're describing. The URL you've provided views the same in all the browsers I've tried, Chrome (32.0.1700.77) and non-Chrome, Mac and Windows.
    That said, looking at your master page I don't think you've created what you intended. At present there are two full screen slideshows on your A-master. On contains no images and the other contains a single image. Both are set to have thumbnails and the thumbnails container is off the right side of the page.
    If you look at your "Master Slideshow" layer in the Layers panel, you'll see the two slideshows. I think you'll want to delete one of them and, given your design, turn off thumbnails for the remaining one.
    Also, if you don't plan to have multiple images in the full screen slideshow, you'd be better off using a background fill image rather than the slideshow widget.
    I remain a bit puzzled how/why you're seeing different behavior in your instance of Chrome. Have you cleared your browser cache?
    On an unrelated note, if you set the page fill and stroke to none and set the browser fill to the most common color from the garage door image, it will avoid the momentary appearance of a white page on a grey background when your home page first loads. Instead the site visitor would see a blank page that's the most common color from the slideshow image, until that image loads.

  • Scanned image in Browser is not getting refreshed

    Hi
    We are facing a strange issue. We have scanned an invoice and this is stored in the R/# system. Now when the user clicks on a scanned image the user gets a scanned document that he has opened previous to this. Now once h closes this and again clicks then he gets the correct scanned image. This is being experienced by only a handful of users. I think it might be some Browser related issue. Can anyone throw some light how to solve this issue.
    No experts on this topic
    Any answer will be highly appreciable.
    Thanks
    Arghadip
    Edited by: Arghadip Kar on Feb 28, 2008 9:03 AM

    Hi,
    In DC10 we define the document type and the default application to open that perticular documents. for ex document type images and default application type JPEG etc.
    . now whenever you create any document with Doc type and attach the documents and after try to view the documents system will treat the originals as images of type JPEG and try to open with the workstation application like paint, image viewer
    I hope your doubt clear abt dc10.
    regards
    shiv

  • Canot display image in browser?? help!!

    <applet code="yew.yew.dirapplet"
       archive="Signed.jar"
       width=400 height=400>
    </applet>i cant display out the image using appletviewer
    but when i sign in the browser it cant display out the image.
    i try many way but still cant solve tis ploblem.
    I din include the .gif into the jar file onli store in the same directory
    hope some applet expert can help.
    Thanks in advanced

    Do you use getImage??
    Then use it like this:
    this.getImage(this.getCodeBase(),"myfile.jpg"); // same dir as the appletthis.getImage(this.getCodeBase(),"../images/myfile.jpg"); // other dir than the appletStill doesn't work, please give us a full trace and some code where the exception occures.
    To turn the full trace on (windows) you can start the java console, to be found here:
    C:\Program Files\Java\j2re1.4...\bin\jpicpl32.exe
    In the advanced tab you can fill in something for runtime parameters fill in this:
    -Djavaplugin.trace=true -Djavaplugin.trace.option=basic|net|security|ext|liveconnect
    if you cannot start the java console check here:
    C:\Documents and Settings\userName\Application Data\Sun\Java\Deployment\deployment.properties
    I think for linux this is somewhere in youruserdir/java (hidden directory)
    add or change the following line:
    javaplugin.jre.params=-Djavaplugin.trace\=true -Djavaplugin.trace.option\=basic|net|security|ext|liveconnect
    for 1.5:
    deployment.javapi.jre.1.5.0.args=-Djavaplugin.trace\=true -Djavaplugin.trace.option\=basic|net|security|ext|liveconnect
    The trace is here:
    C:\Documents and Settings\your user\Application Data\Sun\Java\Deployment\log\plugin...log
    I think for linux this is somewhere in youruserdir/java (hidden directory)
    Print out the full trace of the exception:
    try{...}catch(Exception e){e.printStackTrace();}

Maybe you are looking for

  • PR to PO Vendor Master Setting

    If i need using ME59N to convert PR to PO one of the requirement is set the auto PO in Vendor purchasing view. I have an question is how about I don;t set the auto PO in the Vendor Purchasing View but set under Vendor Purchasing view DC veiw auto ord

  • Partitioning of table in oracle 10g - How to Add

    Hello Friends , Hope you are all fine and doing great. By the way - I have a quick question on oracle 10g Partitioning of tables... I have a table with partition as stated below .. CREATE TABLE X_ACC_ASSETS_GPC_AGG X_ACC_ASSETS_GPC_AGG_RK NUMBER(10)

  • Customer/ Vendor list for Italy (RFIDITCVL)

    Dear all, Does anyone has an idea about the new modification requirements for the report RFIDITCVL?This tax report needs to be changed according to the Italian tax authorities till October 2011 but there is no SAP note for it yet. Please let me know

  • Deleting a GL account

    Hi,   is there a way to completely delete  a GL account , besides flagin it for deletion. if yes, pls let me know the steps involved. thanks.

  • What is Dealer Portal and Partner Portal?

    HI, All, I found two new terminology: 1. Dealer Portal: it is usually used in Auto Industry 2. Partner Portal: usually mentioned in CRM scenarios Could anybody here can confirm me whether they are build on SAP EP?  Are they some specific business pac