Optimisation with placeholders?

I have high res images in image frames with drop shadow and wish to optimise with 1024 images. I selected the high res image and then made it a placeholder. I can now drag across a low res image to replace it. I am however wondering if this deletes the former image properly and reduces the file size?
Ken.

If images were all resized to 1024, Apple wouldn't have said this ablout 2048 in the tech note linked above:
Working with images
Resize, crop, and rotate images to the desired size and rotation before importing them into iBooks Author.
If you plan to view or preview your book primarily on an iPad without a Retina display, make sure standalone images, and images in Gallery widgets, are no wider than 1024 pixels. You should make Interactive Image widgets no wider than 2048 pixels.
The larger size is recommended for Interactive Image widgets, so that you can zoom in on an image and retain good quality.
It would seem obvious to simply not do all that work on the placeholder, and to wait until the final image was in place to tweak it in the Inspector, but it's beginning to sound like the work is being handled by different iBA users, perhaps handed off in stages, where the person adding the final images expects the tweaks to be done before the book comes to them - in that case, I can appreciate the workload, but without knowing it's details, I can't speculate how to deal with this part, sorry.
Ken

Similar Messages

  • Working with placeholders and templates in 10gR4

    I am new to 10gR4 features. Can someone help me in working with placeholders and templates in 10gR4. Is there a document available on that?
    This is what is did. I created a primary page which contains a contribution region for list of articles(dynamic list fragment). Next, I created a secondary page (hcsp file) which is designed to create/update new artcicles. I also added a placeholder before the contribution region for this article by name ArticleDetail.
    I was able to add new articles and work with them as usual like in 10gR3.
    But when I tried to access the contents of a particular article using wcm_place_holder service I am not able to see any contents.
    This is the url for the request
    http://hd-pratapm/ucm/idcplg?IdcService=WCM_PLACEHOLDER&siteId=TestSite&dataFileDocName=TESTCONTENTFILE&templateDocName=ArticleDetail
    where the TESTCONTENTFILE is the content id of the article data file and ArticleDetail is the name of the placeholder placed above article contribution region.
    I tried changing the value of templateDocName to content id of the article (TESTCONTENTFILE) and also tried the content id of eondary page file for article, but the same result. I am not able to see anything on the screen.
    Also tried the same with above values with placeholderDefinitionDocName instead of templateDocName parameter but no good.
    Anything wrong I am doing here?
    Regards,
    Pratap

    I tried something different and I am getting the response but the content is not html.
    This is what I tried
    http://hd-pratapm/ucm/idcplg?IdcService=WCM_PLACEHOLDER&dataFileDocName=TESTARTICLE&templateDocName=TESTARTICLE
    and I got the response which is xml data. I think it is the contributed data file for TESTARTICLE.
    What we are looking for is the html text for presenting the article directly on external sites. The documentation for WCM_PLACEHOLDER says that it should get html directly. I am not able to get it.
    This is the snippet of code of articleDetails.hcsp secondary page
    ================================================================================================
    <!--SS_BEGIN_SNIPPET(fragment1,2)--><!--$ssFragmentInstanceId="fragment1", ssIncludeXml("SS_FRAGMENTS_PLAIN", "fragments/fragment[@id='NavMultiHorizontal']/snippets/snippet[@id='2']/text()")--><!--SS_END_SNIPPET(fragment1,2)-->
    </p>
    <p> </p>
    <p><!--$wcmPlaceholder("QtelArticleDetail")--></p>
    <p>
    <!--SS_BEGIN_OPENREGIONMARKER(region1)--><!--$SS_REGIONID="region1"--><!--$include ss_open_region_definition --><!--SS_END_OPENREGIONMARKER(region1)-->
      <!--SS_BEGIN_ELEMENT(region1_element6)--><!--$ssIncludeXml(SS_DATAFILE,region1_element6 & "/node()")--><!--SS_END_ELEMENT(region1_element6)-->  </p>
    <p><!--SS_BEGIN_ELEMENT(region1_element2)--><!--$ssIncludeXml(SS_DATAFILE,region1_element2 & "/node()")--><!--SS_END_ELEMENT(region1_element2)--> </p>
    <p><!--SS_BEGIN_ELEMENT(region1_element3)--><!--$ssIncludeXml(SS_DATAFILE,region1_element3 & "/node()")--><!--SS_END_ELEMENT(region1_element3)--></p>
    <p><!--SS_BEGIN_ELEMENT(region1_element4)--><!--$ssIncludeXml(SS_DATAFILE,region1_element4 & "/node()")--><!--SS_END_ELEMENT(region1_element4)--></p>
    <p><!--SS_BEGIN_ELEMENT(region1_element5)--><!--$ssIncludeXml(SS_DATAFILE,region1_element5 & "/node()")--><!--SS_END_ELEMENT(region1_element5)-->
    <!--SS_BEGIN_CLOSEREGIONMARKER(region1)--><!--$include ss_close_region_definition --><!--SS_END_CLOSEREGIONMARKER(region1)-->
    ================================================================================================
    Can you please suggest what else needs to be done in order to get html repsonse from WCM_PLACEHOLDER service.
    Regards,
    Pratap

  • Action on cells with placeholders

    I'm rendering a report with help of Microsoft.ReportViewer.WebForms on a aspx site. Some cells have multiple values with placeholders. When using placeholders the action command doesn't seem to be rendered correctly, the cells aren't rendered as links. Have
    tried to use single values in the cells and then the links are working. The links are referring to another report.
    When I render the report in Visual Studio the links are working but not on the website.
    I need to have placeholders due to that the values in each cell needs to have different colors.
    The cells looks like:
    3 (red)
    5 (blue)
    8 (green)
    Does anyone have a clue how to make the action command to render properly?

    I'm still struggling with this problem. Is there any way to color a text value into different colors without using HTML tags? Like this:
    AAA BBB
    CCC

  • Prepared statement with placeholders - the order or the names are important

    Hi,
    I'll explain my question, using the example from the OCCI documentation.
    What if I do something like:
    <pre>
    // note the order
    stmt->setSQL("BEGIN countFruit(:2, :1); END:");
    stmt->setString(1, "Apples");
    stmt->setString(2, "Oranges");
    </pre>
    This will become
    <pre>
    BEGIN countFruit( 'Apples', 'Oranges' ); END
    </pre>
    or
    <pre>
    BEGIN countFruit( 'Oranges', 'Apples' ); END
    </pre>
    So, if the answer is:
    * *"the first one is correct"*, then - may I use whatever I want for placeholders (some strings, for example), just starting with ':' ?
    * *"the second one is correct"*, then:
    * * does this mean, that I can't use strings as placeholders (because setXXX does not take strings as first parameter, but a number - as position)
    * * should I use consequent numbers, or I may use whatever I want. I mean, is this valid: "BEGIN countFruit(:13, :666); END:". So, if it is, does this mean, that I should use setXXX( 13, ...) and setXXX( 666, ...), instead of setXXX(1, ...) and setXXX(2, ...) ?
    Sorry for the dummy questions, but I didn't see this explained in the doc (at least for 10g). And yes, I can test it, but this doesn't mean anything, it may be undefined behavior or server configuration, or whatever and I just want to be sure :)
    Thanks in advance.
    Best Regards,
    Kiril Kirov

    Looks like I have missed that.
    I'm not sure I understand the difference, when using SQL and PL/SQL. Here's what I get, please correct me if I'm wrong:
    For PL/SQL (for example - SP call), if I have
    <pre>
    BEGIN stored_procedure( :11, :22, :22, :33 ); END
    </pre>
    calling
    <pre>
    stmt->setString(3, "Apples");
    </pre>
    will set *"the third unique parameter"* - in this example, will replace ':33', right?
    If so, will executing
    <pre>
    stmt->setString(2, "Oranges");
    </pre> replace both ':22' placeholders?
    And for standard SQL query, it's just the nth position. For example:
    <pre>
    INSERT INTO table VALUES(:11, :22, :22, :33);
    </pre>
    calling
    <pre>
    stmt->setString(3, "Apples");
    </pre>
    will replace the second ':22', right? It will become something like:
    <pre>
    INSERT INTO table VALUES(:11, :22, 'Apples', :33);
    </pre>
    About the summary: that would mean, that
    <pre>
    stmt->setSQL("BEGIN countFruit(:13, :666); END");
    stmt->setString(1, "Apples");
    stmt->setString(2, "Oranges");
    </pre> is the correct way and it will be "translated" to:
    <pre>
    BEGIN countFruit( 'Apples', 'Oranges' ); END
    </pre>
    right?
    One more case, sorry..
    <pre>
    stmt->setSQL("BEGIN countFruit(:1, :2, :3, :3, :2 ); END");
    </pre>
    How to set the second ':2' ? If ONLY "scanned left to right" is important and it stops on match (does not scan ALL parameters), does this mean, that to set the second ':2', I should use
    <pre>
    stmt->setString(4, "Apples");
    </pre>
    ? Or it scans all placeholders and replaces the repeatable ones? In that case, I'll have to use
    <pre>
    stmt->setString(2, "Apples");
    </pre>
    to replace both ':2' ?
    Edited by: Kiril Kirov on Jan 24, 2012 3:36 PM

  • Large multiline text with placeholders?

    I am tasked with creating a PDF that has a dropdown control named "Company_Name". The values in the dropdown are:
    Companmy Alpha Blah
    Comp Baaa
    Industrial CompanyXYZ
    Comp U
    Underneath this dropdown control there needs to be a textbox with several placeholders and the text has to wrap neatly so it can be printed correctly. For example here is the text wht the placeholders:
    {Company_Name}Lorem ipsum dolor sit amet, {Company_Name}consectetur adipiscing elit. Duis ultricies tortor sit amet molestie congue. Vivamus faucibus, purus at varius placerat, augue eros condimentum enim, {Company_Name} eget feugiat.
    Is it possible to do this so the text will wrap nicely no matter how short or long the Company_Name value is?  Will Acrobat Pro do it, or will Adobe InDesign do it?
    Thanks for advice!

    It's possible to do it using a script that inserts the selected company name into the pre-defined string and then populates the text field with it. That string can contain line-breaks to make sure that it breaks where it needs to. This needs to be done in Acrobat, not in InDesign.

  • Optimiser with means of transport

    Hi Experts,
    Pls spend some time to understand the below requirement and the design.
    Requirement- there are two plants, P1 and P2. Material M moves from P1 to P2 using a train R. The train can move 2100 tonnes in one trip.It takes 2 hrs to go from P1 to P2, hence it can make only 6 round trips between P1 and P2(i.e. 12 single trips) in a day. Hence APO should create only 6 orders in a particular day with max of 2100 tonnes as quantity for each order.
    Master data-
    Plants- P1, P2
    Material-M
    Resource(train)- R(bucket resource)
    Tlane- P1-->P2
    There is one SNP planning book and there are two data views- daily and monthly
    System design
    Max lot size for M at P2 is maintained as 2100
    Max bucket capacity for the resource= 6*2100= 12,600
    Means of transport for T Lane P1-->P2 is maintained as 'All products'. Transportation duration is set as 2 hrs
    Product specific means of transport is maintained for M, with consumption as 12 Tonnes
    Results-
    There is a requirement of M at P2 for 12,800 Tonnes. Stock of M at P1 is 12,800 Tonnes
    When I run optimiser on monthly view- it creates 6 orders with 2100 qty and one order with 200 qty, but all on one day-violating the rule of 6 orders only in one day
    when I run optimiser on daily view- it creates 6 orders with 2100 qty in one day and one order of 200 qty on the next day
    Query-
    1.Why do we need prod spec means of transport when the means of transport is defined as 'All products'
    2. What is the use of maintaining consumption as 12 Tonnes
    3. If I just go by transportation duration of 2 hrs, so the train makes 24/2=12 single trips, or 6 round trips. Hence 6 orders should get created with 2100 tonnes each in a day. But this does not happen and no planning happens in this case
    4.Why do I get different planning results when I use daily and monthly bucket views
    Would be very helpful to analyse the design and the concepts if someone can give some pointer
    Regards
    Manotosh

    Hi Kaushik,
    Thank you so much for your prompt reply and help. However I still have some query.
    1.As per my understanding we do not actually need prod spec MOT when all prod incator is there.I think some older versions of optimizer do not consider all prod tlane (I am not too sure abt it).But if all the prods for a specific plant can not be transferred through same MOT then it is required.Also if the res comsumption and the cost is different then also it is required.
                 - Your justification to have a separate MOT is absolutely valid as long as we need different MOT for any reason(cost, duration etc). But here there is only one product M being transferred between P1 and P2.
    2. Resource capacity will define the capacity in terms of total transportation capacity and consumption is required to do the planning.Like if the consumption is not maintained the capacity becomes as infinite.So there will be more than 12600 tons transported.
               - We define the resource max capacity and the utilisation. If the utilisation is more than 100%, I understand that it will try to supply more than 12,600 tonnes. But here the utilisation is maintained as 100%. What will happen if I maintain consumption as 10 Tonnes or 10 BBL or anything other than 12 T as currently maintained?
    3.There is a difference between scheduling and capacity.When you say 2 hrs but parallaly another tran can also go and transportation can happen.But when you define resource and capacity then you restrict the same.This is constrain plng but that duration of 2 hrd will not put any contraints.
           - The transportation resource is assigned to the T Lane. Hence whenever the T Lane is used, only the same resource is used for transportation. Hence we can not have more than one resource(R) acting simultaneously.
    4.If you see the results are same only difference is the period.Check the resource capacity view.I think you can see the capacity planned correctly and also the monthly view check the strt and end date.
           - As per the concept, SNP does bucket planning. Hence it will consolidate all the demands in a bucket and would create orders for the qty equal to the demand qty either at the begining of the bucket or middle of the bucket or end of the bucket. It will split the orders based on lot size or any other parameters defined. Hence I am getting multiple orders with 2100 qty(Max lot size) on 1st of the month. But the resource capacity is overshot in this case.

  • SAP Texts with Placeholders

    Hi All,
    we have requirement in which we will be using SAP Texts as templates.
    The SAP Text body will have certain placeholders, which has to be filled at the runtime with data. So that the SAP text acts as a template and the data can be filled at runtime.
    For Eg: The sap text may contain something like
    "Request &Request_number& has been changed by &User_name&."
    The above string should be stored as sap text and the placeholders &Request_number& and &User_name& has to be replaced by supplied data.
    Is there any standard way to do that with sap texts?
    or I have to manually search throught the string and find place holders and replace them?
    Please advice.
    Thanks,
    Anand

    hi,
    I think the FM 'TEXT_SYMBOL_REPLACE' will solve your problem.
    Check below sample prog.
    Here is the sample Long Text/standard text which i used.
    *     Hi &v_lname& &v_fname&
    *       As per your records,you still need to pay the Amt towards Home loan.
           Plz pay at the earliest.
    *     Regards
         Credit Team
    Here  v_lname and v_fname are the place holders.
    The below is the program.
    data:  gt_line      TYPE STANDARD TABLE OF tline,
           gs_head      TYPE thead,
           gs_line      TYPE  tline.
    data : v_fname type char10,
           v_lname type char10.
          CALL FUNCTION 'READ_TEXT'
            EXPORTING
            CLIENT                        = SY-MANDT
              ID                            = 'LTXT'
              LANGUAGE                      = sy-langu
              NAME                          = 'WD00000000000000012516LTXT'
              OBJECT                        = 'WCDOC'
            ARCHIVE_HANDLE                = 0
            LOCAL_CAT                     = ' '
           IMPORTING
              HEADER                        = gs_head
            TABLES
              LINES                         = gt_line
          EXCEPTIONS
            ID                            = 1
            LANGUAGE                      = 2
            NAME                          = 3
            NOT_FOUND                     = 4
            OBJECT                        = 5
            REFERENCE_CHECK               = 6
            WRONG_ACCESS_TO_ARCHIVE       = 7
            OTHERS                        = 8
          IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
          v_fname = 'Lokesh'.
          v_lname = 'Reddy'.
      CALL FUNCTION 'TEXT_SYMBOL_REPLACE'
            EXPORTING
              ENDLINE                = 99999
              HEADER                 = gs_head
            INIT                   = ' '
            OPTION_DIALOG          = ' '
              PROGRAM                = 'ZLOK_TEST_FM_SAVE_TEXT'
              REPLACE_PROGRAM        = 'X'
              REPLACE_STANDARD       = ' '
              REPLACE_SYSTEM         = ' '
              REPLACE_TEXT           = ' '
              STARTLINE              = 1
          IMPORTING
            CHANGED                =
            NEWHEADER              =
            TABLES
              LINES                  = gt_line
    loop at gt_line into gs_line.
        write:/ gs_line-TDFORMAT,gs_line-TDLINE.
    endloop.
    *****End of the program..
    Here you can keep the FM 'TEXT_SYMBOL_REPLACE' in a desired internal table loop or select/end select statements to get the values of v_fname and v_lname dynamically. 
    Plz..acknowledge ..if this suffice ur requirement or not.
    Cheers
    Lokesh

  • Have storage optimised with Photo Library but need more space - How do I delete photos just off my MacBook Pro and not from other devices and icloud

    Hiya,
    I moved a 40GB file off my MacBook Pro to make room so that I could enable the iCloud Photo Library. I optimised the storage but during this process it used 10GB of space and so I cant now put back the file I took off my mac. I though that once I had optimised the storage I would gain space not loose it!. So i'm wondering how can I delete photos off my MacBook and not off all my devices and so I can get this 40 GB file back on ??
    Cheers

    Hi, that's how it works. photos in Photo Stream are these ones that actually exist on your Camera Roll. Photo Stream is an iClous service that helps you to share photos. Just think about Dropbox or any other cloud services, isn't it that you delete a file on your computer, then found the file no longer exist on your other devices?
    If you want to keep the photos while making them occupy less space, I suggest you try SafeEraser's Photo Compressor feature. It compress the photos and make it easy for you to keep them on your iPhone without losing much quality.

  • Placeholders with Time variables

    Hi,
    i am using DynamicSql.execute with placeholders (?).
    But, one of my parameters is a Time variable in Oracle BPM and I want to use this variable in my query (to execute a stored procedure) that waits for a smalldatetime (SQL server variable).
    When I try to put the Time variable in the execute procedure, a erros occurs , as follow:
    Log Estagio: java.text.SimpleDateFormat@8d55ee0fSaída - ContratoCanceladoExceção[BEA][SQLServer JDBC Driver]Unable to determine the type of the specified object.
    The code that I am using:
         String query = "exec NE_ESTAGIOS_INSERT ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?";
         Any [] parametros ;
         parametros[0]      = pintProtocolo;
         parametros[1]      = pintCodEmpresaCo;
         parametros[2]      = pintCodAluno;
         parametros[3]     = pintAno;
         parametros[4]     = pintSemestre;
         parametros[5]      = 5;//Estágio curricular é tipo 5. Como este processo só trata de estágio curricular então ele vai ficar com 5.
         parametros[6]      = pintCodEmpresa;
         parametros[7]      = null;
         parametros[8]      = pblnBolsaAuxilio;
         parametros[9]      = pdecValorBolsaAu;
         parametros[10]      = pblnAuxilioTrans;
         parametros[11]      = pdecValorTrans;
         parametros[12]      = pblnBeneficioAux;
         parametros[13]      = pdecBeneficioAux;
         parametros[14]      = pintSupervisor;
         parametros[15]      = pintCodSegurador;
         parametros[16]      = pintCodApolice;
         parametros[17]      = pintCodOrientado;
         parametros[18]      = ptmeInicioVigenc.getDateFormat(parts : Time.DATE_ONLY, style : Time.LONG);
         parametros[19]      = ptmeFimVigencia.getDateFormat(parts : Time.DATE_ONLY, style : Time.LONG);
         parametros[20]      = pintTotalMensal;
         parametros[21]      = strAtividadesEstagio;
         parametros[22]      = strObjetivosEstagio;
         parametros[23]      = 2;//por que nesta parte só chega se o estágio tiver sido cancelado.
         DynamicSQL.execute(sentence : query, implname : "AcademicoEstagio", inParameters: parametros);
    Does anybody please help me?
    Thanks
    Marcos

    Hi,
    Use -and in your afternoon if test.
    Don't retire TechNet! -
    (Don't give up yet - 12,950+ strong and growing)

  • How can I use EOS 6D RAW files with Aperture 3.2.4?

    The EOS 6D RAW support for Aperture requires Aperture 3.4 or later. I tried to update to Aperture 3.4 but that requires OSX 10.8.3. I am stuck with OSX 10.6.8 for a while because I use Adobe CS5.5 and it is not compatable with newer OSX. So i do not seem to have a path for 6D RAW support. I can use my EOS 20D RAW files just fine. What is it about the 6D RAW file that necessitates OSX 10.6.8 or Aperture 3.4?

    The common way is to try converting to DNG and then use the DNGs with Aperture. The drawback (other than the format conversion) is you lose camera specific optimisations with the DNG (mostly noise reduction tweaks for specific ISO values and colour tweaks).
    In the past it would have been easy to edit a few config files to get Aperture to recognise new cameras with similar sensor tech as existing cameras, but this data is now encoded so can't be changed. It is a bit frustrating when you know there is nothing special about the sensor and Aperture would be able to process the data just fine.
    Andy

  • IPhone calendar will not sync with iCal on Mac

    Calendar entries on my iPhone 4S/iOS 5.1 will not sync with iCal on my MacBook Pro 2.4/10.6.8, but it will the other way around. I have tried:
    Restarting iPhone
    Re-setting sync services (holding down Option key and clicking on Sync icon in menu bar)
    Changing which calendar to sync with (iTunes 10.6.1)
    This may have something to do with having to do a complete Time Machine backup after a Volume Optimisation with Tech Tool Pro rendered my startup disk as un-bootable....???
    I do not use Mobile Me or iCloud (can't with Snow Leopard...) and it is a straight USB connection.
    I consider myself a medium expert, with no programming/Terminal skills whatsoever.
    Any help is appreciated.
    Manolis

    Thanks. There is another thread that shares a solution that involves deleting ical Library cache files and Preference files.  I"ll see if that works.  ICloud shouldn't be a factor in my case since I don't use it and it's "off" in Preferences. I am encouraged that I don't need to use it to fix this issue based on other's experiences, but we'll see!

  • Help with PDF creation using CFDOCUMENT / iText

    Hi everyone,
    Finally made the jump to CF7 after sticking with 5 for way
    too long and now have an urgent need to generate PDF.
    <cfdocument> seems to do better than anything else at
    converting HTML styled with CSS, but falls short in a few
    fundamental areas. What I need to do ( to name 3) is:
    * Generate a table of contents - including page numbers
    * Have far greater control over the headers / footers
    * Swap page orientation mid-document
    I can get round the page orientation thing by creating each
    section as an individual PDF and gluing them back together using
    PaulH's excellent PDF concatenation code. Using <cfdocument>
    I can reserve space for the headers / footers, and add a table of
    contents with placeholders for the numbers.
    Now, my question: Will I be able to rewrite all the page
    numbers, finish off the table of contents and headers / footers
    using iText? i.e. traverse the concatenated PDF file, rewrite the
    headers / footers, work out the page numbers and rewrite the TOC?
    I'm not asking for sample code or even a how to - just a
    heads-up from some who knows iText well and can quickly say whether
    this is feasible.
    I hope it is because my alternative approach is to go down
    the xsl-fo route which I suspect will be more effort in the long
    run.
    Thanks
    PJ

    as alternative solution you might check activepdf products.
    www.activepdf.com
    cheers
    kim

  • Photo iCloud optimisation not working.

    Hi, here's the scenario. I had 270 ish photos viewable on my ipad while using the optimise with iCloud storage feature and the storage on my iPad was being optimised. I had roughly about 9GB spare . A few days ago I deleted all my iCloud photos and videos and reuploaded them again (wanted to manually remove duplicate photos). Now when I view my iPad on iTunes the spare storage space is about 3GB. In the settings I had optimised between iCloud and iPad checked and I've disabled and enabled this feature a few times incase that was the problem, unfortunately though the storage no longer seems to be optimised and now there's much less space on my iPad. If anyone has any ideas to fix the optimisation that would be great as it's always nice to have space to stockpile movies for a long journey, thanks.

    Toggling the setting won't help, optimisation takes place when the items are first added or when you start to run out of space on your device. Are you also aware that if you open a photo once it's been optimised it will download the full resolution version which will stay that way until you start to run out of space.

  • Comparing DateTime in Placeholders

    Hi there,
    I am using Query with PlaceHolders to compare dates. But its giving error as below
    “Syntax error converting datetime from character string”
    My query is,
    Select fieldname from TableName where LastUpdated=’$Date$’
    Here LastUpdated (say 2005-01-01 00:00:00.0) is SQL DateTime field and I am mapping Date (say 2005-01-01) sent from RFC in the Key parameter ‘Date’. I also tried by concatenating ‘ 00:00:00.0’ to the given ‘Date’.
    Any help about this would be appreciated.Thanks.
    Sagar

    Try something along the lines of:
    select *
    from   your_table_name
    where your_column_name between to_date('8/22/2013  8:24:28 AM', 'mm/dd/yyyy hh:mi:ss AM')
                                                 and to_date('8/22/2013  8:44:28 AM', 'mm/dd/yyyy hh:mi:ss AM');
    so, when you update, it'll be:
    update your_table_name
    set your_column_name = whatever_value_you_need_it_to_be
    where your_column_name between to_date('8/22/2013  8:24:28 AM', 'mm/dd/yyyy hh:mi:ss AM')
                                                 and to_date('8/22/2013  8:44:28 AM', 'mm/dd/yyyy hh:mi:ss AM');

  • Complete Success with iWeb 08

    Well after reading all the Horror stories here I was mucho frightened! So I of course backed up my Domain document although I knew I have a mirror Cloned using CCC thats in my Tower. The 'conversion' completed without a hitch till after the progress bar was finished. Then it Crashed and asked to reopen. When I reopened it Crashed again, so the next effort I hit close to let the app properly cycle and button itself up.
    Next attempt it did reopen and stayed opened. So seeing all those 'Red" folders (6 photo pages) I hit the Publish Button on the bottom of the screen. It proceeded to do its thing, but I noticed that now there was a progress bar instead of the little Pie indicator to the right of the Site name. I simply waited.. Then the Pie progress indicator did Indeed appear, and I saw on my Net Monitor app, that the site was now uploading. It seemed to be finished but the Circle of the indicator was still appearing - So I WAITED some more and after a while the empty Circle disappeared and I got a Dialog Box that told me it was complete!
    So there were 2 instances that I thought perhaps the import/conversion process was Done when in fact IT WAS NOT. I could have probably Tanked my entire site had I not waited patiently. So buyer Beware. Allow the procedures to COMPLETE, as I bet many will not, and end up with an incomplete conversion, Hence not working. I thank God I had the good sense or fortune to wait and was relieved to get a Dialog Box that told me it was completed and asked me If I wanted to close or Visit my site. I copied the web address from that Dialog Box and closed the iWeb app, opened Safari pasted the address and my full site was there. ( It opened with placeholders but in a few seconds the pictures all populated) Whew.. YMMV moral, be patient and wait a few minutes when you think its done, it may Not Be.
    http://web.mac.com/eugenefields
    Message was edited by: mactechconsulting

    Glad to hear that it worked for you. But I am really starting to wonder where I went wrong then, because I did not use third-party anything with iWeb, and I can't update my '06 domain file. iWeb just freezes, shows as "Not responding" and in red in the Force Quit window. I don't believe there's any point in trying to wait that out.
    And not only that, but when starting over with a fresh domain file, iWeb '08 crashes or freezes all the time too. I'm a big Apple fan, and I haven't lost anything important because I backed it all up and have a second Mac to rely on, but seriously, this is bad. It's just bad. I can't come up with any excuses for this one (or the stripped-down new iMovie, but I digress). I have a straightforward site -- based on "modern" template -- I don't understand why the new version of iWeb can't read it. I understand even less why iWeb '08 would be crashing with a brand new domain file.
    My site is here: http://web.mac.com/mousie/iWeb/Site/Home.html
    If anyone can see any reason why I may be having these problems, please let me know. I've tried all the tricks to "get it to work" that I could find on this forum. Thanks.

Maybe you are looking for

  • How can I add an image to a dowload, specialy if I bougth from I tunes?

    Hello How can I add an image to a dowload, specialy if I bougth from I tunes?

  • Was there an upgrade that blocks incoming email ?

    i stopped receving emails yesterday afternoon. i've spoken with my ISP and its not a server problem. might be software related. i do not believe i have an action firewall (firewall is off under system preferences/sharing) but dont know what "Network

  • Commitments for a Blanket PO

    Hi, I would really appreciate it if someone could take a few minutes out to try and explain in simple terms how to manage this business scenario: Legal Fees - will be billed every month, variable value: can be 100, 1000, etc. but never more than 2000

  • How to update vbak,vbap in MV45AFZZ

    DATA:  lw_WZEIT TYPE marc-WZEIT,             lw_date  type sy-datum. LOOP at XVBAP where PSTYV = 'ZRET'. SELECT single WZEIT          into lw_WZEIT          from marc         where matnr = xvbap-matnr. IF sy-subrc = 0.     lw_date = lw_WZEIT + sy-dat

  • Log off error on mac

    I have an application developed in Air 1.0. When I try to log off/restart/shutdown my mac with the Air application running, I get the below error message. Does anyone have the same issue? The application "App name" canceled logout. To try again, quit