CSCth95017 - Configurable parameter on how callingparty is displayed for hunt groups.

Hello all,
The "fixed-in" versions for this bug are listed below;
Fixed in:                          (5)
9.0(0.98000.74),9.0(0.98000.21),8.6(4.98000.21)
8.6(2.21023.1),1.9(9.98000.16)
But the bug is related to firmware and the "fixed-in" versions look like CUCM versions;
Symptom:
As of phone load 9.x and higher, calls to a hunt pilot show the following format for the calling party on the ringing phone.
From 'Calling Party Name' for 'hunt pilot DN'
i.e.  From John Doe for XXXX
The previous format was
From 'Calling Party Name' ('Calling Party Number')
i.e.  From John Doe (XXX-XXX-XXXX)
Need a configurable parameter to change the format to the previous format if the customer desires.
Conditions:
Occurs on phone loads 9.0(x) and above.
Workaround:
Downgrade to 8.4.x
Can anyone clarify the "fixed-in" versions for this bug and where the versions are available for download.
Cheers!
Rob
"Always movin' ahead and never lookin' back" - Springsteen

Hi Rob,  The original documentation highlighted this as a phone issue. You have a good eye to catch this. The ultimate resolution was committed on the server side. I updated the bug Release-note to include more information about the fix. You will see that in Bug Toolking and Bug Search Tool in 24-48 hours.  Looks like it was necessary to change the information CUCM was sending out in order for the phones to leverage that information. Here is what I added to the bug: New Service Parameter :  "Display Hunt Pilot Name or DN for Hunt Group Calls When Alerting"  Default Value : True ? Default behavior will be new behavior from 8.x . For customers who want the previous behavior of  7.x  will have to set this parameter to false after upgrade.   Call Processing Fix from SCCP and SIP Side :   -       For Hunt Pilot calls, CUCM will not send Hunt Pilot URI to in outgoing INVITE when this service parameter is false but internally CUCM still treats this call as Hunt pilot call so that we do not break other features. -       For Hunt Pilot calls, CUCM will send the HP URI to phone when this SP is true.   For the versions above: 9.0(0.98000.74) - this is an internal nightly  build (.98xxx.). this *may* get it included in 9.0(1) 9.0(0.98000.21) - this is an internal nightly  build (.98xxx.). this *may* get it included in 9.0(1) 8.6(4.98000.21) - this is an internal nightly  build (.98xxx.). this *may* get it included in 8.6(5) 8.6(2.21023.1) - this gets it fixed in 8.6(2) engineering special branch commonly referred to as es23. TAC can provide this to you. This *may* get it included in the next 8.6.2su that gets posted to Cisco.com. 1.9(9.98000.16) - this appears to be a typo.  Regards, Wes

Similar Messages

  • I'm looking for an app that will allow a presenter to give ipads to several other users in a room and control what's on display for the group

    please let me know if you know of any good apps to sync up several ipads in a room with one person in control. I'm looking for an app that will allow a presenter to control what's on display for several other ipad users in a room. I'd like to be able to do presentations over the ipad, but i want the presenter to control the screens so folks in the meetings don't get distracted by playing with the ipad. i'd like to avoid using a web meeting service and do this without having to connect to any kind of network since i'll often be doing this outside of my office.

    Try http://mysyncpad.com/. I'm not sure if it will do all you need, but it's the closest I've seen.

  • HOWTO configure parameter options in oracle apps R11i for reports ??

    Hello
    I've developed a character report with orientation = landscape ,width=180 and height=66 on my laptop.It takes FROM DATE & TO DATE input from user which are passed to the sql query.
    KINDLY GUIDE ME IN CONFIGURING PARAMETERS OPTIONS TO RUN THIS REPORT IN ORACLE APPLICATIONS 11i.
    More what would the Token Option be in my case.
    I'm pasting the sql query and the last line indicated in bold takes parameter.I'm working in the HR & PAYROLL SCHEMA.
    SELECT DISTINCT
    PAPF.PERSON_ID AS "PERSON_ID",
         PAPF.BUSINESS_GROUP_ID,
    PAPF.TITLE,
         PAPF.FIRST_NAME,
         PAPF.MIDDLE_NAMES,
         PAPF.LAST_NAME,
    PGD.SEGMENT4 AS "GRADE",
         PPG.SEGMENT1 AS "GROUP_NAME",
    PPG.SEGMENT2 AS "DEPARTMENT",
    PPEMP.PEM_ATTRIBUTE8 AS "PREVIOUS_SALARY",
    PAC.SEGMENT2 AS "SALARY_OFFERED",
    PQFS.TITLE AS "QUALIFICATIONS",
         (SELECT
         SUM(PPEMP.PEM_INFORMATION1)
              FROM
              PER_PREVIOUS_EMPLOYERS PPEMP
              WHERE
              PPEMP.PERSON_ID=PAPF.PERSON_ID
              AND PPEMP.BUSINESS_GROUP_ID=3788
              ) AS "RELEVANT_EXPERIENCE",
              (SELECT
              SUM(PPEMP.PERIOD_YEARS) ||' '||'Y'||' '|| SUM(PPEMP.PERIOD_MONTHS)||' '||'M'          
              FROM
              PER_PREVIOUS_EMPLOYERS PPEMP
              WHERE
              PPEMP.PERSON_ID=PAPF.PERSON_ID
              AND PPEMP.BUSINESS_GROUP_ID=3788
              ) AS "TOTAL_EXPERIENCE",
              (SELECT PJD.SEGMENT4
                   FROM                
                                  PER_JOBS PJ,
                                  PER_JOB_DEFINITIONS PJD
    WHERE                         PAPF.PERSON_ID=PAAF.PERSON_ID
    AND                              PAAF.JOB_ID=PJ.JOB_ID                          
    AND                          PJ.JOB_DEFINITION_ID = PJD.JOB_DEFINITION_ID
    AND                          PJ.BUSINESS_GROUP_ID = 3788) AS "FUNCTIONAL_TITLE"
    FROM
    PER_ALL_PEOPLE_F PAPF,
    PER_ALL_ASSIGNMENTS_F PAAF,
         PER_JOBS PJ,
         PER_JOB_DEFINITIONS PJD,
    PAY_PEOPLE_GROUPS PPG,
    PER_GRADES PG,
         PER_GRADE_DEFINITIONS PGD,
    PER_QUALIFICATIONS PQFS,
    PER_PREVIOUS_EMPLOYERS PPEMP,      
    HR_ALL_ORGANIZATION_UNITS HRAOU,
         PER_PERSON_ANALYSES PPALYS,
         PER_ANALYSIS_CRITERIA PAC,
         APPS.FND_ID_FLEX_STRUCTURES FIFS,
         HR_LOCATIONS_ALL HLA,
         PER_APPLICATIONS PA
    WHERE PAPF.PERSON_ID = PAAF.PERSON_ID
    AND PAAF.GRADE_ID = PG.GRADE_ID
    AND PG.GRADE_DEFINITION_ID = PGD.GRADE_DEFINITION_ID
    AND PAAF.PEOPLE_GROUP_ID = PPG.PEOPLE_GROUP_ID
    AND     PAAF.JOB_ID (+)=PJ.JOB_ID
    AND PJ.JOB_DEFINITION_ID (+)=PJD.JOB_DEFINITION_ID
    AND PQFS.PERSON_ID (+)= PAPF.PERSON_ID
    AND PPEMP.PERSON_ID (+)= PAPF.PERSON_ID
    AND HRAOU.ORGANIZATION_ID (+)= PAAF.ORGANIZATION_ID
    AND PAPF.BUSINESS_GROUP_ID=3788
    AND PAPF.EFFECTIVE_END_DATE=TO_DATE('31/12/4712','DD/MM/RRRR')
    AND PAAF.EFFECTIVE_END_DATE=TO_DATE('31/12/4712','DD/MM/RRRR')
    AND PAPF.CURRENT_APPLICANT_FLAG='Y'
    AND PAAF.ASSIGNMENT_TYPE='A'
    --AND    HRAOU.ORGANIZATION_ID = PAAF.ORGANIZATION_ID
    AND nvl(PPEMP.END_DATE,TO_DATE('31/12/4712','DD/MM/RRRR'))=nvl((SELECT MAX(END_DATE)
    FROM PER_PREVIOUS_EMPLOYERS P
              WHERE PPEMP.PERSON_ID=P.PERSON_ID),TO_DATE('31/12/4712','DD/MM/RRRR'))
    AND PAPF.PERSON_ID=PPALYS.PERSON_ID
    AND PPALYS.ANALYSIS_CRITERIA_ID=PAC.ANALYSIS_CRITERIA_ID
    AND FIFS.ID_FLEX_NUM=PAC.ID_FLEX_NUM
    AND FIFS.STRUCTURE_VIEW_NAME='HIRING APPROVAL'
    AND HLA.LOCATION_ID=PAAF.LOCATION_ID
    AND PA.PERSON_ID=PAAF.PERSON_ID
    AND PAPF.EFFECTIVE_START_DATE between :From_Date And :To_Date

    Hi Dinesh
    I have some bad news for you I'm afraid. Discoverer workbooks are not stored as SQL definitions, they are stored as BLOBs within the database. It is therefore not possibly to write any sort of query to interrogate the inner workings of a workbook. The only way to do this is to open each workbook in turn and analyze it.
    Sorry to be the bringer of bad news
    Best wishes
    Michael

  • How can i display for example certificates in a way that it like power point? in Iweb. idid 1-1 on this a few years ago and forgot how this worked

    some years ago. i did 1-1 sessions at Apple mac regent street when i was designing my website. I have IWEB 08 and at one
    pint ihad designed posters in pages and displayed them on my I web site...
    it was displayed in a way that the pictures rotated as in a gallery , it may have used i photo but I really can't recall.. does anyone have any idea
    or like a slideshow type thing.
    i have a bunch of certificates to qualify for writing and other stuff which are boring to look at and I think a page on the website with those displayed would be better than having them as static fixed icons that can be downloaded
    . has anyone else done this...
    I know 2008 is probably regarded as ancient in the apple world, but we did that on that in 2009 and it worked so i know it's dooable.
    any ideas out there..?

    Is the website still up?  If so what's the URL of your site so we can examine it first hand?
    One method is to create an image file of each certificate and add it to a photo page where they could be viewed in a modified slideshow developed by Cyclosaurus on this demo page: Page-7 .  The code used in the HTML snippet is shown.
    OT

  • How to set DISPLAY for tomcat service inorder to run reports using rwrun.sh

    Here is my problem..
    I came to know that its not possible to invoke rwrun.sh without setting the DISPLAY environment variable from the servlet or any java program. But some one proposed me a solution that to set the DISPLAY variable for TOMCAT service from where my servlet invokes the shell script written for report generation using rwrun.sh. The user for tomcat service is wwwrun ..
    Do i need to set this variable in the logon script for this user ..but I couldn't find the .profile file for that.
    Is there any way to set this variable for tomcat service and get the report successfully.

    i gave export DISPLAY=aatsv001.local:0.0 in $ORACLE_HOME/bin/reports.sh
    but it gives me the following error when i invoke the report
    Xlib: connection to "aatsv001.local:0.0" refused by server
    Xlib: No protocol specified
    REP-0069: Internal error
    REP-3000: Internal error starting Oracle Toolkit.
    I also tried giving localhost and also aatsv001 (without .local)
    some one help me..

  • How to create disks for disk group ?

    Hello Experts
    I am RHEL 5 with Oracle 10g, I am configuring ASM. What will be steps to create disks that can be used in disk group and I am using normal redundancy so how many disk groups are needed(min.)

    Sunil,
    Well to be honest, so far I have not tested ASM over RHEL/OEL 5. I demonstrate ASM over 10g using DD command , creating virtual devices than binding them as a raw decices. So far, this technique is very successful, though I have not tested the same over RHEL5.
    The article quoted uses asmlib driver. Its good but not mandatory to work with asm, at least for the learning purpose. So I wont' recommend to do the labor. What you can do is the following,
    # mkdir /asmdisks
    # chown oracle:dba /asmdisks
    # su - oracle
    $ dd if=/dev/zero of=/asmdisks/disk1 bs=1k count= 4000
    $ dd if=/dev/zero of=/asmdisks/disk2 bs=1k count=4000
    $ dd if=/dev/zero of=/asmdisks/disk3 bs=1k count=4000
    $ dd if=/dev/zero of=/asmdisks/disk4 bs=1k count=4000
    # losetup /dev/loop1 /asmdisks/disk1
    # losetup /dev/loop2 /asmdisks/disk2
    # losetup /dev/loop3 /asmdisks/disk3
    # losetup /dev/loop4 /asmdisks/disk4
    # raw /dev/raw/raw1 /dev/loop1
    # raw /dev/raw/raw2 /dev/loop2
    # raw /dev/raw/raw3 /dev/loop3
    # raw /dev/raw/raw4 /dev/loop4
    # chown oracle:dba /dev/raw/raw1
    # chown oracle:dba /dev/raw/raw2
    # chown oracle:dba /dev/raw/raw3
    # chown oracle:dba /dev/raw/raw4
    # chmod 660 /dev/raw/raw1
    # chmod 660 /dev/raw/raw2
    # chmod 660 /dev/raw/raw3
    # chmod 660 /dev/raw/raw4You should be able to see these logical devices with the DBCA. I have not tested the same over RHEL5 so far so no guarantee that it would work over there or not and I don't have a RHL5 box with me at the moment to test the same too. But over OEL4, RHEL4 this works dandy. Do give it a try and post the feedback.
    HTH
    Aman....

  • How to do aggregation for each group of records?

    I have a Deals and Targets tables.  The targets are records used in a deal.  A deal can have more than one target, but each target can only have one deal.  I want to sum the targets that pertain to a deal.  I know how to use the SUM()
    method, but it applies to every row in a column which is what I don't want.
    Using the example below, this aggregation on the Targets' amount column would total 5 for Deal 1 and 8 for Deal 2. 
    How should this be done in T-SQL?

     I know how to use the SUM() method, but it applies to every row in a column which is what I don't want.
    Hi,
    Do you mean it sum all the rows by using SUM function? In your scenario, Jingyang's query works perfectly. Besides, you can use Group By clause, please refer to the sample query below.
    SELECT DealID, SUM(Amount) AS TotalAmount FROM Targets GROUP BY DealID
    https://msdn.microsoft.com/en-us/library/ms177673.aspx?f=255&MSPPError=-2147217396
    Regards,
    Charlie Liao
    TechNet Community Support

  • How to edit plists for a group in workgroup manager

    hi I am an It technician in a School which has been windows based
    Over the summer the school upgraded to a 95% mac network we still have a small windows network as one database would not work on Mac osx server
    authenication and user accounts are also provided from the windows server's and also we are using a citrix soution to access windows apps from the macs
    140 imacs have been rolled out and we have 2 mac servers with deployment studio apple remote desktop and workgroup manager which was set up with groups and access rights for staff and pupils.(i was not involved in initial setup)
    Anyway I am starting to get my head round the mac side of the network but we are having issues where pupils are saving data to the local profiles when they log onto the macs and not the network shares that are allocated to their profile when they log on which means that when they log onto another mac their data is not there i have been asked if its possible to remove all local save area's from the finder and favorites pane's and only leave the pupils allocated network share, desktop and downloads as save locations is there a way the finder and favorites can be edited?
    I am assuming that i edit a plist possibly and then replaced the edited one into workgroup manager
    any help to point me in the right direction would be much appreciated
    regards
    Lee

    Right have found the apple.com finder plist which of the options would i set to false to only allow the the shares as mentioned above to be visible and remove the other save locations
    regards
    lee

  • How to search and play a group in version 11.

    I am specific about my genre. I might change "Country" to "Country Christmas waltz". In  version 10 I might enter Search for "Country Christmas" and play just those songs. A Search for "Country Christmas waltz" would cut down the list further and I could select from that short list to create a playlist.  How do I search for a group of songs and play/select from just that group under version 11?

    This didn't work for me.  I have the shape object and it shows the textframe property:
    PS C:\> $shape | gm
       TypeName: System.__ComObject#{00024439-0000-0000-c000-000000000046}
    Name                       MemberType Definition
    Apply                      Method     void Apply ()
    CanvasCropBottom           Method     void CanvasCropBottom (float)
    SoftEdge                   Property   SoftEdgeFormat SoftEdge () {get}
    TextEffect                 Property   TextEffectFormat TextEffect () {get}
    TextFrame                  Property   TextFrame TextFrame () {get}
    TextFrame2                 Property   TextFrame2 TextFrame2 () {get}
    ThreeD                     Property   ThreeDFormat ThreeD () {get}
    But trying to access it gives an error:
    PS C:\> $shape.textframe | gm
    gm : You must specify an object for the Get-Member cmdlet.
    At line:1 char:20
    + $shape.textframe | gm
    +                    ~~
        + CategoryInfo          : CloseError: (:) [Get-Member], InvalidOperationException
        + FullyQualifiedErrorId : NoObjectInGetMember,Microsoft.PowerShell.Commands.GetMemberCommand
    PS C:\> $shape.TextFrame.Characters().text="hello"
    You cannot call a method on a null-valued expression.
    At line:1 char:1
    + $shape.TextFrame.Characters().text="hello"
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidOperation: (:) [], RuntimeException
        + FullyQualifiedErrorId : InvokeMethodOnNull
    I hope this post has helped!

  • Unable to capture value inside parameter T_LFBK of FK03 in display mode

    Hi Experts,
    I have to trigger a mail whenever there is a change in fields that are captured in parameter t_ffbk.
    However i am unable to capture the the screen values for this parameter as FK03 is in display mode.Please tell me how can i capture the screen field values in parameter T_LFBK.
    <Point offer removed by moderator>
    Thanks in advance.
    Edited by: Vinod Kumar on Jul 28, 2011 5:48 PM

    Hi Experts,
    I have to trigger a mail whenever there is a change in fields that are captured in parameter t_ffbk.
    However i am unable to capture the the screen values for this parameter as FK03 is in display mode.Please tell me how can i capture the screen field values in parameter T_LFBK.
    <Point offer removed by moderator>
    Thanks in advance.
    Edited by: Vinod Kumar on Jul 28, 2011 5:48 PM

  • How can i display all the query items to a table?

    how can i display all the query items to a table in a jsp file?
    i always have an out of memory error..

    any body??any idea?
    is it possible thru configuration or i have to write a program by the abaper??
    Biswa

  • How do I display "Page $$ of $$" in a Captivate 4 project?

    Hello everyone,
    Okay, I know that I can use a transparent text caption with "Page $$rdinfoCurrentSlide$$ of $$rdinfoSlideCount$$".
    The problems are:
    - I want this to be displayed in a very small font in the far right corner. Unfortunately, the variables are so big that I cannot place the text caption on the far right. Although using center justification and some spaces before this text, I can approximate the location I want this to display in.Unfortunately, even though the x/y coordinates are precise on every slide, the text moves around a bit from slide to slide.
      Is there a better way to FIX this text into a specific spot? i.e. a fixed x/y location placehold for each of these variables?
    - Oddly, it only begins counting on the first page it is displayed. In my lesson, this caption is placed on the second slide... but it displays Page 1 of 26. I suppose I could subtract 1 from $$rdinfoCurrentSlide$$.
    - What is the best way to copy this text caption to each page of my project?
      Must I really copy page to each individual page?
      If I select "Display for rest of Project" I cannot remove it from a few slides where it is not appropriate. It cannot be covered up either - because it will flash there for a very short moment... doesn't look good.
    Thank you for your advice!

    Hi Shawn
    On the slide where you inserted the caption, make note of its name. You find this in the Options tab.
    On the slide where you wish to hide the caption, edit the Slide Properties and configure an On slide enter event to Hide the caption.
    As for the brief display of the variable, you may be able to mask it out briefly. I say *may* here, as I'm not 100% certain it will work with the caption displaying for the rest of the project. But it's certainly worth a try! Just insert a Highlight Box in the position to obscure it briefly. If you want the appearance of the Caption fading into view, configure the Highlight Box to fade out.
    Give that a go and see how you fare... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • How can I display special characters of NonEuropean languages (French, Italian, Spanish, German and Portuguese.) using import string mechanism

    I would like to translate the User Interface of my application to French, Italian, Spanish, German and Portuguese.
    When I put special characters in the import string file they showed up as ? (question mark)
    The import strings file includes the following parameters for each string: font, text, size and style. (but no field for script)
    In order to use a unicode font such as Arial I need to select a french script. But this option is not supported bu LabView (As far as I saw)
    A) Is there a font which is directly German/ French etc and not regula font + script parameter?
    B) Are there another required step
    s for special characters support? (When I put speciual characters in the import string file the showed up as ? question mark)

    This was discussed last week in this group- read the previous messages.
    Look for the thread "Foreign Languages in Labview"
    And recite the mantra
    ActiveX is good
    ActiveX is holy
    All Hail Bill
    Those who claim otherwise are heretics and not to be trusted
    Actually, in this case the non-ActiveX suggestions may be good.
    talia wrote in message
    news:[email protected]..
    > How can I display special characters of NonEuropean languages (French,
    > Italian, Spanish, German and Portuguese.) using import string
    > mechanism

  • How To edit Display ID/Monitor ID or erase Display ID/Monitor ID Windows 7

    Hi !
    Started a tread in the other "answers microsoft forum" bur got redirected here hence they thought that this was a developer-question...
    My original Thread:
    http://answers.microsoft.com/en-us/windows/forum/windows_7-hardware/how-to-edit-display-idmonitor-id-or-erase-display/62eeace8-358c-4d65-8609-a3df7c3ac216?rtAction=1425277245844
    question:
    Have a problem that appears sometimes.
    Setting up workstations at work with multiple Display-Monitors, its part of my job...
    The Actual ID that the monitors get from Windows is usually not a problem, most programs can adapt to the windows settings and everything is fine.
    BUT some of the systems we run sends commands and stuff to based on the actual number of the display, the number that appears on the screen when clicking the "identify button" in the desktop/display-settings from control-panel.
    Lets call it the HardWare-ID of the Display
    the computer, or windows remember display´s EDID and stores the monitors that has been connected in  a list ?
    If I installed the monitors/displays in correct order everything is good and works like we want it to.
    So it happens that a display brakes or switch place for some reason, or maybe a driver-upgrade resets the display-list and windows now initiates the monitors in the wrong order.
    the monitor that 1 want to have HW-ID 1 now has HW-ID 2, and everything is wrong, messages and commands now end up on the wrong display.
    We have 3 options.
    1 - Fix the display HW-ID
    2 - Re-Configure the system and all that that includes, and hope that it wont change back at the next display-switch or driver-upgrade.
    3 - re-install windows and hope that the displays get the correct ID and the continue with customer applications and so on.
    I have found out that this is being stored somewhere in REG-Edit, but cant find the correct place
    Having talked to HP, they don't support this kind of things... it must be a windows-problem, try with a clean install.....   c-mon I switched a display !!
    Tried clean driver-installs from AMD and Nvidia for the graphics cards, worked one time, until I rebooted the machine, the back to square one...
    Then they ponited at Microsoft.
    Having talked to Microsoft Support they dont support this kind of things....
    I dont have the skills, but I cant se a problem with a scrips that deletes the reg-edit EDID list after a reboot ?
    then it wouldnt be so complicated, simply:
    unplug all but the display that you wan to be number 1
    run script
    reboot
    plug in display 2 and so on ?
    clearification:
    Hi !
    The question remains.
    Not sure you guys understand my problem, doesent seem so...
    I have the need to sweep the computers display-memory
    The Application we are using is sending the commands to to logical screen number, not primary or secondary screen.
    So It is Vital that I can decide or edit the logical numbers of the displays/screens
    It doesent help me at all to switch sides in controlpanel och swtich witch is primary screen for desktop.
    the application still sends the commands to teh logical numbers, and we dont want to reconfigure that if we changed a display that was faulty.
    So:
    I Need to disconnect displays så that I only have one connected
    sweep the display-memory that is on the computer so that the disconnect monitor becomes number 2 when I reconnect it, if I dont get this memory swiped windows remembers the display and gives it the old number again.
    can anyone help me `?
    NOT connected to any Domain.
    I realy cant understand how hard it can be to swipe the hardware ID of the displays and start over without having to to a clead install of windows !!

    Hi Bobbyco57,
    i've deleted my iCloud's mail ID in my iPhone 4 successfully so i've mentioned steps to delete iCould mail ID as below:
    1. Select Settings icon.
    2. Select iColud icon.
    3. Click on Delete Account.
    4. Enter new Apple ID and Password.
    5. Click on Agree.
    Thanks and Regards,
    Suresh Balakrishnan

  • How can I display an image from a shared-network folder?

    Hi
    Does anyone know how I can display images from within APEX that are found outside the database? What configuration have I missed?
    Within Windows-Internet-Explore I can access the following image using the below URLs, BUT I cannot access it from within APEX?
    What do I need to do so APEX can display theses images from our internal shared network folder?
    both these URLs work within Firefox (but on APEX):
    \\Saremote\UPDOWNFILES_DIR\polk_insight.gif
    file://///Saremote/UPDOWNFILES_DIR/polk_insight.GIF
    So within APEX I have created a "display as Text' Item that works with this "amazon image" syntax:
    {lessthan} IMG SRC= {doublequot} http://g-images.amazon.com/images/G/01/associates/navbar2000/logo-no-border(1).gif {doublequot} {greaterthan}
    BUT sadly not with my image:
    {lessthan} IMG SRC= {doublequot} file://///Saremote/UPDOWNFILES_DIR/polk_insight.GIF {doublequot} {greaterthan}
    Any ideas would be appreciated.
    Thanks
    Steve
    Edited by: [email protected] on Sep 12, 2008 8:30 AM
    Edited by: [email protected] on Sep 12, 2008 8:31 AM
    Edited by: [email protected] on Sep 12, 2008 8:32 AM
    Edited by: [email protected] on Sep 12, 2008 8:33 AM

    If you have a local html file, or open an image locally from the menu, then yes, it works, but with web pages that are served from a remote location (web server), security kicks in and prevents the web page from accessing local files (and files on a networked drive).
    you will either have to put the image on the web server and access it through http, or you can load it into the database/workspace images and access it that way.

Maybe you are looking for

  • Error message while copying from iTunes to iPod

    My daughter's iPod shuffle (1st gen) was not charging so I updated it to the lastest software (1.1.5). While doing so, iTunes required an upgrade as well (7.5). Both are updated. But it is still not charging. That's my first problem. I decided to see

  • Plugin console wont open drives

    In 2.7, I can't seem to find a way for users to directly access drives connected via the new "login script parser" feature. Neither of the two ways I'd expect are working: 1) When I go to the plugin console, I can see the drives from the login script

  • Trouble - Z10 won't start up

    Hello, good afternoon! I need a little help because I've tried everything but can not find any solution. At about two weeks, listened to music on my BlackBerry my Z10 when suddenly the machine crashed and the screen went completely blue. I removed th

  • How to generate "constructor" for parameter object

    Hello, As part of my research project I need to find the "constructor" of a given parameter object. For example: Suppose we have the following method - public void int pop(Stack st) { //some code... I want to generate code that calls this method and

  • I pad not recognising sim after Update.

    I upgraded to the latst ISO. everythign seemed fine up until the I pad booted up. It now says no sim installed and everythign I do doesnt work. Took it back to Orange and they tried another sim in it no joy. Tried that sim in a phone it worked, so it