Barcode Not Visible in the Output

Hi,
I am not able to see the barcode in the output of my concurrent program. I am using a Code 39 Font. ( I have it installed it in my system). This is an Oracle Report (rdf) in 10g version. Our apps is on R12.
I actually printed a simple BI publisher report which is a portrait to test bar codes and it printed it fine.
But the new one is a landscape and a totally different report. It just shows the field value in the output though I can see the font applied to the field in rtf.
Can any one please let me know if I am missing something.
TIA,
Neeraja

Never Mind. I forgot to do font mappings :( (duh!!)

Similar Messages

  • Hi - I am looking for the Adobe Illustrator 2014 1.2 (or .0.2) bugfix update for Mac - and it is not visible in the Adobe Creative Cloud Packager (Mac version). The only update visible is Illustrator CC 2014.1  - which is what introduced the bugs.

    Hi - I am looking for the Adobe Illustrator 2014 1.2 (or .0.2) bugfix update for Mac - and it is not visible in the Adobe Creative Cloud Packager (Mac version). The only update visible is Illustrator CC 2014.1  - which is what introduced the bugs.
    The only thing that I can think of that might be causing the issues that I have a Mac Mini on Mavericks.
    Dave

    Hi
    I have discovered that my question above is a non-question. A user triggered by looking at the below article about Illustrator 2014 cc 17.0.2
    http://helpx.adobe.com/illustrator/release-note/illustrator-17-0-2-release-notes.html 
    He had recently upgraded from wht we now know is 18.0 to 18.1 which is the latest version. He read the above artic
    le and supposed that it was a bug fix release for his version - because the v17 ov18 number is not often displayed. It is usually just 2014 CC.
    I have asked him to post a bug report about Adobe Illustrator CC 2014.1
    Dave

  • Reg : data is not getting in the output

    hi team,
                 data is not getting in the  output, but it is getting in the debug mode
    REPORT ZSAPP10 .
    *tables : pernr.
    TABLES : PA0001.
    type-pools : slis.
    types : begin of itab,
            pernr type pernr,
            orgeh type orgeh,
            abkrs type abkrs,
            end of itab,
            begin of itab2,
            pernr type pernr,
            vorna type pad_vorna,
            nachn type pad_nachn,
            end of itab2.
    parameter : p_pernr like pa0001-pernr.
    *DATA:  g_cprog  tYPE SY-CPROG.
    data : i_itab1 type table of itab initial size 0,
           i_itab2 type table of itab2 initial size 0.
    data : w_itab type itab,
           w_itab2 type itab2.
    data : t_fieldcat type slis_t_fieldcat_alv,
            w_fieldcat type slis_fieldcat_alv.
    data : t_event type slis_t_event,
            w_event type slis_alv_event.
    data : t_listheader type slis_t_listheader,
           w_listheader type slis_listheader.
    *get pernr.
    w_event-form = 'TOP_OF_PAGE'.
    w_event-form = 'sub1'.
    append w_event to t_event.
    w_listheader-typ = 'H'.
    w_listheader-info = 'this is new top of page'.
    append w_listheader to t_listheader.
    select pernr
           orgeh
           abkrs from pa0001 into table i_itab1 where pernr = p_pernr.
    w_fieldcat-col_pos = 1.
    w_fieldcat-seltext_m = 'personnal no'.
    w_fieldcat-fieldname = 'pernr'.
    w_fieldcat-tabname = 'i_itab1'.
    w_fieldcat-outputlen = '20'.
    append w_fieldcat to t_fieldcat.
    w_fieldcat-col_pos = 2.
    w_fieldcat-seltext_m = 'org. unit'.
    w_fieldcat-tabname = 'i_itab1'.
    w_fieldcat-fieldname = 'orgeh'.
    w_fieldcat-outputlen = '20'.
    append w_fieldcat to t_fieldcat.
    w_fieldcat-col_pos = 3.
    w_fieldcat-seltext_m = 'payroll area'.
    w_fieldcat-tabname = 'i_itab1'.
    w_fieldcat-fieldname = 'abkrs'.
    w_fieldcat-outputlen = '20'.
    append w_fieldcat to t_fieldcat.
    *g_cprog = SY-CPROG.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
               I_INTERFACE_CHECK                 = ' '
               I_BYPASSING_BUFFER                =
               I_BUFFER_ACTIVE                   = ' '
                 I_CALLBACK_PROGRAM                = SY-CPROG
               I_CALLBACK_PF_STATUS_SET          = ' '
               I_CALLBACK_USER_COMMAND           = ' '
               I_CALLBACK_TOP_OF_PAGE            = ' '
               I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
               I_CALLBACK_HTML_END_OF_LIST       = ' '
               I_STRUCTURE_NAME                  =
               I_BACKGROUND_ID                   = ' '
               I_GRID_TITLE                      =
               I_GRID_SETTINGS                   =
               IS_LAYOUT                         =
                 IT_FIELDCAT                       = T_FIELDCAT
               IT_EXCLUDING                      =
               IT_SPECIAL_GROUPS                 =
               IT_SORT                           =
               IT_FILTER                         =
               IS_SEL_HIDE                       =
               I_DEFAULT                         = 'X'
               I_SAVE                            = ' '
               IS_VARIANT                        =
                 IT_EVENTS                         = T_EVENT
               IT_EVENT_EXIT                     =
               IS_PRINT                          =
               IS_REPREP_ID                      =
               I_SCREEN_START_COLUMN             = 0
               I_SCREEN_START_LINE               = 0
               I_SCREEN_END_COLUMN               = 0
               I_SCREEN_END_LINE                 = 0
               IT_ALV_GRAPHICS                   =
               IT_ADD_FIELDCAT                   =
               IT_HYPERLINK                      =
               I_HTML_HEIGHT_TOP                 =
               I_HTML_HEIGHT_END                 =
               IT_EXCEPT_QINFO                   =
             IMPORTING
               E_EXIT_CAUSED_BY_CALLER           =
               ES_EXIT_CAUSED_BY_USER            =
                 TABLES
                 T_OUTTAB                          = I_ITAB1[]
              EXCEPTIONS
                PROGRAM_ERROR                     = 1
                OTHERS                            = 2
    IF SY-SUBRC <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
          FORM sub1                                                     *
    FORM sub1.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          IT_LIST_COMMENTARY       = t_listheader
      I_LOGO                   =
      I_END_OF_LIST_GRID       =
    ENDFORM.                                                    " sub1

    write this way...
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
            i_callback_program                = w_repid
            is_layout                = wa_layout
            i_callback_user_command  = 'USER_COMMAND_ACCT'
            i_grid_title             = 'Document Status Report'
             it_fieldcat                       = it_fcat[]
         IT_SORT                        = IT_SORT[]
             it_events                = it_events
             TABLES
               t_outtab                        = it_final_data[]
          EXCEPTIONS
            program_error                     = 1
            OTHERS                            = 2.

  • I updated win7 and now I cant see ff. I have reinstalled it 5 times now. It shows it is running in task manager but it is not visible on the desk top.

    I installed win7 ultimate and then ff. ff worked fine until I installed win7 service pack 1 and all the other updates it recommended. I click to open ff and nothing happens. I look in task manager and it shows it is running. It is not visible on the screen or in the task bar. I have reinstalled a fresh download of it 5 times. I even tried the beta version but still the same problem. I can use explorer and chrome ok but not ff.

    The "System Tray" is located at the very bottom right of your screen and is a list of most/all running applications that will show in this list.
    For your SysFader issue, this "may" be the problem:
    1 Find the "My Computer" desktop icon and right-click it. A pull-down menu will appear. Select "Properties."
    2 Click on the "Advanced" tab. This will load a new page of options.
    3 Select the "Visual Effects" tab at the top of the window and deselect "Animate Windows when minimizing and maximizing," "Fade or slide menus into view," "Fade or slide Tool Tips into view" and "Fade out Menu items after checking."
    4 Click "OK." This will remove most if not all of the Sysfader effects, at the same time correcting related errors that used to come up during opening a new file or program.

  • Payload not visible in the XI monitor

    In my scenario an xml message was successfully reaching its destination. The XI system was upgraded from support pack 13 to support pack 16. After that the process is still working fine as the XML message is still successfully reaching its destination. The issue we have is that the ‘Payload’ is not visible in the last two steps of the monitor. We can see the Payload until ‘Technical Routing’ in the monitor. But ‘Call Adapter’ and ‘Response’ steps do not have payload.
    (TCode: SXMB_MONI)
    when we double click a message we get XML message details and on the left hand side it shows following hierarchy:
    XML Message:
    Receiver Grouping
       -     SOAP Header
       -     SOAP Body
       -     Payloads
    Request Message Mapping
       -     SOAP Header
       -     SOAP Body
       -     Payloads
    Technical Routing
       -     SOAP Header
       -     SOAP Body
       -     Payloads
    Call Adapter
       -     SOAP Header
       -     SOAP Body
    <b>(( No Payload displayed, but present above!! ))</b>
    Response
       -     SOAP Header
       -     SOAP Body
    <b>(( No Payload displayed, but present above!! ))</b> 
    Any suggestions would be highly appreciated!
    Thanks in advance.
    Faiq

    Hi faiq
    This seems to be the normal behaviour starting with SP13 or 14. There was a discussion about this a while ago and I believe it turned out to be works as designed.
    This is what was posted as final conclusion in Re: SXMB_MONI does not show payload after upgrade to SP15:
    <i>According to SAP (OSS) this is working as designed. Apparently it was an error in the past that the payload was stored in the DB on the ABAP (IE) side when the AE is involved, as it would then be stored twice at DB level. This explains why this is not a problem when e.g. the IDOC adapter is used.
    Anyway, the only way to let the system show the payload in SXI_MONITOR is to set the runtime trace level to 3 (full trace) and parameter logging to 1 (trace switched on).</i>
    regards,
    Peter

  • JComboBox - Bottom border is not visible for the first time

    JComboBox - Bottom border is not visible for the first time i click on the arrow to drop the list down.
    This happens because the list when dropped down goes out of the frame.
    If have the increased the size of the Frame then i am able to see it,but i dont want to do this.
    I am using jdk1.3.1_02.
    Any Help would be great.
    Please find the code below.
    Thanks,
    Sridhar.
    //file: Lister.java
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Lister {
        public static void main(String[] args) {
            JFrame frame = new JFrame("Lister v1.0");
            // create a combo box
            String [] items = { "uno", "due", "tre", "quattro", "cinque",
            "sei", "sette", "otto", "nove", "deici",
            "undici", "dodici" };
            JComboBox comboBox = new JComboBox(items);
            comboBox.setEditable(true);
            // put the controls the content pane
            Container c = frame.getContentPane( );
            JPanel comboPanel = new JPanel( );
            comboPanel.add(comboBox);
            c.add(comboPanel, BorderLayout.NORTH);
            c.setBackground(Color.white);
            comboBox.setBackground(Color.white);
            comboPanel.setBackground(Color.white);
            frame.setBackground(Color.white);
            frame.setResizable(false);
            frame.setSize(200, 200);
            frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
            frame.setVisible(true);
    }

    Hello,
    try this:JPanel comboPanel = new JPanel(new BorderLayout());Regards,
    Tim

  • Drop down list(JComboBox) - Bottom border is not visible for the first time

    Drop down list(Combo-box) JComboBox - Bottom border is not visible for the first time i click on the arrow to drop the list down.
    I am using jdk1.3.1_02.
    Did any one face this issue.
    Please let me know.
    Thanks,
    Sridhar.

    I must be a little confused regarding your question.
    You can simply change your code frame.setSize(200, 200); to frame.setSize(400, 400);When you say you are unable to see the border are you specifically talking about the border of the frame or the border of the combo box?
    Lance

  • ESS job created not visible in the list of 'Scheduled Process'

    As a part of data migration , I am required to invoke an ODI scenario using a java program which in turn is invoked by an ESS job.I'm able to do the same using a standalone application created in my jdeveloper.For incorporating this into the Fusion application I created an ADF Model Project in the hcmEss Application and created a sample javaclass and jobdefinition in the project,similar to what i did in my standalone application.
    I have included my job definition in the MarHcmEss and included the MAR file in the EarHcmEss.Also I have given the jazn security for my job,similar to other visible jobs.Still the job that I created is not visible in the list of jobs in the 'Launch ESS Monitoring UI'
    All this i tested using a deployment of hcmEss and hcmTalent Applications into my standalone weblogic server.Is there anything that i might have missed during the process?.I am new to ESS.
    Thanks,
    Ajin

    I'm facing the same issue.
    Also I'm unable to populate the values from the Resource Bundle in the Localization section of Job Definition.
    Any help will be appreciated.
    Thanks,
    Sangita.

  • Supplier not visible in the Purchase Order Menu

    Hi All,
    I have created a Supplier and a Supplier Site from the back end using Supplier Conversion.
    It was successful and I am able to see the customer in the Supplier menu in Payables and Supplier base menu in the Purchasing, but the supplier is not visible in the Purchase Order Menu in Purchasing.
    I have Enabled the following flags in the Supplier Site Level,
                   l_vendor_site_rec.purchasing_site_flag := 'Y';
                   l_vendor_site_rec.pay_site_flag := 'Y';
                   l_vendor_site_rec.rfq_only_site_flag := 'Y';
    What else do I need to enable in Supplier level for the Supplier to be visible for Purchasing.
    Please give me a solution so that I can resolve my issue.
    Thanks in advance.
    Regards,
    Bhaskar.

    Hi,
    You will have to achieve this through APIs, Please do some google and refer Oracle docs.
    Following are some links, which may interest you:
    R12 Oracle Apps: Supplier or Vendor Creation API
    Oracle EBS Technical Step By Step: August 2012
    Hope this helps!
    Best Regards

  • Request not visible in the version management of a Report Program

    Hi,
    We Imported an external request into the SAP System.
    The request was imported successfully and a program already existing is updated with that request,
    The problem is that the request number is not visible in the Version Management of the Report Program, but the other Programs have the request number visible in the version management, we could not find the request number in that  particular program
    We tried reimporting the request but the request is not visible.
    Regards

    Check the transport logs and see if there are any erros/warnings.

  • The "J2EE process table" node not visible  in the SAP MMC

    For Netweaver 7.0 - The "J2EE process table" node not visible  in the SAP MMC.
    Details for below
    SAP Systems Manager
    SAP AG
    Version: 7100.109.15.8983
    Window Xp
    Any suggestions would be apperecited.
    Thanks
    Srini

    It's hard to say without seeing the code for TreeTable. But they probably have something like an addNode mothod for the TreeTableNode which will take care of all the updates for you. If you want to do it youself, you will probably have to get the data Model (tree.getModel()???)behind the TreeTable and use one of the fire... methods on it like fireRowChanged(???) or fireTableChanged(???). I would suspect Sun would do it this way.

  • Configuration tab not visible in the costom view created.

    HI All,
    My requirement is:
    To create a view in the standard component : BT301i_lam (Financial service item level).
    For this i followed following steps:
    1> Added item component through EEWB.
    2> Enhanced the component BT301I_LAM to add a custom view which will show the required details created through EEWB.
    3> Now problem is , after view creation , the "CONFIGURATION" tab is not visible in the view.
        Also , in the runtime repository (where i can add my view to the overview page) i am not able to find the view.
    Can anyone please tell me on where i went wrong.Please also provide the correct steps to add a custom view so as to show attributes added through EEWB.
    Thanx.
    Edited by: abhishek ranjan on Mar 25, 2011 10:48 AM

    Hi,
    Try with the below code in .HTM .
    <%@page language="abap" %>
    <%@extension name="thtmlb" prefix="thtmlb" %>
    <%@extension name="chtmlb" prefix="chtmlb" %>
    <%@extension name="bsp" prefix="bsp" %>
    <chtmlb:configTable actionsMaxInRow       = "3"
                        displayMode           = "FALSE"
                        allRowsEditable       = "TRUE"
                        downloadToExcel       = "FALSE"
                        enableTableGraphics   = "TRUE"
                        id                    = "table"-------you can give your table id
                        onRowSelection        = "select"
                        personalizable        = "FALSE"
                        selectedRowIndex      = "<%= X->SELECTED_INDEX %>"
                        selectedRowIndexTable = "<%= X->SELECTION_TAB %>"
                        selectionMode         = "<%= X->SELECTION_MODE %>"
                        table                 = "//X/Table"
                        usage                 = "ASSIGNMENTBLOCK"
                        visibleFirstRow       = "<%= X->VISIBLE_FIRST_ROW_INDEX %>"
                        visibleRowCount       = "25"
                        width                 = "100%"
                        xml                   = "<%= controller->configuration_descr->get_config_data( ) %>" />
    REPLACE X WITH YOUR CONTEXT NODE.
    Regards,
    Gangadhar.S
    Edited by: gangadhar rao on Mar 25, 2011 1:47 PM

  • Images are not visible in the iPhone.

    When I open iTunes there are number of images found in the iPhone, but the images are not visible in the iPhone actually.

    I using local deployment. I deploy my application directly from NWDS to a Mobile Client running also locally in my machine. Maybe I'm wrong, but I think that Mobile Client look for resources in NWDS workspace.
    This is the dpi file located in the Mobile Client inbox folder when I perform the deployment.
    <?xml version="1.0" encoding="UTF-8"?>
    <deployment>
    <device>
    <repository>
    <mcd name="IrviaDemoApp" namespace="" version="1">
    <action type="install"/>
    <location type="local">
    <source path="C:\Documents and Settings\oloranube\workspace.sr5.jdi\LocalDevelopment\DCs\company.es\irvia_demo_app\_comp\MOBILE-INF\MCD.xml" property="mcd" type="file"/>
    <component name="hpcds.es~irvia_demo_app">
    <applications>
    <application deploy="true" name="IrviaDemoApp"/>
    </applications>
    <source path="C:\Documents and Settings\oloranube\workspace.sr5.jdi\LocalDevelopment\DCs\company.es\irvia_demo_app\_comp\bin" property="bin" type="dir"/>
    <source path="C:\Documents and Settings\oloranube\workspace.sr5.jdi\LocalDevelopment\DCs\company.es\irvia_demo_app\_comp\gen_wdp" property="gen_wdp" type="dir"/>
    <source path="C:\Documents and Settings\oloranube\workspace.sr5.jdi\LocalDevelopment\DCs\company.es\irvia_demo_app\_comp\src\mimes" property="mimes" type="dir"/>
    <source path="C:\Documents and Settings\oloranube\workspace.sr5.jdi\LocalDevelopment\DCs\company.es\irvia_demo_app\_comp\gen_wdp\application-j2ee-engine.xml" property="j2ee_xml" type="file"/>
    </component>
    </location>
    </mcd>
    </repository>
    </device>
    </deployment>
    There is a <source> entry for the mimes directory, where "Component images" are located.
    PD: Sorry about my poor english. I hope you to understand me.

  • AirPort Extreme not visible in the airport utility installed on my Imac

    My AirPort Extreme is suddenly not visible in the airport utility installed on my Imac. After numerous rescans I am bordering to give up as the connection seems to be working fine when I connect it to the Imac through the ethernet cable. Any advices further than restarting the devices?

    For the app Airport Utility you have to be connected to the AE wifi.
    If you are not talking about the AU App, but the Airport Antenna you can do following:
    disconnect AE form power, wait 10-15 seconds, turn off the Airport Antenna in your mac. Then connect the AE to power, wait till it is fully started, then turn the Airport Antenna to on again.

  • Goods are not visible on the Web Shop main page (RUMP UP)

    Hi colleagues.
    Help please anybody :)
    There was the problem with the goods in Web Shop.
    Goods are not visible on the page Web Shop.
    Below you can see actions performed by us and Prerequisites:
    1. Repository was unachieved from Standard archive - WEC20_MDMCATALOG_CONS
    2. Taxonomy, Hierarchy and Lookup table data were transferred from CRM via MDMGX
    3. Manually created root node in Product Catalogs table in MDM
    4. Put technical code (ID) of created node to Product Catalog module in WCEM configuration - field Catalog ID.
    5. Fill another necessary fields in Product Catalog module in WCEM.
    6. Manually add test record in MDM and linked to node in Product Catalog table, elements from Main Taxonomy and other required fields.
    7. In preview mode of WCEM configuration not possible see any records from MDM (but product catalog elements showed correctly)
    More information about settings in MDM, CRM,WCB and configuration steps can see in attachment files
    Best regardn,
    Andrey

    Hi Denis
    Leading zeroes it's no my case, because the products (materials) replicated from CRM to MDM.
    Replication from CRM to MDM via MDMGX and Initial Load R3AC1 is successfull.
    But on the WebChannel web shop page this products are not visible.
    I have suggested that the problem in authirizations of technical user, which uses RFC Destinations from SAP NW AS Java (Web Channel) to MDM.
    According Security Guide for SAP Web Channel 2.0 (paragr. 8.3.2 see please screenshot), user of WEC_MDM_DEFAULT destination must assign the role WEBCHANNEL_CATALOG_DISPLAY_ROLE.
    But this role does not exist in the system (SAP MDM, SAP NW).
    Please give me advice about this.

Maybe you are looking for

  • Using BAPI's or RFC's to Create a new BI Master Data

    Hello SDN Guys. I am trying to create an application to mantain BI master data and would like to know if you can help me to find a specific RFC or BAPI that I can use in VC .   The parameter should be the infoobject name and their attributes to be cr

  • Error in calling XI Integration Directory

    Hi, When going to url: http://<host>:<port>/rep in SAP Exchange Infrastructure and then clicking at Integration Directory, the next page displays error message: "The requested client is unknown!" Kindly suggest.

  • G555. Need drivers for SM Bus and another Unknown device for Windows XP.

    I try to install Windows XP on my G555. I got all other drivers, but cannot find drivers for SM Bus and an Unknown device. And what's this device? The second problem is that after I installed all the drivers, the card reader disappeared. It was there

  • I can't take a pic w/ NX Ultra CAM

    Hi there, I have had my camera for a few months now, and since the day I hooked it up I haven't been able to take a picture with it. I can capture still pics (hundreds at a time) which is not good if I am wanting picture. I push the button down on th

  • Try catch implementation in dynamic query

    I am fetching values by dynamic selection  (select a,b,..from (var)...) . Eveytime if I am selecting garbage value of var it will throw dump . Can u tell me how we implement try catch method / exception handling method so that I can avoid dump in dyn