How to convert .iso to .img

i am being driven absolutely madd by my computer. all i want to do is a simple task, yet hours of my life have now been drained. so to save the rest of my time as well as others in the future, how does one convert a .iso file to .img on a mac? (yes, i've looked at every forums answers and ive copied the instructions (which were slightly different for each forum) perfectly into terminal, but nothing happens. so lets make this as simple as can be....
just in case this maters, i'm running osx mavericks.
on my desktop there is an iso file we will call X.iso.
i want X.iso to be converted to X.img.
simple right? or at least you’d think so….
if anyone can write out the formula that i can then type into terminal, you will achieve god like status in my mind.
the file is on my desktop, and i want the converted file to end up on my desktop as well. so because the file location is simple, and universal, the formula should be pretty easy to figure out.
thank you to whoever does.

hi allan,
thanks for the super quick reply, but i don't think this is true. theres definitely a way of converting .iso to .img; theres many people out there who claim to have success with this through terminal. it doesn't matter what the file is called... like i said in the original post... for reasons of simplicity, we are going to call it X.iso; the name is irrelevant; it's the formula that gets typed into terminal that i need.
i don't mean to sound rude, but if you don't have an answer please just keep your comments to yourself. the last thing any forum needs is a bunch of "i don't know"'s. there is a way, and i want to hear the formula from someone who knows what he/she's doing.
a couple examples of this formula from other websites are as follows...
hdiutil convert -format UDRW -o /convert/newfile/output.img /convert/source.iso
or
Type "hdiutil convert source.iso -format UDRW -o destination.img" without quotes, and then press "Return." Replace "source" and "destination" with their actual values.
BUT...
none of them have worked for me. this being said, it's worked for others somehow. i must be typing something wrong. this is why i need a mac genius. any takers?

Similar Messages

  • How to convert ISO to EXE

    I have an ISO image file (3.25GB) and I am trying to convert it to an executable EXE file onto a 4.7GB DVD for installation to target computers. How do I do this? 
    GregRD

    I have an ISO image file (3.25GB) and I am trying to convert it to an executable EXE file onto a 4.7GB DVD for installation to target computers. How do I do this? 
    GregRD
    Right-click the image and select Open with then select
    Windows Disk Image Burner, Then click Burn.
    Blog: http://scriptimus.wordpress.com

  • How to Convert the Warning Message to Error Message in Standard Transaction

    Hi,
        I face one problem in Standard Transaction Code CS02. In that  by entering the material Number, Plant, bomstatus press enter. it gives a warning message. How to convert the Warning message to Error. In abap how to do that. Please help me.

    Mohan,
    It appears that there is some configuration you can do for BOM Message types to change the message type.  The IMG link for this function is:
    Production->Basic Data->Bill of Material->General Data->Change Message Type
    However you need to read the IMG documentation to see if this will work for you.  There are only certain messages that can be changed with this configuration step.
    Also, please do not double post questions in the forums.
    Best Regards,
    Chris H.

  • How to convert a Image object to byte Array?

    Who can tell me, how to convert Image object to byte Array?
    Example:
    public byte[] convertImage(Image img) {
    byte[] b = new byte...........
    return b;

    Hello,
    any way would suit me, I just need a way to convert Image or BufferedImage to a byte[], so that I can save them. Actually I need to save both jpg and gif files without using any 3rd party classes. Please help me out.
    thanx and best wishes

  • Arch Linux iso and img metalinks

    I've finally created a script to automatically generate metalinks for the current iso and img downloads using the most recent official mirrorlist
    The generated metalinks are currently listed here: http://xyne.archlinux.ca/arch
    I might move the links page around on the site but the metalink directory should not change. If any of the site admins would like to include these on the downloads page, send me an email so we can work out the optimal way of doing it (e.g. I could create a custom page that you could scrape and show you how to update the metalinks via the web interface when mirrorlists/downloads change).
    For anyone not familiar with metalinks, here's an example of how to use one with aria2c:
    aria2c --follow-metalink=mem -j45 -C45 http://xyne.archlinux.ca/metalinks/archlinux-2009.02-ftp-x86_64.iso.metalink
    aria2c should be capable of downloading from the metalink and the torrent simultaneously but I gave up trying to get it to work after a couple of minutes.
    The Firefox add-on "DownThemAll!" can also handle metalinks.
    archlinux-*-all.metalink contains all of the files. Don't use this link unless you either:
    a) really need all of the files
    b) know how to select files from a metalink
    Last edited by Xyne (2009-04-24 22:05:25)

    Xyne wrote:@Dieter@be
    The post about metalinks on pacman-dev reminded me about this thread. The advantage of the metalinks over torrents, even webseeded torrents, is that you don't need a torrent client to download them. You can use DownThemAll (and maybe other add-ons) to download them directly in Firefox, for example.
    exactly, most download apps (FTP clients, non-torrent P2P clients, most download managers, and browsers, with the exception of Opera) don't support torrents directly. and there are many situations where P2P uploading is banned or frowned upon, like corporate/university networks, places with slow uplink, misconfigured hardware, etc...
    torrents are awesome, but they're not a perfect fit in every situation. metalinks give you alternates, failover options, P2P-like features - so if there's any way for a download to complete, it will. there's the slightly added complexity & effort of getting em in place, but once that's automated it's usually pretty helpful.
    here's a good description of the situation:
    http://www.techradar.com/news/computing … ads-611025

  • Convert ISO Latin1 to Unicode

    Hello every one
    May some one help me to figure out how to convert a ISO Latin1 String to a Unicode String. My problem is : i have to write a sevrlet which receive a parameter which is a ISO Latin1 String, so before to do anythng i have to convert that String into a Unicode String , am i right??
    Please help me as soon as possible
    Thank alot

    Hi Joni,
    First, thank you for replying me.I've tried your method but it doesn't word, maybe i did a wrong thing. I'gonna explain my problem as below :
    - In my servlet, i receive a ISO Latin1 String like parameter encrypted by a JavaScript code and the Function is :
    function Encrypt(textValue)
    output = new String;
         Temp = new Array();
         Temp2 = new Array();
         TextSize = textValue.length;
         for (i = 0; i < TextSize; i++)
         rnd = Math.round(Math.random() * 122) + 68;
         Temp[i] = PWD.charCodeAt(i) + rnd;
         Temp2[i] = rnd;
         for (i = 0; i < TextSize; i++)
         output += String.fromCharCode(Temp, Temp2[i]);
    - And here there is the function in also JavaScript that unEncrypt :
    function unEncrypt(theText)
    output = new String;
    Temp = new Array();
    Temp2 = new Array();
    TextSize = theText.length;
    for (i = 0; i < TextSize; i++)
    Temp[i] = theText.charCodeAt(i);
    Temp2[i] = theText.charCodeAt(i + 1);
    for (i = 0; i < TextSize; i = i+2)
    output += String.fromCharCode(Temp[i] - Temp2[i]);
    return output;
    All i want is write a function that does the same as "unEncrypt" but in Java. Do you have any ideal ??Please help me to find out
    thank alot

  • How to convert encoding?

    Hi guys,
    How to convert the encoding of a file?
    JDK includes the tool?
    For example, a file is ISO8859-1 encoding, now I want to convert the encoding to UTF-8.
    How to get it?
    Thanks in advance!
    a cup of Java, cheers!
    Sha Jiang

    1- Read the file using ISO-8859-1 and put it into a string:
    You should use java.io.FileInputStream and java.io.InputStreamReader with charset name "ISO-8859-1". You could start with:BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream("yourFilename"), "ISO8859-1"));2- Write this string into a new file using UTF-8 encoding:
    You should use java.io.FileOutputStream and java.io.OutputStreamWriter with charset name "UTF-8". You could start with:BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(new FileOutputStream("yourNewFilename"), "UTF-8"));3- Delete the first file.
    Use java.io.File.
    4- Rename the new file to the first file.
    Also use java.io.File.
    Regards

  • How to convert from pt to mm

    Dear all,
    Does anybody know how to convert value of pt to value of mm according to language and font? Thanks a lot!
    Best regards,
    Christo
    Edited by: Christo Tan on Dec 22, 2011 5:51 AM
    Edited by: Christo Tan on Dec 22, 2011 6:00 AM

    The standard system (I am on ECC 6) doesn't come with a unit for Russian Point (Tochka in Russian). So we need to do the following to be able to convert from millimeter (mm) to Russian Point and vice versa. This is how we did it in our production system.
    1. In transaction CUNI create a new unit RP with LENGTH dimension. In the drop down list besides "Units of Measurement" button, select LENGTH dimension and enter values like in the below picture
    [Russian Point in transaction CUNI|http://img265.imagevenue.com/img.php?image=70210_UnitofMeasure_RussianPoint_122_100lo.jpg]
    2. In your ABAP program you can call UNIT_CONVERSION_SIMPLE like below to convert from RP to MM.
    DATA: lv_input TYPE I VALUE 1,
          lv_output TYPE F.
    CALL FUNCTION 'UNIT_CONVERSION_SIMPLE'
      EXPORTING
        input                      = lv_input
        NO_TYPE_CHECK              = 'X'
    *   ROUND_SIGN                 = ' '
        UNIT_IN                    = 'RP'
        UNIT_OUT                   = 'MM'
      IMPORTING
    *   ADD_CONST                  =
    *   DECIMALS                   =
    *   DENOMINATOR                =
    *   NUMERATOR                  =
        OUTPUT                     = lv_output
    * EXCEPTIONS
    *   CONVERSION_NOT_FOUND       = 1
    *   DIVISION_BY_ZERO           = 2
    *   INPUT_INVALID              = 3
    *   OUTPUT_INVALID             = 4
    *   OVERFLOW                   = 5
    *   TYPE_INVALID               = 6
    *   UNITS_MISSING              = 7
    *   UNIT_IN_NOT_FOUND          = 8
    *   UNIT_OUT_NOT_FOUND         = 9
    *   OTHERS                     = 10
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    The above call converts 1 RP into 2.5400000000000000E-01 mm and puts it in lv_output (which is 0.254)

  • How to convert class file

    Hi all, I am new in java card development.
    This is my environment setting:
    @echo off
    set JC_HOME=C:\JavaCard\java_card_kit-2_2
    set JAVA_HOME=C:\j2sdk14103
    set PATH=.;%JC_HOME%\bin;%PATH%
    I have created the Wallet applet according to 'Zhiqun Chen" text book and named it WalletApp.java.
    I have compiled this file to a class file.
    This is where is I saved my file
    C:\JavaCard\java_card_kit-2_2\samples\src\com\sun\javacard\samples\WalletApp\WalletApp.java.
    But I don't really understand how to convert the class file.
    May I know what is this for?
    -out EXP JCA CAP
    -exportpath
    -applet 0xa0:0x0:0x0:0x0:0x62:0x3:0x1:0xc:0x1:0x1
    com.sun.javacard.samples.HelloWorld.HelloWorld
    com.sun.javacard.samples.HelloWorld
    0xa0:0x0:0x0:0x0:0x62:0x3:0x1:0xc:0x1 1.0
    must save this in what file?
    I tried to type in the command line below (and the result):
    C:\JavaCard\java_card_kit-2_2\samples>converter -config scr\com\sun\javacard\sap
    les\Wallet\Wallet.opt
    error: file scr\com\sun\javacard\saples\Wallet\Wallet.opt could not be found
    Usage: converter <options> package_name package_aid major_version.minor_ver
    sion
    OR
    converter -config <filename>
    use file for all options and parameters to converter
    Where options include:
    -classdir <the root directory of the class hierarchy>
    set the root directory where the Converter
    will look for classes
    -i support the 32-bit integer type
    -exportpath <list of directories>
    list the root directories where the Converter
    will look for export files
    -exportmap use the token mapping from the pre-defined export
    file of the package being converted. The converter
    will look for the export file in the exportpath
    -applet <AID class_name>
    set the applet AID and the class that defines the
    install method for the applet
    -d <the root directory for output>
    -out [CAP] [EXP] [JCA]
    tell the Converter to output the CAP file,
    and/or the JCA file, and/or the export file
    -V, -version print the Converter version string
    -v, -verbose enable verbose output
    -help print out this message
    -nowarn instruct the Converter to not report warning messages
    -mask indicate this package is for mask, so restrictions on
    native methods are relaxed
    -debug enable generation of debugging information
    -nobanner suppress all standard output messages
    -noverify turn off verification. Verification is default
    *********************************************************May I know What is the correct command line to convert the class file and what must I do to before converting the class file?
    I saw some article saying we must use JDK1.3, is it a must?
    Your solution is highly appreciated.
    Thank you!

    Hi Ricardo,
    I saved the file below as WalletApp.opt in the directory of scr\com\sun\javacard\samples\WalletApp
    -out EXP JCA CAP
    -exportpath c:\javacard\java_card_kit-2_2\api_export_files
    -applet 0xa0:0x0:0x0:0x0:0x62:0x3:0x1:0xc:0x2:0x1 WalletApp.WalletApp
    WalletApp 0xa0:0x0:0x0:0x0:0x62:0x3:0x1:0xc:0x2 1.0
    But I still have the problem below:
    C:\JavaCard\java_card_kit-2_2\samples>converter -config scr\com\sun\javacard\sam
    ples\WalletApp\WalletApp.opt
    error: file scr\com\sun\javacard\samples\WalletApp\WalletApp.opt could not be fo
    und
    Usage: converter <options> package_name package_aid major_version.minor_ver
    sion
    OR
    converter -config <filename>
    May I know What's wrong with my command or file?
    Where can I download JDK because what I can find is J2SDK.
    Thank you!

  • How to convert string to 16 characters.

    My external unique id is too long, more then 30 characters.
    How to convert it to 30 characters using sql?

    You should find another extranal system id in order to mantain uniqueness, but you could also use the name field (that supports 50 characters), but it deppends of which entity you are using.
    Which is the entity? and...if the only way to insert data is by web services the you could use more than one field to verify uniqueness since you can query more than one field at the time.
    Hope it helps
    Kim.

  • How to convert Web app into a channel?

    To whom it may concern,
    Does anyone know how to convert a Web app into a channel inside the Portal server 6.0?
    I developed the web app and tried to create a provider and a channel for it, but the Portal server did not recognize the WEB-INF folder and give me errors saying that it couldn't locate the class files.
    I also have a problem with URL inside my jsp page (channel).
    For example, I have two jsp pages:
    /etc/opt/SUNWps/desktop/default/MyCustomProvider/test1.jsp
    /etc/opt/SUNWps/desktop/default/MyCustomProvider/test2.jsp
    and when I try to put a link from test1.jsp to test2.jsp using
    ... and make a channel based on test1.jsp. The channel will display the link as "http://mydomain/portal/test2.jsp" and result in "Error: page not found". I want the link to point to
    /etc/opt/SUNWps/desktop/default/MyCustomProvider/test2.jsp
    To summarize my questions,
    1) Where should the web app be located in the Portal server?
    2) How to make a link inside one jsp page (channel) to point to another page inside the same folder?
    Thank you in advance

    Hello Karthik,
    I just tried to solve my problem with your suggestions, unfortunately, my JSP channel still doesn't work :(
    The portal server keeps reporting "Server Error..." when I tried to add query at the end of the href.
    Do you still have any other suggestions?
    Thank you

  • Video Format Total Solution: How to Convert and Edit Video on Windows/Mac

    More and More video formats are coming out with different video encoders and it makes our spare time more and more colorful. However, it is not to say that there is no problems. Actually, different video formats make it difficult to share video with others, even your own camcorder and iPod. Is there an easy way to convert videos effectively. Yes, there is.
    In this article, I will show you guys how to convert videos on windows and mac.
    Part 1. How to Convert and Edit Videos on Windows
    For Windows users, you need a Video Converter(http://www.aiseesoft.com/total-video-converter.html) to do that for you.
    Here I use Aiseesoft Total Video Converter(http://www.aiseesoft.com/total-video-converter.html)
    Step 1: Download and install Aiseesoft Total Video Converter
    After you download it to your computer, double click it and it is really easy to install.
    You just need to click “next” and it will complete it in seconds. It will automatically run after installation.
    http://www.aiseesoft.com/images/guide/total-video-converter/screen.jpg
    Step 2: Load Video
    Click “Add File” to find the video that you want to convert and click “open”. It will be loaded automatically.
    Step 3: Select the target to decode
    In the “Profile” drop download list you can find your target according the usage of your output video, such as if you want to put the video on your iPod touch, you can select the “iPod” in the first list and “iPod touch 2 MPEG-4 640*480(*.mp4)” in the second list.
    Step 4: Set Advanced Parameters
    After you select the right output profile, you can click “setting” button to set your advanced parameters. You can adjust video and audio settings separately. In video section, you can change “video encoder”, “resolution”, “frame rate”, “video bitrate”In audio section, you can change “audio encoder”, “sample rate”, “channel”, “audio bitrate”If you want to save this profile and settings and use it next time you can click “save as” button to give a name to it. And the next time you want to use it you can find it in the profile list named “user defined”.
    Step 5: Choose a Destination
    To browse and find a output folder for your output files or just the default one.
    Finally, Click “Convert” button to begin your conversion, here in the converting
    interface you can choose “shut down the computer when conversion complete” or “open output folder when conversion complete” or you just do not choose neither one.
    Tips: How to Edit the Output Video
    This video converter is also a video editor, you can use it to edit your output video as follows:
    http://www.aiseesoft.com/images/guide/total-video-converter/effect.jpg
    1. Effect:
    You are allowed to adjust the “Brightness”, “Contrast”, “Saturation” and you can choose the “deinterlacing” to make the video more enjoyable.
    2. Trim:
    In “Trim” section you can pick up any part of the video to convert.
    There are two ways to select the part of the video you want. One is set the start and end time in the box. The other one is to drag the start and end button in the processing bar.
    3. Crop:
    This function allows you to choose a certain play area to convert. That means you can choose a part of the screen you like to convert. For example, you just like the tv in the middle of the screen, then you can drag the frame around the preview window to select the tv and the output preview will show you the output video.In this section you can also choose the “zoom mode”, such as “keep original”, “full screen”, “16:9”, “4:3”.
    4. Watermark
    In the section, you can add a watermark on the output video to show people something, such as your name, website, studio name or other things. The watermark could be words and picture. You can adjust the transparent of the watermark easily to make it more beautiful.
    Part 2. How to Convert Video on Mac
    This time you need a Video Converter for Mac(http://www.aiseesoft.com/video-converter-for-mac.html)
    Step 1: Add File
    Click “Add File” button to load the video you want to converter
    http://www.aiseesoft.com/images/guide/mac-video-converter/steps.jpg
    Step 2: Choose profile and adjust settings
    You can find your output video format from a drop-list called “Profile”You can also adjust the specific settings of the output video, such as “Resolution”, “Bitrate”, “Encoder” and so on.

    @ Tamwini
    Your only goal is to sell software.
    ‡Thank you for hitting the Blue/Green Star button‡
    N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

  • How to convert data from a report in PDF which are specified on multiple lines ?

    It often occurs that in a report one detail entry is folded onto two subsequent lines.
    e.g.
      No.  
    Container          Lt Ht Tp F/E     Dam          Weight Temp     Bi Im First Seal     No. Cell     Booking ref.
    In Arr    id     A         Tml         PoL PD   PoD             C T L R F B                                                                                 
    1       XXXU123456-7  20 ST I F                        24.000                                  SLX11            1    25A     CVA12345  
    How does the conversion to Excel is going to handle this ?
    I need the second line of data in my excel sheet.
    YES               9/10   14:15        BEANR   REFCT

    Hello Jay,
    Don't use SSIS to convert. Use SSIS to FTP the files out.
    How you convert to PDF: the format is owned by Adobe so there might be royalties involved, but there are paid and free (OSS) libraries to doing so. Just search online.
    Arthur
    MyBlog
    Twitter

  • Very Urgent--- How to Convert Non Valuated stk into Valuated

    Dear GURU'S
    Actually for a material A when i see the stock in MM03 in accounting tab i see less stock then when i see in MMBE
    i.e in MMBE if i select Material A and Plant B(Which is depo in my case) i see stock as 39
    but for same material MAterial A and Plant B ,if i see in MM03 --in accounting tab i m able to see less stock i.e only 1
    ============================================
    Well the problem is In MM03 I cud see only valuated stk i.e qty as 1
    And in MMBE for a partiocular material for a particular plant the stock was 39
    i.e Here i am getting Valuated + Non valuated stock
    i.e i am getting difference of 25
    =====>>>
    To get into the root cause
    I have gone to MB5B where i can get all the transaction that has been done on this material with movement type also i got the intial stock ,Goods recpt ,Goods  issu and total stock
    No for a particular material
    In MB5B it is showing
    Stock on 01.01.2005    =  38
    receipts total               = 238
    Issues total                  =237
    Stock as on 18.02.2008 = 39(which is equal to Stock in MMBE)
    =============>This is for valuated +Non valuated stock
    Where as if i want to see only valuated stock it was showing
    receipts total      = 238
    Issues total         =237
    Stock as on 18.02.2008 =1  (which is equal to stock in acctg view in MM03)
    ====================>This is only for Valuated Stock
    ======================================
    Now how to solve this :
    The initial qty(38) which has been posted it was at the begining that is at the start of the project
    And the people who have posted it ,it was non valuated
    that is the reason it is showing difference in MM03 and MMBE
    First thing
    How can i see on which date this initial stock has been posted
    Second Query
    How to convert this non valuated stock into Valuated stock
    So that the quantity in MMBE and MM03 gets matched
    Willl award 10 Points if my problem gets solved
    THANKZ IN ADVANCE
    REgds
    Shailesh

    Dear friend
    Actuallly i have checked the history of that particular Item in MB51
    I have gone through all the documents created for this material
    Now this material also exist in DEPO which is located at chennai and plant is at mumbai
    So Initially in the year-2006(31-10-2006) whater documents are created i.e STOP has  been created and delivery has been made (Mov type-601)
    are non valuated stock ,means they have been posted without any valuation
    But from year 2007(01.02.2007) the documents whiohc have been posted are valuated
    i.e is the reason when i am executing transaction MRN9 to check the history of valuated stock
    I cant see non valuated stock
    Well now how to do the valuation of this stock which have been posted in year 2006 so that
    In MMBE and MM03 there is no difference of stock
    Plz hepl
    regds
    shailesh

  • How to convert a .jad file to .class file in JAVA Swings.

    Hi all,
    Sorry for the interruption.I am also facing the same problem.I am using DEJDecompiler.But my application is not J2ME But J2EE.( a Swing application).I opened .class file and made some changes but I dont know how to convert into a .class file again.
    I tried saving .jad file to .java file.Then it is showing lot of errors in Eclipse Platform.I doubt if there are any errors in the .class file already,then how could the program would run.I put all the programs in the respective platforms only and then testing.It fails.
    (2) one more question,is if I do not need to disturb any existing coding and need to create a seperate java file which will do my customisation,then what should I do.I could not get any interfaces in the program.
    Please help me as the matter is most urgent.
    Thanks in advance
    With regds
    Satheesh.K

    I tried saving .jad file to .java file.Then it is
    showing lot of errors in Eclipse Platform.I doubt if
    there are any errors in the .class file already,then
    how could the program would run.I put all the programs
    in the respective platforms only and then testing.It
    fails.So who's Java program/library are you trying to steal?
    (2) one more question,is if I do not need to disturb
    any existing coding and need to create a seperate java
    file which will do my customisation,then what should I
    do.I could not get any interfaces in the program.
    Please help me as the matter is most urgent.Wow, you urgently need to steal someones program/library. The best person to give you advice urgently is the owner of the program/library you are trying to steal.
    Thanks in advancePlease don't thank me because I'm not going to help you!
    With regds
    Satheesh.K

Maybe you are looking for

  • Restoring all my apps prior to 8.1 update

    I have installed the Windows 8.1 update yesterday. this morning I was unable to connect to the internet with my PC but could access it via my cell. after about 2 hours of typing my WiFi code in and not having any success I chose to restore to before

  • Why is the color on my iPhone 5c fading?

    My iPhone 5c in pink is fading to an orange color around the silent switch, camera, ports and speakers. How do I stop and or prevent further fading on my phone?

  • Connecting to PC at bootup not working anymore

    Hi all I run a Mac Mini as a media PC conenctied to my TV in the lounge, which is networked over WiFi to my Windows 7 PC in another room which is the repository for my MP3s, media, photos etc. My router is hardwired to the PC and is working just fine

  • Xl reporter could not be installed

    hi i have installed office 2007 and using sap b1 2005 ,when try to install xl reporter,i am getting error that xl reporter coulde not be installed as exell is installed. please can any one help me

  • IW 292: No configurable material can be assigned to th order

    Hi, When I am assigning configurable material in service order as components I am getting as error "no configurable material can be assigned to the order' If anyone byepasssed the error please let me share. Regarsd Sendil