How do I only convert a specific amount of pages

I have a document that shows 1100 plus pages when in reality it only is 10 pages.  How do I convert the 10 pages?  Thanks for the help

Hi Ted,
You'll need to use the Export function of your CreatePDF service. Please check out this handy guide for doing so: http://forums.adobe.com/docs/DOC-2412
Please let us know if you have any questions.
Thanks,
David

Similar Messages

  • How to repreat only Group Header #2b in all pages?

    Hi
    Is there any way to repreat only Group Header #2b in all pages?
    When I select repeat group header in all pages, it repeating Group Header #2a & Group Header #2b.
    how to repeat only Group Header #2b?
    Thank you

    You can conditionally suppress group headers.
    Set the headers to repeat on each page, and then to have group header 2a only printed once while group header2b repeats on all pages then contionally suppress group header 2a with
    inrepeatedgroupheader  // suppresses repeated headers
    Note you can also suppress a header the first time header is printed with
    not(inrepeatedgroupheader)  //suppresses the first time
    Edited by: Debi Herbert on Mar 17, 2011 3:59 PM

  • I am new to Numbers and can not figure out how to only print a section of my rather large spreadsheet.  How do I only print a specific page?

    How do you print only a page or section of a spreadsheet in Numbers?

    Hi Kirsten,
    Copy the section you want to print, Insert a new Sheet into your document, Paste the copied contents into the Table that comes with that sheet. Print that sheet.
    If this will be a regular need, you might consider building a breakout table to contain the data you'll print. A search for "breakout" should bring up some examples (or check some of the "More Like This" linke to the right.
    Numbers doesn't support a means of printing a selected section of a document, probably because the design model is of a document containing many small specific purpose tables, rather than the single monolithic table that is the model in other spreadsheet applications.
    Regards,
    Barry

  • Navigate to a specific row on page load

    i a, working on JDeveloper 11.1.2.3
    how could i navigate to a specific row on page load
    Regards

    inside task flow insert method call before your page and inside the method you can set the row

  • How to set a MessageTextInput to be Read Only for a specific row?

    Hi,
    In Benefits Self Service, particularly the Update Beneficiaries page, it lists all your eligible Beneficiaries including yourself. The table has the following columns displayed for each beneficiary: Beneficiary, Relationship, Social Security Number, Primary %, Contingent %, Clear. This is the page where you allocate the Primary % and the Contingent %. The Primary % and Contingent % are MessageText Input.
    We have a requirement that we wouldn't want an employee to designate himself/herself as a beneficiary. However, the employee is being listed as a beneficiary along with all the other eligible beneficiaries. Oracle says it is an intended functionality to include the employee in the beneficiary. Is there a way thru Controller Object extension to set the Primary % and Contingent % as Read Only but only for the row corresponding to the employee to prevent the employee from accidentally allocating himself/herself as a beneficiary.
    I know there is the SPEL functionality but this requires me to add a transient attribute to the View Object corresponding to that table. But everytime I make a change to the View Object either by adding a transient attribute or some other changes, I end up getting an error on the standard Relation attribute of that view object. The error is something like "Relation set attribute failed for View Object". I cannot get pass this error and I'm not sure what's causing this. I see other people in this forum have encountered the same problem when extending view objects but no specific solution was offered nor any clear explanation of the cause.
    So I thought if there's any way this could be done thru Controller Object extension. If so, please let me know how. The challenge for me I think is finding the bean corresponding to those Message Text Input but only for a specific row in the table.
    Thanks,
    Ronaldo

    Hi,
    I also tried extending the View Object but without changing anything to the SQL so it is exactly the same as the standard view object but I still get the "Attribute set for Relation in view object BeneficiaryPeopleVO1 failed". Based from this, extending the view object whether any change has been made or not affects the standard transient Relation attribute.
    Here is the standard XML definition of the View Object if anyone is curious
    <ViewObject
    Name="BeneficiaryPeopleVO"
    BindingStyle="Oracle"
    CustomQuery="true"
    RowClass="oracle.apps.ben.selfservice.enrollment.server.BeneficiaryPeopleVORowImpl"
    ComponentClass="oracle.apps.ben.selfservice.enrollment.server.BeneficiaryPeopleVOImpl"
    MsgBundleClass="oracle.jbo.common.JboResourceBundle"
    FetchMode="FETCH_AS_NEEDED"
    FetchSize="10"
    UseGlueCode="false" >
    <SQLQuery><![CDATA[
    SELECT pcr.person_id person_id,
    pen.prtt_enrt_rslt_id prtt_enrt_rslt_id,
    con.first_name ||' '||con.last_name || ' ' || con.suffix Beneficiary,
    con.national_identifier Ssn,
    sum(decode(pbn.prmry_cntngnt_cd,'PRIMY',pbn.pct_dsgd_num,0)) primary_pct,
    sum(decode(pbn.prmry_cntngnt_cd,'CNTNGNT',pbn.pct_dsgd_num,0)) contingent_pct,
    con.person_id bnf_person_id,
    con.business_group_id,
    pen.per_in_ler_id,
    pbn.pl_bnf_id pl_bnf_id,
    pbn.object_version_number object_version_number,
    pbn.effective_start_date,
    pcr.contact_type contact_type,
    con.full_name beneficiary_full_name,
    sum(decode(pbn.prmry_cntngnt_cd,'PRIMY',pbn.pct_dsgd_num,0)) Db_Primary_pct,
    sum(decode(pbn.prmry_cntngnt_cd,'CNTNGNT',pbn.pct_dsgd_num,0)) db_contingent_pct,
    DECODE(pbn.pl_bnf_id, null, 'DeleteIconDisabled', 'DeleteIconEnabled') delete_switcher,
    pen.pl_id pl_id,
    pen.oipl_id oipl_id,
    nvl((select 'Y' from dual where (to_date(:1 , 'rrrr/mm/dd') between
              nvl(pcr.date_start,to_date(:2 , 'rrrr/mm/dd')) and
              nvl(pcr.date_end,to_date(:3 , 'rrrr/mm/dd'))) and
              (pil.lf_evt_ocrd_dt <= nvl(con.date_of_death,pil.lf_evt_ocrd_dt))), 'N') rel_exists_flag
    FROM per_people_f con,
    per_contact_relationships pcr,
    ben_pl_bnf_f pbn,
    ben_prtt_enrt_rslt_f pen,
         ben_per_in_ler pil
    WHERE pcr.personal_flag = 'Y'
    AND (pbn.pl_bnf_id is not null or
    (to_date(:4 ,'rrrr/mm/dd') between
    nvl(pcr.date_start,to_date(:5 ,'rrrr/mm/dd'))
    AND nvl(pcr.date_end,to_date(:6 ,'rrrr/mm/dd'))
              and pil.lf_evt_ocrd_dt <= nvl(con.date_of_death,pil.lf_evt_ocrd_dt)))     --Bug 4297137  
    AND pcr.contact_person_id = con.person_id
    and pen.person_id = pcr.person_id
    AND pbn.bnf_person_id (+) = con.person_id
    AND to_date(:7 ,'rrrr/mm/dd') between pbn.effective_start_date (+)
    AND pbn.effective_end_date (+)
    AND pcr.person_id = :8
    and pen.prtt_enrt_rslt_id = :9
    and to_date(:10 , 'rrrr/mm/dd') between con.effective_start_date and con.effective_end_date
    and to_date(:11 , 'rrrr/mm/dd') between pen.effective_start_date and pen.effective_end_date
    and pil.per_in_ler_id = pen.per_in_ler_id
    and pil.per_in_ler_stat_cd NOT IN('VOIDD', 'BCKDT')
    and pbn.prtt_enrt_rslt_id (+) = :12
    and ((to_date(:13 ,'rrrr/mm/dd') between
    nvl(pcr.date_start,to_date(:14 ,'rrrr/mm/dd')) and
    nvl(pcr.date_end,to_date(:15 ,'rrrr/mm/dd'))) or
    ((pcr.date_start = (select max(pcr2.date_start)
    from per_contact_relationships pcr2
    where pcr2.contact_person_id = pcr.contact_person_id
    and pcr2.person_id = pcr.person_id
    and pcr2.personal_flag = 'Y')) and
    not exists (select null
    from per_contact_relationships pcr3
    where pcr3.contact_person_id = pcr.contact_person_id
    and pcr3.person_id = pcr.person_id
    and pcr3.personal_flag = 'Y'
    and to_date(:16 ,'rrrr/mm/dd') between
    nvl(pcr3.date_start,to_date(:17 ,'rrrr/mm/dd'))
    and nvl(pcr3.date_end,to_date(:18 ,'rrrr/mm/dd')))
    and (pbn.pl_bnf_id is null or
    exists (select null from ben_per_in_ler pil2
    where pil2.per_in_ler_id = pbn.per_in_ler_id
    and pil2.per_in_ler_stat_cd not in ('VOIDD','BCKDT')))
    GROUP BY pcr.person_id,
    pen.prtt_enrt_rslt_id,
    con.last_name,con.first_name,con.suffix,
    con.full_name,
    con.national_identifier,
    pcr.contact_type,
    con.date_of_birth,
    con.person_id,
    con.business_group_id,
    pen.per_in_ler_id,
    pl_bnf_id,
    pbn.object_version_number,
    pbn.effective_start_date,
    pen.pl_id,
    pen.oipl_id,
              pcr.date_start,
              pcr.date_end,
              pil.lf_evt_ocrd_dt,
              con.date_of_death
    union
    SELECT to_number(null) person_id,
    pen.prtt_enrt_rslt_id prtt_enrt_rslt_id,
    con.first_name ||' '||con.last_name || ' ' || con.suffix Beneficiary,
    con.national_identifier Ssn,
    sum(decode(pbn.prmry_cntngnt_cd,'PRIMY',pbn.pct_dsgd_num,0)) primary_pct,
    sum(decode(pbn.prmry_cntngnt_cd,'CNTNGNT',pbn.pct_dsgd_num,0)) contingent_pct,
    con.person_id bnf_person_id,
    con.business_group_id,
    pen.per_in_ler_id,
    pbn.pl_bnf_id pl_bnf_id,
    pbn.object_version_number object_version_number,
    pbn.effective_start_date,
    'SLF' contact_type,
    con.full_name beneficiary_full_name,
    sum(decode(pbn.prmry_cntngnt_cd,'PRIMY',pbn.pct_dsgd_num,0)) Db_Primary_pct,
    sum(decode(pbn.prmry_cntngnt_cd,'CNTNGNT',pbn.pct_dsgd_num,0)) db_contingent_pct,
    DECODE(pbn.pl_bnf_id, null, 'DeleteIconDisabled', 'DeleteIconEnabled') delete_switcher,
    pen.pl_id pl_id,
    pen.oipl_id oipl_id,
    'Y' rel_exists_flag
    FROM per_people_f con,
    ben_pl_bnf_f pbn,
    ben_prtt_enrt_rslt_f pen,
         ben_per_in_ler pil
    WHERE
    pbn.bnf_person_id (+) = con.person_id
    AND to_date(:19 ,'rrrr/mm/dd') between pbn.effective_start_date (+)
    AND pbn.effective_end_date (+)
    AND con.person_id = :20
    and con.person_id = pen.person_id
    and pen.prtt_enrt_rslt_id = :21
    and to_date(:22 , 'rrrr/mm/dd') between con.effective_start_date and con.effective_end_date
    and to_date(:23 , 'rrrr/mm/dd') between pen.effective_start_date and pen.effective_end_date
    and pil.per_in_ler_id = pen.per_in_ler_id
    and pil.per_in_ler_stat_cd NOT IN('VOIDD', 'BCKDT')
    and (pbn.pl_bnf_id is not null or pil.lf_evt_ocrd_dt <= nvl(con.date_of_death,pil.lf_evt_ocrd_dt))     --Bug 4297137
    and pbn.prtt_enrt_rslt_id (+) = :24
    and (pbn.pl_bnf_id is null or
    exists (select null from ben_per_in_ler pil2
    where pil2.per_in_ler_id = pbn.per_in_ler_id
    and pil2.per_in_ler_stat_cd not in ('VOIDD','BCKDT')))
    GROUP BY pen.prtt_enrt_rslt_id,
    con.last_name,con.first_name,con.suffix,
    con.full_name,
    con.national_identifier,
    con.date_of_birth,
    con.person_id,
    con.business_group_id,
    pen.per_in_ler_id,
    pl_bnf_id,
    pbn.object_version_number,
    pbn.effective_start_date,
    pen.pl_id,
    pen.oipl_id
    ORDER BY 3,14
    ]]></SQLQuery>
    <DesignTime>
    <Attr Name="_isCodegen" Value="true" />
    <Attr Name="_version" Value="9.0.3.13.75" />
    <Attr Name="_CodeGenFlagNew" Value="36" />
    <Attr Name="_rowSuperClassName" Value="oracle.apps.fnd.framework.server.OAPlsqlViewRowImpl" />
    <Attr Name="_objectSuperClassName" Value="oracle.apps.fnd.framework.server.OAPlsqlViewObjectImpl" />
    </DesignTime>
    <ViewAttribute
    Name="PersonId"
    IsQueriable="false"
    IsPersistent="false"
    Precision="15"
    Scale="0"
    Type="oracle.jbo.domain.Number"
    AliasName="PERSON_ID"
    ColumnType="$none$"
    Expression="&#39;See the SQL...&#39;"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="PrttEnrtRsltId"
    IsQueriable="false"
    IsPersistent="false"
    Precision="15"
    Scale="0"
    Type="oracle.jbo.domain.Number"
    AliasName="PRTT_ENRT_RSLT_ID"
    ColumnType="$none$"
    Expression="&#39;See the SQL...&#39;"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="Beneficiary"
    IsQueriable="false"
    IsPersistent="false"
    Precision="332"
    Type="java.lang.String"
    AliasName="BENEFICIARY"
    ColumnType="$none$"
    Expression="&#39;See the SQL...&#39;"
    SQLType="VARCHAR" >
    </ViewAttribute>
    <ViewAttribute
    Name="Ssn"
    IsQueriable="false"
    IsPersistent="false"
    Precision="30"
    Type="java.lang.String"
    AliasName="SSN"
    ColumnType="$none$"
    Expression="&#39;See the SQL...&#39;"
    SQLType="VARCHAR" >
    </ViewAttribute>
    <ViewAttribute
    Name="PrimaryPct"
    IsQueriable="false"
    IsPersistent="false"
    Precision="15"
    Type="oracle.jbo.domain.Number"
    AliasName="PRIMARYPCT"
    ColumnType="$none$"
    Expression="&#39;See the SQL...&#39;"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="ContingentPct"
    IsQueriable="false"
    IsPersistent="false"
    Precision="15"
    Scale="0"
    Type="oracle.jbo.domain.Number"
    AliasName="CONTINGENTPCT"
    ColumnType="$none$"
    Expression="&#39;See the SQL...&#39;"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="BnfPersonId"
    IsQueriable="false"
    IsPersistent="false"
    Precision="15"
    Scale="0"
    Type="oracle.jbo.domain.Number"
    AliasName="BNFPERSONID"
    ColumnType="$none$"
    Expression="&#39;See the SQL...&#39;"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="BusinessGroupId"
    IsQueriable="false"
    IsPersistent="false"
    Precision="15"
    Scale="0"
    Type="oracle.jbo.domain.Number"
    AliasName="BUSINESSGROUPID"
    ColumnType="$none$"
    Expression="&#39;See the SQL...&#39;"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="PerInLerId"
    IsQueriable="false"
    IsPersistent="false"
    Precision="15"
    Scale="0"
    Type="oracle.jbo.domain.Number"
    AliasName="PERINLERID"
    ColumnType="$none$"
    Expression="&#39;See the SQL...&#39;"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="PlBnfId"
    IsQueriable="false"
    IsPersistent="false"
    Precision="15"
    Scale="0"
    Type="oracle.jbo.domain.Number"
    AliasName="PL_BNF_ID"
    ColumnType="$none$"
    Expression="PL_BNF_ID"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="ObjectVersionNumber"
    IsQueriable="false"
    IsPersistent="false"
    Precision="9"
    Scale="0"
    Type="oracle.jbo.domain.Number"
    AliasName="OBJECT_VERSION_NUMBER"
    ColumnType="$none$"
    Expression="OBJECT_VERSION_NUMBER"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="EffectiveStartDate"
    IsQueriable="false"
    IsPersistent="false"
    Type="oracle.jbo.domain.Date"
    AliasName="EFFECTIVE_START_DATE"
    ColumnType="$none$"
    Expression="EFFECTIVE_START_DATE"
    SQLType="DATE" >
    </ViewAttribute>
    <ViewAttribute
    Name="ContactType"
    IsQueriable="false"
    IsPersistent="false"
    IsNotNull="true"
    Precision="30"
    Type="java.lang.String"
    AliasName="CONTACT_TYPE"
    ColumnType="$none$"
    Expression="CONTACT_TYPE"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="30" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="BeneficiaryFullName"
    IsQueriable="false"
    IsPersistent="false"
    Precision="240"
    Type="java.lang.String"
    AliasName="BENEFICIARY_FULL_NAME"
    ColumnType="$none$"
    Expression="BENEFICIARY_FULL_NAME"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="240" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="DbPrimaryPct"
    IsQueriable="false"
    IsPersistent="false"
    Type="oracle.jbo.domain.Number"
    AliasName="DB_PRIMARY_PCT"
    ColumnType="$none$"
    Expression="DB_PRIMARY_PCT"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="DbContingentPct"
    IsQueriable="false"
    IsPersistent="false"
    Type="oracle.jbo.domain.Number"
    AliasName="DB_CONTINGENT_PCT"
    ColumnType="$none$"
    Expression="DB_CONTINGENT_PCT"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="Relation"
    IsQueriable="false"
    IsPersistent="false"
    Type="java.lang.String"
    AliasName="Relation"
    ColumnType="$none$"
    SQLType="VARCHAR" >
    </ViewAttribute>
    <ViewAttribute
    Name="DeleteSwitcher"
    IsPersistent="false"
    Precision="30"
    Type="java.lang.String"
    AliasName="DeleteSwitcher"
    ColumnType="VARCHAR2"
    Expression="DeleteSwitcher"
    SQLType="VARCHAR" >
    </ViewAttribute>
    <ViewAttribute
    Name="PlId"
    IsPersistent="false"
    Precision="15"
    Scale="0"
    Type="oracle.jbo.domain.Number"
    AliasName="PlId"
    ColumnType="VARCHAR2"
    Expression="PlId"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="OiplId"
    IsUpdateable="false"
    IsPersistent="false"
    Precision="15"
    Scale="0"
    Type="oracle.jbo.domain.Number"
    AliasName="OiplId"
    ColumnType="VARCHAR2"
    Expression="OiplId"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="RelExistsFlag"
    IsQueriable="false"
    IsPersistent="false"
    Precision="30"
    Type="java.lang.String"
    AliasName="REL_EXISTS_FLAG"
    ColumnType="VARCHAR2"
    Expression="REL_EXISTS_FLAG"
    SQLType="VARCHAR" >
    </ViewAttribute>
    </ViewObject>
    Thanks,
    Ronaldo

  • How can I make a pdf book with "camera to pdf" option on phone? I can only convert one pic at a time

    How can I make a pdf book (single pdf file with several pages)  with "camera to pdf" option on phone? I can only convert one pic at a time. ( Or )how can I attach all those pictures converted pdf's into one pdf file which obviously results in to a single pdf file with several pages in it ?

    Adobe Reader on the iPhone is a PDF reading app. It's not a creation app.
    You need to get an app like Pages which is intended for page layout. It can place pictures from the phone and export PDF.

  • How do I set up a specific playlist for songs so only those sync on A-TV??

    I have a huge number of songs on my Itunes library and I don't want the Apple TV (A-TV) to use so much space for all those songs - I prefer to save it for my video and movies. How can I set up a specific play list on Itunes for A-TV and then when I sync my A-TV - only that playlist goes over.
    Hopefully someone has an idea for me. Hope everyone had a great holiday.
    Skip

    Dear Winston,
    Thanks so much. It seems much easier after reading it. I did not have those tabs originally which was confusing... Once I clicked the correct preferences, the tabs came up. Now I am resyncing everything which will take time but I see it working.
    Thanks for your help Mr. Churchill....
    Skip

  • How to view only specific authentication requests in access tracker

    Requirement:
    How to view only "Healthy/Unhealthy" requests from a specific Webauth service.
    Solution:
    If we have more than one Webauth service (based on conditions such as Device type or NAS IP or posture status etc) and we need only Healthy/Unhealthy requests from a specific service in access tracker for administrative use; we need to create a custom Data filter.
    Configuration:
    Below are the steps to achieve the same:
          Navigate to Monitoring > Data filters > Click on "Add" option to create a new filter
          Specify a name on the "Filter" tab
          Select the "Rule" tab to specify the unique condition (to filter the access tracker request)
          Create the below conditions: 
                     ( Commonystem-Posture-Token CONTAINS Healthy ) 
                     -   AND   -   ( Commonervice CONTAINS Windows-health-check )
          5.        Save this filter
    Now we can use this Data filter in access tracker to only view Healthy Webauth requests from "Windows-health-check" service.
    Verification
    So now we can verify the output by looking at the access tracker. 
    At present we can see "Eight" webauth requests in access tracker. Now we want to see only Healthy web-auth request from "Windows-health-check" service.
    We change the data filter to the Custom "healthy-filter" and now only see one request in access tracker as per our requirement.

    Hi Vignesh,
    ANy luck on this ? I am trying the almost same thing...and stuck at same point.
    Please let us know if you have any more information.

  • How to impdp data only into a specific schema

    Hello,
    How to impdp Tables and Materialized Views only into a specific schema. Also, how to exclude certain tables in particular schemas from being imported. Thank you.

    Pl Check the link
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_import.htm#i1007865
    Thanks

  • The pdf file that i am converting has multiple pages but the conversion only exports the 1st page into excel.  How do i get the product to include all pages on multiple sheets?

    Hi,
    The pdf file that I am converting has multiple pages but the conversion only exports the 1st page into excel.  How do i get the product to include all pages on multiple sheets?

    Hi christinek,
    Can you please tell me how the PDF that you're converting was created? Sometimes, PDF files created by third-party PDF generators (that is non-Adobe applications), don't contain all the tags and file information necessary to ensure a proper conversion to Excel. There are no settings that you can change in ExportPDF to adjust how the file is imported.
    You can tell how the PDF was created by choosing File > Properties in Reader and looking for the PDF Producer on the Description tab. If the PDF was created by a third-party, it just may not be written to spec. Please see Support Policy for PDF Files created by non Adobe applications.
    Best,
    Sara

  • How to block email attachments only from a specific domain?

    Using C370 CISCO IronPort How do I block email attachments only from a specific domain?

    Hi Daniel,
    In order to achieve this, you have three options:
    1. Using a new Incoming Mail Policy
    - Create a new Incoming Mail Policy and define that domain as sender in policy members.
    - Then create an Incoming Content Filter with a condition to match specific file info (for example: filetype, name, size, mime type, etc.)
    - Define an action (quarantine, bounce, drop, etc.)
    - Enable this filter in newly created Incoming Mail Policy
    2. Using existing Incoming Mail policies
    - Create a new Incoming Content Filter with condition to match sender address containing that domain.
    - Add another condition to match specific file info (for example: filetype, name, size, mime type, etc.)
    - Use "Apply Rule" as "Only if all conditions match"
    - Define an action (quarantine, bounce, drop, etc.)
    - Enable this Content Filter in all Incoming Mail Policies.
    3. Using Message Filters
    - From CLI -> filters add a new message filter like below:
    block_attchment_example_com:
    if (mail-from == "(?i)example.com$")
        if (attachment-filetype == "exe")
            drop();
    - Please replace the mail-from domain with the actual domain.
    If you wish to block all attachments, you can chose attachment size rule in all of above three options with a really smaller attachment size, this will result in matching messages that has an attachment.
    Hope this will help.
    Rehan

  • How to update cost related condition type amount in sales order without disturbing other condition types.

    Hi ,
    How to updae only one item condition  ZYV0 value in sales order. If I can see we have several options from pricing type to update condition types but here My requirement is to update only one condition amount .If I can see other pticing types they will update all condition types .
    -Exclusive option is checked for all the tables maintained in access sequence,
    Below options were not worked for me.
    -In condition type ----> Condition category has been updated with "D"(Tax) pricing type-"G" to update in sales order
    - This option worked for me but  condition category  "F"(frieght) and pricing type -H but in conditions tab when I update two condition amounts are activated for one condition type like below.
    ZYV0--30 % (old condition record value updated in sales order)
    ZYV0- 50% (updated condition record)
    Regards

    Hi Rita,
    Tried with condition category "u" and updated with pricing type "U" . It works as same I used old logic.
    with condition categories "D" and "F" it will update old and new condition record values in sales order.
    ZYV0--30 % (old condition record value updated in sales order)
    ZYV0- 50% (updated condition record)
    I have updated  here existing condition record value from 30 % to 50 % validity periods are not changed.
    Regards

  • How do I set up a specific homepage for Safari on my iPhone?

    How do I set up a specific page to be the page that opens every time I open Safari on my iPhone?  I saw that you go to Preferences, but I can't find where that is?  What are the steps from there?  Thanks.

    It actually is the answer to the question. Safari on the iPhone is not designed to allow for the setting of a home page. The only method to do it is what the last posted told you. That is how iOS handles the setting of a page, other than a bookmark in Safari. If you have a particular page you want to always open to in Safari, use the method described above which sets a shortcut on the home screen that you use instead of the regular Safari icon to start Safari.
    It could be considered a workaround, depending on how you view it.

  • TS1409 How do I mass convert all my videos in iTunes From FLV to MP4?!!

    My problem is a simple one that YOU will, sooner or later, face---else you already faced it.  It is the DREADED mixed media from You Tube.       HOW DO I MASS CONVERT MY ITUNES FLV VIDEOS TO MP4 VIDEOS.  If MP4 will play Video & Audio---why do I need FLV files?
    1.  I have an old APLINE IDA-X001 Digital Automobile Receiver that I have ported my iPOD Classic to via their Alpine Proprietary High Speed USB2 Cable.
    2.  I have 800+ You Tube music videos from the 80s (what can I say, WE ARE ALL ENTOMBED IN THE MUSIC OF OUR YOUTH and I am a couple of months older than Steve Jobs---Double Nickel or should I say YEAR ZERO of our lord Rock & Roll!!!).  When driving, I just want to hear the Audio Files from my iPOD.
    3. 90% of said You Tube videos are in Flash Video (FLV), 10% are MP4.
    4. You can only play FLV on outputs that have videos, MP4 videos can play in video mode else audio only mode---THEREFORE I NEED TO CONVERT all my FLVs to MP4s on my iPOD Classic (160GB).
    5. Yes, there are a handful of FREE Video Converter programs out there and the one I have AV8 will convert FLV to MP4 one file at a time...drip,drip,drip!!!
    6. I have 800+ Music Videos---I will have died from old age before my iPod is filled.
    7. My DESIRED END STATE is to flip a software switch and have all my iPOD FLV videos magically convert to MP4
    8. You Tube Download Modality:  I find a song I like and Download it to RealPlayer.  Once downloaded, I PAINFULLY convert it to Ipod (can't do more than 9 songs at a time). Once in iTunes, I sync it to my iPOD classic and bam---my videos are in my my iPOD.
    9.  Currently, the only songs that play on my iPOD are those I've purchased from iTunes.
    10. Whudda I Do?  The Apple Tech guys haven't a clue. Also. If I can only do it manually (I've got movies mixed in as well), how do I set up an MP4 folder and then only transfer that folder on to my iPOD?!!!

    The sync process for contact information, calendar events and bookmarks is bidirectional.
    http://docs.info.apple.com/article.html?artnum=306071
    The sync process for iTunes content and photos transferred from your computer to the iPhone is in one direction only and can be synced with iTunes on one computer only.
    iTunes includes an option to transfer content purchased from the iTunes Store only from an iPod or iPhone - not for content acquired elsewhere that was transferred from iTunes to your iPhone.
    You need to transfer your iTunes library from your Windows PC to your Mac.
    http://docs.info.apple.com/article.html?artnum=304721
    http://www.apple.com/support/switch101/

  • How can I undo Converting Recovery Partition to Logical Drive (Oops...) - HP G62-b32sa?​??

    I needed to create a new partition, but to do that Easeus Partition Master 9.00 Home Edition (I like using this compared to the Windows one..) stated that I needed to convert one of the 4 pre-made partitions from Primary to Logical. The following partitions were pre-made with my laptop, HP G62-b32SA, all of which were Primary:
    *: SYSTEM
    C:
    D: RECOVERY
    *: HP_TOOLS
    I could only convert the "D: Recovery" to Logical, so I went ahead, and then could create a new partition. But now after reading several post on this Forum, I realised what a mistake that was. I found that that converting the Recovery partition to Logical renders it useless... "Oops" I said. Now I wonder that if I convert the Recovery partition back to Primary, will I be able to use it again, or has the damage been done? But then the other problem is that it won't allow me to convert the Recovery Partition back to Primary, claiming "there are no free MBR slots". Also, I have a feeling that I'll have to delete my newly created partition to convert the Recovery partition back to Primary, but then how do I create a new partition without converting any of the existing to Logical? Endless questions, I know. So now I ask, what is the best thing to do??
    BTW this is my first HP Laptop...
    This question was solved.
    View Solution.

    How to handle this situation, back up your personal data and use the HP Recovery Discs to restore the PC
    Make your recovery discs now, use good quality DVD+R media
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&​lc=en&docname=c01867124
    Once you are back to normal partitions, see this thread on how to make another partition without damaging the other 4
    http://h30434.www3.hp.com/t5/Other-Notebook-PC-que​stions/How-to-repartition-HDD-of-HP-notebook-with-​...

Maybe you are looking for

  • Problem with InDesign CS5 trial

    I just downloaded and installed the International English version of InDesign CS5. When I start the program I get the Adobe Software License Agreement screen. I click Accept, the screen goes away, then it comes back again. I cannot get the program to

  • Song wont play in iTunes - computer needs authorization but is already authorized?

    I click to play a song in iTunes (which also purchased from iTunes) but am shown the message "This computer is not authorized to play [song title]. Would you like to authorize it now?". I enter in my username and password to authorize and am told "yo

  • Playing Home Videos from iTunes

    Gday All, We are new to Apple TV and are still working through exactly what we can and can't do. We have several Macs in the house and 1 PC all with iTunes 9 installed. The Apple TV can see all the shared libraries (ie the computers running iTunes) a

  • Need a Function Module to call a standard Elementary Search help - DEBIK

    Hi Gurus, I need to call the standard elementary search help DEBIK in one of my screen fields. Also I need to filter the values for the Account group KTOKD to Z104 ( transshipment location customers). Actually i do not want to copy the standard searc

  • PL-SQL JDBC -- No more data to read from socket Exception

    I have a PL/SQL stored procedure which takes CURSOR as IN parameter. I want to execute this procedure by passing a ResultSet object into it. Below attached is the piece of code I am using. When I execute I am getting the following exception , Thanks