Storing signature in Printer memory and accessing it in the sapscript

Hi Gurus ,
I have a requirement to upload signatures on to the printer memory (Its a HP 4250 printer for printing checks) and access the same to print them while printing the checks.
Please let me know the steps to achieve the following
1) Uploading the signatures to the printer and in which format - how should this be done.
2) How to acces the signatures in the printer in the sapscript form
Thanks
Rupendra

The only way that I know of that a signature can be stored directly on a printer is through the use of an add-on simm card.  Please look at OSS Note 18045, it references a company that will create a signature board for your printer.  One of the problems with this is that a new card has to be created if signatures change, we no longer use this method but use either RSTXLDMC to upload TIF images, or we use SE78.
Thanks

Similar Messages

  • Discuss Identity and Access Management in the Cloud

    Identity and access management in the cloud refers to the processes, technologies, and policies for managing cloud systems identities and controlling how these identities can be used to access cloud resources. Three separate processes are used in most cloud
    identity and access management solutions:
    Identity provisioning and storage
    Authentication
    Authorization
    Identity management in a cloud system requires a complex collection of technologies to manage authentication, authorization and access control across distributed environments. These environments might include assets both on the internal cloud, which would
    be an on-premises private cloud, and services accessed on the public cloud. These environments can also cross-security domains, as when two enterprise-level organizations collaborate and enable cross-domain access to users from the partner security domain.
    You can learn more about these topics in the article Identity and Access Management in the Cloud.
    Let's talk about that article and the topics of identity and access management in the cloud! Use this thread to get it started.
    Thanks!
    Tom
    Learn more about Private Cloud at the
    Private Cloud Solutions Hub

    Tom,
    I am a novice and attempting to achieve a proof of concept of single sign on.  One example I read stated one should install Identity and Access on VS2012.  I did this on two different machines.   One was in the office domain and it shows the
    item "Identity and Access..." in the context menu of the MVC project I created.  The other machine is my laptop.  I followed the same procedure that worked on the desktop, yet the Identity and Access item in the project context menu does not show.
     One difference is that the laptop is not part of a domain, but I am attempting this proof of concept in Windows Azure with the laptop, since we do not have a test AD in our corporate domain.
    Is this the right forum to inquire about this issue?  Do you have a recommendation about a better forum?
    Stephen Pidgeon

  • How find print program and form name from the spool list

    Hi,
          I have a requirement to find print program and form name from the spool list.
    I got the list of programs and forms from TNAPR table, I also want to find out any custom program sending the form directly to the spool.
    Cheers
    Sam

    Hi
    Try TSP01-Suffix2
    Regards
    Raj

  • I am having trouble sending emails, I can receive them and access safari. The message I am getting is 'the recipient is rejected by the server' what can I do?

    I am having trouble sending emails, I can receive them and access safari. The error message I am getting is "the recipient 'persons email address' was rejected by the server. I use a company email so its not one of the selections so I set the email account up as other.

    I have deleted the accounts, reset them, reset my iphone, tried syning through iTunes still wont work

  • What is stored in 7410 printer memory?

    I am trying to understand two things. 1.) What is stored in the memory of the 7410 all in one; and 2.) does unplugging it clear the memory?.

    The Officejet 7410 memory includes the number of pages printed, scanned and copied (but not any of the actual content).  There is also a fax log that contains information on what numbers have been called (or received from), the duration, the number of pages and the date.
    You can clear the fax memory by resetting the printer - turn off the printer and unplug the power, then plug it back in while holding the # and 6 buttons in.  This will eventually indicate "Semi-full reset" on the screen, release the # and 6 buttins and press OK. After the reset you can press setup, 2, 3 to print a FAX report to verify there is no FAX information left.
    If you are disposing of the printer make sure you also remove any memory cards inserted into the camera card slots in the front. 
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • Printing memory and performance optimization

    Hello,
    I am using JVM 1.3 for a big Java Application.
    Print Preview consumes 1.5MB of JVM's memory and performance is slow.
    Please give your valuable ways to reduce memory usage and performance improvement
    will be appreciated.
    /* print method in ScrollablePanel extends JPanel */
         public int print(Graphics g, PageFormat pf, int pi) throws PrinterException
              double pageHeight = 0;
              double pageWidth = 0;
              Graphics2D g2 = (Graphics2D)g;
              pageWidth = pf.getImageableWidth();
              if (pi >= pagecount)
                   return Printable.NO_SUCH_PAGE;
              g2.translate(pf.getImageableX(),pf.getImageableY());
    // < Print Height manipultion>
              g2.setClip(0,(int)(startHeight[pi]), (int) pageWidth, (int)(endHeight[pi] - startHeight[pi]) );
              g2.scale(scaleX,scaleX);
              this.print(g2);
              g2.dispose();
              System.gc();
              return PAGE_EXISTS;
    /* print preview */
    private void pagePreview()
    BufferedImage img = new BufferedImage(m_wPage, m_hPage, BufferedImage.TYPE_INT_ARGB);
    Graphics g = img.getGraphics();
    g.setColor(Color.white);
    g.fillRect(0, 0, m_wPage, m_hPage);
    target.print(g, pageFormat, pageIndex);
    pp = new PagePreview(w, h, img); // pp is JPanel
    g.dispose();
    img.flush();
    m_preview = new PreviewContainer(); //m_preview is JPanel
    m_preview.add(pp);
    ps = new JScrollPane(m_preview);
    getContentPane().add(ps, BorderLayout.CENTER);
    Best Regards,
    Krish

    Good day,
    As I tried, there are two ways of doing printPreview.
    To handle this problem, add only one page at a time.
    To browse through the page use Prev Page, Nexe Page buttons in the toolbar.
    1) BufferedImage - occupies memory .
    Class PagePreview extends JPanel
    public void paint(Graphics g) {
    g.setColor(getBackground());
    g.fillRect(0, 0, getWidth(), getHeight());
    g.drawImage(m_img, 0, 0, this);
    paintBorder(g);
    This gives better performance, but consumes memory.
    2) getPageGraphics in the preview panel . This occupies less memory, but re-paint the graphics everytime when paint(Graphics g) is called.
    Class PagePreview extends JPanel
    public void paint(Graphics g)
    g.setColor(Color.white);
    RepaintManager currentManager = RepaintManager.currentManager(this);
    currentManager.setDoubleBufferingEnabled(false);
    Graphics2D g2 = scrollPanel.getPageGraphics();
    currentManager.setDoubleBufferingEnabled(true);
    g2.dispose();
    This addresses memory problem, but performance is better.
    Is there any additional info from you?
    Good Luck,
    Kind Regards,
    Krish

  • Whenever I use the search the results page comes up but if I try and access any of the pages i get the Not responding message

    I can access all my favourite websites ok. It is only when I try and access a page from using Search.

    Your plugins list shows two Flash plugins and other outdated plugin(s) with known security and stability risks.
    # Shockwave Flash 10.0 r45
    # Shockwave Flash 10.1 r53
    # Adobe Shockwave for Director Netscape plug-in, version 11.0
    # Next Generation Java Plug-in 1.6.0_19 for Mozilla browsers
    Flash Player uninstall: http://www.adobe.com/go/tn_14157 (this will remove the Firefox Flash plugin and the ActiveX control for IE)
    Update the [[Flash]] and [[Shockwave|Shockwave for Director]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    *http://www.adobe.com/shockwave/welcome/
    *http://www.adobe.com/downloads/
    Update the [[Java]] plugin to the latest version.
    *http://java.sun.com/javase/downloads/index.jsp (Java Platform: Download JRE)
    Do a malware check with a few malware scan programs.<br />
    You need to use all programs because each detects different malware.<br />
    Make sure that you update each program to get the latest version of the database.
    *http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    *http://www.superantispyware.com/ - SuperAntispyware
    *http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    *http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    *http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and [[Searches are redirected to another site]]

  • Currency issue different between Print view and normal view in the PO

    Dear SAP Guru and Expert,
    Currently user is having one problem PO where in ME23N the amount of each line items are displaying correctly, which is shown below:-
    Line item 1 USD 3,400.00
    Line item 2 USD 10,000.00
    Line item 3 USD 100.00
    However, when click on the print view, all the amount run (Decimal point changed to comma) as shown below:-
    Line item 1 USD 3.400,00
    Line item 2 USD 10.000,00
    Line item 3 USD 100,00
    Kindly advise, what needs to be checked in order to get the PO amount printed correctly.
    Thank you
    Regards
    Leonard Tan

    Have done everything as told, and yet the problem still persists. Have try 3 computer with the user profile checked with the format 3,000.00 and yet the Print display of the PO still display 3.000,00.
    Hi Leo,
    Pls check the destination country of the vendor assigned in the vendor master (for example if its USA) then follow the path..
    IMG>>SAP Netweaver>>General Settings>>Define Countries in mySap Systems and double click on the country desired and check the decimal pt format is correct.
    As told, you must check with the SMARTFORM settings and Sapscripts for the PO layout done by your ABAPer who should be able to help you.
    Shiva

  • FCP X freezes and must force quit?  I have a FCP installed on a Mac Mini (4 gig memory) and Lion OS.  The import files are large ACVHD files from a Canon G10 camera.  FCPX freezes and requires a force quit.  Is anyone else having these problems?

    I am using FCP X on both a MacMini (10.7 with 4 Gig memory) and an iMac (10.6 with 4 gig memory).  The files are ACVHD files imported from a Canon G10 camcorder.  FCP is constantly freezing and requiring a forced quit.    Could it be that FCP X was not tested thoroughly for use on a Mac Mini? 

    I think it's safe to say that FCPX wasn't tested throroughly for use on anything.
    with that out of the way, there are many variables as to what might cause your problems, but I don't think it's the mac mini as long as it meets the specified minimum requirements (especially the graphics card).
    You might try creating a camera archive first and then importing from that.
    The other issue might be the file format itself; you might need to use Clipwrap first. Maybe someone who has the same camera can chime in.

  • Firefox 3.6.24 is stressing memory and CPU resources to the point that Hotmail is almost unusuable and computer jams while FF goes thru its athletics; what to do?

    I have a Dell Inspiron 710m, with Windows XP, Norton 360, IE8. My computer understanding and needs are simple. Norton lets me know that Firefox is eating memory and CPU. The machine often jams while this happens, whether or not Norton has flagged an operation, and then resumes function. Hotmail is in shambles (jamming between operations, and having sign out problem). Neither Norton nor CC Cleaner (including Registry) indicate a problem. This is a nifty little machine that I use for email, mostly newspaper subscriptions, online shopping and banking, personal, and for Internet research. I have tried more advanced versions of Firefox and found them buggy. So, I went back. The upgrades are coming too fast. Not everyone is going to invest in another machine for Windows 7 or IE 9 capability right away. Meanwhile, Firefox, which worked just fine, seems to be pushing along, in what seems to be an industry in which cooperation and compatibility have ceased to be important. I don't know what to do. I can't do complex diagnostics and fixes, and am not in an area where I would take this computer anywhere.

    Thank you for taking the time out to reply. I don't know whether or not your suggestions would have worked, but I did solve my problem. I eventually figured out that the file, overlay.xul, was doing something and when I changed the filename, the bar went away.
    I was reading that the xul error usually meant something wrong with an extension, but that didn't make sense because after uninstalling/reinstalling, there were no extensions present, on an assumption, of course. I noticed a file through a search, and it was located in a folder without a mozilla/firefox name in it, looked like a randomly generated folder name. I looked in the extensions. ini and noticed it pointed to that overlay.xul file in that random named folder and thought, what the hell, and just renamed the overlay.xul file to something else and the problem went away.
    Thanks again.

  • Printing graph and other text in the same page

    Hi,
    I am aware that for providing graphs in ABAP report we have a FM which is called via a pushbutton in the output screen generally.
    Is there any way I can do away with the pushbutton and print the graph and other text in the same page at one go ? I think Smartforms will not allow graph printing.......any other method to achive this ?
    The user wants to print the graph and other text in the same page.
    Regards,
    Sandip.

    Hi ! no it is not related to smartforms
    search for custom container on google you idea about custom container.
    following code is for displaying alv on selection screen which is created using custom container
    and docking container.
    I hope you will get some idea about how to use custom container for your problem
    DATA DECLARATIONS
    DATA: CONT_DOCKING TYPE REF TO CL_GUI_DOCKING_CONTAINER,
    GRID TYPE REF TO CL_GUI_ALV_GRID,
    CUST_CONTAINER TYPE REF TO CL_GUI_CUSTOM_CONTAINER,
    IT_FIELDCAT TYPE LVC_T_FCAT,
    GS_LAYOUT TYPE LVC_S_LAYO.
    *ITAB TYPE TABLE OF SBOOK.
    *& SELECTION SCREEN PARAMETERS
    *PARAMETERS:P_TEST TYPE I .
    *& AT SELECTION SCREEN OUTPUT
    AT SELECTION-SCREEN OUTPUT.
    IF EBELN[] IS NOT INITIAL.
    CREATE OBJECT CONT_DOCKING
    EXPORTING
    REPID = SY-REPID
    DYNNR = SY-DYNNR
    SIDE = CONT_DOCKING->DOCK_AT_BOTTOM
    EXTENSION = 100.
    IF CUST_CONTAINER IS INITIAL.
    *----Create the alv with docking container
    PERFORM CREATE_AND_INIT_ALV .
    ENDIF.
    ENDIF.
    *& Form BUILD_FIELDCAT
    FORM BUILD_FIELDCAT .
    DATA WA_FIELDCAT TYPE LVC_S_FCAT.
    WA_FIELDCAT-FIELDNAME = 'EBELN'.
    WA_FIELDCAT-REPTEXT = 'Airline Code'.
    APPEND WA_FIELDCAT TO IT_FIELDCAT.
    WA_FIELDCAT-FIELDNAME = 'EBELP'.
    WA_FIELDCAT-REPTEXT = 'Flight Connection Number'.
    APPEND WA_FIELDCAT TO IT_FIELDCAT.
    *WA_FIELDCAT-FIELDNAME = 'WUNIT'.
    *WA_FIELDCAT-REPTEXT = 'Weight Unit'.
    *APPEND WA_FIELDCAT TO IT_FIELDCAT.
    *LOOP AT IT_FIELDCAT INTO WA_FIELDCAT.
    *IF WA_FIELDCAT-FIELDNAME EQ 'WUNIT'.
    *WA_FIELDCAT-EDIT = 'X'.
    *WA_FIELDCAT-DRDN_HNDL = '1'.
    *WA_FIELDCAT-CHECKTABLE = '!'.
    *MODIFY IT_FIELDCAT FROM WA_FIELDCAT.
    *ENDIF.
    *ENDLOOP.
    ENDFORM. "build_fieldcat
    *& Form CREATE_AND_INIT_ALV
    FORM CREATE_AND_INIT_ALV .
    CREATE OBJECT GRID
    EXPORTING I_PARENT = CONT_DOCKING.
    *--perform build field catalog for alv display
    PERFORM BUILD_FIELDCAT .
    *--fill the drop down list values
    PERFORM fill_dropdown_table .
    *----fill final output table
    SELECT * FROM EKPO
    INTO CORRESPONDING FIELDS OF TABLE ITAB WHERE EBELN IN EBELN.
    *UP TO 10 ROWS.
    *---display alv
    CALL METHOD GRID->SET_TABLE_FOR_FIRST_DISPLAY
    CHANGING
    IT_FIELDCATALOG = IT_FIELDCAT
    IT_OUTTAB = ITAB[].
    *---Set editable cells to ready for input initially
    CALL METHOD GRID->SET_READY_FOR_INPUT
    EXPORTING
    I_READY_FOR_INPUT = 1.
    ENDFORM. "create_and_init_alv
    *& Form set_drdn_table
    FORM fill_dropdown_table.
    DATA: LT_DROPDOWN TYPE LVC_T_DROP,
    LS_DROPDOWN TYPE LVC_S_DROP.
    LS_DROPDOWN-HANDLE = '1'.
    LS_DROPDOWN-VALUE = 'KG'.
    APPEND LS_DROPDOWN TO LT_DROPDOWN.
    LS_DROPDOWN-HANDLE = '1'.
    LS_DROPDOWN-VALUE = 'G'.
    APPEND LS_DROPDOWN TO LT_DROPDOWN.
    LS_DROPDOWN-HANDLE = '1'.
    LS_DROPDOWN-VALUE = 'B'.
    APPEND LS_DROPDOWN TO LT_DROPDOWN.
    LS_DROPDOWN-HANDLE = '1'.
    LS_DROPDOWN-VALUE = 'T'.
    APPEND LS_DROPDOWN TO LT_DROPDOWN.
    CALL METHOD GRID->SET_DROP_DOWN_TABLE
    EXPORTING
    IT_DROP_DOWN = LT_DROPDOWN.
    ENDFORM. "set_drdn_table

  • Saving a recording in  memory and in disk at the same time.

    Hi, I record audio and a I want to save it in memory,then when the user presses a stop button I have to save the audio that is in buffer to a directory file. So far I to the first part that is save in memory. Here is some code I use:
    {color:#0000ff}
    class {color:#000000}recording{color} extends {color:#000000}Thread{color}*{*
    * boolean {color:#339966}suspended{color};*
    * public void* {color:#000000}run{color}*(){*
    * try{*
    * while*{color:#000000}(!{color}{color:#339966}*suspended*{color}{color}{color:#000000})
    {color} File *{color:#339966}file{color}*={color:#0000ff}*new*{color} File*{color:#ff9900}("C:/prueba.wav"{color}*);
    ByteArrayOutputStream {color:#339966}*dataCapturada*{color}={color:#0000ff}*new*{color} ByteArrayOutputStream();
    byte *{color:#339966}bufferTemporal{color}*[]={color:#0000ff}*new* {color}byte[10000];
    {color:#0000ff} int {color}numbytesleidos=*{color:#339966}targetDataLine{color}*.read(*{color:#339966}bufferTemporal,{color}*0,{color:#339966}*bufferTemporal.length*{color});
    datacapturada.write*{color:#339966}(bufferTemporal{color}*,0,{color:#339966}*numbytesleidos*{color});
    }{color:#0000ff}*catch*{color}(Exception e){e.printStackTrace()}
    So far,this works perfectly, but i put this line of code to save in directory file after the line:datacapturada.write....
    AudioSyste.write(*{color:#0000ff}new{color}* AudioInputStream({color:#339966}*targetDataLine),*{color}AudioFileFormat.Type.*{color:#339966}WAVE{color}*,*{color:#339966}file{color}*);
    It saves file in the directory file,but doesnt save in memory. Why could this be??

    Ok sorry, as you had seem in other forums, meaning JMF,I decided to record from microphone in WAVE format. This is done, but I also have to show the volume in a progress bar. So I take and example and it works, but this method that calculate volume needs an array of bytes, that is the array that I use for record in memory.So record in memory and show a progress bar volume works, but I also have to save in directory file. My idea is to save in memory and save in file directory at the same time, or save in memory and then when I press a stop button transfer the data saved in memory to the directory file.Here is all the code,assume that all declarations have been done:
    public void capturarAudio() {
           try {        
                formatoAudio = obtenerFormatoAudio();
                DataLine.Info lineaDataInfo = new DataLine.Info(TargetDataLine.class,formatoAudio);
                linea = (TargetDataLine) AudioSystem.getLine(lineaDataInfo);
                linea.open(formatoAudio);
                linea.start();
                Thread hiloGrabacion=new Thread(new hiloGrabacion());
                hiloGrabacion.start();
           } catch (LineUnavailableException ex) {
                Logger.getLogger(InformDetail.class.getName()).log(Level.SEVERE, null, ex);
    class hiloGrabacion extends Thread{
            byte bufferTemporal[] = new byte[10000];
            File archivo=new File("C:/Documents and Settings/java/multimedia/audio.wav");
            @Override
            public void run(){
                dataCapturada     = new ByteArrayOutputStream();
                detenerGrabacion  = false;
                try{
                    while(!detenerGrabacion){
                        int numBytesLeidos=linea.read(bufferTemporal,0 , bufferTemporal.length);
                        if(numBytesLeidos>0){
                            dataCapturada.write(bufferTemporal, 0, numBytesLeidos);
                            mostrarVolumen(bufferTemporal,0,numBytesLeidos);
                            lblCronometro.setText(linea.getMicrosecondPosition()/1000000+"");
                    AudioSystem.write(new AudioInputStream(linea), AudioFileFormat.Type.WAVE, archivo);
                    dataCapturada.close();
                }catch(Exception e){
                    e.printStackTrace();
        }

  • 2-way SSL and access control using the client certificate

    Hi,
    I'd like to configure WLS 8.1 so that the server will use the client identity extracted from the client certificate to determine whether permissions should be granted. I am having some problems.
    Details: The client can be either a Web service or a web application. The steps for authentication and authorization should be:
    - The client sends a request to an Apache server (DMZ) which will then be forwarded to WLS.
    - The client's identity, common name from the X.509 certificate, is mapped to the "username" (using WLS default identity assertion provider).
    - Validate whether the client should be trusted (via the list in the trusted credentials)
    - Check whether the resource should be granted based on the "username".
    The on-line manual says
    "If the Web browser or Java client requests a WebLogic Server resource protected by a security policy, WebLogic Server requires that the Web browser or Java client have an identity."
    "The user corresponding to the Subject's Distinguished Name (SubjectDN) attribute in the client's digital certificate must be defined in the server's security realm; otherwise the client will not be allowed to access a protected WebLogic resource. For information on configuring users on the server, see Creating Users in Managing WebLogic Security."
    So the questions I have are:
    - If the client identity is certificate based, why should we configure users with the "user name" and "password"? How can we get around it?
    - Once I defined the security condition for my app to use "user name of the caller," a default username and password prompt automatically popped up.
    Apparently, the SSL mutual authentication configuration and the default authentication provider to use the X.509 type didn't take any effect.
    - Without defining the security policy for the application, the debugging messages show that
    getRoles(): input arguments: subject:0
    Entitlement - <Role:Annonymous with expr:Grp(everyone)>
    Any suggestions? Thanks.

    Hi,
    I am trying to use 2 way ssl using webservices client , here is my code :
    AxisProperties.setProperty("org.apache.axis.components.net.SecureSocketFactory","org.apache.axis.components.net.SunFakeTrustSocketFactory");
    SSLAdapterFactory factory = SSLAdapterFactory.getDefaultFactory();
    WLSSLAdapter adapter = (WLSSLAdapter) factory.getSSLAdapter();
    // clientCredentialFile stores in PEM format the public key and
    // all the CAs associated with it + then the private key. All this in // a concatenated manner
    FileInputStream clientCredentialFile = new FileInputStream ("C:\\sslcert\\client-pub3.pem");
    // private key password
    String pwd = "password";
    adapter.loadLocalIdentity(clientCredentialFile, pwd.toCharArray());
    adapter.setVerbose(true);
    adapter.setTrustedCertificatesFile("C:\\certificate\\server\\server.jks");
    adapter.setStrictCheckingDefault(false);
    factory.setDefaultAdapter(adapter);
    factory.setUseDefaultAdapter(true);
    boolean idAvailability = false;
    UNSLocator locator = new UNSLocator();
    URL portAddress = new URL("https://localhost:7002/smuSSWeb/UNSResponse.xml");
    UNSPort unsprt = locator.getUNSPort(portAddress);
    idAvailability = unsprt.isIDAvailable("Yulin125", "C");
    System.out.println("Got from method :"+idAvailability);
    After runing this code i am getting the following exception :
    AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: java.net.SocketException: Software caused connection abort: socket write error
    faultActor:
    faultNode:
    faultDetail:
    I am using .pem (clientsigned,clientinter,clientroot, root-key) files for client authentication and i am using server.jks as a keystore for my server authentication.Once i run this code , i am able to present the server certificate chain to the client but i am not able to present the client certificate chain to server.
    I am stuck with for quite sometime.
    Some insight needed from the guru's

  • Designing for print, tablets and interactive pdfs at the same time

    Hi everyone,
    I have a large document of proposal master pages that I would like to update with CS6. My usual work flow, when I need to make a new proposal, is to open a new document and just move over the master pages I need. This depends on which products they want, etc. Then I override the master pages in the new document and make whatever customizations I need for that particular customer.
    Now with CS6, I'm thinking that I will just have the pages be pages (with fewer masters). I will make an alternate layout directed at each market segment we have, and also these pages for tablets and interactive PDFs. (Sometimes we are asked to provide a digital copy of proposals). Then, when I have a new proposal to do, I will do a Save As and make a copy of the main doc. Then I will just delete all the pages and the alternate layouts I don't need.
    A few questions:
    1. How do I set up my "intent." Most of these master pages are two pages, so I think the digital publishing intent messes that up.
    2. Do you think this new set up would make the file huge? I have had size issues in the past and the file is already very sluggish.
    3. Is this the best way to go about this work flow?
    Thank you guys so much. This forum has been so helpful to me!

    Hi everyone,
    I have a large document of proposal master pages that I would like to update with CS6. My usual work flow, when I need to make a new proposal, is to open a new document and just move over the master pages I need. This depends on which products they want, etc. Then I override the master pages in the new document and make whatever customizations I need for that particular customer.
    Now with CS6, I'm thinking that I will just have the pages be pages (with fewer masters). I will make an alternate layout directed at each market segment we have, and also these pages for tablets and interactive PDFs. (Sometimes we are asked to provide a digital copy of proposals). Then, when I have a new proposal to do, I will do a Save As and make a copy of the main doc. Then I will just delete all the pages and the alternate layouts I don't need.
    A few questions:
    1. How do I set up my "intent." Most of these master pages are two pages, so I think the digital publishing intent messes that up.
    2. Do you think this new set up would make the file huge? I have had size issues in the past and the file is already very sluggish.
    3. Is this the best way to go about this work flow?
    Thank you guys so much. This forum has been so helpful to me!

  • Mail Signatures, Folder Organization, Notification and Attachments not working the same since upgrade to Mavericks

    Hi All,
    Normally very quick to do so, I’ve been hesitant to upgrade to Mavericks based on so many issues being reported with Mail + Gmail. 
    Previously Apple released a fix for these issues and I still waited a while.  This weekend I upgraded to Mavericks and Mail is definitely not working as I’d expect it. 
    Some of the things I notice include:
    1) My saved mail folders, previously in alphabetical order, are now in reverse alphabetical order and dragging them to be in a different order has no effect
    2) Previously when I clicked on a message and pressed Message > Remove Attachments the message would reappear in my inbox within a second or two, without the attachment.  Now, the message simply disappears.
    3) The little red icon no longer appears in the dock when a new message arrives
    4) For my various accounts, signatures do not appear/disappear as I select a different From account (each of my accounts has different signatures).
    Does anyone have thoughts on any of these items?
    Thanks,

    Not an answer, but a repeat ...
    I too have problem (2) -- Remove Attachment now makes the email in question disappear (in fact moving it to Archive).
    Help would be appreciated.
    (Have just moved from Lion to Mavericks.)

Maybe you are looking for

  • Oracle Query in forms

    select bleed_end_time from units@qlab where unit_id = 'W039712003127' BLEED_END_TIME 1/17/2012 8:10:00 AM from the system time I have to get the elapsed time (system time - bleed_end_time) As the unit_id and product_code is entered, we find the bleed

  • F110- Check Sort Based on document number

    Hi All, We are using the program RFFOUS_C to print check when we are doing the payment run F110. Presently, checks are sorted as per vendor name (Name 1) while printing. We need to print check sorted based on document (Invoice) number, field BELNR. S

  • Mac Mail & MS Word share as attachment

    Hi, Just noticed a bug.  If you use the MS Word File -> Share -> E-Mail (As Attachment) it attaches the document to a new Mac mail message but removes any images from your existing e-mail signature. Can anyone reproduce this?  I have it on two iMac's

  • Quicktime 10 "Save For Web", spaces in file names?

    Maybe I'm overlooking something here, but: When using Quicktime 10's "Save for Web" function, it exports movie source files that all have spaces in the filenames (i.e. "Movie - iPhone.m4v" etc) Now correct me if I'm wrong, but most web servers DO NOT

  • CloseDoc() problem

    I have created a button to close a form that uses the following script: event.target.closeDoc(). This causes Acrobat to crash when the button is clicked. This was tested using Designer 7.0 & 7.1 with Acrobat 7.0.5. As an alternative I also tested app