Adding section in Layout

i have used all section available in the default page layout. Now my requirement is of using one more section. Is there any way to add one more customer section?
Regards
Nisman

Guy, not at this time. However, you provide a section header with the following label:
XXXXXXXXXXXXX / YYYYYYYYYYY
where X's are the label for the fields in the left column and the Y's are the label for the fields in the right column.

Similar Messages

  • My audiobooks keep stopping at about 8mins. Only the older audiobooks in the audiobook section. Not the newer ones if played from Purchased or Recently Added sections. What can I do?

    My audiobooks keep stopping at about 8mins. Only the older audiobooks in the audiobook section. Not the newer ones if played from Purchased or Recently Added sections. What can I do? Thank you.

    have you ever copied those audio books in another location and played in your computer? May be the audio book file is corrupted. give it a try.
    have a nice day.

  • Deleted the recently added section from the source area how can i add back

    how can i add back the recently added section from the source without reinstalling itunes thanks in advance....
    insp 8100   Windows XP  

    Ok that is easy.
    1) File > New Smart Playlist.
    2) Make sure match the following rule is checked
    3)The first drop down change to date added.
    4)Set the second drop down setting
    5) Enter the number you want based on step 4
    The rest of the check marks are up to you but make sure "Live Updating" is checked.
    Take some time playing around with the smartlists. I love them!! I have a 2 level smartlist at work, I hardly use the regular playlists.

  • Fixed section or layout breaks

    In pages, is there a way to fix a section or layout break to start at the second page?
    All I have found thus far are floating section breaks. As I type more on the first page, the section break moves down, so I later have to move it to the start of the second page manually. I would like it to be fixed to start on the second page and have the text flow around the break.

    If you describe what you want to do in more detail, it's possible there may be a different way to do what you want. Section breaks are not the feature you are looking for to do this, since they pretty much define the end of text flow -- text in one section can't flow to another, and thus can't flow around a section break.

  • Achieve the tab order for dynamically added section

    Hi friends,
    I'm facing the issue with tab order.
    How to achieve the tab order for dynamically added sections?
    Could you Plaese suggest me in this.
    Thanks,
    Susila S

    Hi,
    Thanks for your reply.
    Ya. I'm adding rows in a table dynamically which is grouped in a subform which is flowable and the buttons are placed in the same subform. At the end of the row I'm having the hidden fields.
    So what I want is without focusing the tab on hidden field I want to traverse the first field of the next dynamic row. For that I have used the access property as protected on hidden field, but its not working properly.
    Please help me on this ASAP.

  • Cannot access the just added section for music

    everytime i click on the just added section for music it shows an error message. i have been unable to access this section for a week. have tried on my home computer and work computer, what gives????

    I predict that, if there are many people out there who search for music like I do each week by genre, iTunes will take a big hit in sales as a result of this change. I found some new albums this week on another site, went back into iTunes to search for them and lo and behold they were there. If I had not looked at that other site, I would not have found them on iTunes because they were not in the new music section this week. I am really disappointed by this change. iTunes had a great thing going, but boy they messed it up. Unfortunately, there is no other site that even comes close.

  • Adding sections to a document.

    Hi-
    I'm trying to add sections to a document. Basically, I'm adding a new page, adding a section, adding a page,...
    but when I add the third page, I get the following error: (code generating this error follows the error)
    Any thoughts?
    Thanks!
    ============================================================
    ?ex
    {System.Runtime.InteropServices.COMException}
    System.Runtime.InteropServices.COMException: {"Error HRESULT E_FAIL has been returned from a call to a COM component."}
    Data: {System.Collections.ListDictionaryInternal}
    HelpLink: Nothing
    InnerException: Nothing
    Message: "Error HRESULT E_FAIL has been returned from a call to a COM component."
    Source: "mscorlib"
    StackTrace: " at System.RuntimeType.ForwardCallToInvokeMember(String memberName, BindingFlags flags, Object target, Int32[] aWrapperTypes, MessageData& msgData)
    at InDesign.Sections.Add(Object Reference)
    at Mrll.Typeset.InDesignProxy.IndesignContext.AddPage() in ...
    ?iddocument.Sections.Count
    2
    ?iddocument.Pages.Count
    3
    ============================================================
    and here's my vb code:
    Me.IdPage = Me.IdDocument.Pages.Add(ID.idLocationOptions.idAtEnd)
    Try
    Me.IdDocument.Sections.Add(Me.IdDocument.Pages.LastItem)
    Catch ex As Exception
    Stop
    End Try

    So are you trying to add a shipment, Order and Tour as a single add?
    So if I added six entries ...woudl the sequence be
    ship, order, tour , ship, order, tour .....
    OR
    ship, ship, ship, ship, order, order, order, order, tour, tour, tour, tour?
    Paul

  • Images added to my layout surrounded by gray box!

    Hi, I'm very new to all this but I have what seems to be a simple question! When I try to add a graphic to my layout it's surrounded by a gray box...I downloaded the graphic from a scrapbooking website, but on the website when it shows the tutorials the graphic does NOT have the gray box around it, so is it something I'm doing wrong? Or could it be that the downloads don't work with PSE 6? thanks for any tips :)

    Are you adding by dragging?

  • Adding section to active page

    Hi
    I´m trying to create a very simple javascript for adding new section to active page. So far I have made following code:
    var myDoc = app.activeDocument;
    var numero = app.activeWindow.activePage.name;
    var numero2 = numero -1;
    myDoc.sections.add(myDoc.pages[numero2]);
    It basically works as it should, whren I double-click some page thumbnail in pages panel, that page will become active... and if I run the script at that point it usually adds section to active page pretty nicely....
    However, if I use that script with Configurator 2.0 and create a custom panel, with Add a section button (where I have attached that same javascript) InDesign starts to throw me some weird alert:
    If I answer yes, script will work as it should, but I would like to make it work so that users won´t get that alert at all....
    If I run that scrpt from Scripts panel, it works without alerts...
    Another thing I have tried to figure out is how to create some kind of error handler that would stop the script if active page already has a section start, now script generates a javascript error in those cases.... it would be more classy if simply nothing happened....
    Any help appreciated.... thanks

    Thanks guys...=) but no luck here....
    And I noticed something quite weird. This script is meant to use with single pages, but when I accidentally used it with facing pages spreads, I got that same alert + script changed the way page numbers are marked below thumbs:
    It replaced 10-11 with 10,11
    I also tried
    try {
    var myDoc = app.documents[0];
    var numero = app.documents[0].layoutWindows[0].activePage.name;
    var numero2 = numero -1;
    myDoc.sections.add(myDoc.pages[numero2]);
    } catch (e)
    {  $.writeln("Error "+e.message+" at line "+e.line);}
    But I still have that same alert.... When I run that code in Extend Script ToolKit, I got following javascrip console message:
    Error undefined is not an object at line 2
    Result: undefined

  • Adding a new layout for DME for file download

    Hi All,
    How do i add a new layout for file download in DME?
    Thanks
    William Wilstroth

    This problem is solved.
    Need to enhanced the T042O table.

  • Where is the "Recently Added" section? And how do I transfer music to my iPhone now?

    I just downloaded the newest version of iTunes, and what do you know, I hate it. I literally can't find ANYTHING that I need, and just end up getting ******. Can someone help me find the "Recently Added" in the new version of iTunes, and show me how to transfer music to my iPhone again?

    You can restore much of the look & feel of the previous version with these shortcuts:
    ALT to temporarily display the menu bar
    CTRL+B to show or hide the menu bar
    CTRL+S to show or hide the sidebar
    CTRL+/ to show or hide the status bar (won't hide for me on Win XP)
    Click the magnifying glass top right and untick Search Entire Library to restore the old search behaviour
    Use View > Hide <Media Kind> in the cloud or Edit > Preferences > Store and untick Show iTunes in the cloud purchases to hide the cloud items. The second method eliminates the cloud status column (and may let iTunes start up more quickly)
    If you don't like having different colours for each album use Edit > Preferences > General and untick Use custom colours for open albums, movies, etc. .
    Displaying the sidebar should make it easier to find what you are looking for.
    Should you feel the need to roll back to iTunes 10.7 first download a copy of the 32 bit installer or 64 bit installer as appropriate, uninstall iTunes and supporting software, i.e. Apple Application Support & Apple Mobile Device Support. Reboot. Restore the pre-upgrade version of your library database as per the diagram below, then install iTunes 10.7.
    See iTunes Folder Watch for a tool to scan the media folder and catch up with any changes made since the backup file was created.
    tt2

  • Problem adding Photos, changing layout

    I'm trying to create a Book and when I change layout or want to change the picture, the page goes blank and can't add/change photos or layout?

    Since the new library worked OK indicates that your orignal library is damaged to the point that it's not repairable. We've tried all of the fixes we know about.
    This may be your next step which would mean recreating the book from scratch:
    Starting over from scratch with new library
    Start over with a new library and import the Originals (iPhoto 09 and earlier) or the Masters (iPhoto 11) folder from your original library as follows:
    1. Open the library package like this.
    2. Launch iPhoto with the Option key held down and, when asked, select the option to create a new library.
    3. Drag the subfolders of the Originals (iPhoto 09 and earlier) or the Masters (iPhoto 11) folder from the open iPhoto Library package into the open iPhoto window a few at a time.
    This will create a new library with the same Events (but not necessarily the same Event names) as the original library but will not keep the metadata, albums, books slideshows and other projects.
    Note:  your current library will be left untouched for further attempts at a fix if so desired.

  • How do I stop pages from adding sections?

    Extraordinarily dissapointed with MAC.  Considering returning to Word after many years. I simply want to add individual pages to my project but the new pages turns them into blocked 'sections' and won't allow me to move the pages around!  VERY frustrating.
    <Edited by Host>

    Hi..
    Post your question in the Pages forum here.
    That way your topic is viewed direclty by Pages users who may be able to help.
    This may come in handy in the future >  http://www.apple.com/support/pages/

  • Adding columns in Layout set of CJI5

    Hi,
    I am executing the transaction CJI5.  In Change Layout option of the report ouput it is showing 41 columns but in the program the field catalogue has 190 fields and even the output final table has 190 fields.  I  am not able to view the remaining columns in the layout set.
    My requirement is to display the order column in the layout set which is not visible in the column set.  Can we get the column order in the layout set?

    Hi,
    I am executing the transaction CJI5.  In Change Layout option of the report ouput it is showing 41 columns but in the program the field catalogue has 190 fields and even the output final table has 190 fields.  I  am not able to view the remaining columns in the layout set.
    My requirement is to display the order column in the layout set which is not visible in the column set.  Can we get the column order in the layout set?

  • Why did they remove the "Just Added" section on the Music page??

    It used to be, you could click on that, see all the new music that launched that day. Then, they updated it, and it wasn't in order anymore, but you could still see what launched, and now, that section has been removed. Why??? Has it moved somewhere else?

    Has it moved somewhere else?
    Yes, it has moved.  The New Releases listing is now at Amazon MP3.  Click here.

Maybe you are looking for

  • How come i cant autopopulate my email addresses, i need to type in all over again

    I use Network solutions and they upgraded my email system and I can get the addresses in my contact sheet if I add them but now when I type in an email address and I retype another email it won't autopopulate. It drives me crazy to retype a long emai

  • Customizing table Changes to another system

    Hello all, When ever changes occurred to  personnel area HR table T500P then the changes needs to be replicated in  another system. how to capture the change log details? Please provide the inputs. Regards Aravind

  • Drop Shadow

    I am trying to make the drop shadow on this site (temporary location) darker.  I used a method I learned but just have the gif file so I need to recreate the file.  I've tried creating the canvas (1034 x 6959) then drawing a rectangle the same size l

  • Define Number Assignment for Material and Phys. Inv. Docs

    Can we give number range for Goods Receipt, goods issue, physical inventory document and Invoice verification document year wise?? Suppose for 2011 no range  490000 to 499999                     2012  no range 500000 to 599999 For all the documents(G

  • Pops after rendering DV

    I started with a DVD. I used Streamclip to convert it to DV format. I opened the DV in QuickTime and the audio and video looked great. Then I imported the DV into Final Cut Pro 5. I added it to the timeline and rendered it. The problem is that now, t