Advice for placing rotated graphics in a table

In order to help save some space, I would like to place 4 graphs in a 4 row x 2 column table and have the page in a landscape format (see attached PDF for the desired layout diagram).  What type of cell should be used for the figure titles to get the desired results: table cell, text frame, anchored frame, other?
I tried a table cell but I do not know how to fix the row height.  Rotating the text was easy.  But it is the row height since I am making this landscape, right?  As I keep typing the figure title, the table row height just keeps growing.
Perhaps I should not be trying to place the graphics and figure titles in a table.  My figures are wider than they are taller and that is why I want the overall page to be landscape.  I would like to do this multiple times within a book.

Arnis Gubins wrote:
Peter,
My bad - you're right. I didn't check this out on FM before shooting off the answer. With FM8 & 9, it always rotates the pages automatically to the correct orientation (as far as I quickly tested). I was remembering a problem when printing envelopes and labels with FM6 where I had to always manually rotate the pages and the habit has kind of stuck in my head.
I think the envelope template always was annoying because it assumed that the envelopes were only fed from the edge of the paper tray, so it lined up the envelope along the side. Some trays and manual feeders feed from the center, so that template's off by inches. Yes, I also remember something about the orientation being a fooler, which is why I learned to print to PDF or a sheet of used paper first, to remind me how it works.
And yes, you remember correctly - in the Table Designer, the  Numbering option allows one to specify either Row First or Column First behaviour.
Well, this is my bad - I had written it as the Paragraph Designer's Table Cell properties. There's good reason to cross these wired, viz. and to wit, the User Guide:
Customize the vertical alignment of text in a cell
1Click in the cell you want to customize.
2Choose Format > Paragraphs > Designer to display the Paragraph Designer.
3Choose Table Cell from the Properties pop-up menu and then choose Top, Middle, or Bottom from the Cell Vertical Alignment pop-up menu.
4Click Apply To Selection.
Note: The vertical alignment that you apply to a cell will persist even when you apply a different table format from the Table Designer.
Specify the direction of autonumbering in a table
When you insert a table, the table format determines the direction of autonumbering within cells—either across rows or down columns. This property also sets the direction of autonumbering for table footnotes.
1Click in the table you want to change, and choose Table > Table Designer.
2In the Basic properties of the Table Designer, choose Row First or Column First from the Numbering pop-up menu.
3Click Apply To Selection.
The subtle transition from the Paragraph Designer's Table Cell properties context to the Table Designer's Basic Numbering property context is pretty slippery, IMO.
Also, the writing around the bug of persistent vertical text alignment in a cell when changing table formats, is quite sly. I've never seen this called out for a bug to be fixed, so it's probably not encountered often, if at all.
Regards,
Peter Gold
KnowHow ProServices

Similar Messages

  • Advice for custom transformation script to change table FK Associations

    Hello,
    I am attempting to write a transformation script that will cycle through tables in a large model and modify some
    FK associations to change the remote table in the FK. As an aside, the reason for this is that our logical model
    has logical entities that represent many small lookup code domains. However our relational/physical model has a
    single utility code repository physical table which contains all these code domains. So part of the transformation
    from our logical model to relational model is to swing all the FK associations for these lookup code domains
    into the common code table. Then the tables representing the lookup domains can be hard deleted.
    In any case, I'm looking at the
    oracle.dbtools.crest.model.design.relational.FKIndexAssociation
    or the
    oracle.dbtools.crest.model.design.relational.Index
    to see if one of these can be manipulated to perform the transformation I want to accomplish.
    When I perform the equivalent process manually via property sheets there are several ways of accomplishing this.
    a) The neatest method seems to be to modify the existing FK in place by clicking on the FK in the relational diagram and then changing
    the property called 'PK / UK Index'. Change that to the PK of the utility code repository table that is replacing the original
    table (representing the lookup domain). A side effect of this results in the mapping of the FK
    columns being nulled out. So they need to be remapped to the original columns (which are retained).
    So in two steps the existing FK is detached from the original table, reattached to the new table and then
    the FK columns are reused in place for the new FK mapping.
    b) The brute force method is to delete the original FK and then create an entirely new FK to the new table. There are
    multiple dialogs which allow you to retain the original FK columns and reuse them in the new FK.
    I realize this is a somewhat complex transformation but I'd appreciate some algorithmic advice on which path to take
    to try to accomplish this. In particular, is there a scripting equivalent to the first process above?
    I don't even know if the FK that is represented on the relational diagram is represented by the FKIndexAssociation or Index
    class in the scripting object model. In other words, as I loop through the tables in the relational model what would be my
    starting point:
    fks = table.getFKAssociationsList();
    or
    fkIndexes = table.getAllInds_FKeyInds();
    or something else. The names of the properties in the user interface don't always match with the scripting properties so
    it's a little tricky to figure this stuff out.
    Once I get access to the object that is equivalent to the FK in the diagram/property sheet, what
    is the best way to manipulate it via scripting. How can I change the parent/remote end of the FK to point to the new table.
    Or if I have to delete the original FK and then recreate it - is there a way to save the original FK columns and reuse them
    while creating the new FK?
    One other question. What is the best way to delete tables from a relational model. I note that there is an undocumented (?) remove()
    method that is available on Table. It is probably on a superclass so other things can be removed as well.
    When I try to use this method in a loop the script throws up dialogs similar to the dialogs that appear while performing a delete
    manually via the UI. Is there any way to intercept and respond to the dialogs programmatically?
    So for instance if I get a dialog popup like
    Do you want to delete generated FK columns 'FOO' in table 'BAR'?
    is there a way to intercept that dialog in the script and then answer Yes or No to it via the script?
    If it turns out to be too difficult to perform this type of transformation via scripting the fallback
    is to perform the transformation on the generated DDL file. But it would be cleaner to be able
    to perform the transformation in the DM Relational model if possible.
    Any advice appreciated.
    Rgds, BP

    Philip,
    This is good info. I was able to get a rough version of my transformation script to work.
    However I'd like to clean it up a bit.
    In your notes it is not clear how the FKIndexAssociation and associated Index are related.
    Is there a getter on FKIndexAssociation that references the associated Index?
    It looks like the method fk.changeKeyObject() takes an Index object as its first parameter.
    What would be the cleanest way to extract the PK Index from the Code table that I want
    to point to? I used something like:
    cdTable = model.getTableSet().getByName("CD_REPOSITORY");
    cdPkIndex = cdTable.getIndexByName("CD_REPOSITORY_PK");
    I used the latter method because it's the only one that returns an object of type Index
    which is required as input to FKIndexAssociation.changeKeyObject(). However this method
    requires the name of the index. That's fine but I'd like to just grab the PK's supporting index
    directly if possible (without knowing the name).
    I'm curious if there is a getter on Table or FKIndexAssociation that can just grab the index of the PK of
    a table directly?
    I don't see such a getter on FKIndexAssocation. On the Table class there are many getters that might be
    of some use but the only one I could get to work was getIndexByName() as shown above.
    I tried to use getIndexes() and then use isPk() on the result of that in a loop but that didn't return any result.
    It looks like getters getIndexes(), getPKs(), getUKeys() return collections of DesignObject which are just the
    superclass of FKIndexAssociation which is not what I need (i.e. which IS the actual underlying Index object).
    So I guess the general question is what is the best way to get access to the Index objects in two scenarios.
    First for the PK and UKs (typically on the 'parent-referenced' table) and secondly for FKs (typically on the 'child-referencing' table).
    If I were imagining how this would work I would imagine getters on the Table for the former and a getter
    on the FKIndexAssociation for the latter. But that's not how it works.
    Also, as an aside - this 'Index' is somewhat confusing since these seem to be 'potential indexes' and not true database indexes.
    These 'indexes' seem to be more closely related to database constraints and not actual indexes. I know that Primary Keys are
    implemented in Oracle via a unique index but I'd like to confirm that the class
    oracle.dbtools.crest.model.design.relational.Index
    is not the same thing as a DDL database Index.
    Secondary question. I notice when I run the script which loops through all the tables and redirects the FKs - the
    diagram does not refresh. I had to save the model and then reload it for the graphical representation
    of the FKs to change and redirect to the new table.
    Is there a way to force the refresh to occur right away?
    I've noticed that other transformation scripts I've written HAVE resulted in the diagram being refreshed
    right away (even while the script is running). In this case it does not.
    Rgds, BP

  • Need advice for a new graphics card

    Hey this is my first time posting here. I've got a Power Mac G4 MDD 1.25GHz with the original ATI Radeon 9000 Pro. I just recently tried installing Final Cut Suite 2 and found out my card isn't good enough. I've tried doing some research into what I need to buy, but have been rather confused. Any recommendations? I need to run the newest Final Cut. Thanks!

    Welcome to Apple Discussions!
    Retail card options are limited to two ATI Radeon cards. The current 9800 has the most capable graphics processor unit (GPU) but only 128MB VRAM. The 9600 is a little cheaper and has 256MB VRAM to make up for a slower GPU. Still, both cards are more capable than the 9000.
    I find the Mac specs on the ATI site confusing and sometimes outdated since being absorbed by AMD. Frankly, one of their resellers, Other World Computing, does a better job of showing current ATI specs than ATI. The two cards are listed on this page:
    http://eshop.macsales.com/search/videocardsAGP

  • What is the best size for using a graphic as my homepage?

    I am building my website in iWeb
    My graphic designer is going to send me a graphic that I want to use as my homepage graphic - I will input some text.
    He keeps asking me what size graphic I want (he charges by size)
    If this means file size is my answer 72dpi/ppi = the most efficient?
    What size should image be from graphic designer? in inches? in pixels? in KB and MB?
    Is GIF format is best?
    I want this to be nearly the full page size. It will be in Black Red and White (the white being a bright white, the red a deep almost crimson)
    I'm a novice. Need good advice for placing this graphic into iWeb as my homepage... Mahalo ~!~

    Satya ~ Welcome to the Support Communities.
    satyafromkula wrote:
    I want this to be nearly the full page size.
    According to Apple, the width of most webpages is 980 pixels. If you request that your graphic designer make a JPEG image of approximately that width, you can then use this free, online tool to reduce its file size without affecting its perceptual quality:
    http://www.jpegmini.com
    If the image appears too slowly in a browser, you could reduce its file size further (with a loss of quality) via the Preview app:
    Preview 5.0 Help: Reducing an image’s file size
    Also see the option in iWeb's Preferences “Optimize images on import.”

  • Beginner need advice for PS table

    Dear All,
    Kindly advice the function and name of  PS table that are normally use in PS module. Such as PRPS,PROJ,AUFC.
    Many thanks in advance.
    Nies

    Hi,
    Please find detail list of tables in SAP-PS.
    Master Data:
    PROJ Project definition
    PRPS WBS elements
    PRTE Scheduling data
    PRHI WBS hierarchy
    AUFK Orders/networks headers
    AFKO Production Orders/networks
    AFVC Network activities
    AFVU Network activities
    AFVV Network activities
    RESB Network Components
    MLST Milestones
    Transaction data and totals:
    RPSCO Project info database (cost, revenues)
    RPSQT Project info database (quantities)
    COSP Cost totals for external postings
    COSS Cost totals for internal postings
    COSB Total variances/result analysis
    COEP Line items, actuals
    COOI Line items, commitments
    COEJ Line items, planned orders
    BPGE Budget, overall cost
    BPJA Budget, annual values
    QBEW Project stock valuation
    MSPR Project stock (incl. non-valuated)
    AUFK Order master data
    AFVU DB structure of the user fields of the operation
    AFKO Order header data PP orders
    EBAN Purchase Requisition
    EBKN Purchase Requisition Account Assignment
    JEST Individual Object Status
    LFM1 Vendor master record purchasing organization data
    EKKO Purchasing Document Header
    EKPO Purchasing Document Item
    CSKU Cost Element Texts
    CSKT Cost Center Texts
    ANLA Asset Master Record Segment
    JCDS Change Documents for System/User Statuses (Table JEST)
    COSP CO Object: Cost Totals for External Postings
    COSS CO Object: Cost Totals for Internal Postings
    COEP CO Object: Line Items (by Period)
    BKPF Accounting Document Header
    BSEG Accounting Document Segment
    CSKS Cost Center Master Data
    COBK CO Object: Document Header
    CEPC Profit Center Master Data Table
    PRPS WBS (Work Breakdown Structure) Element Master Data
    PROJ Project definition
    PRHI Work Breakdown Structure, Edges (Hierarchy Pointer)
    TJ02 System status
    BPJA Totals Record for Annual Total
    Hope this will solve your problem.
    Regards,
    Rakesh Pradhan

  • Rotating objects in a table

    I have dropped an object (picture) into a pages document. Then I rotated it with 90°. When I copy or drop the picture into the cell of a table, it is rotated back into the original orientation and I cannot rotate it any more.
    Is there a possibility to rotate objects in table cells?

    The only way I can find to do it actually doesn't insert the graphic in the table per se. It's a workaround that may or may not suit your purposes. FWIW:
    1. Click outside the margin and insert a shape (square) as Fixed on Page and in the Wrap Inspector deselect Object Causes Wrap.
    2. Drag it over the cell you want the picture in and size it to fit the cell.
    3. In the Graphic Inspector's drop down Fill menu, choose Image Fill and choose your picture (rotated as you want it). In the drop down menu below the Fill menu, select either Scale to Fit or Scale to Fill, as necessary.
    4. When you have the picture situated as you want it, click on the picture and shift click on the table and from the Arrange menu select Group.
    At this point you can set it for Moves With text if that is what you need, or leave it as Fixed on Page and position it where you want it.
    Hope this helps.
    Walt

  • Advice for switching to MBP

    Hi there,
    I know tons of questions have been asked about this, but to save me filtering through hundreds of threads i'd appreciate if people could fill me in here
    I have been wanting to get a MBP for sometime now (in the UK), and well, because of uni exams, and because i kept on hearing problems with the MBP i have put it off until now.
    What I wanted to know is.. have Apple done anything to resolve the issues, is the heat thing really an issue or should i be more worried with this 'whinning' thing (and what exactly is this problem?).
    I am not planning on switching completely to macs (yet), so i doubt i will be running intensive apps on it etc as i am still comfortable using my PC, but i do plan on using bootcamp to put XP on the MBP (or maybe use parallels.. dunno yet). Are macs easy to get used to, and how hard will it be to get my head around the new operating system, and using new programs that i have never heard of to replace pc apps?
    Oh, and one final question.. if I get a MBP and have problems, is Apple Care good, and are they quite good to exchange the computer, considering the amount of problems they seem to be having?
    A few questions i know :0) but i just wanna make sure I know what i am getting myself into for the money that will be spent on this.
    Thanks in advance
    Dell Dimension 8400   Windows XP Pro   2GB RAM, 3.2GHtz, 320Gig HD

    I very highly recommend getting one of these laptops. There are some complaints about the machine that you will read on these boards and in other sites, to be sure, and many of these comments ARE warranted, but a bit of perspective must be taken, in my opinion.
    Let's look at the most common ones.
    THE HEAT ISSUE. This IS an issue, but a tolerable one. I think much of your experience with this will be determined by HOW you use your laptop. When placed on a desk or table, where the bottom of the machine is very slightly elevated from the surface by the little rubber feet, the machine remains a bearable temperature, as the bottom of the unit radiates much of the heat away from the device. The top of the machine does not get unbearably hot if care is taken to allow for airflow under the machine. I am what could be termed a "bed user". I like to lounge out on my bed with the laptop in front of me while I watch television. If I let the unit sit directly on the top of the bed or the couch, for that matter, the entire unit WILL get very warm. I usually grab a large thick magazine, or even a plastic tray, and set the MacBook on top of that, thus allowing for the airflow under the unit. It remains a nice working temperature. I don't use the machine IN my lap for long periods of time. Indeed, with that 15" display, calling this machine a "laptop" is a bit of a misnomer, anyway.
    THE WHINE ISSUE. Well, there IS a whine when the machine is unplugged from AC and running on battery power. Your tolerance of this will depend upon the sensitivity of your hearing, but also in your position relative to the machine. If I am lounging out in a quiet environment, with my face a foot or so from the screen, yes, there is a high-pitched whine, and it can be grating. I generally just put something on iTunes, and it effectively masks the sound. BUT that being said, if you again use the machine on a desktop or tabletop surface, and are sitting at a "normal" viewing distance, while audible, the whine is not intolerable. IF I lean into the machine, I will hear it, and it can get a bit annoying. Again, this is only if I am in a quiet environment with little ambient noise. This problem will probably be addressed in the future with an update, as it is affected by processor load.
    That being said, the positives of this stunning little machine are staggering. It is blisteringly fast. The dual processor cores just make this thing tear through processor-intensive tasks, while still providing for a very responsive user experience. The screen is gorgeous. The graphics are fast. The ability to run Windows on the thing is such an amazing plus to the whole experience as well. I haven't any experience with Boot Camp, but I have been using Parallels (which is at Release Candidate 2 now, btw) and this thing is wonderful. It takes less than 10 seconds to boot into Windows XP, and it runs at near-native speeds. Using Virtual PC on PPC Macs was grueling. I don't often have to use Windows, but when I do need to test something, or run some strange application that has no Mac counterpart, or need to test a website, being able to boot into this virtual machine is great. Blow the virtual machine up to full screen and it is like I am using a well-designed wintel laptop.
    The large trackpad is wonderful, two fingered scrolling is such an obvious and wonderful interface addition, and the minimal design is great. I cringe when I see Windows laptops with about two dozen extra little buttons and lights on them - convenience features, supposedly. The MacBook Pro design follows the design philosophy of its predecessors... pare down the spare junk on the machine, until you have the bare minimum needed to do the most work.
    Airport reception is fast, the hard drive is fast (I got the 7200 RPM update) and such things as driving external monitors, or using it in lid-closed mode are sweet as well. This is a wonderful product.

  • Positioning anchored graphic outside of table

    I have a single-cell table with a small graphic that is anchored so that it is positioned to the left of the table and is particially in the margin area. The reason that the graphic can't be in a table cell is because it has to jut into the margin, past the text frame.
    The table is inserted periodically throughout several documents. The lines of text in the table can vary -- sometimes it will have 1, 2, 3 lines of text in the cell.
    I need to have the anchored graphic centered vertically to the left of the text in the cell -- the "y" distance for the anchored graphic varies according to the number of lines in the table cell. Is there a way to automatically center the graphic so that it doesn't need to be manually positioned for each table?

    Make that frame the height of your cell and center its contents vertically. .. Oh wait, your row heights may be different, so you still have to resize the anchored frame. Anchor the frame into a cell that has its own contents vertically centered?
    Perhaps there is an easier way. Re-reading from the top, you state "The reason that the graphic can't be in a table cell is because it has to jut into the margin, past the text frame." Well, a table can jut out into the margin at the right, if it is wider than the text frame -- a flaw/oversight/"feature" that has been put to good use for creating straddling headlines over two columns.
    Let me put this question to you: what happens if you (a) insert a new column to the left of your table to put the graphic in, thus making the table too wide, and then (b) **Sanity Warning! Untested Claim Follows** set the paragraph of the table to right alignment?

  • Recreate remittance advices for all payment runs of the day at once a day.

    Hello Sap Gurus,
    Here we have requirment for remittacne advices , so please find below quey.
    1.      Run once a day and recreate all the remittance advices for all the payment runs of the day.
    2.       Convert this into PDF format and download to the LAN structure automatically.
    3.       This program should be scheduled in batch and have proper error handling to alert a user via email should there be a error in the download as we need to understand immediately if we donu2019t have all the remittance advices on the LAN.
    Please provide valuable inputs for the customised program? and is this possible with customised program? or any standard SAP avialable for ths requirement.
    Regards,
    Raj

    HI,
    You can create the same via a custom program with below steps:-
    (1) Fetch all the payment run IDs from table REGUV for a particular run date.
    (2) Then for each run date and run identification combination, call in loop Remittance Advice Printing Program (RFFOAVIS or RFFOAVIS_FPAYM) and it will generate the spool.
    (3) Then call the program RSTXPDFT4 to convert the spool into a PDF file and store on SAP aplication server.
    Then you can have a interface from SAP Application server to your LAN to have the file transferred.
    Regards,
    Gaurav

  • Loading/Placing multiple graphics in the correct order

    Hi. This might be hard to understand but... On a Mac (OSX 10.5.5) when placing multiple graphics at once in InDesign CS3, is there a way to have the graphics loaded/placed in the same alpha-numeric order that they show up in an open folder window (sorted by name) in the Finder? They are in correct order in the finder window with the absolute value of the file number taken into account instead of the number of decimal places (for instance 8000 comes before 12000) but they seem to load up in the placement cursor by referencing the first digit instead. I know this has been how it's always worked, but Apple has fixed the dilemma. Is Adobe just behind in this idea? Is there a better way for me besides renaming all the files or placing them one by one? I just tried changing the links palette to "Sort by name" but they go into old school computer alpha-numeric order based on the first number unfortunately. Any ideas would be much appreciated!
    Thanks,
    Mike

    I don't have a real answer, but my "peanut gallery" comment is that alphabetizing has been eff'd up in OS X since 10.0 (Finder and other apps), and never works reliably in all instances. Though it has been fixed up "better" by now, 10.5.
    Makes me long for the good old days of OS 9 where everything worked right.

  • MBP Purchasing Advice for a G5 user

    Hi there. I'm a former PC user and I recently inherited my son's PowerPC G5 with 24 inch display that I absolutely love. it has OSX 10.4 and I use it for alot of graphics applications...all of the Adobe Creative Suite CS4 stuff. web sites, photoshop, Indesign, etc. really love that computer.
    but i need portability for travel, which i do alot of. i'm struggling with which MBP to purchase. I'd like to continue to use the G5 at home, and have it be my primary graphics station, and only use the MBP for travel. but the MBP still needs to be able to run all the CS4 stuff. so, which MBP should i buy and is it silly to keep using the G5 for my primary work? it works really well for all of my needs.
    also, i understand the G5 is stuck at OSX 10.4 and can't be upgraded higher. will the new MBP with snow leopard introduce complexities when i am going between the two, exchanging files, etc?
    thanks for any advice.

    I'd recommend the 15 in MBP. And in particular, if you can, the 2nd MBP. For several reasons. One will be screen size. Especially with graphic programs, big screens are invaluable. I couldn't do my web design on a tiny 13 in screen. The 15 in also have a bigger battery which will help with travel.
    The 13 and the first MacBook Pro all have the 9400 graphics card. Which isn't as good as the previous graphics processor (8600). If you got the step up MBP it would have the 9400 and the 9600. The latter of which is definitely better. This allows for the battery to last longer on the standard graphics processor, but can easily switch over to the discreet graphics card when it needs to.
    I haven't really done much with 10.4 so I am not sure about software. If you still have the discs yes! You should just be able to reinstall the programs on your new computer. As long as the software is generally newer and supports leopard, it should support snow leopard. There is a list of software that has problems available here (http://snowleopard.wikidot.com/).
    As for exchanging files! You should be good there. It's still going from a Mac to a Mac. Even going to windows there usually isn't a problem.
    Hope I helped!

  • Associative array type for each blob column in the table

    i am using the code in given link
    http://www.oracle.com/technology/oramag/oracle/07-jan/o17odp.html
    i chnages that code like this
    CREATE TABLE JOBS
    JOB_ID VARCHAR2(10 BYTE),
    JOB_TITLE VARCHAR2(35 BYTE),
    MIN_SALARY NUMBER(6),
    MAX_SALARY NUMBER(6),
    JOBPIC BLOB
    CREATE OR REPLACE PACKAGE associative_array
    AS
    -- define an associative array type for each column in the jobs table
    TYPE t_job_id IS TABLE OF jobs.job_id%TYPE
    INDEX BY PLS_INTEGER;
    TYPE t_job_title IS TABLE OF jobs.job_title%TYPE
    INDEX BY PLS_INTEGER;
    TYPE t_min_salary IS TABLE OF jobs.min_salary%TYPE
    INDEX BY PLS_INTEGER;
    TYPE t_max_salary IS TABLE OF jobs.max_salary%TYPE
    INDEX BY PLS_INTEGER;
    TYPE t_jobpic IS TABLE OF jobs.jobpic%TYPE
    INDEX BY PLS_INTEGER;
    -- define the procedure that will perform the array insert
    PROCEDURE array_insert (
    p_job_id IN t_job_id,
    p_job_title IN t_job_title,
    p_min_salary IN t_min_salary,
    p_max_salary IN t_max_salary,
    p_jobpic IN t_jobpic
    END associative_array;
    CREATE OR REPLACE package body SHC_OLD.associative_array as
    -- implement the procedure that will perform the array insert
    procedure array_insert (p_job_id in t_job_id,
    p_job_title in t_job_title,
    p_min_salary in t_min_salary,
    p_max_salary in t_max_salary,
    P_JOBPIC IN T_JOBPIC
    ) is
    begin
    forall i in p_job_id.first..p_job_id.last
    insert into jobs (job_id,
    job_title,
    min_salary,
    max_salary,
    JOBPIC
    values (p_job_id(i),
    p_job_title(i),
    p_min_salary(i),
    p_max_salary(i),
    P_JOBPIC(i)
    end array_insert;
    end associative_array;
    this procedure is called from .net. from .net sending blob is posiible or not.if yes how

    Ok, that won't work...you need to generate an image tag and provide the contents of the blob column as the src for the image tag.
    If you look at my blog entry -
    http://jes.blogs.shellprompt.net/2007/05/18/apex-delivering-pages-in-3-seconds-or-less/
    and download that Whitepaper that I talk about you will find an example of how to do what you want to do. Note the majority of that whitepaper is discussing other (quite advanced) topics, but there is a small part of it that shows how to display an image stored as a blob in a table.

  • HT204053 Is it possible to have two (or more) different icloud mail accounts (not alias) under the same apple id? If not what is you best advice for all family members to have their own e-mail and still share the purchases under the same apple id. Thanks

    Is it possible to have two (or more) different icloud mail accounts (not alias) under the same apple id? If not what is you best advice for all family members to have their own e-mail and still share the purchases under the same apple id. Thanks

    mannyace wrote:
    Thanks for the response.
    So I basically won't run into any trouble? I
    There should be no issues. Its designed to work like that.  You don't change Apple IDs just because you get a new device.
    mannyace wrote:
    Thanks for the response.
    Is there any chance that the phones can fall out of sync?
    Unlikely. But nothing is impossible.   Though I don;t see how that would happen. As long as both are signed into the Same Apple ID / iCloud Account they will be N'Sync. (Bad Joke)
    mannyace wrote:
    Thanks for the response.
    If I get a message or buy an app or take a photo on the iPhone 5, how do I get those things onto the iPhone 6?
    If you buy an App, you have 2 ways to get it to the iPhone6: If Automatic Downloads is enabled in Settings->iTunes & App Store, it will automatically download to the iPhone 6 when you buy it on the 5 and vice versa if you buy it on the 6, it will download to the 5.
    Alternatively, you can simply go to the App Store App->Updates->Purchased and look for the App there and download it. Purchased Apps will not require payment again. i.e They'll be free to download to the iPhone 6 once purchased.
    SMS Messages will sync over using Continuity as long as they are on the same Wifi network. Otherwise, restoring the iPhone 5 backup to the iPhone 6 will transfer all messages received up until the backup was made onto the iPhone 6.
    Images, can be transferred either through Photo Stream
    My Photo Stream FAQ - Apple Support
    Or any Cloud service you want such as Dropbox, or One Drive.
    mannyace wrote:
    Also, something i forgot to ask initially: Should I update the iPhone 5 to iOS 8 first or does that not matter?
    If you want the Continuity features as explained above you need to update the iPhone 5 to iOS 8. Otherwise its not all that important.

  • Multiple DEVL_PROJECT_ID for the same model in CZ_DEVL_PROJECTS Table.

    Hi,
    Did anyone came across this issue!! I am triggering the config engine from back and and trying to pick up a model but it has multiple devl_project_id's. :(
    I could see multiple DEVL_PROJECT_ID for the same model in CZ_DEVL_PROJECTS Table. Apart from DEVL_PROJECT_ID and created_by_date every thing looks the same.
    Below are the 2 records the data from the table
    select * from CZ.CZ_DEVL_PROJECTS where product_key = '122:17056' and DEVL_PROJECT_ID in (12943,15321)
    DEVL_PROJECT_ID     NAME     ORIG_SYS_REF     CREATION_DATE     LAST_UPDATE_DATE     PERSISTENT_PROJECT_ID     MODEL_TYPE
    12943     ASI XXX MODEL(122 17056)     OPTIONAL:122:17056     12/18/2012 10:01     12/18/2012 10:01     11100     A
    PRODUCT_KEY     ORGANIZATION_ID     INVENTORY_ITEM_ID     BOM_CAPTION_RULE_ID     NONBOM_CAPTION_RULE_ID
    122:17056     122     17056     802     801
    15321     ASI XXX MODEL(122 17056)     OPTIONAL:122:17056     12/26/2012 23:10     12/26/2012 23:10     11100     A     
    122:17056     122     17056     802     801
    Thanks in advance,
    -vijay

    It can be possible to have multiple devl_project_id for the same model in cz_devl_projects Table.
    Case -1 : When you delete the existing model and re-import again.
    case 2:
    When you publish the model locally, it will create the same copy of the record with different devl_project_id, creation_date, last update_date etc..\
    You can see that for published records the last_updat_login, checkout_user will be null and for the original model, last_update_login,checkout_user (if model is locked) will not be null.
    -Murali
    Edited by: 907569 on Jan 8, 2013 10:55 AM

  • Multiple libraries, Pbook/Pmac, advice for management & updating please.

    Hi Everyone,
    I travel frequently, and am looking for suggestions to keep all my iPhoto libraries up to date. I currently have a g5, Powerbook, and Mini.
    I just upgraded to iPhoto 6 and I have several thousand photos on my Dual g5. I just came back with 1000 more from my diving trip. The problem is, they are on my Powerbook, and taking up alot of space on the relatively small hard drive. I managed to work through the rough upgrade from 5 to 6, and now I need some more help...
    1) What is your advice for managing multiple libraries of photos.
    2) What is the best way to transfer the iphoto pics (and movies) to my desktop, which of course has the larger storage capacity, after travelling...
    Thanks,

    Jason:
    There are several different approaches to what you want to do. Let me just throw out a couple that I'm familiar with.
    To get the new photos from your PB to your G5 and maintain any keywords, and other organization effort you put into them, you'll need the paid version of iPhoto Library Manager. It will allow you to merge libraries or copy between libraries and maintain the metadata, etc. That's the only way currently available to move photos from one library to another and keep the roll, keywords, comments, etc. with those photos. You can connect the two Macs with one in the Target Mode, probably your PB, and then run iPLM to move the photos to the G5 library.
    Now there is a way to have a library on your PB that reflects the one on your G5 but is only a fraction of the size. That's to have an alias based library on your PB that uses the Originals folder as its source of source files. (My 25,600 files, 27G, are represented by an iPhoto Library folder of only 1.75G). When the PB is not connected with the G5, say with a LAN, it will have limited capabilities which are in part: you'll only be able to view the thumbnail files, be able to add comments, create, delete or move albums around, add keywords (but with some hassle-but it can be done). You can't do anything that requires moving thumbnails around, work with books, slideshows or calendars. Once the two computers are networked together again the library will act as normal.
    Now while on the road you can have a "normal" library to import new full sized files, keyword them, add comments, etc. and then transfer to the G5 library. Once in the G5 library they will be represented in a roll(s) and corresponding folder in the Originals folder. You then fire up the "alias" library, and import those new folders in the G5 Originals folder.
    It may be a lot of work but it may be one way of doing it.
    I've not done any of the "sharing" with iPhoto so don't know if that's another possible candidate for transferring.
    P.S. FWIW I've created this workflow for converting from a conventional library to an alias based one.

Maybe you are looking for

  • Is "isOptimizedDrawingEnabled" if false effect to repaint(x,y,w,h)?

    i override isOptimizedDrawingEnabled to false, does it efect to repaint(x,y,w,h)? if isOptimizedDrawingEnabled set true repaint(x,y,w,h) work properly

  • Can't open iTunes- Runtime Error

    I have recently been trying to open up iTunes, but I can't. I get an error saying... "Runtime Error! Program C:\Program Files\iTunes\iTunes.exe This application has requested to terminate it in an unusual way. Please contact the application's support

  • Scheduling a job with different variants

    i have a program to be run daily for three company codes and different materials. If i give all the three company codes at a time then the program is taking a lot of time and giving a run time error 'time limit exceeded' .Can i create variants for th

  • Unable to see the buttons in the providers

    hi I have created new Providers in Portal .The places where edit, help etc buttons should be seen I am getting null written at that place. Please provide some help thanks in advance dhawanmayur

  • Reuse a promt/filter for a universe in some subqueries

    We want to use one defined promt in our BO universe inside 4 subqueries in CR but when we execute the report it apears 4 time, yes the same promt apear 4 times in my promt panel any idea to only appear one promt for 4 subqueries.