How to: Insert Frontpage for project

Since working in Word 2007 (yes, be it in Parallels) I've started to get used to adding things with ease. Like adding a real nice first page.
Pages has real nice templates. But how do I add (if I have a open document) an extra first page. Like i'm working in Word Processor, but I need a Page Layout thing in that document too...
E.g. I need the 'extreme' page layout as first page, but the rest of the doc just needs to be blank word processor...
How to?

<i>but the Q'n is how to insert Tab delimited Spaces</i>
Ok, so you want to put tabs in between the fields?  You can do so, like this.
report zrich_0001.
parameters: d1 type localfile default '/usr/sap/TST/SYS/Test.txt'.
data: begin of itab occurs 0,
      field1(20) type c,
      field2(20) type c,
      field3(20) type c,
      end of itab.
data: str type string.
constants: con_tab type x value '09'.
* if you have a newer version, then you can use this instead.
*constants:
*    con_tab  type c value cl_abap_char_utilities=>HORIZONTAL_TAB.
start-of-selection.
itab-field1 = 'ABC'.
itab-field2 = 'DEF'.
itab-field3 = 'GHI'.
append itab.
itab-field1 = '123'.
itab-field2 = '456'.
itab-field3 = '789'.
append itab.
  open dataset d1 for output in text mode.
  loop at itab.
    concatenate itab-field1 itab-field2 itab-field2 into str
                  separated by con_tab.
    transfer str to d1.
  endloop.
  close dataset d1.
Regards,
RIch Heilman

Similar Messages

  • How to insert entities for a role and retrofit single trigger from DB

    Hi,
    before Oracle Designer replacement I would like to clarify these 2 issues:
    - how to insert entities for a role?
    - how to retrofit just a single trigger from database?
    Could somebody give a step by step advice, how to do these 2 things? Thanks!

    > um.. i don't think you could use 'create table'
    inside a pl/sql procedure.
    You are wrong. You can create table inside a PL/SQL using execute immediate. But, this is not a good practise. I think you should reconsider the logic and then use such programming code. Please read the Oracle documentation regarding execute immediate.
    Regards.
    Satyaki De.

  • How to insert value for composed foreign key?

    My problem when I update or insert to table Ffclient which has link 1-1 with other table ClientLoan by composes primary key loanId and clienId (break table). I auto mapping by Jdeveloper 10g version 10.1.2. In FfClient table has two fields compose foreign key of ClientLoan as loanId and clienId not nullable. In toplink object Ffclient it only has one reference ClientLoan object by clientLoan field, not has two fields loanId and clienId . When I insert or update to database, I can't set value for these two fields direct so I have created new ClientLoan object and set value for composed primary key loanId and clienId, after that set it to object Ffclient. But when I update or insert to database it occurs exception about insert null for two not nullable fields: loanId and clienId.
    Any one has error as mime? Any one help me correct my error.
    Thanks in advance.
    Mapping is:
    ….
    <database-mapping>
    <attribute-name>ffclientCollection</attribute-name>
    <read-only>false</read-only>
    <get-method-name>getFfclientCollection</get-method-name>
    <set-method-name>setFfclientCollection</set-method-name>
    <reference-class>uk.co.lsb.elb.toplink.Ffclient</reference-class>
    <relationship-partner-attribute-name>clientLoan</relationship-partner-attribute-name>
    <is-private-owned>false</is-private-owned>
    <uses-batch-reading>false</uses-batch-reading>
    <indirection-policy>
    <mapping-indirection-policy>
    <type>oracle.toplink.internal.indirection.TransparentIndirectionPolicy</type>
    </mapping-indirection-policy>
    </indirection-policy>
    <container-policy>
    <mapping-container-policy>
    <container-class>oracle.toplink.indirection.IndirectList</container-class>
    <type>oracle.toplink.internal.queryframework.ListContainerPolicy</type>
    </mapping-container-policy>
    </container-policy>
    <source-key-fields>
    <field>LSB.CLIENT_LOAN.CLIENT_ID</field>
    <field>LSB.CLIENT_LOAN.LOAN_ID</field>
    </source-key-fields>
    <target-foreign-key-fields>
    <field>LSB.FFCLIENT.CLIENT_ID</field>
    <field>LSB.FFCLIENT.LOAN_ID</field>
    </target-foreign-key-fields>
    <type>oracle.toplink.mappings.OneToManyMapping</type>
    </database-mapping>
    …..
    <database-mapping>
    <attribute-name>clientLoan</attribute-name>
    <read-only>false</read-only>
    <reference-class>uk.co.lsb.elb.toplink.ClientLoan</reference-class>
    <relationship-partner-attribute-name>ffclientCollection</relationship-partner-attribute-name>
    <is-private-owned>false</is-private-owned>
    <uses-batch-reading>false</uses-batch-reading>
    <indirection-policy>
    <mapping-indirection-policy>
    <type>oracle.toplink.internal.indirection.BasicIndirectionPolicy</type>
    </mapping-indirection-policy>
    </indirection-policy>
    <uses-joining>false</uses-joining>
    <foreign-key-fields>
    <field>LSB.FFCLIENT.CLIENT_ID</field>
    <field>LSB.FFCLIENT.LOAN_ID</field>
    </foreign-key-fields>
    <source-to-target-key-field-associations>
    <association>
    <association-key>LSB.FFCLIENT.LOAN_ID</association-key>
    <association-value>LSB.CLIENT_LOAN.LOAN_ID</association-value>
    </association>
    <association>
    <association-key>LSB.FFCLIENT.CLIENT_ID</association-key>
    <association-value>LSB.CLIENT_LOAN.CLIENT_ID</association-value>
    </association>
    </source-to-target-key-field-associations>
    <type>oracle.toplink.mappings.OneToOneMapping</type>
    </database-mapping>

    Yes, many thanks for you reply.
    My project has many layer (include DAO + EJB + BO + WEB).
    Toplink objects which are auto created by TopLink has only using in DAO and EJB layer, then toplink objects are transfer to Bean objects (valueObject) which are contain primitive java type as int, long, double... not java wrapper object as Integer, Long, Double... Bean objects are using from EJB to WEB layer. So when set value to bean object from toplink object I sometime don't set all reference toplink object to reference object of bean (although bean has references bean object as toplink object) because there are too big. So when I update data from WEB layer to EJB layer, before update to database, I must get fill all data for foreign key of update object by create new reference toplink object, add reference_id to this object and set it to update object. I waste a lot of time, its very handwork and tire. Are you has any solution about this problem?
    Thank in advanced.
    ThangNQ

  • How to insert pin for E-mailing documents

    When trying to E-Mail a document, the screen askes for my PIN, which I have, but how do I insert it with no keyboard?
    This question was solved.
    View Solution.

    Hi @cyclops2,
    Welcome to the HP Support Forums.  I see that you would like to learn more about the scan to email feature of your HP printer.
    To better assist you, would you please provide some additional information?
    What model and product number of HP printer do you have? How Do I Find My Model Number or Product Number?
    How is the printer connected (USB cable, ethernet, or wireless)? Please note that not all HP printers support all methods of connectivity.
    What operating system are you using on your computer?  whatsmyos.com
    Thank you and I look forward to hearing from you.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • How to configure Tooltips for Project Gantt charts

    Hi,
    I am trying to Display the title of the task as a tooltip for the Project Gantt Chart.
    I referred the documentation link and am trying to configure tooltipKeyLabels and tooltipKeys as specified in the link
    http://download.oracle.com/docs/cd/E14571_01/apirefs.1111/e12418/tagdoc/dvt_projectGantt.html
    but I could not get this to work.I am unsure about what the data object key refer to in the documentation.
    Is it the key of the text resource specified in the tooltip control hints or some other thing?
    Any body who has done this before,please share your ideas on this.
    I am using jdeveloper 11.1.1.3.0 with ADF-BC.
    Regards,
    Guna

    bing

  • How to defining mimetypes for project?

    Which is the way to define mimetypes for a project?

    Stephen,
    Now I know that setting this signal is not possible for this resource.
    But I always thought that the less threads in process are the less CPU consumption is, which means that not all cpu-shares are used?
    So if I have the case that application server has a control loop which
    is responsible for finding the optimal size of thread pool, then it can rely on SIGXRES which indicates that cpu-shares threshold is exeeded and size of thread pool shouldn't be increased.
    Anyway if signals are not supported threre is a possibility to analyze syslog messages which for me is unconfortable.
    I appreciate your help!
    marcin

  • How to insert variable for table name in Select statement ?

    I am creating a stored procedure which will take two table names as IN parameters. Within the procedures I would like to use the parameters in the following manner;
         SELECT count(*)
         INTO v_target_cnt
         FROM TargetTable;
    TargetTable is one of the parameters passed in. When I do this however it does not recognize the parameter. I have tried assigning the parameter to a local variable and using the variable, with not luck.
    Any help....thanks

    Null,
    What you are describing is called a LEXICAL parameter, which is allowed (preceded by an ampersand) in sql but not in pl/sql because it would not be possible to compile it. That is why you need to use Andrew's suggestion to make the sql dynamic. In older versions you would need to use DBMS_SQL which is horrible and now thankfully redundant.

  • Send email is not working in share point desinger 2013 for project server 2013 workflow

    Hi,
      How to configure email for project server 2013. i have created workflow where i am sending email. It is not sending it.
     i have set outgoing mail setting. Tasks are created in my workflow but mail is not sending.
    Thank you for helping us.
    Thank You
    Vinay

    Hi,
      How to configure email for project server 2013. i have created workflow where i am sending email. It is not sending it.
     i have set outgoing mail setting. Tasks are created in my workflow but mail is not sending.
    Thank you for helping us.
    Thank You
    Vinay

  • How to set up BlazeDS project in FB3?

    Hi ,
    I want to start a new project with Flex,BlazDS and web
    service. web servces are located in other server by SOAP.
    I have install BlazeDS in local pc and I do not have a idea
    how to start set up in Flex Builder and do the project.
    Please help me .Thanks a lot
    Mark

    Hi,
    You don't need BlazeDS for accessing web service unless you
    want to use the proxy service of BlazeDS, for accessing the web
    service. Please check out the URL below for details on how to
    configure FB3 for projects that use server technologies.
    http://learn.adobe.com/wiki/display/Flex/Creating+Flex+Builder+Projects+that+Use+Server+Te chnologies
    Hope this helps.

  • Procurement for Projects

    Dear all
    Could explain how the material procurement for projects happen? What's the difference between this and normal procurement?

    HI
    Its the same Only u wil have to use the Item category' P' for projects.which impies that the procurement is done against the said Projects.
    Also this can be mapped with PS module where a central Project will be created. The project will be broken down in to no of Work break dowmn structures which will be assigned a cost element.
    The total expenditure on each WBS will be determined using the WBS element.
    The Item category of P as Account assignment category of P have to be used for the PO's. The corresponding WBS element and the G/L account has also to be entered at the item level.
    Hope this helps.
    Regards,
    Prasanna
    Award pls if helpful

  • Can anyone advise me how to insert a hyperlink into a project I am using Captivate 5?

    Can anyone advise me how to insert a hyperlink into a project - I am using Captivate 5

    You can use an interactive object such as a click box placed over the top of a text caption, or a button, to link to the URL.  However, these will not strictly-speaking appear identical to hyperlinks.
    If you really want to replicate the rollover appearance of a true HTML text hyperlink, then you might consider the Hyperlink widget from Infosemantics:
    http://www.infosemantics.com.au/adobe-captivate-widgets/hyperlink-interactive/help
    Free trial versions for download hers:
    http://www.infosemantics.com.au/adobe-captivate-widgets/download-free-trial-widgets

  • Does anyone know how to insert an Articulate Engage interaction into a Captivate 2 project?

    I would like to insert an Articulate Engage interaction into
    a Captivate 2 project. And,er, that's it really. Does anyone know
    how to do it? When I try to insert the Articulate project as an
    animation, it functions fine in the preview screen, but once it's
    been inserted all I get is the loading screen.

    Hi again darren.winter
    If I were in your shoes, here is what I'd try. Place the
    content from Articulate in a specific folder. Then publish your
    Captivate to the same folder to ensure all files are there
    together. Then test. Obviously, this may work or it may fail. And
    just as obviously, if it works, you're done!
    If it fails, I think I'd try publishing my Captivate using
    different settings. Try publishing for different Flash versions.
    You might find that if you target Flash 6 it fails, but 7 or 8 may
    work.
    If the Flash version bit fails, are there some settings in
    Articulate that allow you to reduce the number of files that are
    required? For example, I know that when Captivate 2 came out, many
    folks had to scramble (and some still do) over the fact that it
    produced multiple output files. Some LMS' didn't like the fact
    there were typically two .SWF files to distribute. We then learned
    we could eliminate one of the .SWF files by turning off the
    borders. So I'm wondering if perhaps Articulate may have similar
    output options you could use.
    Hopefully something here helps... Rick

  • How to find next number range for project definition in tcode CJ20N

    Hai Experts,
          Please help me 'How to find next number range for project definition in tcode "CJ20N". I was trying in function module NUMBER_GET_NEXT. Is it right function module? If its right what input i need to give for this tcode and for the field project definition?
    Note: I searched in forum before posting, but couldn't find the solution.
    Thanks
    Regards,
    Prabu S.

    Hi,
    For project defination internal number is assigned by system.
    When you saves's project then system allocate one number to project defination, you can view it,
    SE11 >>> table  PROJ >> Click on contents >>> execute,
    here you will get your project defination & number is assigned to project defination.
    kapil

  • How can I import an project .imoviemobile file to imovie 10.0.6 on my mac book for further processing

    How can I import an project .imoviemobile file to imovie 10.0.6 on my mac book for further processing?

    You can't.  (http://www.macworld.com/article/2057972/imovie-for-ios-projects-no-longer-work-o n-the-mac.html)
    Geoff.

  • How do i transfer a project to a cd for further mastering?

    i know this is a simple question but how do i transfer a project to a cd or dvd-r for further mastering?also i am thinking about getting a macbook and am wondering how i would transfer my work in logic 8 on the imac to a brand new macbook?

    Hi,
    1st: If you want to give your project to a studio, give them the whole Logic Project if they have logic, too. Once it is bounced, they can't to more than tweak the final mix.
    If you have to bounce it for the studio, bounce it with 24 bit PCM and inportant : Do not use dithering! This step will added by the studio after mastering.
    2nd: To export a project, make shure all Audio, Samples and all these things are saved inside the project folder. There is an option in the preferences when you make a new project. Try this out.
    Fox

Maybe you are looking for

  • Clean Install Mavericks and Restoring files

    Good afternoon everyone, I want to do a clean install of Mavericks on my iMac so I have a fresh system to work with.  Having read all the blogs I think I understand how to actually do the clean install via a USB stick but there appears to be a wide r

  • Figures not showing up in Acrobat reader DC, but show up fine in older versions - what is the problem?

    I upgraded to Reader DC recently and have had trouble with pdfs ever since. Figures do not show up properly and we just see a grey patch where the figure should be. If I open the same file in the older versions, it shows up fine. I have had this prob

  • ODI ORACLE TO AS/400

    Hi Experts, 1)I got a requirement to load data from oracle to as/400.What KM's we can use here in terms of good performence etc. 2)Normally ODI will return 0 for success and non zero for failure,how can i get that value if i call a ODI Scenario throu

  • DBConsole start up issue

    Hi Oracle DB - 10gR2 Forms Builder - Forms Builder [32 Bit] Version 10.1.2.0.2 (Production) When trying to start up dbconsole I get following error C:\oracle10gR2\product\10.2.0\db_1\bin>./emctl start dbconsole '.' is not recognized as an internal or

  • Illustrator CS3 crashes when file opened

    However I try to open any illustrator file the app crashes. Has been running smoothly for ages. Have run through suggested things like removing prefs - and have reinstalled from disk but still the same problem... HELP (Running the latest OSX)