Data field printing but does not show in the ticket editor

Hey Everyone,

When we print one of our headers the order number prints in the far upper left corner that we want removed. However, when I go to the boca ticket design editor there isn't any data field showing in that area. Short of rebuilding the entire ticket design from scratch, is there a way to zoom out maybe or find the field if it's 'out of bounds'?

Thanks!

  • If someone at your organization has access to SSMS, you could adapt this query:

    /*

    Query to help compare the element locations of elements on two different ticket designs.

    */

    select

    E.DESCRIPTION as [Element Name]

    ,d.design_no

    , d.description as [Design Name]

    , E.ELE_SL_NO

    , e.ELE_NO

    , e.ELE_X1

    , e.ELE_Y1

    from [dbo].[T_DESIGN] d

    join [dbo].[TX_DESIGN_ELEMENT] e on e.DESIGN_NO = d.design_no

    where

    d.design_no in (2069,2188)

    group by e.DESCRIPTION,

    d.design_no

    , d.description

    , E.ELE_SL_NO

    , e.ELE_NO

    , e.ELE_X1

    , e.ELE_Y1

    order by e.DESCRIPTION

    ;