What is a keyline? I need to create one for a die cut job.

My press printer who is die cutting a job for us asked me to create a keyline for the die cut shape. I do not know what this is or how to do it. Is it just an outline of the shape that needs to be cut or is there more to it? How is this done?
Thanks!
Ashley

sishamDSS wrote:
Yes just an outline of the shape you want cut, but create it with a specific colour (spot) so it appears on a different plate when separated.
and set it to overprint so it doesn't knock out your print colors.

Similar Messages

  • When do I really need to create indexes for a table?

    Once I was talking to a dba in a conference.
    He told me that not always I have to create indexes for a single table, it depends of its size.
    He said that Oracle read registers in blocks, and for a small table Oracle can read it fully, in a single operation, so in those cases I don't need indexes and statistcs.
    So I would like to know how to calculate it.
    When do I really need to create indexes for a table?
    If someone know any documment that explain that, or have some tips, I'd aprecciate.
    Thanks.
    P.S.: The version that I'm using is Oracle 9.2.0.4.0.

    Hi Vin
    You mentioned so many mistakes here, I don't know where to begin ...
    vprabhu_2000 wrote:
    There are different kinds of Index. B-tree Index is by default. Bit map index, function based index,index organized table.
    B-tree index if the table is large This is incorrect. Small tables, even those consisting of rows within just one block, can benefit from an index. There is no table size too small in which an index might not be benefical. William Robertson in his post references links to my blog where I discuss this.
    and if you want to retrieve 10 % or less of data then B-tree index is good. This is all wrong as well. A FTS on a (say) million row table could very well be more efficient when retrieving (say) just 1% of data. An index could very well be more efficient when retrieving 100% of data. There's nothing special about 10% and there is no such magic number ...
    >
    Bit Map Index - On low cardinality columns like Sex for eg which could have values Male,Female create a bit map index. Completely and utterly wrong. A bitmap index might be the perfect type of index, better than a B-Tree, even if there are (say) 100,000 distinct values in the table. That a bitmap index is only suitable for low cardinality columns is just not true. And what if it's an OLTP application, with lot's of concurrent DML on the underlining table, do you really think a bitmap index would be a good idea ?
    >
    You can also create an Index organized table if there are less rows to be stored so data is stored only once in index and not in table. Not sure what you mean here but an IOT can potentially be useful if you have very large numbers of rows in the table. The number of rows has nothing to do with whether an IOT is suitable or not.
    >
    Hope this info helps. Considering most of it is wrong, I'm not sure it really helps at all :(
    Cheers
    Richard Foote
    http://richardfoote.wordpress.com/

  • Do I need to create billing for FD (free delivery) sales order

    Hi
    I have a question. I created first a sales order (FD) in our sap system. but I don't know whether I need to create billing for the FD order. when I try to create billing for this FD order, SAP cannot to process it.
    I also research configuration. in VOV8, SAP not set billing function.
    thanks
    Henry

    Hi henry
    If you have created Free of charge delivery (FD) sales order then the item category will be KLN only.After PGI then stock level will reduce  and the effect of the stock is that you are issuing stock to  customer at free of charge.And as you have assigned cost center then the data will flow to the controlling area and the Financial document  after  PGI.
    Secondly if you assign TANN as a item category and do delivery and then PGI then if the reference document is different then it will have affect as the KMN and TANN item categories doesn't have same features
    Regards
    Srinath

  • What is authorization object and how to create it for a table

    Hi All,
    What is authorization object and how to create it for a table?
    Thanks

    Hi
    Authorization
    For authorization checks, there are many ways of linking authorization objects with user actions in an SAP system. The following discusses three possibilities in the context of ABAP programming.
    Authorization Check for Transactions
    You can directly link authorization objects with transaction codes. You can enter values for the fields of an authorization object in the transaction maintenance. Before the transaction is executed, the system compares these values with the values in the user master record and only starts the transaction if the appropriate authorization exists.
    Authorization Check for ABAP Programs
    For ABAP programs, the two objects S_DEVELOP (program development and program execution) and S_PROGRAM (program maintenance) exist. They contains a field P_GROUP that is connected with the program attribute authorization group. Thus, you can assign users program-specific authorizations for individual ABAP programs.
    Authorization Check in ABAP Programs
    A more sophisticated, user-programmed authorization check is possible using the Authority-Check statement. It allows you to check the entries in the user master record for specific authorization objects against any other values. Therefore, if a transaction or program is not sufficiently protected or not every user that is authorized to use the program can also execute all the actions, this statement must be used.
    AUTHORITY-CHECK OBJECT object
                            ID name1 FIELD f1
                            ID name2 FIELD f2
                            ID namen FIELD fn.
    object is the name of an authorization object. With name1, name2 ... , and so on, you must list all fields of the authorization object object. With  f1, f2 ... , and so on, you must specify the values that the system is to check against the entries in the relevant authorization of the user master record. The AUTHORITY-CHECK statement searches for the specified object in the user profile and checks the useru2019s authorizations for all values of f1, f2 ... . You can avoid checking a field name1, name2 ... by replacing FIELD f1  FIELD f2 with DUMMY.
    After the FIELD addition, you can only specify an elementary field, not a selection table. However, there are function modules available that execute the AUTHORITY-CHECK statement for all values of selection tables. The AUTHORITY-CHECK statement is supported by a statement pattern.
    Only if the user has all authorizations, is the return value sy-subrc of the AUTHORITY-CHECK statement set to 0. The most important return values are:
    ·        0: The user has an authorization for all specified values.
    ·        4: The user does not have the authorization.
    ·        8: The number of specified fields is incorrect.
    ·        12: The specified authorization object does not exist.
    A list of all possible return values is available in the ABAP keyword documentation. The content of sy-subrc has to be closely examined to ascertain the result of the authorization check and react accordingly.
    REPORT demo_authorithy_check.
    PARAMETERS pa_carr LIKE sflight-carrid.
    DATA wa_flights LIKE demo_focc.
    AT SELECTION-SCREEN.
      AUTHORITY-CHECK OBJECT 'S_CARRID'
                      ID 'CARRID' FIELD pa_carr
                      ID 'ACTVT' FIELD '03'.
      IF sy-subrc = 4.
        MESSAGE e045(sabapdocu) WITH pa_carr.
      ELSEIF sy-subrc <> 0.
        MESSAGE e184(sabapdocu) WITH text-010.
      ENDIF.
    START-OF-SELECTION.
      SELECT  carrid connid fldate seatsmax seatsocc
        FROM  sflight
        INTO  CORRESPONDING FIELDS OF wa_flights
        WHERE carrid = pa_carr.
        WRITE: / wa_flights-carrid,
                 wa_flights-connid,
                 wa_flights-fldate,
                 wa_flights-seatsmax,
                 wa_flights-seatsocc.
      ENDSELECT.
    Regards
    Hitesh

  • I need to create a pie with a cut out of it...

    I need to create a clean, crisp logo as follows:
    Even though it is a transparent background, there is a white sporatic outline around the type and the circle.  I need to create one pie where the cout out portion is transparent and another where it is colored.  It took days to do just the above which is abismal.  I painted with white and used the eraser to create the cut out and used the line tool to shape up the triangular sides.  Trying to create a crisp curve at the top of the cut out has proved impossible.  Believe me... put this on a colored background and blow it up a bit and its very amateurish.
    Help!
    Thanks,
    Jeff

    YOU ROCK !!!!
    Thanks Again!  I'm in need of a mentor…
    Take Care,
    Jeff

  • HT204053 My wife and I get our iPhone 4s tomorrow.  Should we put them both on the same Apple ID, or should I create one for her.  All our apple products are on mine at this time.

    My wife and I get our iPhone 4s tomorrow.  Should we put them both on the same Apple ID, or should I create one for her.  All our apple products are on mine at this time.

    The answer to this kind of depends on what you both want to do. Apple IDs can be used for multiple Apple services. For example you could both have your own iCloud Apple IDs (which I would suggest), but have only one iTunes Store Apple ID.
    So think about how you will each use the iPhones then make your decision. Keep in mind that if you both use the same iCloud Apple ID you will receive each other's texts and emails and all the email, contacts and calendars will be the same.

  • Create schedulers for all existing user jobs

    Hi Forum,
    In my database (Oracle Database 10g Enterprise Edition Release 10.2.0.4.0), I have 7 DB schemas.
    There are total existing 50 jobs (usaer_jobs).
    I want to shift them all to scheduler (user_scheduler_jobs).
    My plan is,
    1.     Create schedulers for all existing user jobs.
    2.     Enable all schedulers.
    3.     Disable all jobs.
    Is there any way / method for such shifting? I am ready to this exercise schema wise at a time.
    How to create scripts for creating schedulers from existing jobs?
    Thank you & regards..

    PROCEDURE CREATE_JOB
    Argument Name               Type               In/Out Default?
    JOB_NAME               VARCHAR2          IN
    SCHEDULE_NAME               VARCHAR2          IN
    JOB_TYPE               VARCHAR2          IN
    JOB_ACTION               VARCHAR2          IN
    NUMBER_OF_ARGUMENTS          BINARY_INTEGER          IN     DEFAULT
    JOB_CLASS               VARCHAR2          IN     DEFAULT
    ENABLED               BOOLEAN           IN     DEFAULT
    AUTO_DROP               BOOLEAN           IN     DEFAULT
    COMMENTS               VARCHAR2          IN     DEFAULT
    CREDENTIAL_NAME          VARCHAR2          IN     DEFAULT
    DESTINATION_NAME          VARCHAR2          IN     DEFAULTdoes not appear to be an available option.

  • What are the exact steps needed to create a slideshow?

    When I follow the steps indicated in the help section of QT pro, all I get is a one slide only movie! It is a bit frustrating since I purchased this software mostly to be able to create slide shows. Am I missing something? Is there a maximum to the number of pictures that can be used to create one? Thank you kindly in advance for any suggestions that you may have.

    Please give your work flow. Hard to tell were you going wrong without it...
    Here a tut on Apple site.
    http://www.apple.com/quicktime/tutorials/slideshow.html

  • Need to create One outbound delivery against multiple PO and Schedule lines

    Hi Experts.
    I needed your help in regards to creating one single outbound delivery for multiple PO/SA lines(in one shipment) using either FM GN_DELIVERY_CREATE or
    W_FRM_DELIVERY_CREATE_GENERAL.
    I have tried setting up the indicator XKOMDLDN-KZAZU = 'X' in the interface to combine orders in one delivery but I am still getting multiple deliveries.
    If somebody had sucess with  the above then can you please let me know what other parameters do I have to set or let me know if I have to code this in a user exit/badi which will be called inside these FM's.
    OR
    Please let me know if there are any other alternatives to the above FM's to post one single delivery against mupltiple PO's.
    Thanks
    Raj

    Hi,
    I am little bit disappointed since I did not get even a single reply for the issue that I raised. Anyways finally after couple of days debugging VL10d and going thru SAP support website I found couple of solutions. Here it is in case anybody else needs it in the future.
    I am using solution 2 below.
    Solution 1.
    From SAP portal website u2013 Apply SAP note 386340 (Grouping purchase orders into one delivery using VL10*)
    Note- This solution will affect all your plants and delivery types that is using VL10d transaction or any other transactions calling FM GN_DELIVERY_CREATE
    Solution 2.
    This is the solution that I am using and it is done by implementing BADI  u2018LE_SHP_GN_DLV_CREATEu2019 method MOVE_KOMDLGN_TO_LIKP.
    1) Here I am checking for two fields (IS_XKOMDLGN-WERKS and IS_XKOMDLGN-LFART) are equal to the plant and delivery type that I need to combine deliveries for.
    2) If step 1 above is true then I am updating the header structure CS_LIKP-LFDAT (delivery date) to todays date (sy-datlo).
    Thanks
    SHR.

  • Aperture Workflow - need help creating workflow for photo management

    Hi -
    I currently shoot with a Canon SD890 (point & shoot) and a Nikon D300 (SLR). My photography is either personal photography or street photography. I may use some of my photography for a web project but that should not be considered right now. I shoot jpegs with the SD890 and RAW with the D300. I need to create a workflow that will allow me to manage all of my photos as well as the RAW vs JPEG aspect. Here are a few initial questions:
    1) Should I separate the RAW and JPEGs in Aperture (two libraries)? One library for finished photos and one for negatives?
    2) What folder structure should I use? Since I am not a professional photographer, I won't be shooting projects. I think something date or event driven would be best (preferably both).
    I am interested to hear how others do this...especially if you use both point & shoot and SLR cameras.
    Thanks for your help!

    jnap818 wrote:
    1) Should I separate the RAW and JPEGs in Aperture (two libraries)? One library for finished photos and one for negatives? I am interested to hear how others do this...especially if you use both point & shoot and SLR cameras.
    No, use a single Library. Aperture will have no problems with the various formats or with various different cameras.
    2) What folder structure should I use? Since I am not a professional photographer, I won't be shooting projects. I think something date or event driven would be best (preferably both).
    Actually those date or event driven batches of images are very logically "Projects" in Aperture. Simply name each group of images as you import into AP as a new Project.
    IMO it is not good to import camera-to-Aperture (or direct to any app other than the Finder). Best is to use a card reader and use the Finder to copy images from the camera card to a folder on the computer hard drive.
    Below is my Referenced-Masters workflow:
    • Remove the CF card from the camera and insert it into a CF card reader. Faster readers and cards are preferable.
    • Finder-copy images from CF to a labeled folder on the intended permanent Masters location hard drive. I label that folder with the Project name suffixed with _masters, that way I can always find the Masters if Aperture forgets where they are.
    • Eject CF.
    • Burn backup copies of the original images to DVDs or to hard drives (optional backup step).
    • Eject backup DVDs/hard drives (optional backup step).
    • From within Aperture, import images from the hard drive folder into Aperture selecting "Store files in their current location."
    • Review pix for completeness (e.g. a 500-pic shoot has 500 valid images showing).
    • Reformat CF in camera, and archive DVDs of originals off site.
    Note that the "eject" steps above are important in order to avoid mistakenly working on removable media.
    I strongly recommend that every Aperture user spend $35 and work through the tutorial CD Apple Pro Training Series: Aperture 2 (Apple Pro Training Series) by Ben Long, Richard Harrington, and Orlando Luna (Paperback - May 8, 2008), Amazon.com. Note that the value is in working the tutorial, not in using the book as a manual.
    Good luck!
    -Allen Wicks

  • We need to create one or more business services to connect to service provider in OSB

    Hi all,
        I posted some questions for OSB and received some responses helpful. And today, I have a question about it to clearing about business services in OSB.
        Based on oracle's documents, a business service will connect to (I mean it can communicate) service provider (backend service). I have a example: Backend service A provide two services getEmployeeInfo and updateEmployee. Will I create one or two business services to connect to A ( to use these services) ? I think I need only one ? Can anyone talk about this case ?
        Many thanks.

    Hi Beck,
    for your scenario you can use only one business service,
    1. As Karan already explain about wsdl,  you should create a Business Service using WSDL file then you can choose operation at testing time.
    2. if you don't want  to use a wsdl and you can create a SOAP type service then you can use WSA-Action  to identify the service at beckend . Using wsa-action you can send a operation name like :
    <wsa:Action>http://xmlns.oracle.com/pcbpel/adapter/db/dbAdapterMultiOperation/Project1/AnkitTest/insert(Operation Name)</wsa:Action>
    Here 2 different solutions for you Question.
    Thanks
    Ankit

  • What kind of security aspects needed in webdynpro application for ABAP?

    Hi Experts,
              What kind of security aspects need to be considered in webdynpro for ABAP application? Do I need to use Autorization check? Where can I use Authorization check in webdynpro for ABAP?
    Please help!
    Thanks
    Gopal

    Hi Gopal,
    you can find the security issues for Web Dynpro ABAP here: http://help.sap.com/saphelp_nw2004s/helpdata/en/af/0489ce55002f44a8c927371bedf719/frameset.htm
    Regards, Heidi

  • Need to create procedure for insert tax line into ra_interface_lines_all

    Dear
    I need to create a procedure for insert a tax line into ra_interface_lines_all against the line type "LINE".
    after inserting the record i will run the auto invoice program to see the changes. kindly share how i can achieve through procedure.
    scenario:-
    after order dispatch workflow back ground run and data populated in ra_interface_lines_all where interface line id is null there i need to insert tax line against multiple orders.
    I know the join. when line type = 'LINE'  then tax line must have link_to_line_id of the line type line. my question is this when order number change how i can insert tax line against the line type line.
    regards,
    Fs
    Message was edited by: 832296

    Dear
    I need to create a procedure for insert a tax line into ra_interface_lines_all against the line type "LINE".
    after inserting the record i will run the auto invoice program to see the changes. kindly share how i can achieve through procedure.
    scenario:-
    after order dispatch workflow back ground run and data populated in ra_interface_lines_all where interface line id is null there i need to insert tax line against multiple orders.
    I know the join. when line type = 'LINE'  then tax line must have link_to_line_id of the line type line. my question is this when order number change how i can insert tax line against the line type line.
    regards,
    Fs
    Message was edited by: 832296

  • Need to create one TO for multiple SU's

    Hi All,
    I want to create a single TO for multiple Storage units. where destination storage bin and type will remain same for all.
    Is it possible in standard SAP..
    To create one TO for an SU L_TO_CREATE_MOVE_SU can be used..
    I tried using L_TO_CREATE_MULTIPLE for my reqmnt but its nt working as expected.
    Please help

    You might want to try asking this on a forum that specific to your database. I suspect the answer can vary depending on the database and probably requires in depth knowledge of what the database does.

  • Do we need to create workmanager for applns in WL 10.3?

    Do we need to create execute threads manually using work manager in weblogic 10.3 (ALSB)/ OSB . or have they been taken care of by default thread pooling mechanisim.
    Does creating workmanager and assigning 'n' no of threads to appln really help performance of application?
    Appriciate any Suggestion.
    Regards,
    Sreepad K

    Hello Sreepad,
    Do we need to create execute threads manually using work manager in weblogic 10.3 (ALSB)/ OSB . or have they been taken care of by default thread pooling mechanisim.For production environments, it is always suggested to use custom work managers to optimize the use of applications and enhance security. OSB has a default work manager but it is not recommended to use it in your production environments. To know more about work managers, please refer -
    http://download.oracle.com/docs/cd/E12840_01/wls/docs103/config_wls/self_tuned.html
    http://download.oracle.com/docs/cd/E12840_01/wls/docs103/ConsoleHelp/taskhelp/work/CreateGlobalWorkManager.html
    Regards,
    Anuj

Maybe you are looking for

  • Print button should not perform its action in  report previewer

    Hi all, Report version 6i I am invoking a report from a form , the form has one status field ,the value can be NEW,APPROVED,CANCEL i just want take the print of the report if the status is approved , in all other cases the print button should be perf

  • Using variable in Payload Zip Bean

    Hi to everyone, in my scenario I'm using receiver file adpater to create a zip file with payload and its attachment using Payload zip bean Module. In the parameter Transform.ContentType I insert:text/xml;name = 'test.xml' for the payload and text/xml

  • T510 missing options for display resolution

    I am looking to order a T510.  Lenovo site does not show options for display resolutions any more. I need WUXGA, how do I verify this before placing an order?

  • Smart forms PDF

    Hi experts, Iam trying to get the smartform into PDF.Iam working on VF02>billing doc>Issue output to... Instead of going to spool request & RSTXPDFT4 program, i want to generate PDF in the output Message type itself. So iam trying to modify SAP stand

  • How to fix (screen) camera freezing when I try to turn (it on)

    I got a new iPod the other day it was iOS 4.1 so I updated it to iOS 6.1.3 and suddenly after download I go into caned a and try to take a "selfie" and I try to turn the camera around and it freezes and won't let me use the front camera and all the a