JHS: Export to Excel doesn't work when having leading zeros

Oracle JHeadstart Release 11.1.1.2.29
We are using the Export to excel option, but when we have leading zeros it doesn't export it as text so the data is incorrect.
Can any one please tell how doe we configure JHeadstart/ADF to have the leading zeros and export it as text rather than as number.
Regards
Ram

Ram,
Export to excel is native ADF feature,not related to JHeadstart. Please post your question on the JDeveloper forum.
Steven davelaar,
JHeadstart team.

Similar Messages

  • Export to excel doesn't work anymore

    Hello all;
    I recently re-installed Excel, and the "export to excel" function in B1 doesn't work anymore. Even when I do "File> Export> MS-excel", it doesn't offer an *.xls file type to save.
    Any ideas?
    Thanks,
    Lazar

    Dear Lazo,
    For export option activate On SAP B1 client machine you have go general setting > Go to path > than provide SAP sever Excel Doc Path.
    and  please confirm in that folder Auto open.xls file is there or not.
    and than go to new excel file > Tools >Option .security > Macro setting > Select Security level Medium.
    Than try to open excel file.
    May it help you.
    If its not work so you check on sever if its working on sever than if definitely client machine problem.
    for that you have re-installed SAP client.
    Regards
    Mangesh Pagdhare.

  • Report export to excel doesn't work correctly

    I've seen this problem is quite common, and some workarounds but none is correct for me.
    I have a SQL function returning report with several filters (something based on the Issues report of the Issue Tracking Application, APEX example).
    In my case seems to work correctly only when I hard code the value of :P15_CANVI_DE_CLUB. I've tried Denes Kubicek solution of setting a computation before header of this item, but it does not work. Unluckily Denes package can't be used with SQL function returning report so I cannot use it to print my report.
    Anyone knows how to face this flaw?
    Thanks for your help.
    That's the SQL function
    declare
    q varchar2(20000); -- query tasques
    q0 varchar2(4000); -- query suport subtasques
    q1 varchar2(4000); -- query subtasques
    w varchar2(4000) ; -- where, condició de filtres
    w1 varchar2(4000) ; -- where, condició de tasques
    w2 varchar2(4000) ; -- where, condició de subtasques
    w21 varchar2(4000) ; -- where subtasques
    w22 varchar2(4000) ; -- where subtasques amb filtres de pantalla
    begin
    -- q és la consulta de tasques ("TAS_TAS_ID" is null) a aquesta
    -- consulta s'ha d'unir q1 que són les subtasques
    q:= 'select null as "Tasca", '||
    '"GES_GES_ID", '||
         '"TAS_ID", '||
         '"TITOL", '||
         '"DESCRIPCIO", '||
         '"ASSIGNADA", '||
         '"DATAINICI", '||
         '"PREVISIO_FI", '||
         '"DATA_FINAL", '||
         '"PRIORITAT", '||
         '"SITUACIO", '||
         '"ORIGEN", '||
         '"NUMERADOR", '||
         '"ANY_NUMERADOR", '||
    '"CODI_NUMERADOR", '||
    '"NUMERO", '||
    '"AGR_ASS_ASS_ID", '||
         '"AGR_CODI", '||
         '"TAS_TAS_ID", '||
         '"TAS_GES_GES_ID", '||
         '"GES_GES_ID_ESTA_ASSIGNADA", '||
    '"GESTOR", '||
         '"PUBLICA", '||
         '"GRUP_TASQUES", '||
         '"NOM", '||
         '"COGNOM1" '||
    'from     "STASVWREPORT_TASQUES" ';
    -- Les següents línies calculen les condicions de filtres de pantalla
    -- Filtre origen
    if :P15_ORIGEN!='-1' THEN
    w:= w||' AND "STASVWREPORT_TASQUES"."ORIGEN"=:P15_ORIGEN';
    end if;
    -- Filtre prioritats
    if :P15_PRIORITATS<>'-1' then
    w:= w||' AND "PRIORITAT"=:P15_PRIORITATS';
    end if;
    -- Filtre situacions
    if :P15_SITUACIONS<>'-1' then
    w:= w||' AND "SITUACIO"=:P15_SITUACIONS';
    end if;
    -- Filtre grup de tasques
    w:=
    case :P15_GRUPS_TASQUES
    when '%' then w||' AND ("STASVWREPORT_TASQUES"."AGR_CODI" LIKE (''%'') or
    "STASVWREPORT_TASQUES"."AGR_CODI" IS NULL)'
    when '-2' then w||' AND ("STASVWREPORT_TASQUES"."AGR_CODI" IS NULL)'
    else w||' AND "STASVWREPORT_TASQUES"."AGR_CODI"=:P15_GRUPS_TASQUES and '||
    '"STASVWREPORT_TASQUES"."AGR_ASS_ASS_ID"=:ASSOCIAT '
    end;
    -- Filtre obertes/tancades
    if :P15_OBERTES='O' then
    w:= w||' AND "DATA_FINAL" IS NULL';
    end if;
    if :P15_OBERTES='T' then
    w:= w||' AND "DATA_FINAL" IS NOT NULL';
    end if;
    -- Filtre títol/DESCRIPCIO
    IF :P15_TITOL_DESCRIPCIO=1 THEN
    IF :P15_TITOL IS NOT NULL then
    w:= w || ' AND TRANSLATE(UPPER("STASVWREPORT_TASQUES"."TITOL")';
    w:= w || ',''ÀÁÈÉÍÏÒÓÚÜ'', ''AAEEIIOOUU'') ';
    w:= w ||'LIKE ';
    w:= w ||'TRANSLATE(UPPER(''%';
    w:= w ||:P15_TITOL||'%''),''ÀÁÈÉÍÏÒÓÚÜ'', ''AAEEIIOOUU'')';
    END IF;
    ELSE
    IF :P15_TITOL IS NOT NULL then
    w:= w || ' AND TRANSLATE(UPPER(';
    w:= w || '"STASVWREPORT_TASQUES"."DESCRIPCIO")';
    w:= w || ',''ÀÁÈÉÍÏÒÓÚÜ'', ''AAEEIIOOUU'') ';
    w:= w ||'LIKE ';
    w:= w ||'TRANSLATE(UPPER(''%';
    w:= w ||:P15_TITOL||'%''),''ÀÁÈÉÍÏÒÓÚÜ'', ''AAEEIIOOUU'')';
    END IF;
    END IF;
    -- Filtre propietari/gestor
    if :P15_GESTOR_PROPIETARI='-1' then
    w:= w||' AND ("STASVWREPORT_TASQUES"."GES_GES_ID"=:GESTOR) ';
    end if;
    if :P15_GESTOR_PROPIETARI='-2' then
    w:= w||' AND ("STASVWREPORT_TASQUES"."GES_GES_ID_ESTA_ASSIGNADA"=:GESTOR) ';
    end if;
    if :P15_GESTOR_PROPIETARI='-3' then
    w:= w||' AND (("STASVWREPORT_TASQUES"."GES_GES_ID"=:GESTOR ';
    w:= w||'OR "STASVWREPORT_TASQUES"."GES_GES_ID_ESTA_ASSIGNADA"=:GESTOR)';
    w:= w||'OR ("STASVWREPORT_TASQUES"."AGR_ASS_ASS_ID"=:P15_CANVI_DE_CLUB ';
    w:= w||' AND "STASVWREPORT_TASQUES"."PUBLICA"=''S''))';
    end if;
    if :P15_GESTOR_PROPIETARI='-4' then
    w:= w||' AND ("STASVWREPORT_TASQUES"."GES_GES_ID"=:GESTOR ';
    w:= w||'OR "STASVWREPORT_TASQUES"."GES_GES_ID_ESTA_ASSIGNADA"=:GESTOR)';
    end if;
    -- Filtre dates
    if :P15_SELECCIO_DATES = '1' and :P15_DATA_INICI_F is not null then
    w:= w|| 'and ("STASVWREPORT_TASQUES"."DATAINICI" >= :P15_DATA_INICI_F ' ;
    w:= w|| 'and "STASVWREPORT_TASQUES"."DATAINICI" <= :P15_DATA_FI_F) ';
    end if;
    if :P15_SELECCIO_DATES = '2' and :P15_DATA_INICI_F is not null then
    w:= w|| ' and ("STASVWREPORT_TASQUES"."PREVISIO_FI" >= :P15_DATA_INICI_F and ';
    w:= w|| '"STASVWREPORT_TASQUES"."PREVISIO_FI" <= :P15_DATA_FI_F) ';
    end if;
    if :P15_SELECCIO_DATES = '3' and :P15_DATA_INICI_F is not null then
    w:= w|| 'and ("STASVWREPORT_TASQUES"."DATA_FINAL" >= :P15_DATA_INICI_F and ';
    w:= w|| '"STASVWREPORT_TASQUES"."DATA_FINAL" <= :P15_DATA_FI_F) ';
    end if;
    if :P15_CALCULAR_NUMERO='NUM' then w:= '"STASVWREPORT_TASQUES"."GES_GES_ID_ESTA_ASSIGNADA"="STASTBGESTORS"."GES_ID"(+) '||
    'and "STASVWREPORT_TASQUES"."AGR_ASS_ASS_ID"="STASTBAGRUPACIO"."ASS_ASS_ID"(+) '||
    'and "STASVWREPORT_TASQUES"."AGR_CODI"="STASTBAGRUPACIO"."CODI"(+) ';
    w:= w||' AND (("STASVWREPORT_TASQUES"."GES_GES_ID"=:GESTOR ';
    w:= w||'OR "STASVWREPORT_TASQUES"."GES_GES_ID_ESTA_ASSIGNADA"=:GESTOR)';
    w:= w||'OR ("STASVWREPORT_TASQUES"."AGR_ASS_ASS_ID"=:P15_CANVI_DE_CLUB ';
    w:= w||' AND "STASVWREPORT_TASQUES"."PUBLICA"=''S''))';
    if :P15_CODIS_GRUPS!='-1' then
    w:= w||' and "STASVWREPORT_TASQUES"."CODI_NUMERADOR"=:P15_CODIS_GRUPS ';
    else
    w:= w||' and "STASVWREPORT_TASQUES"."CODI_NUMERADOR" is null ';
    end if;
    w:= w||' and "STASVWREPORT_TASQUES"."NUMERADOR"=:P15_NUMERO ';
    w:= w||' and "STASVWREPORT_TASQUES"."ANY_NUMERADOR"=:P15_ANY ';
    :P15_CALCULAR_NUMERO:='NO';
    end if;
    w1:= '"STASVWREPORT_TASQUES"."TAS_TAS_ID" is null ' ||w;
    q:= q || ' WHERE '|| w1;
    -- La mateixa consulta però seleccionant només els TAS_ID
    q0 := 'select "TAS_ID" '||
    'from "STASVWREPORT_TASQUES" ';
    q0:= q0 || ' WHERE '|| w1;
    -- q1 dóna les subtasques de les tasques triades a q
    -- (STASTBTASQUES"."TAS_ID" in(q0)) i a més a més les subtasques que
    -- cumpleixen les condicions de filtres de pantalla
    -- (TAS_TAS_ID is not null and w)
    q1 := 'select ''Subtasca'' as "Tasca", '||
    '"GES_GES_ID", '||
         '"TAS_ID", '||
         '"TITOL", '||
         '"DESCRIPCIO", '||
         '"ASSIGNADA", '||
         '"DATAINICI", '||
         '"PREVISIO_FI", '||
         '"DATA_FINAL", '||
         '"PRIORITAT", '||
         '"SITUACIO", '||
         '"ORIGEN", '||
         '"NUMERADOR", '||
         '"ANY_NUMERADOR", '||
    '"CODI_NUMERADOR", '||
    '"NUMERO", '||
    '"AGR_ASS_ASS_ID", '||
         '"AGR_CODI", '||
         '"TAS_TAS_ID", '||
         '"TAS_GES_GES_ID", '||
         '"GES_GES_ID_ESTA_ASSIGNADA", '||
    '"GESTOR", '||
         '"PUBLICA", '||
         '"GRUP_TASQUES", '||
         '"NOM", '||
         '"COGNOM1" '||
    'from     STASVWREPORT_TASQUES ';
    w21:= '"TAS_TAS_ID" IN ('||q0||')';
    w22:= '"TAS_TAS_ID" IS NOT NULL '||w;
    w2:='('||w21||') OR ('||w22||')';
    q1:= q1 || ' WHERE '|| w2;
    q:= q ||' UNION ' || q1;
    return q;
    end;

    Problem solved!!
    <br><br>
    See this part of the query:
    <br><br>
    if :P15_GESTOR_PROPIETARI='-3' then<br>
    w:= w||' AND (("STASVWREPORT_TASQUES"."GES_GES_ID"=:GESTOR ';<br>
    w:= w||'OR "STASVWREPORT_TASQUES"."GES_GES_ID_ESTA_ASSIGNADA"=:GESTOR)';<br>
    w:= w||'OR ("STASVWREPORT_TASQUES"."AGR_***_***_ID"=<FONT color=red>:P15_CANVI_DE_CLUB</FONT> ';
    w:= w||' AND "STASVWREPORT_TASQUES"."PUBLICA"=''S''))';<br>
    end if;<br>
    <br>
    when instead of :P15_CANVI_DE_CLUB I put a value (say ''EE'') it works correctly, finally I created an application item (ASSOCIAT) and when when I change :P15_CANVI_DE_CLUB I set :ASSOCIAT to the same value and the query is based on this application item:
    <br><br>
    if :P15_GESTOR_PROPIETARI='-3' then<br>
    w:= w||' AND (("STASVWREPORT_TASQUES"."GES_GES_ID"=:GESTOR ';<br>
    w:= w||'OR "STASVWREPORT_TASQUES"."GES_GES_ID_ESTA_ASSIGNADA"=:GESTOR)';<br>
    w:= w||'OR ("STASVWREPORT_TASQUES"."AGR_***_***_ID"=<FONT color=red>:ASSOCIAT </FONT>';<br>
    w:= w||' AND "STASVWREPORT_TASQUES"."PUBLICA"=''S''))';<br>
    end if;<br>
    <br>

  • Export to excel doesn't work

    Hi all,
    I'm having a problem with exporting a workbook into an excel sheet.
    The problem is that NOTHING HAPPEND. I realy don't know what is going on. For the same account I tried to export another report... and every thing was ok (the only thing that I saw is thet for some I have the option to save the report or open it... and for others It opens directly...)
    Does someone ever had the same problem??...

    Hi
    Try closing the browser session and trying again. I have seen it lock like this sometimes.
    Take a look also at this recent thread: Can't export from Disco Plus but am able to export From Desktop
    Best wishes
    Michael

  • Export to Excel functionality doesn't work when DataControlScope is shared.

    Hi All,
    I have a taskflow whose transaction setting is as Below:
    1.Always Begin New Transaction
    2.DataControlScope is isolated(Share data controls with calling task flow checkbox is unchecked).
    I have an Export to Excel functionality with exportCollectionActionListener.The jsff source snippet is given below.
    <af:commandMenuItem text="#{smviewcontrollerBundle.EXPORT_TO_EXCEL}"
    id="cmi1" icon="/images/excel_icon.jpg"
    binding="#{backingBeanScope.backing_fragments_RefSetSearch.cmi1}">
    <af:exportCollectionActionListener exportedId="resId1"
    type="excelHTML"
    filename="SmRefSetCodes"
    title="System Reference Inquiry Result"/>
    </af:commandMenuItem>
    The jsff is used in the above mentioned task-flow.Having this configuration in task-flow,export to excel doesn't export any table data in the excel sheet.But the moment,data-control-scope is changed to shared,export starts working.
    Is there any specific reason on this kind of behavior.
    In all other task-flows in my application,I have data-control-scope as isolated only,but there,export is working perfectly fine.
    Please help.
    Thanks,
    Gaurav

    Hi Frank,
    Thanks for your reply.
    Exactly,I have just one task-flow in which I have a page fragment for which export to excel is not working.The moment I change the data-control-scope to shared,export functionality starts working.
    I do have correct table id mentioned in exportCollectionListener.
    Is there anything I need to look into?
    Thanks,
    Gaurav.

  • Charger works when notebook is off, but it doesn't work when the notebook is on.

    I have a HP Pavilion dv6-3070tx Entertainment Notebook PC.
    My charger doesn't work when the notebook is on and plugged in, but when the notebook is off (or even when it is in sleep mode) it gets charged. I tested this by using different chargers that work in other hp notebooks. If this can be solved, I'll be grateful.

    Hi
    There are two structures of DVDs
    • Data-DVD - as burned from DeskTop/Finder
    • Video-DVD - to be played on a DVD-Player - Needs a program that can do this
    One can in iMovie - Export as QuickTime .mov and save this via DeskTop/Finder onto a DVD - BUT this will only play on a Computer and if it is a Window-PC this needs to download QT-player or VLC-player.
    But no DVD-player for TV can play back this.
    To get a Video-DVD then You need
    • iDVD (not from Apple any more) - or -
    • DVD Studio Pro (not from Apple any more) - or -
    • FinalCut Pro-X (can do simple Video-DVDs) - or -
    • Burn - http://www.digital-digest.com/software/Burn.html - FREE - but very PLAIN - no fancy things at all.
    • Roxio Toast™ 11 Pro - Fairly advanced - and costs a bit - still very Good and lot's of great tool's included. (I love it) - Can also back convert home made DVDs to an editable mode in an OK quality. With BD-component also capable to do sort of Blu-Ray DVDs.
    Yours Bengt W

  • My speaker doesn't work when I try to listen to music or open up a quick time file, however they seem to work perfectly when I listen to a voice memo (p.s. the volume slider disappears in a song page and even in the multi tasking bar)

    my speaker doesn't work when I try to listen to music or open up a quick time file, however they seem to work perfectly when I listen to a voice memo (p.s. the volume slider disappears in a song page and even in the multi tasking bar)

    Thanks for your solution, it wasn't quite what solved the problem but i remembered that i had a bit of salt water on my phone recently and spraying the charging port with an anti-oxide spray solved my problem, do you mind if i ask, how is the charging port related with the volume or/and speakers?

  • BitmapData draw method doesn't work when the project is published as the .swf file of the web applic

    Hi,
            I am totally confused by this strange error. When I tried using the draw method of BitmapData to draw a movieclip symbol of my project, it seems to work fine locally. However, as I uploaded the published .swf file to my web server and launched it as the plugin of my web application, it failed. The source codes as follows,
    function printscreenClicked():void
         //ExternalInterface.call calls a javascript function to print message1
        var bd:BitmapData = new BitmapData(stage.width,stage.height);
        //ExternalInterface.call calls a javascript function to print message2
      bd.draw(stage);
        //ExternalInterface.call calls a javascript function to print message3
    message3 didn't show at all. Instead, the browser console shows "Uncaught Error: Error calling method on NPObject.". My understanding of this error message is that the .swf is calling something crashing, and I believe that bd.draw(stage)is the crashng method call.
    Also, here is my html embed tag:
        <embed src="/tests/videoplayer.swf" id="flash" quality="high" height="510" width="990" scale="exactfit" name="squambido" align="middle" allowscriptaccess="always" allowfullscreen="true" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" style="margin: 0px auto;clear:both;position:relative;"/>
    Can someone help me?

    Thank you for your reply.
    I tried stageWidth and stageHeight, but it still doesn't work.
    The draw() methid is triggered when I clicked a screenshot button in my application as follows,
    ExternalInterface.addCallback("printscreenClicked", printscreenClicked);
    function printscreenClicked():void
         //ExternalInterface.call calls a javascript function to print message1
        var bd:BitmapData = new BitmapData(stage.width,stage.height);
        //ExternalInterface.call calls a javascript function to print message2
      bd.draw(stage);
        //ExternalInterface.call calls a javascript function to print message3
    Would you please give me an example of "waiting for Event.RESIZE is good, or just at least Event.ENTER_FRAME"?
    My real purpose in this application is to capture a snapshot of a streaming video. The video is contained in a movieclip object. I tried stage first since BirmapData.draw() doesn't work when drawing the movieclip on the web site. Do you have any suggestion for this situation? Also, is there any good method to find out what happened if the browser have "Uncaught Error: Error calling method on NPObject."?

  • I have different account ID's with my iphone and computer. I would like to standardise both to just the one. One of the ID's doesn't work, when I tried to list the second email with the preferred one a message telling me that this email is already in

    I have different account ID's with my iphone and computer.
    I would like to standardize both to just the one.
    One of the ID's doesn't work, when I tried to list this second email with the preferred one a message telling me that this email is already in use pops up.. yes it is, with me??
    Is there an easy to fix this please, Fabfitz

    If the email address you want to use is being used as the primary email address on a different ID you have to manage that ID and change it to a different primary email address.  This explains how: Change your Apple ID - Apple Support.
    If it is being used as an alternate or rescue address on a different ID, you manage the ID and either remove it or change it to a different email address.  This explains how: Manage your Apple ID primary, rescue, alternate, and notification email addresses - Apple Support.

  • I have Adobe Acrobat 9.5.4 installed on my computer and it doesn't work when PDFing

    I have Adobe Acrobat 9.5.4 installed on my computer and it doesn't work when PDFing my document using Microft Word 2010. I have tried using the tab add-in, but it doesn't respond either. The only way to convert my document is to save it as a .pdf from the save as drop down box. I need to be able to have the full functionability of creating a PDF document with the tabs and links working.
    Please help!

    From OFFICE 2010 you either have to have AA X or just print to the Adobe PDF printer. You give no information on your operating system or specifically what you mean by PDFing -- there are multiple ways to create a PDF from a WORD document and you have given no information. However, in this case your only choice is to print to the Adobe PDF printer. Otherwise, you need to upgrade Acrobat.

  • [Photoshop CC 2014] Click&hold-move-release doesn't work when adding adjustment layer from the layer panel

    When selecting a menu item I used to click the left mouse button and hold it down, move the pointer to the desired menu item and release the mouse button. Everything works fine in the mine menu, but there's a problem when adding new adjustment layer from the layer panel: when I release the button nothing happens, I have to press the button again. In previous PS version it worked fine. How can I fix this?

    I don't think that is user fixable, meaning you'll have to wait till adobe fixes it with an update.
    Photoshop cc 2014
    windows does not work
    mac does work
    Did you already post over here:
    [Photoshop CC 2014] Click&hold-move-release doesn't work when adding adjustment layer from the layer panel

  • TS1398 The internet on my Iphone 4 doesn't work when I use the Wifi

    The internet on my Iphone 4 doesn't work when I use the Wifi at home. My Mac works fine. On the Iphone it shows it's connected but it doesn't open any app. Anyone knows what to do? Thanks

    Ÿ. If you tap and hold the "Y" does it appear? If so, just slide your finger up to select.

  • It doesn't work when I press "transfer purchased items from ipod" and I don't know specidicly whitch item I need to transfer

    It doesn't work when I press "transfer purchased items from ipod" and I don't know specidicly whitch item I need to transfer.
    Whenever i press "transfer purchased items from ipod", itunes sync's for about 3 seconds, but I still can't install updates on the ipod without itues warning me about purchased items on the ipod, that aren't in the itunes library. I've tried folowing the steps in itunes help, but I can only find a step guide for when you know the specific item that needs transferring, and I donøt know that specific item.

    This Apple Tech Note explains the process:
    http://support.apple.com/kb/ht1848
    It will transfer all purchased items that the computer you are transferring to is authorised to play: you don't have to select the items.

  • I have recently upgraded to iPhone 5 from 4, call line identity doesn't work when call other iPhones.  It works when calling any other brand of cell phone.  Network carrier assures me problem is not on there side.  Any assistance will be appreciated.

    I have recently upgraded to iPhone 5 from 4, call line identity doesn't work when call other iPhones.  It works when calling any other brand of cell phone.  Network carrier assures me problem is not on there side.  Any assistance will be appreciated.

    I have recently upgraded to iPhone 5 from 4, call line identity doesn't work when call other iPhones.  It works when calling any other brand of cell phone.  Network carrier assures me problem is not on there side.  Any assistance will be appreciated.

  • Imessage doesn't work when i connect to my wifi only works on mobile date how do i fix this?

    Imessage doesn't work when i connect to my wifi only works on mobile date how do i fix this?

    1. Did you use Bootcamp Assistant?
    2. Did you build a USB with Windows 7 ISO and Bootcamp drivers?
    3. You should use a USB2.0 disk, not a USB3.0 disk (flash drive).
    4. What year is the Retina MBP?

Maybe you are looking for

  • IPhone 4 Connects, but Can't Surf Home Wireless Network

    Never had a problem with my 3G, and I'm using the same settings on the 4. Using a Linksys WCG200 wireless cable modem/router on Comcast. BTW, wi-fi works everywhere else. It is just on my home network that I'm having a problem. I've rebooted the rout

  • Living with the new Trial Software

    Microsoft, Most of my learning or study for certification is based on a home lab environment. I was just told that when requesting a trail of say Server 2012, that I am only going to be allowed one copy and that trial period is going to be 90 - 180 d

  • What's the Part Number for an IdeaPad S12 recovery disk?

    Hello, I have an IdeaPad S12 (NVidia Ion). The recovery partition is gone. What's the part number for the recovery disk? I mainly work with ThinkPad systems and Lenovo has an excellent part number system that covers just about every part you could im

  • Quick, easy ways to make images look better?

    What are the best ways to make images look a bit better? I shot my footage using a pretty bad camera, so quality already isn't the greatest, but what is the best way to make images look a bit more "movie-like"? The 3way color correstion is nothing fo

  • During patchset installation I am facing problem in relink stage

    Dear Experts. I am facing this problem during patchset installation. Oracle Database Version = 10.1.0.4 Patch = 10.1.0.5 OS = Oracle Linux 5 x64 bit Its seems I am missing some rpm, but I am unable to determine. Please help me. /bin/chmod 755 /app/or