Hello Experts, i have issue with mime repository image with different languages ?

Good day !
I was facing the issue with images : we  are creating the images by using CSS tool  to generate a button. that image type is .png , this images we are importing into webdyunpro component as a mime object.
These images are binided into button image source property. And i am writing the code for calling this button (this is uniq code for all languages).
But all langaues are working fine for spanish(ES) langage only it was not displaying the image. it is displyind cross mark.
Naming standard i ma mainintg for mime object name : Export_ES.png.(spanish).
Please can any one help me on this .
Regards,
Venu

Hi Kiran,
Thanks for your Promt reply.
1. i am creating different images for different languages.
  ex : english : Export_EN.png
         Spanish : Export_ES.png
Code will be : here i am creating attribute and bing that attribute to button image source.
me ->get_button_img
    EXPORTING
      im_button_id    = 'Export'
      im_button_value = 'IMG_EXPORT'
      im_type         = '.png'
    CHANGING
      ch_context_ele  = lo_el_images.
'IMG_EXPORT' : attribute name
method : get_button_img
   DATA: lv_img_name TYPE string,
        lv_lang     TYPE string.
*        lv_jpg(4)   TYPE c VALUE '.jpg'.
  lv_lang  =  sy-langu .
  CALL FUNCTION 'CONVERSION_EXIT_ISOLA_OUTPUT'
    EXPORTING
      input  = lv_lang
    IMPORTING
      output = lv_lang.
  CONCATENATE im_button_id  '_' lv_lang IM_TYPE INTO lv_img_name.
  CALL METHOD CH_CONTEXT_ELE->set_attribute
    EXPORTING
      value = lv_img_name
      name  = im_button_value.
here lv_img_name : Export_ES.png.
But its not working.
thank you

Similar Messages

  • Hello Experts, I have a question, how I can import "linq" file to ms sql?

    Hello Experts, I have a question, how I can import linq (OpenUIPlayersDB.linq) file to ms sql? Form Sample OpenUI applications?
    BR
    Lukas

    Lukas,
    The .linq file is just a sql script.  You can either change the extension to .sql and directly open and run in SQL Server Management studio or open the file directly.
    The script is designed to run against SQL server so if you are using another database type you may need to tweak the script (date/time formats, data types, column select statement).
    Also, last I checked the name of the table from the script (OpenUIPlayers) doesn't match the table name from the OpenUI-app.agxz export so you will also need to adjust either the script in the export or the name of the imported table once you finish loading it.
    --Bill

  • Problem with MIME repository (cannot find image with ReportDesigner)

    Hi,
    in our BW (BI7.0), on the SE80 (mime repos), i found the /SAP/BW/CUSTOMER/images i found the *jpg and other image files.
    But when i run the BEX Report Designer and try to add an image from that path, the BRD doesnt find any image.
    Tks
    CC

    Hi  Cristian,
    save image in ".GIF" format at SE80, MIME repository and try in BEX Report Designer.
    Best Regards.

  • How to make a podcast with one still image with iMovie 09

    I'm using trying to transfer my podcasts to Vimeo. I've been using iWeb to create a person web site with video and podcasts. I have embedded Vimeo with "html snippet widge." I want to do the same thing with audio, however Vimeo only accept "video" files.
    In my attempt to work around Vimeo's video issues, I had the idea to use iMovie 09 to create a "video file" using a single still image with my audio podcast play in the background. The single image would be consistent for the entire length of the audio. It seems simple...one still image file and one audio file.
    All of my audio files are less than 45 minutes in length. The problem is that when I insert an image in iMovie I can't get it to last for more than 10:00 minutes of my podcast. I've had to drag the same image over several times, extend each image's length to 10:00 minutes until I have enough images to last the full length of the audio file.
    I'm sure there's a simple way to do this with one image, used one time, and have the audio added.
    Anyone understand my situation and have a good idea?

    The most efficient method would be for you to do this in iMovie 6. You can download a version if you don't already have it on your computer. http://supportdownload.apple.com/download.info.apple.com/AppleSupport_Area/Apple_Software_Updates/Mac_OSX/downloads/061-3532.20070807.nq3ER/iMovieHD6.dmg
    Put all your clips into a new iMovie project, in the order you wish them to play. Use the chapters tab and add chapter markers for each clip (except the first one; iDVD will add that one for you). Close iMovie.
    Open an new iDVD project. Use the Media tab, then Movies, to locate your new iMovie. Drag and drop it onto the main iDVD window, taking care not to drop it into a drop zone. You should then see the title of your movie and the two options: Play Movie (which will play all the clips sequentiallly) and Scene Selection (which will take you to submenu(s) where you can select which clip to view).

  • Exit a comparison with focus on image with green border?

    If I am comparing images and decide I want to exit the comparison, I command-click the image with the green border, but the focus then goes to whichever photo has the thick white border. Is there anyway to exit the comparison and still have the focus on the one with the green border?

    I don't know if this was always the case, but after the upgrade to Aperture 2.1.1, I am now able to exit with focus on the base (green border) image by pressing option-return.

  • Anyone have issues publishing to Adobe Connect with Presenter 7.0.7?

    I can publish using 7.0.6 with PPT 2010, but have not been successful with Presenter 7.0.7 and PPT 2010. So far everything else looks okay (or as okay as expected), but I cannot publish to Adobe Connect or output a working zip package. All of the settings for the two configurations match, just the version 7 build number is different.  Wondering if anyone has successfully troubleshooted this problem before. Thanks.

    I need to update, my messaging is now working.  Apparently after going through the steps and the settng notifications to on all I had to do was turn off the car, open the door, and then return.  When I got in my car this morning the text messaging (recieve only) was working.

  • Hello, experts, i have an problem about interrupt()

    here is my code, i wanna test what the client requested/posted ,but it seems that i can't interreput other thread which in io blocked ,how can i solve this? thanks!
    package yestalk.playground;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.net.ServerSocket;
    import java.net.Socket;
    import java.util.Date;
    public class STC
         public static void main (String[] args) throws Exception
              ServerSocket ss  = new ServerSocket(8889);
              int i = 0;
              long start;
              while (true)
                   System.out.println("\r\n------------     "+ (i++));
                   Socket so = ss.accept();
                   InputStream ins = so.getInputStream();
                   InputStreamReader insr = new InputStreamReader( ins, "UTF-8");
                   int c;
                   try
                        start = System.currentTimeMillis();
                        while((c = insr.read()) != -1)
                             System.out.print((char)c);
                             new Thread(new STC.TimerBreaker(Thread.currentThread(),start,5000)).start();
                   }catch(Exception e)
                        System.out.println("timer breaker interrupted me:     "+e.getMessage());
                   }finally
                        insr.close();
                        so.close();
         static class TimerBreaker implements Runnable
              long start;
              long interval;
              long current;
              Thread ct;
              public TimerBreaker (Thread t,long start,long interval)
                   this.ct=t;
                   this.start=start;
                   this.interval=interval;
              public void run ()
                   while(true)
                        try
                             Thread.sleep(500);
                             current = System.currentTimeMillis();
                             System.out.println((current-start)>interval);
                             if((current-start)>interval)
                                  ct.interrupt();
                                  System.out.println(" is read thread Interrupted:     "+ct.isInterrupted());
                                  System.out.println(" is read thread still alive:     "+ct.isAlive());
                                  break;
                        catch (Exception e)
                             System.out.println("timeBreaker exception:     "+e.getMessage());
                   System.out.println("timer thread breaked!!!!!!!!!!!!!!!!!!!!!!!");
    }i am waiting on board,thanks very much.

    sorry, i change my code ,let it more clear.i wanaa see what did the http client requested/posted, but i don't wan't parse the http protocol to know when to close connection precisely,so i think 5s is enough to read all client requested/posted,so i would like "continue read" but close connection in 5s. and the server should continue listening....
    but as you say that : java.net.Socket I/O methods aren't specified to be interruptible.
    and i see the doc :
    public void interrupt() // it's not static method, so i think it cant apply to an instance.
    Unless the current thread is interrupting itself, which is always permitted, the checkAccess method of this thread is invoked, which may cause a SecurityException to be thrown.
    does interrupt other Thread use another Thread is a proper act?
    how can't i achieve my objective? thanks very much.
    and , sorry: i change my code three time. now it is not try to establish a new thread every char read.
    package yestalk.playground;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.net.ServerSocket;
    import java.net.Socket;
    import java.util.Date;
    public class STC
         public static void main (String[] args) throws Exception
              ServerSocket ss  = new ServerSocket(8889);
              int i = 0;
              long start;
              while (true)
                   System.out.println("\r\n------------     "+ (i++));
                   Socket so = ss.accept();
                   InputStream ins = so.getInputStream();
                   InputStreamReader insr = new InputStreamReader( ins, "UTF-8");
                   int c;
                   try
                        new Thread(new STC.TimerBreaker(Thread.currentThread(),5000)).start();
                        while((c = insr.read()) != -1)
                             System.out.print((char)c);
                   }catch(Exception e)
                        System.out.println("timer breaker interrupted me:     "+e.getMessage());
                   }finally
                        insr.close();
                        so.close();
         static class TimerBreaker implements Runnable
              long interval;
              Thread ct;
              public TimerBreaker (Thread t,int interval)
                   this.ct=t;
                   this.interval=interval;
              public void run ()
                        try
                             Thread.sleep(interval);
                             ct.interrupt();
                             System.out.println(" is read thread Interrupted:     "+ct.isInterrupted());
                             System.out.println(" is read thread still alive:     "+ct.isAlive());
                        catch (Exception e)
                             System.out.println("timeBreaker exception:     "+e.getMessage());
    }Edited by: Johnny on Oct 19, 2008 11:18 PM

  • Lenovo S300: will I have trouble creating a backup image with Acronis

    I'm thinking of buying a Lenovo S300
    Very cheap and lighweight
    I want to update all settings (Windows mainly) and then create a backup image that I can always go back to
    Can I do this? Will I have any problems?
    I bought an ASUS laptop with no disc drive... and basically, there was no way I could boot up with an external DVD drive or USB
    I just wanted to make sure before I purchased
    Thanks
    Omar

    Hi
    Which application do you use to create the image?
    I use the Symantec ghost and Im very satisfied. I have created an image file which was placed at the second application and if something going wrong Im able to install the OS from the image file.
    Furthermore this unit support RAID and the RAID driver must be installed to recognize the HDD.

  • WAD 7.0 Load html - file from MIME-repository

    Hi guys,
    I have the following problem:
    I have implemented web application with WAD 7.0. Now I have to put a button in it. If I press this button new window should be opened with a file (html - file) which is stored in MIME Repository. With WAD 3.5 it was easy I could use javascript function: window.open().
    window.open("/sap/bw/Mime/Customer/.../file.htm","NewWindow","width=750,height=700,left=100,top=100");
    Now this solution doesn't work anymore. I tryed to change the path but without success.
    I tried with command wizard but I was not successfull too. Maybe you have some idees how can I deal with this problem.
    Regards
    Erwin
    Edited by: Erwin  Buda on Dec 3, 2008 9:37 AM

    Yes I tried it at first with Script Item but it did not work. I am not sure how should I change the path because of the portal:
    "/sap/bw/Mime/Customer/.../file.htm" - this path is not working anymore
    Another option that you mentioned I do not want to use. I have about 20 different html files in MIME repository so I would have to create 20 different web application. I do not like this solution.
    Regards
    Erwin

  • Issue when creating sales order with Sold-to/Ship-to Party's state

    Hi All,
    we have issue while creating Sales Order with picking up of State tax
    for Ship-to-party & Sold-to-party.
    <b>When we create a sales order, for the sold to party 140052732 and
    ship to party 140052733 it is picking state tax. Which should not
    suppose to pick? Because the partner is marked as tax exemption</b>.
    Can any body tell me how can we solve this issue!
    Why this is happening!
    How to make not to pick tax when it is marked for tax exemtion.
    As i am not Functional guy i am not aware what is happening here!
    Can anybody solve this issue!
    Thanks in advance.
    Thanks,
    Deep.

    Hi Deep
    What do you mean by "It is picking up state tax"? Does it mean that in the pricing procedure it is picking up a condition type which is meant for state tax?
    If so go and check the condition record meant for it. Follow the following steps
    1) Go to Sales order
    2) Select the line item for which the state tax is being picked.
    3) In the condition tab select analysis.
    4) In Analysis you shall find the condition type meant for state tax.
    5) See which condition record has been found.
    6) Go to VK12, enter the state tax condition type and check the condition record for that state tax.
    7) If wrong correct it.
    8) If anything else come back to the post and inform the details
    Thanks
    Regards
    Sunil

  • Issue when creating sales order with Sold-to/Ship-to Party's state tax

    Hi All,
    we have issue while creating Sales Order with picking up of State tax
    for Ship-to-party & Sold-to-party.
    <b>When we create a sales order, for the sold to party 140052732 and
    ship to party 140052733 it is picking state tax. Which should not
    suppose to pick? Because the partner is marked as tax exemption</b>.
    Can any body tell me how can we solve this issue!
    Why this is happening!
    How to make not to pick tax when it is marked for tax exemtion.
    As i am not Functional guy i am not aware what is happening here!
    Can anybody solve this issue!
    Thanks in advance.
    Thanks,
    Deep.

    Hi Deep
    What do you mean by "It is picking up state tax"? Does it mean that in the pricing procedure it is picking up a condition type which is meant for state tax?
    If so go and check the condition record meant for it. Follow the following steps
    1) Go to Sales order
    2) Select the line item for which the state tax is being picked.
    3) In the condition tab select analysis.
    4) In Analysis you shall find the condition type meant for state tax.
    5) See which condition record has been found.
    6) Go to VK12, enter the state tax condition type and check the condition record for that state tax.
    7) If wrong correct it.
    8) If anything else come back to the post and inform the details
    Thanks
    Regards
    Sunil

  • Help: I have a globe image with a black background...how to...

    Hi,
    I have a simple Earth globe image with a black stars background. I'd like to cut out the black background and get this all white....basically id like just the globe visible with no background.
    http://www.ingerreime.no/inger/Images/globe.tiff
    I know this is newbie question, but i have no idea how to do it. Please don't tell me i have to get photoshop???
    Thanx!
    David

    Dave:
    Terence isn't the jerk in this thread. He's was just attempting to give you a solution you can run yourself instead of having it given to you.
    GraphicConverter can create a transparent file, a gif. Try the following workflow:
    1 - first convert the file to a gif (use 89a) and save and reopen.
    2 -select the Magic Pen and set it's sensitivity to about 40 (double click on it will bring up the setting pane).
    3 - click on the black background to select all of the black.
    4 - select to the Edit->Make Selection Transparent menu option.
    5 - save the file.
    The black will turn to a checkerboard pattern indicating transparency. If you anticipate a lot of advance editing I suggest you look at Photoshop Elements. I find it much more powerful than GC and it supports layers which is a very powerful too. Here's an example of some of the advanced editing you can do with it.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Query with scalar valued function with date filter

    Hello experts
    i have a problem by filtering my results with the date
    i have written the following code
    SELECT
    T1.ItemCode
    , T1.Dscription
    ,DBO.F_CALCULATION_QUANTITY(T1.ITEMCODE)
    FROM OINV T0 
    INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry
    INNER JOIN OITM T2 ON T1.ItemCode = T2.ItemCode
    INNER JOIN OSLP T3 ON T0.SLPCODE=T3.SLPCODE
    WHERE
    (T0.DOCDATE BETWEEN '2010-11-01' AND '2010-11-30')
    and (t2.cardcode ='80022')
    and (T0.CANCELED= 'N')
    group by  t1.itemcode, T1.Dscription, t2.suppcatnum
    set ANSI_NULLS ON
    set QUOTED_IDENTIFIER ON
    go
    ALTER  FUNCTION [dbo].[F_CALCULATION_QUANTITY]
    (@ITEMCODE AS NVARCHAR(10))
    RETURNS
    NUMERIC(19,2)
    AS
    BEGIN
    DECLARE
    @RESULT1 AS NUMERIC(19,2),
    @RESULT2 AS NUMERIC(19,2),
    @RESULT AS NUMERIC(19,2)
    SELECT @RESULT1=SUM(A.QUANTITY)
    FROM INV1 A
    JOIN OINV B ON A.DOCENTRY=B.DOCENTRY
    WHERE A.ITEMCODE=@ITEMCODE
    AND B.DOCDATE BETWEEN  '2010-11-01 00:00:00.000' AND '2010-11-30 00:00:00.000'
    SELECT @RESULT2=SUM(A.QUANTITY)
    FROM RIN1 A
    JOIN ORIN B ON A.DOCENTRY=B.DOCENTRY
    WHERE A.ITEMCODE=@ITEMCODE
    AND B.DOCDATE BETWEEN '2010-11-01 00:00:00.000' AND '2010-11-30 00:00:00.000'
    SELECT @RESULT=ISNULL(@RESULT1,0)-ISNULL(@RESULT2,0)
    --SELECT @RESULT=@RESULT1- @RESULT2
    RETURN @RESULT
    END
    the problem i have is that i want to filter my results accoring to the date provided by the user. i want it to be dynamic query.
    by now, what i do is to edit the docdate in the function in order to get the desired results. this is not what i want.
    could you please help me on this way in order to let the user to input the date?if i add the [%] in the query, it does not bring me the right results

    i have already edited the function to
    set ANSI_NULLS ON
    set QUOTED_IDENTIFIER ON
    go
    ALTER  FUNCTION [dbo].[F_CALCULATION_QUANTITY]
    (@ITEMCODE AS NVARCHAR(10),
    @STARTDATE1 as DATETIME,
    @ENDDATE1 AS DATETIME
    RETURNS
    NUMERIC(19,2)
    AS
    BEGIN
    DECLARE
    @RESULT1 AS NUMERIC(19,2),
    @RESULT2 AS NUMERIC(19,2),
    @RESULT AS NUMERIC(19,2)
    SELECT @RESULT1=SUM(A.QUANTITY)
    FROM INV1 A
    JOIN OINV B ON A.DOCENTRY=B.DOCENTRY
    WHERE A.ITEMCODE=@ITEMCODE
    AND B.DOCDATE BETWEEN (@STARTDATE1) AND (@ENDDATE1)
    SELECT @RESULT2=SUM(A.QUANTITY)
    FROM RIN1 A
    JOIN ORIN B ON A.DOCENTRY=B.DOCENTRY
    WHERE A.ITEMCODE=@ITEMCODE
    AND B.DOCDATE BETWEEN (@STARTDATE1) AND (@ENDDATE1)
    SELECT @RESULT=ISNULL(@RESULT1,0)-ISNULL(@RESULT2,0)
    RETURN @RESULT
    END
    could you please how to edit the query as well?
    i have added the following code and it comes up with the right itemcode but the quantity does not work
    DECLARE
    @ITEMCODE AS NVARCHAR(10),
    @STARTDATE1 as DATETIME,
    @ENDDATE1 AS DATETIME
    SET @STARTDATE1=(SELECT MAX(T0.DOCDATE) FROM oinv t0 WHERE T0.DOCDATE='2010-11-01')
    set @ENDDATE1=(SELECT MAX(T0.DOCDATE) FROM oinv t0 WHERE T0.DOCDATE='2010-11-30')
    SELECT
    T1.ItemCode
    , T1.Dscription
    ,DBO.F_CALCULATION_QUANTITY(@ITEMCODE,@STARTDATE1,@ENDDATE1)
    FROM OINV T0 
    INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry
    INNER JOIN OITM T2 ON T1.ItemCode = T2.ItemCode
    INNER JOIN OSLP T3 ON T0.SLPCODE=T3.SLPCODE
    WHERE
    (T0.DOCDATE BETWEEN @STARTDATE1 AND @ENDDATE1)
    and  (t2.cardcode ='80022')
    and (T0.CANCELED= 'N')
    group by  t1.itemcode, T1.Dscription, t2.suppcatnum
    the result is this
    70200     alert1     0.00
    70210     alert2     0.00
    70220     alert3     0.00
    70230     alert4     0.00
    as you can see the quantity is 0 and it shouldnt be
    Edited by: Fasolis Vasilios on Oct 31, 2011 10:49 AM

  • Using still images with Final Cut (and the apple suite in general)

    I have had a re-occuring and long term problem that has caused me many lost hours of head scratching and work arounds, and as of yet I have not been able to come up with a good solution.
    Its to do with integrating still images with the Final Cut suite.
    If I receive a high quality image from a client to use in their video and I then try importing it into Final Cut and animating it, it always ends up looking like a pile of ahem. Often I will get "swimming" lines appear across fine detail on the image, and parts of it will flicker as it moves across the screen. For instance, if I have a picture of some blinds or other fine detail (especially horizontal and vertical lines), when I add a grow and throw movement to it the detail will become very noisy - buzzing and flickering like mad.
    I have found I can counter this by resizing the image in photoshop to a resolution closer to SD video (700w or 500h) - but I always end up losing detail, and the flickering and noise is only reduced, not eliminated. Other things that have helped are blur effects applied at a very low level, like 0.5 blur, so its not noticeable visually, but Final Cut seems to treat it differently and quieten the noise and flicker down.
    However, all of these workarounds are ultimately still giving a reduced quality product.
    Also, this problem is not necessarily constrained to Final Cut, I am currently fighting DVD Studio Pro because it is murdering the text quality in a stills slideshow I am creating - and in this situation there is no animation being applied. No matter what file type (psd, jpeg, tiff, png...) or size I output the text and images from Photoshop in, the moment DVD studio pro gets hold of it, it turns to cripe.
    For a while I was putting it down to the fact that I usually edit in SD (PAL) formats, and there just wasn't the resolution available to reproduce fine detail. However, I do often see other people achieving pin-sharp fine detail on still images and text in SD formats (the Apple templates are a good example)
    So, my question to you, oh great and high boffins, if you are dealing with still images and text, how do you do it? How do you work around any noise problems you have, and how do you produce those pin-sharp images (both moving and still) I see in other professional productions?
    Quad G5   Mac OS X (10.4.8)  

    still images with too high a resolution will always cause problems. this is due to the detail of the image being finer than the scanline of the tv can display ... obviously this will caise the image to flicker as these details alternately appear and disappear as and when the scanline can display them. as you have discovered, the answer is to apply a very small blur, the effect being that the detail is spread by the blur such that the scanline can dislay it correctly.
    text issues are often rooted in the same problem ... unless the text is placed very carefully (whole even number on the y axis) then the quality may be impaired due to the resulting interlacing/scanline issues

  • Images with Picture Frame stroke not printing?

    Does anyone have a known solution to an issue in which an image with a stroke of "Picture Frame" applied will not print?
    More details...
    - Created pages document (originally in '08 version of Pages, then upgraded to Pages '09 to see if that fixed it -- it did not)
    - Printed document in both both Pages version. All assets within document printed correctly with exception of photos that have stroke of "Picture Frame" applied.
    - Printed to PDF. Opened and printed from Preview. Again, all assets within document printed correctly with exception of photos with stroke of "Picture Frame."
    - Tried modifying print settings to "fit in page" as well as color correction. Same symptoms applied.
    - One solution (that's not the desired behavior but should be acknowledged) -- removing stroke allows images to print.
    Other:
    - Problem is reproducible across both versions of pages.
    - Problem may be same as seen in other searches found here: https://discussions.apple.com/thread/3005994?start=0&tstart=0 & here: http://forums.cnet.com/7723-21571_102-378574/pages-09-printing-problem/ & here: http://www.mac-forums.com/forums/images-graphic-design-digital-photography/23980 6-framed-pictures-wont-print-iwork-pages.html
    Set-up:
    - iMac running 10.7.3
    - Started with iWork '08, updated to Pages '09
    - HP LaserJet CP1025nw
    Any advice much appreciated!

    Thanks for all your help, fruhulda.
    Tried:
    deleting plist
    uninstalling Pages
    trying a different account
    updating firmware
    trying a different printer
    The only thing that works -- which also worked for you -- was something other than this printer. And even with a firmware update, it's not working.
    I'd say this is an HP CP1025nw problem, which kind of hurts given it's a newer printer for us.
    Suppose it's best to consider this closed and unsolved.

Maybe you are looking for

  • USB to Parallel Cable Adapter not working with New PC and Windows 8.1

    With the demise of parallel ports on PCs, I purchased a USB to Parallel cable adapter several years ago.  I used this combination to successfully connect my Apple Laserwriter 16/600PS printer to my HP Pavilion Slimline s7600n PC (running Windows XP,

  • IMac does not recognize 2nd display

    I have read about 100 forums concerning this process and I must say that I am lost. I am trying to connect a second display to my iMac but when I go to system preferences/display and click on detect display, nothing happens. The arrangement tab does

  • How to use sequence in BPEL transformation

    Hi All, I want to use some kind of random unique number in my xsl mapping. I Thought to use a sequence which I generated in database, but in xsl mapping I didn't get a way to use database functions. Can anyone suggest something. Thanks in Advance.

  • How to use javascript to edit image name ?

    I have 2 regions. In the 1st region I have "Select List with Redirect" so when I select the item in the list then I get the value of 1,23,.... etc for variable P2_X_COMP and it reloads the same page. Now in the 2nd region, i am trying to diaplay a im

  • RAID creation problem,

    When I try to create RAID sets, both mirrored in Disk Utility, one set works perfectly while attempting to create the other set results in the error message: "Creating RAID set failed with error: Could not find RAID" I've tested the disks with Techto