URGENT: Template due in 10 hours

I have a word doc with styles that needs to have an IDCS3 template created. Help!!!
The word doc report has 2 columns with line down middle. Each sections begins on a new page. Single sided, 100-page report.
This is a numbered heading report with section name as Heading 1. I need Heading 1 to repeat across top of the width of the page of each page of its section.
Lots of graphics with caption box grouped with image jpeg.
'b' I remember studying that there's some trick but can't remember what.
I remember also something about 2 columns and there's a fine point about getting the
'b 'baselines to mirrow each other. but can't remember how to do that.
Toc
I'll try to use same name styles for easy mapping, and put the header box on a master page. Don't think the user knows about Books so won't do that? What else?

I think you may find some of what you're looking for here:
http://www.adobeforums.com/webx?128@@.3c062a76
The trick for aligning text across columns is to use a baseline grid and have the style align to it. The grid spacing should mirror the body text leading.
Peter

Similar Messages

  • Cannot create site template due to references containing formula's

    Hi
    We currently have in our production environment an issue creating a site template due to references in fields yet the UPSLogs do not state the column in question
    The error I get when trying to save the template is as below:
    Error:
    The formula contains reference(s) to field(s)
    Correlation ID: {b3c9eo56-f2e3-48aa-9f7d-86a63ab8a37f}
    Date and Time: 2/3/2015 10:22:02
    Is there any other way of identifying the column so I can resolve this issue?
    Thanks in advance

    If you know PowerShell or care to want to mess with this script you might get what you need:
    $web = Get-SPWeb SITE
    $list = $web.Lists["LIST"]
    $FieldType = [Microsoft.SharePoint.SPFieldType]
    $FieldType = $list.fields.GetField("COLUMN_NAME")
    Foreach ($i in $FieldType)
    IF($i.ValidationFormula -ne $Null)
    Write-Host "Column Name:"$i.Title
    Write-Host "Forumla:" $i.ValidationFormula
    I wrote this very quickly so you have to note that you have to manually put the column name in and run it. It will show you in the out put the formula used on each column. I will work on this some more to get it to check all the columns and return you what's
    being used and which is a reference.
    UPDATED:
    $web = Get-SPWeb SITE
    $list = $web.Lists["LIST_NAME"]
    $FieldType = [Microsoft.SharePoint.SPFieldType]
    $FieldType = $list.fields
    foreach($i in $FieldType)
    Foreach ($item in $i)
    IF($item.ValidationFormula -ne $Null)
    Write-Host ""
    Write-Host "Column Name:"$item.Title
    Write-Host "Forumla:" $item.ValidationFormula -foreground Red
    Write-Host ""
    If this is helpful please mark it so. Also if this solved your problem mark as answer.

  • Why when I sync my Iphone to my Mac all my Calendar to do´s appear as though due for one hour later than they show inmy computer? Does anyone know how to fix it??

    Hi,
    can any one tell me why  when I sync my Iphone to my Mac all my Calendar to do´s appear as though due for one hour later than they show in my computer? Does anyone know how to fix it??

    Not simple enough. Please read the original concern.
    The issue is not "getting music to the new machine" or "authorizing the new machine" or "transferring purchases from an idevice". The issue is that after doing all those things, even creating a backup using the new iTunes/Mac, syncing my device with the new library erases all the app data from the iPhone, as well as folder structure and page layout. Music is expendable in this situation as it's just a matter of moving the files around. (Which I did before I ever started this exercise.)
    The problem is that everything from email accounts to folders are lost when I sync the device with a new computer. I tried this on my iPad first and spent a good deal of time re-arranging everything and getting all the data back. The pictures are just gone. Good thing I backed them up on the old PC.
    It won't be as simple on my iPhone as I have a ton of stuff on it and can't afford to lose anything. Some of the data is gave saves and such, but other things are more important. And I don't want to lose those game saves either.

  • REALLY REALLY URGENT!!!!!!! DUE IN THREE HOURS!!!!

    I BET U CANT DO THIS PROBLEM IN 3 HOURS:
    Objective
    The objective of this homework is to help you become familiar with the SAX and DOM interfaces for XML parsers.
    Description
    The structure of a web site can be saved in a graph structure. The nodes of the graph represent the web pages and the edges of the graph represent the hyperlinks between the pages. XGMML is an XML application language to save graph structures. This is a simple example of an XGMML file that represents a graph with two nodes (web pages) and one edge (hyperlink) :
    <?xml version="1.0"?>
    <graph>
    <node id="1" label="http://www.example.org/" weight="2345">
    <att name="title" value="Example Main Page"/>
    <att name="mime" value="text/html"/>
    <att name="size" value="2345"/>
    <att name="date" value="Wed Jun 9 23:01:06 2000"/>
    <att name="code" value="200"/>
    </node>
    <node id="2" label="http://www.example.org/software/" weight="1234">
    <att name="title" value="Software Examples"/>
    <att name="mime" value="text/html"/>
    <att name="size" value="1234"/>
    <att name="date" value="Wed Sep 19 13:11:23 2000"/>
    <att name="code" value="200"/>
    </node>
    <edge label="Software" source="1" target="2"/>
    </graph>
    The only elements that you need to know for this homework are: graph, node, edge and att.
    * graph - the root node of the XGMML file
    * node - the node description
    o id - a number to identify the node
    o label - the name of the node (URL of the web page)
    o weight - the weight of the node (Size of the web page)
    * att - additional attributes of the node
    o name - the name of the attribute
    o value - the value of the attribute
    * edge - the edge description
    o label - the name of the edge
    o source - the id of the source node
    o target - the id of the target node
    Problem: Given two XGMML files, generate an HTML file that contains a list of node labels of nodes that are in the first XGMML file and not in the second XGMML file.
    Part A
    Write a SAX application that solves the given problem. For this problem you are required to use Xerces XML Parser.
    Part B
    Write a DOM application that solves the given problem. For this problem you are required to use Xerces XML Parser.
    Additional Information
    I will provide with two XGMML file called xmljs.gr and xmljf.gr. You should write two java files: SAXdiff.java and DOMdiff.java. Please write comments in your java code.
    An example how to run your java application SAXdiff:
    java SAXdiff xmljs.gr xmljf.gr list.htmlWhere xmljs.gr and xmljf.gr are the given XGMML files and list.html the name of the HTML file output.
    IVE BIN TRYING TO DO THIS FOR 2 HOURS, AND I CANT GET THE FIRST BIT TO WORK. SO FAR I HAVE THIS:
    pubic Class Object {
    public void main(String args) {
         printf("Hello World"};
    IT WONT COMPILE. I JUST DONT UNDERSTAND. SOMEBODY HELP ME PLEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEASE!
    PLEASE SEND YOUR ANSWER TO [email protected] ASAP.

    What we need to do is make a function that gets idiots like this in trouble with their teachers. Basically have the correct code, and embed a method call in it that prints messages to the screen or something. And if it's written clever enough (not something as easy to spot as System.out.println("I got my homework done for me at java.sun.com");, they'll never know how to take it out of their code.
    Then any of us can just copy & paste this function into any homework assignment we help students with who don't show any code or crosspost a million times.

  • Urgent:   Net due date virtual characteristic.

    Hi,
    We are implementing net due date virtual characteristic. Could some please provide the coding for implementing this in ZXRSRZZZ program. Its very urgent.

    Hi shiva,
    sent to ur mail
    hope it helps
    bhaskar

  • CRM 5.0 - IC WebClient - Due Date - Working Hours for Service Ticket

    Hi Gurus
    We're using a Service Ticket Transaction which has a Date Profile which provides a 48 Hour window for which the user must complete the Service Ticket Resolution.
    The issue is I want to tie this up to the Business working Hours. I just cannot figure out where I define the Business Working Hours.
    This is a Standalone CRM Implementation. Maximum points for the right answer.
    Many Thanks
    Panduranga

    Hi,
    The response time of 48 Hours must be maintianed in response profile... right?
    Similarly there is a availability profile in which you maintain the business hours/ availablity of your resources.
    These both together make a service profile.
    The availability profile is maintained in SAP Easy Access> Service> Service Contracts and Service Plans --> CRMD_SERV_SLA - Maintain Availability and Response Times
    Hope this will help
    Regards
    Rekha Dadwal

  • Can't use templates due to some issue with "sites"

    I'm trying to create a website from a template on dreamweaver, but my computer is giving me some grief about "adding a site". I already entered the information for my site in the "configure server" box. I've entered the proper info for ftp host and host directory etc. I can even see a window on the right side of the screen that lists all the files in my website's directory. All the files in there now were old files I made using another template from iweb.
    Here's what I did:
    (1) select "start page: theme" from the dreamweaver's main panel
    (2) I selected a template that I liked.
    the error message I get: "Dreamweaver stores templates in the root folder of a site, but there are no sites defined. Please add a site".
    I then clicked on "manage site" which then lists the sites that I created earlier. I click on one of them and then hit the "done" button. How come nothing happens? I never get a screen with the actual template in it. I have no idea what's going on. Any ideas how to fix this? I know I created a site, so why is the program complaining?

    This sounds like you have not actually 'created' a site definition, but simply viewed them and clicked done.
    try following this tutorial -  http://www.adobe.com/devnet/dreamweaver/articles/first_cs4_website_pt1.html.
    PZ

  • Urgent reply needed..one hour to go

    Hi, I want to buy a processor from ebay. the auction finishes in an hour I have been high bidder for a week but now am not sure if this processor is compatable, a one word answer will do as long as its prompt.
    Will a 800Mhz g4 from a Quicksilver fit my 400mhz 100mhz bus G4 AGP Graphics?
    Thanks in advance.

    Also the board would require certain modifications to the ATA connector on the MLB to fit properly.
    New World ROM desktop Mac generations ( highly similar and compatable hardware )
    1G: B&W G3, PCI graphics G4 ( daughter card Firewire, ZIF CPU socket )
    2G: AGP graphics (sawtooth) G4, Gigabit Ethernet G4 ( MLB Firewire, CPU duaghter cards PPC 7400/7410 )
    3G: Digital Audio G4, Quicksilver G4 ( 133MHz bus, Advanced PPC 7450/7451/7455 processors )
    4G: Mirror Drive Doors G4, Firewire 800 G4 ( based on xServe G4 design, 167 MHz bus on some models )
    5G: Powermac G5's ( PPC 970 processors, fast FSB )
    6G: Mac Pro ( intel processors, SATA II, )

  • My company sends my iphone4 Urgent text messages during after hours. How can i have my iphone 4 alert me and wake me during after hours endlessly of a text message until I acknowledge Ive received the text message?

    Any suggestions on how to make the IPHONE 4 continuously alert of an incoming text message until acknowledged?
    Message was edited by: darrelfromgray

    You have a Verizon phone. 4.2.10 IS the current version for the Verizon iPhone. You don't have all the same options as on the GSM iPhones. This will be rectified when iOS 5 ships this fall.
    I'm assuming the text messages you're getting are automated...? If not, you could always have a human being call you every few minutes until you answer if you don't respond to the page after a certain amount of time.

  • Shot in the dark... project due in 36 hours. help?

    Hi everyone. I am posting this here because I have had no luck with any other program or anyone I've been able to ask (a handful of computer science students). What I am trying to do is a fairly simple operation that I would really really like to have done for my presentation friday morning. If anyone would be able to write a script, point me to a similar script, or give me a head start/ a sample script to start working with I would immensely appreciative; I don't know of any way to repay any of you but if I can find a way I will do it. My problem:
    I have 5 lines. They are exactly the same line, the same x,y coordinates; they entirely overlap each other. Their only difference is that their stroke weights vary. What I am looking to do is basically find the average stroke width of these lines. Ideally the output would be in a new line with those same x,y coordinates with the new stroke weight. A text output, any output of any kind would be perfect.
    I have attached a pdf visually explaining what I am trying to do to this thread.
    Again, if anyone can help me in any way, I would be forever grateful. Thank you
    Nick
    Edit: Random side note: Today is my birthday, this would honestly be the best present I get all day!

    literally, perfect. i wish i could give you more points!
    edit: just so you have it, here is the final script. I needed to change a couple things but i figured it out myself!:
    var doc = app.activeDocument;
    var sel = (doc.selection.length > 0) ? doc.selection : doc.pathItems;
    //init array to hold our lines
    var myLines = [];
    var lowestYCoord = null;
    //init the variable that will hold our reference line(the other lines have to have similar properties to this one)
    var refLine = null;
    //loop through the document to find pathitems
    for(j = sel.length - 1; j >= 0; j--) {
       if(sel[j].typename == "PathItem"){
              if(getConstructionPoints(sel[j]) == '') {    
                      lowestYCoord = ( lowestYCoord == null) ?  sel[j].top :  lowestYCoord;
                      lowestYCoord = ( lowestYCoord > sel[j].top) ? sel[j].top : lowestYCoord;
                      if(refLine == null) { refLine = sel[j]; }
                      myLines.push(sel[j]);
    //let's loop through our lines if we have any
    if(myLines.length > 0) {
        var aSum = 0;  
        for(i = myLines.length - 1; i >=0; i--) {
           if(myLines[i].stroked) {
                aSum +=  myLines[i].strokeWidth;
            if(myLines[i] != refLine) myLines[i].remove();
        var newStroke = aSum / myLines.length;
        //create our new line in the same position as our reference line defined somewhere above
        var myLine = refLine.duplicate();
        myLine.strokeColor = refLine.strokeColor;
        myLine.strokeWidth = newStroke;
    refLine.remove();
    function duplicatePathPoints(shp1, shp2) {
        for(j = shp1.pathPoints.length-1; j>=0;j--) {
            var pt = shp2.pathPoints.add();
            pt.anchor = shp1.pathPoints[j].anchor;
            pt.leftDirection = shp1.pathPoints[j].leftDirection;
            pt.rightDirection = shp1.pathPoints[j].leftDirection;
            pt.pointType = shp1.pathPoints[j].pointType;    
    function getConstructionPoints(path) {
            var pts = path.pathPoints;
            var ctspts = "";
            var x = 0;
            if(pts.length < 3) return [];
            for(i = pts.length - 1; i>=0;i--) {
                var pt1 = (i == pts.length - 1) ? pts[0] : pts[i + 1];
                var pt2 = (i == 0) ? pts[pts.length - 1] : pts[i - 1];
                var slope = (this.getSlope(pts[i], pt1)!=null) ? this.getSlope(pts[i], pt1).toFixed(2) : null;
                var slope2 = (this.getSlope(pts[i], pt2)!=null) ? this.getSlope(pts[i], pt2).toFixed(2) : null;
                if(slope != slope2) ctspts += "|" + i + "|";
            return ctspts;
    function getSlope(pt1, pt2){
            var i1 = pt1.anchor[1] - pt2.anchor[1];
            var i2 = pt1.anchor[0] - pt2.anchor[0];
            var slope = (i2 == 0) ? null : i1/i2;
            return (slope == 0) ? 0 : slope;

  • Please please help formating?

    Hi does anybody know how to convert a double which represents a time, it is currently displaying the time in milliseconds and I need to have it in hours and minutes?
    please please this is really urgent its due in an hour!!

    First, your urgency doesn't matter to anybody here answering questions. Please keep that in mind for next time.
    If the double represents milliseconds since 1/1/1970 00:00:00.000 GMT then you can cast it to a long, construct a java.util.Date from it, and then format the a string representation of that date with java.text.SimpleDateFormat.
    The rest of the information you need is in the docs for those classes. Good luck.

  • Man-Hours Estimation template for BW objects

    Hi,
    I tried to search for specific templates relating to Man-Hours Estimation for the development of BW objects like Extractor programs,datasources, infosources , Info Providers , Queries , Web reports etc. But I was not that successful.
    It would be great if anybody helps me in finding/making  such template or the root/means(Links or documents) of creating the template.
    I'm sure everyone uses it in the projects.But looking for an optimized,easy-to-use, close-to-reality estimation template.
    Thanks in Advance
    - Priyu

    Hallo Priyu,
    for our tasks concerning our BW-SEM system we use an Excel list with the following columns: Area (e.g. data basis, operation,...), No. (serial number), Category (e.g. to-do, point at issue), Error(E)/Revision(R), Date of Admission, Description (e.g. technical name of BW object), Priority, Responsibility, Contact Person, Expense (man hours), Status (e.g. open, in process, done), Next Activity from, Date of Completion, Remarks.
    If you like to use this template, I could post it to your email adress.
    Regards,
    Martin Lehmann

  • Email template error

    Hi All,
        Can anyone help me on this errro in CAF GP Design Time
    When I am trying to clickon CAF GP->administration->Email Template
    I am getting the following error:
    "The following error occured while populating the list: The language dependent mime does not exist."
    I am not getting all the templates due to this error.
    This error is coming, becoz initilally we tried to create an email tempolate for japanese language... in that we tried to set the japanese MIMI ....after that we are getting the above error.
    plz tell me the solution to remove this error.

    have you tried to search for all the email templates and delete the ones you don't want?
    In the Email Templates view, you can find all the templates by searching for "*", select the ones you don't want and click "delete"

  • Multiple Images Import template?

    Hi folks,
    First of all, I cannot find the link to product import templates anywhere after an hour's search. That is just wrong!
    Secondly, as I remember seeing one, it doesn't offer multiple views of a single product. But i've seen stores with multiple product views.
    Can someone direct me to the proper database templates and import files for adding multiple images to a product?
    TIA

    Hi Liam,  So are the poplets connected to the product database and is there a way to bulk upload them with the csv file?  Or does this have to be done individually by hand? If there isn't a place for the additional items in the csv file, then it seems they aren't directly linked in the product database?
    I think I found the template before when I was doing research for the BC product in the product information area and not in the actual product import area. I couldn't see the download template until after I pressed product import. That was very deep in the system, with multiple clicks to get there.

  • Error in Room Template Creation

    hi,
    In portal we developed our own room template.Due to some reasons we have deleted that room template also.After deletion the room template name is not appearing in the dropdown when I try to create a room.
    But when we tried to create another room template with the same room template name which I have deleted earlier, it is giving an error 'No valid name for room template'. what is the reason.........
    Is the deleted room template existing anywhere?
    Thanks and regards.
    shami.

    Hello Shami,
    Deleted room is not existing but its record is maintained in Room Template Version Folder.( I am referring NW2004s, EP7.0, SP11)
    So it might not allow the deleted name to use.
    Sorry I can't attach the screen shot to prove my point .
    Thanks and regards,
    Pradnya

Maybe you are looking for

  • Which video card for Aperture and dual monitors?

    I have a G5 dual 2.0 with a GeForce FX 5200 video card that is driving one 23" Cinema display. I need to upgrade my card per the specs to run Aperture. I have also been thinking of getting a second 23" display. Can someone recommend the best video ca

  • How to create a video photo stream in iPhoto?

    I would really like to get the high resolution videos from my phone and iPad to my Mac. I would like them to go into iPhoto on the iMac. Is this possible? I can't figure out how to even get a shared photo stream to show up in iPhoto on the Mac. Furth

  • Album sync not working correct

    Hello everybody, i use the Photos app since the first Beta and i think that there is potential to be a good App. (IOS really needs the possibility to delete only the local picture an not the one in the include ) Now i updated to the new Yosemite and

  • UnsupportedMediaException

    Hi guys i'm using JAX-WS to consume a WS, but I'm getting this exception while running. com.sun.xml.ws.server.UnsupportedMediaException: Unsupported Content-Type: text/html Supported ones are: [text/xml] the code: wsclient.ws.AddWSService service = n

  • Problem with USB installer and OS X Mavericks

    Hi, I found an interesting issue with a usb installer for OS X Mavericks where I used the  Terminal to evoke OS X Mavericks disk maker utility. The boot able drive was created successfully and I erased my OS X partition and proceeded to install via t