Header discount not displayed through VF31.

08.10.2008
Hi Gurus,
I have created an Header discount which is calculated properly in the order and processed in the invoice too. I can see the condition and its value in the invoice header. But while printing the invoice using VF31 we are not able to get the header discount data in the standard invoice printing program RLB_INVOICE. Any solution suggested ??
Thanks in advance.
Regards,
Udaynath

Dear Udaynath
Ensure that in pricing procedure for that condition type, you have maintained "X" under the tab "Print".
thanks
G. Lakshmipathi

Similar Messages

  • Div header tag - not displaying correctly

    I thought I had resolved an issue with a div header tag, but - as per a reply in my 'text as gif' thread, possibly not!
    The header contains three images; a logo, a banner (text), and a picture of a castle.  These should display in a  line.
    When I first set it up, I realised that the castle picture was normally ending up below the other two on smaller screens etc. 
    So I changed the dims for my div container from min 760px/max 1260px, to a set width (960px).  I then rejigged the three images so the widths were within 960px, with some to spare for the spacing (total widths of the three are 900: hspacing another 20 pixels).  There is no padding/borders defined.  Therefore the total should be well within the 960 width (?).
    It looks fine on my PC (widescreen); in 3 browsers, using the restore down menu command (ie to make it not full screen), and by  using the Dreamweaver multiscreen preview (phone, tablet, smaller desktop).  It wasn't ideal (as scrolling required), but at least meant the header (and the rest of the screen) displayed correctly, ie in a horizontal line (and then sidebar - content - sidebar).
    If I set my container width much smaller, most of the screen will be green (the body) in big screens.
    If I rejig the dimensions, it's all a bit hit and miss (and why don't the current dimensions work?).
    Do I need to define the width of the header (as well as the container)?
    Help!  Thank you
    http://hertfordcarnival.org.uk/dev/Index.html

    Hi there, I started off using one big image, but it didn't look right with regards to size and placing (ie I wanted the logo on the left edge, the castle on the right edge, etc). When you say slice, what do you mean?  One image in from fireworks, and then ... ? Thanks again
    Date: Wed, 7 Dec 2011 01:37:10 -0700
    From: [email protected]
    To: [email protected]
    Subject: Div header tag - not displaying correctly
        Re: Div header tag - not displaying correctly
        created by osgood_ in Dreamweaver - View the full discussion
    Datafan55 wrote: I thought I had resolved an issue with a div header tag, but - as per a reply in my 'text as gif' thread, possibly not!  Why not just use one big image  then you wont have a problem of with the alignment. Certainly don't use 'vspace' and 'hspace' to position the images. If you want to use 3 seperate images start by setting them us as one complete image then slice it into 3 images. Then use the following css to position the images side by side. #header img If the total sum of the width of the images is the same or does not exceed 960px then the images should be in a nice row side by side. They will actually sit side by side without using 'float' but you'll get a small gap between them which will be added to the sum of the width which will exceed 960px causing the third image to drop onto the next line.
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4068499#4068499
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4068499#4068499. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Dreamweaver by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Column Heading are not displayed in ALV Report using CL_SALV_DISPLAY?

    Hi,
       I am using CL_SALV_DISPLAY class to display data. I Created an Internal Table Dynamically based fieldcatalog which was prepared based data at run time. When i displayed data using CL_SALC_DISPALY data is display in output but column headings are not displayed.
    can anyone suggest me how to display heading in ALV using CL_SALV_DISPLAY class, My code is
          CLASS lcl_report DEFINITION
    CLASS lcl_report DEFINITION.
      PUBLIC SECTION.
        METHODS:
          display  IMPORTING l_table  TYPE string
                             l_fcat   TYPE string.
    ENDCLASS.                    "lcl_report DEFINITION
          CLASS lcl_report IMPLEMENTATION
    CLASS lcl_report IMPLEMENTATION.
      METHOD display.
        DATA: gr_table   TYPE REF TO cl_salv_table.
        DATA: gr_columns TYPE REF TO cl_salv_columns_table,
              gr_column  TYPE REF TO cl_salv_column_table,
              ls_fcat    TYPE slis_fieldcat_alv.
        DATA: gr_display TYPE REF TO cl_salv_display_settings.
        DATA: l_o_functions TYPE REF TO cl_salv_functions_list,
              l_field    TYPE string.
        FIELD-SYMBOLS : <fs_table>    TYPE STANDARD TABLE,
                        <ft_fcat>     TYPE STANDARD TABLE.
    Get the ALV object refering to the output table
        ASSIGN (l_table) TO <fs_table>.
        ASSIGN (l_fcat)  TO <ft_fcat>.
        TRY.
            cl_salv_table=>factory(
              IMPORTING
                r_salv_table = gr_table
              CHANGING
                t_table      = <fs_table> ).
          CATCH cx_salv_msg.                                "#EC NO_HANDLER
        ENDTRY.
    Add basic default functionality in the ALV report
    Functions
        l_o_functions = gr_table->get_functions( ).
        l_o_functions->set_all( abap_true ).
        gr_columns = gr_table->get_columns( ).
        gr_columns->set_headers_visible( abap_true ).
    Display the list
        gr_table->display( ).
      ENDMETHOD.                    "extract
    ENDCLASS.                    "lcl_report IMPLEMENTATION
    *& start-of-selection declaration
    START-OF-SELECTION.
      PERFORM :
      get store codes
        get_storecodes    USING      p_stfile
                          CHANGING   it_t001w,
      fetching mard data
        read_mard_data,
      preparing fieldcatalog for Final Data
        create_filedcat   USING      it_t001w
                                     it_site
                          CHANGING   it_fieldcat,
      preparing structure & internal table for Final Data
        create_final_table_structure  USING  it_fieldcat,
      prepare output data
        prepare_final_data.
    *& end-of-selection declaration
    END-OF-SELECTION.
      PERFORM :
      display data
        display_data    USING l_table
                              l_fcat.
    *&      Form  get_storecodes
    FORM get_storecodes  USING    p_p_stfile
                         CHANGING p_it_t001w  LIKE it_t001w[].
      DATA  :
    internal table for RAW
      lt_raw    TYPE truxs_t_text_data,
      rs_site   LIKE LINE OF rt_site,
      l_index   LIKE sy-tabix.
      FIELD-SYMBOLS :
    field symbol for it_t001w
      <fs_t001w>   LIKE LINE OF p_it_t001w.
    calling function module to get Stores Data from File
      CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
        EXPORTING
          i_line_header        = 'X'
          i_tab_raw_data       = lt_raw
          i_filename           = p_p_stfile
        TABLES
          i_tab_converted_data = p_it_t001w[]
        EXCEPTIONS
          conversion_failed    = 1
          OTHERS               = 2.
      IF sy-subrc <> 0.
        EXIT.
      ENDIF.
      SORT p_it_t001w BY werks.
      CLEAR rs_site.
      rs_site-sign   = 'I'.
      rs_site-option = 'EQ'.
      rs_site-low    = p_dccode.
      APPEND rs_site TO rt_site.
      IF it_t001w[] IS NOT INITIAL.
        LOOP AT p_it_t001w ASSIGNING <fs_t001w>.
          l_index   = sy-tabix.
          CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
            EXPORTING
              input  = <fs_t001w>-werks
            IMPORTING
              output = <fs_t001w>-werks.
          MODIFY p_it_t001w FROM <fs_t001w> INDEX l_index.
          IF <fs_t001w>-werks GE s_site-low AND <fs_t001w>-werks LE s_site-high.
          append site to ranges
            CLEAR rs_site.
            rs_site-sign   = 'I'.
            rs_site-option = 'EQ'.
            rs_site-low    = <fs_t001w>-werks.
            APPEND rs_site TO rt_site.
            CONTINUE.
          ENDIF.
        ENDLOOP.
        SORT p_it_t001w BY werks.
        SORT rt_site.
      ENDIF.
    ENDFORM.                    " get_storecodes
    *&      Form  create_final_table_structure
    FORM create_filedcat   USING    p_it_t001w      LIKE it_t001w[]
                                    p_it_site       LIKE it_site[]
                           CHANGING p_it_fieldcat   LIKE it_fieldcat[].
      FIELD-SYMBOLS :
    field symbol for p_it_t001w
      <fs_t001w>     LIKE LINE OF p_it_t001w,
    field symbol for p_it_site
      <fs_site>      LIKE LINE OF p_it_site.
      DATA :
    fieldname
      l_fieldname    TYPE slis_fieldname,
    workarea for site ranges
      rs_site        LIKE LINE OF rt_site.
      CLEAR : l_fieldname, rs_site.
      l_fieldname    = p_dccode.
      PERFORM
    prepare fieldcatalog
      build_fieldcatalog USING :   'MTART'      'CHAR'        '5'  ,
                                   'MTBEZ'      'CHAR'        '25' ,
                                   'MATKL'      'CHAR'        '6'  ,
                                   'WGBEZ'      'CHAR'        '20' ,
                                   'MATNR'      'CHAR'        '18' ,
                                   'MAKTX'      'CHAR'        '30' ,
                                    l_fieldname 'CHAR'        '17' .
    create header for excel
      PERFORM create_excel_header USING  : 'Division',
                                           'Divsion Description',
                                           'MC Code',
                                           'MC Description',
                                           'Article',
                                           'Article Description',
                                            l_fieldname.
    loop for creating fieldcatalog
      LOOP AT it_site ASSIGNING <fs_site>.
        READ TABLE it_t001w ASSIGNING <fs_t001w> WITH KEY werks = <fs_site>-werks
                                                                  BINARY SEARCH.
        IF sy-subrc = 0           AND <fs_t001w> IS ASSIGNED AND
           <fs_site> IS ASSIGNED  AND <fs_site>-stock GT 0.
          CLEAR : l_fieldname, rs_site.
          l_fieldname    = <fs_site>-werks.
        prepare fieldcatalog
          PERFORM build_fieldcatalog USING : l_fieldname    'CHAR'   '17'.
        create header for excel
          PERFORM create_excel_header USING  l_fieldname  .
          CONTINUE.
        ENDIF.
      ENDLOOP.
      l_fcat  = 'it_fieldcat[]'.
    ENDFORM.                    " create_final_table_structure
    *&      Form  build_fieldcatalog
    FORM build_fieldcatalog  USING    p_fieldname      TYPE slis_fieldname
                                      p_datatype       TYPE datatype_d
                                      p_length         TYPE intlen.
      DATA : ls_fieldcat    LIKE LINE OF it_fieldcat.
      CLEAR  : ls_fieldcat.
      ls_fieldcat-fieldname   = p_fieldname.
      ls_fieldcat-datatype    = p_datatype.
      ls_fieldcat-intlen      = p_length.
      APPEND ls_fieldcat TO it_fieldcat.
    ENDFORM.                    " build_fieldcatalog
    *&      Form  create_final_table_structure
    FORM create_final_table_structure  USING    p_it_fieldcat.
    Create dynamic internal table and assign to FS
      CALL METHOD cl_alv_table_create=>create_dynamic_table
        EXPORTING
          it_fieldcatalog = it_fieldcat
        IMPORTING
          ep_table        = t_table.
      ASSIGN t_table->*  TO <ft_final>.
    ENDFORM.                    " create_final_table_structure
    *&      Form  create_excel_header
    FORM create_excel_header  USING    p_p_fieldname.
      DATA : ls_header  LIKE LINE OF it_header.
      CLEAR ls_header.
      ls_header-col_name  = p_p_fieldname.
      APPEND ls_header TO it_header.
    ENDFORM.                    " create_excel_header
    *&      Form  prepare_final_data
    FORM prepare_final_data .
      DATA          : l_matnr       LIKE g_matnr,
                      l_werks       LIKE g_werks,
                      l_index       LIKE sy-tabix.
      FIELD-SYMBOLS : <fs_mard>     LIKE LINE OF it_mard.
    Getting No. of Lines in IT_MARD internal table
      DESCRIBE TABLE it_mard LINES g_lines.
      LOOP AT it_mard ASSIGNING <fs_mard>.
        l_index    = sy-tabix.
        IF l_matnr IS INITIAL.
          l_matnr  = <fs_mard>-matnr.
          CLEAR : l_werks.
          l_werks    = <fs_mard>-werks.
          UNASSIGN : <fs_value>, <fs_final>.
        Create dynamic work area and assign to FS
          CREATE DATA t_line LIKE LINE OF <ft_final>.
          ASSIGN t_line->*   TO <fs_final>.
          ASSIGN COMPONENT 'MATNR'  OF STRUCTURE <fs_final> TO <fs_value>.
          <fs_value>        = <fs_mard>-matnr.
          ASSIGN COMPONENT l_werks  OF STRUCTURE <fs_final> TO <fs_value>.
          <fs_value>        = <fs_value> + <fs_mard>-labst.
        getting Article Type,MC & its Descriptions
          PERFORM get_other_data    USING     l_matnr
                                              l_werks.
        ELSEIF l_matnr <> <fs_mard>-matnr.
          APPEND <fs_final> TO <ft_final>.
          CLEAR l_matnr.
          l_matnr  = <fs_mard>-matnr.
          CLEAR : l_werks.
          l_werks    = <fs_mard>-werks.
          UNASSIGN : <fs_value>, <fs_final>.
        Create dynamic work area and assign to FS
          CREATE DATA t_line LIKE LINE OF <ft_final>.
          ASSIGN t_line->*   TO <fs_final>.
          ASSIGN COMPONENT 'MATNR'  OF STRUCTURE <fs_final> TO <fs_value>.
          <fs_value>        = <fs_mard>-matnr.
          ASSIGN COMPONENT l_werks  OF STRUCTURE <fs_final> TO <fs_value>.
          <fs_value>        = <fs_value> + <fs_mard>-labst.
        getting Article Type,MC & its Descriptions
          PERFORM get_other_data    USING     l_matnr
                                             l_werks.
        ELSE.
          CLEAR : l_werks.
          l_werks    = <fs_mard>-werks.
          ASSIGN COMPONENT l_werks  OF STRUCTURE <fs_final> TO <fs_value>.
          <fs_value>        = <fs_value> + <fs_mard>-labst.
        ENDIF.
        IF l_index = g_lines.
          APPEND <fs_final> TO <ft_final>.
        ENDIF.
      ENDLOOP.
      l_table  = '<ft_final>[]'.
    ENDFORM.                    " prepare_final_data
    *&      Form  get_other_data
    FORM get_other_data  USING    p_l_matnr
                                  p_l_werks.
      FIELD-SYMBOLS : <fs_mara>     LIKE LINE OF it_mara,
                      <fs_t023t>    LIKE LINE OF it_t023t,
                      <fs_t134t>    LIKE LINE OF it_t134t,
                      <fs_makt>     LIKE LINE OF it_makt.
      READ TABLE it_mara ASSIGNING <fs_mara> WITH KEY matnr = p_l_matnr.   " BINARY SEARCH.
      IF sy-subrc = 0 AND <fs_mara> IS ASSIGNED.
        ASSIGN COMPONENT 'MTART'  OF STRUCTURE <fs_final> TO <fs_value>.
        <fs_value>        = <fs_mara>-mtart.
        ASSIGN COMPONENT 'MATKL'  OF STRUCTURE <fs_final> TO <fs_value>.
        <fs_value>        = <fs_mara>-matkl.
        READ TABLE it_makt  ASSIGNING <fs_makt>  WITH KEY matnr =  <fs_mara>-matnr   BINARY SEARCH.
        IF sy-subrc = 0 AND <fs_makt> IS ASSIGNED.
          ASSIGN COMPONENT 'MAKTX'  OF STRUCTURE <fs_final> TO <fs_value>.
          <fs_value>        = <fs_makt>-maktx.
        ENDIF.
        READ TABLE it_t023t ASSIGNING <fs_t023t> WITH KEY matkl = <fs_mara>-matkl  BINARY SEARCH.
        IF sy-subrc = 0 AND <fs_t023t> IS ASSIGNED.
          ASSIGN COMPONENT 'WGBEZ'  OF STRUCTURE <fs_final> TO <fs_value>.
          <fs_value>      = <fs_t023t>-wgbez.
        ENDIF.
        READ TABLE it_t134t ASSIGNING <fs_t134t> WITH KEY mtart = <fs_mara>-mtart  BINARY SEARCH.
        IF sy-subrc = 0 AND <fs_t134t> IS ASSIGNED.
          ASSIGN COMPONENT 'MTBEZ'  OF STRUCTURE <fs_final> TO <fs_value>.
          <fs_value>      = <fs_t134t>-mtbez.
        ENDIF.
      ENDIF.
    ENDFORM.                    " get_other_data
    *&      Form  display_data
          text
    FORM display_data  USING    p_l_table
                                p_l_fcat.
      DATA:
    Variable for Object Creation
      o_report TYPE REF TO lcl_report.
      CREATE OBJECT o_report.
      o_report->display( EXPORTING l_table = p_l_table
                                   l_fcat  = p_l_fcat ).
    ENDFORM.                    " display_data

    I don't know how to read the code you pasted or I would have checked this myself.
    Do your fields in the internal table reference dictionary objects or elementary types? If not using dictionary types, the column names will be blank by default. If you can't change your fields to be dictionary types, you can try this to change the column names:
    I made a method inside my local class to add the names:
            call method set_colname
              EXPORTING iv_tab = alv_tab
                        iv_colid = 'xxxx'  "fieldname from the table
                        iv_stxt = text-t54
                        iv_mtxt = text-t55
                        iv_ltxt = text-t55.
    METHOD set_colname .
      data:
              alv_cols type REF TO cl_salv_columns_table,
              alv_col type REF TO cl_salv_column.
      TRY .
    *... Change fieldnames
            call METHOD iv_tab->get_columns RECEIVING value = alv_cols.
            call method alv_cols->get_column EXPORTING columnname = iv_colid RECEIVING value = alv_col.
            IF iv_stxt <> ''.
              CALL METHOD alv_col->set_short_text EXPORTING value = iv_stxt.
            ENDIF.
            IF iv_mtxt <> ''.
              CALL METHOD alv_col->set_medium_text EXPORTING value = iv_mtxt.
            ENDIF.
            IF iv_ltxt <> ''.
              CALL METHOD alv_col->set_long_text EXPORTING value = iv_ltxt.
            ENDIF.
       CATCH cx_salv_not_found.
      ENDTRY.
    ENDMETHOD. "set_colname

  • SMS text message header does not display sender information

    When I receive a text message the only header information that displays is the date and time.  The senders information does not display.  The lines are not even there.  There is no way to reply to a text message or tell who the sender is.  This problem is only with SMS messages.  Regular email headers display just fine.  I have done a wipe, reset, reload, everything possible with no luck.  I am the only one in my office with this problem.  I have not been able to find any information or postings from anyone having the same problem.  I can read the text message, but there is no header (except for the date and time).  Any thoughts?
    Blackberry Curve 8350i

    I was able to resolve the problem by uninstalling the Blackberry desktop manager software and reinstalling it selecting Internet Email vs. Blackberry Enterprise Server.  If you get to the screen that asks you to choose which type of email service you use and you accidentally choose the wrong one your phone will work but will do strange things, including sending all sorts of redirect emails.  For me, this seemed to do the trick.

  • Header information not displaying in ABAP Webdynpro record working time

    1. I am not seeing the header information, personnel number, name, cost center, on the ABAP Webdynpro record working time timesheet. When I run the timesheet profile in CAT2 the header contains the personnel number, name, cost center, but these do not display when the ABAP Webdynpro timesheet is run
    2. Is there a version of the ABAP webdynpro timesheet that prompts for the personnel number, date and profile prior to executing the timesheet?  I want to define an ESS link for managers to update timesheets of individual teammates.  The teammate do not necessarily have to be their direct reports

    Hi David,
    CATS Webdynpro application is a OIF fpm. Please check if you have performed the FPM IDR configuration properly.
    In standard, the ESS CATS does not prompt for the personnel number except in CE scenario. In MSS addon, you have an option to launch the ESS CATS application on-behalf of the employee. Please refer to the sap library documentation.
    Hope this helps,
    Regards,
    Roy

  • IR column Header value not displayed entirely during filteration

    I have a IR, when I click any column Header and it shows the list of values as a dropdown.
    some of them (which are larger) get cut off.. means the the entire content/value are not displayed within the dropdown. [width of dropdown is fixed and no of characters in the content/value is more..]
    how can we fix this?
    Also.. is there any we can increase the width of the Select List window when we click any column header in IR.
    Thanks,
    Deepak
    Edited by: DeepakJ on Sep 15, 2011 4:08 PM

    Hi,
    jQuery is not included to Apex 3.2 by default.
    If you have not include jQuery library's to e.g. your page template or page header, then it is not "installed".
    You can run your app and inspect HTML source to be sure.
    You can download jQuery and jQuery UI and place files to your HTTP server folder. Then load those in e.g. page template header.
    Or use jQuery files from Google by placing to page template header.
    <link type="text/css" rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/redmond/jquery-ui.css" />
    <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
    <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>Regards,
    Jari

  • JTable column header is not displaying

    Here I have the sample code which is not displaying the header names of each row (Names, Size, Status).
    import javax.swing.*;
    import javax.swing.table.*;
    import java.awt.*;
    public class sample extends JFrame
        JTable table;
        String names[] = {"Names","Size","Status"};
        TableModel model = new AbstractTableModel()
            public Object getValueAt(int row, int col)
                return "Data";
            public int getColumnCount()
                return 3;
            public int getRowCount()
                return 5;
            public String getColumnName(int col)
                return names[col];
        public sample()
            setSize(400,400);
            setDefaultCloseOperation(3);
            Container cp = getContentPane();
            table = new JTable(model);
            cp.add(table);
            setVisible(true);
        public static void main(String a[])
            new sample();
    }Anybody can give idea for me.

    Read the JTable API. It shows you how to do this. In addition it has a link to the tutorial on "How to Use Tables" which contains many examples.

  • Header Line not Displayed in Smartform

    Hi all,
    in Smartforms , i am having one Page.
    in the main window , in Footer i am having Grand total to be displayed in the last page. i have put condition
    SFSY-PAGE = SFSY-JOBPAGES.
    the Problem is in the last page the header line is not displayed.
    in all other pages it is getting displayed.
    Can anyone help me out.
    Regards.
    Suki.

    Ok. I got the problem now. There is not simple solution for this.
    You can create a new window just only for header. Put it on the same place as the Current Header line starts.
    Move the contents from Main table header line to Header window.
    This way, the header will print on all the pages.
    Regards,
    Naimesh Patel

  • MSI Z87 MPOWER Not displaying through Videocard

    I cant seem to get my motherboard to recognize and display through my graphics card. I have a MSI N770 Lightning GeForce GTX 770 which light up and seems to be getting enough power but never displays anything to the monitor. I have tried the card in a friends desktop and it ran just fine which leads me to think its the board causing the issue. My Specs are as follows.
    PSU: CORSAIR HX Series HX750 750W
    Mobo: MSI Z87 MPOWER
    CPU:  Intel Core i7-4770K Haswell 3.5GHz LGA 1150
    RAM: CORSAIR Vengeance 16GB (4 x 4GB) 240-Pin DDR3
    OS: Windows 8 Pro 64-bit
    SSD: OCZ Vertex 4 VTX4-25SAT3-128G
    HD: Western Digital WD Black WD1002FAEX 1TB 7200 RPM
    CASE: Corsair Vengeance Series C70
    Any help would be greatly appreciated as I have already tried switching out the PSU with a more powerful unit (850w) to no avail. Everything runs fine though while running my friends GeForce GTX 560 Ti .

    I don't believe any pins where bent during socketing, and I really don't want to mess with that unless I absolutely have to. It runs perfectly fine with my friends older card. I just installed a higher wattage power supply (http://www.newegg.com/Product/Product.aspx?Item=N82E16817139034. Re-installed the card and attempted to boot up, which sadly it failed to to post and showing d6 on the mobo with the new card installed and hooked up correctly.
    Could there be a compatibility error between the card and the board? Like I said the card ran well in my friends rig (comparable to mine just using a different mobo), The machine runs fine with the older (http://us.msi.com/product/vga/N560GTX-Ti-Twin-Frozr-II-OC.html card installed. But Never displays anything or gives signal to the monitor.

  • Customer hierarchy-Discount not flowing through

    I am facing problem in customer hierarchy in pricing.
    I have assigned account group 0012 to 001 all customer. 0012 is Main company who is not issuing orders. I think this may be due to Partner determination settings. However, I have set 3 levels 1D mai n office which is not issuing sales orders act group 0012 Set partner determination at customer master level and  sales document header TA. In sales order in Partners tab I am getting 1D but not getting other like 1C nor 1B nor 1A.
    Assigned sales area as well to hiegher level sales area, order type to "A" cust. hierarchy, VDH1N well maitnined 0012 act grp to lower level 2 company which both are 001 act group.
    In VK11 maintained HI01 % discount different for head office & two branch office with same sales org, Distr Channel and division.
    Here HO is given 2% discount and one branch office 5% and another 7%
    When I am creating sales order for 7% branch, in pricing procedure it shows only 2% (HO) discount but not 7% for branch office. I have also tick marked in XD02 at billing tab price determination. In pricing analysis hirearchy 02 is having Exclaimation in Customer field. So why I am missing this customer field even though I have maintained that customer in VK11. Hope I have summarized all details. If any questions please feel free.
    I shall appreciate if you know the resolution.

    This is now resolved by proper settings in Customer Hierarchy

  • Header div not displaying correctly in Explorer

    Can someone help me with this IE browser problem?I have a
    header div inside the container div. The container is displaying
    correctly - center of page. The header div is not! It is off to the
    right and half the header is off the page. All other browser tests,
    Mac and PC display correctly. The header div should be centered as
    it is within the container, right? The header is suppose to stay at
    the top of the screen as viewer scrolls - which it does correctly.
    I started with the Dreamweaver code and made some changes. Here is
    my code:

    I can't see anything wrong with the table but I assume it has
    some css
    associated with it?
    You might try a simple test. Create another include file with
    just a
    single table at 762px and one cell, with nothing apart from a
    background
    color.
    Bring that into the original document and see what happens.
    If it shows
    correctly then it must be the other tables construction/css
    taht is
    causing the problem.
    aacjp wrote:
    > here is the include code:
    >
    > <table width="762" border="0" cellspacing="0"
    cellpadding="0">
    > <tr>
    > <td width="114" align="left" valign="top"
    bgcolor="#333333"><img
    > src="/images/main/cover_masthead.jpg" alt="current
    issue" width="113"
    > height="150" /></td>
    > <td align="center" valign="middle"
    bgcolor="#C7581B"><img
    > src="/images/main/masthead.gif" alt="Fabric Trends
    Magazine" width="309"
    > height="145" /></td>
    > <td width="159" align="center" valign="middle"
    bgcolor="#C7581B"><table
    > width="120" border="0" cellspacing="0"
    cellpadding="0">
    > <tr>
    > <td align="right"><a
    href="/information/subscribe.shtml"
    > class="nav">Subscribe</a></td>
    > </tr>
    > <tr>
    > <td align="right"><a
    href="/issues/current.shtml" class="nav">Current
    > Issue</a></td>
    > </tr>
    > <tr>
    > <td align="right"><a href="/issues/back.shtml"
    class="nav">Back
    > Issues</a></td>
    > </tr>
    > <tr>
    > <td align="right"><a href="/kits/index.shtml"
    class="nav">Quilt
    > Kits</a></td>
    > </tr>
    > <tr>
    > <td align="right"><a
    href="/information/shops.shtml" class="nav">Quilt
    > Shops</a></td>
    > </tr>
    > <tr>
    > <td align="right"><a
    href="/onlineproject/index.shtml"
    > class="nav">Online Projects</a></td>
    > </tr>
    >
    > </table></td>
    > </tr>
    > </table>
    >
    >
    >
    >

  • Check Print Header will not display on each page

    I am creating a check print template for R12 and it works great for single page remittances. However for multi-page remitttances the Header information does not want to display on all pages of the remittance. When it goes to a new remittance the first page of that remittance is correct. I have an @section in the first group and there are no page breaks, but it still ignores the header.
    Any Ideas?
    Thanks,
    Dan J

    this is the typical answer that everybody asks check he CFIDE
    folder, but guess what, the folder is accessable and all the script
    files can be loaded by the browser but still ... no cfform flash
    displayed.
    need more support for this issue, i can use all the cfform
    features accept when trying to enable the format=flash and this is
    what isnt processing correctly,
    the developement server works fine but production server
    doesn't and the CFIDE directory has the right file permissions and
    is assessable to the browser.

  • Header text not displayed in script  for Quotation

    Dear all ,
    I am using standard form for quotation printing but the text i enter in  quotation header it is not getting displayed in the standard layout of the quotaion . is there any settings i need to do .
    pls advise
    Ramar

    Dear all ,
    I am using standard form for quotation printing but the text i enter in  quotation header it is not getting displayed in the standard layout of the quotaion . is there any settings i need to do .
    pls advise
    Ramar

  • Header text not displayed in quotation

    Dear all ,
    I am using standard form for quotation printing but the text i enter in quotation header it is not getting displayed in the standard layout of the quotaion . is there any settings i need to do .
    pls advise
    Ramar

    you have to read_text function module for that.......for that you need
    id
    object
    name   which is diffenrent for standard program ,you have to pass these parameters and on the basis you have to read text... i am sending you code
    DATA: wa_ltext     TYPE tline,
          current_line TYPE i,
          prev_line    TYPE i.
    LOOP AT ta_ltext WHERE tdline NE space.
      CASE ta_ltext-tdformat.
        WHEN '='.
          prev_line = sy-tabix - 1.
          READ TABLE ta_ltext INTO wa_ltext INDEX prev_line.
          IF sy-subrc = 0.
            CONCATENATE wa_ltext-tdline ta_ltext-tdline
                   INTO ta_ltext2-tdline.
            MODIFY ta_ltext2 INDEX current_line.
          ENDIF.
        WHEN OTHERS.
          ta_ltext2-tdline = ta_ltext-tdline.
          APPEND ta_ltext2.
          current_line = sy-tabix.
      ENDCASE.
    ENDLOOP.
    DATA:   BEGIN OF ttab OCCURS 0.
            INCLUDE STRUCTURE tline.
    DATA:   END OF ttab.
    DATA:   BEGIN OF tinlinetab OCCURS 0.
            INCLUDE STRUCTURE tline.
    DATA:   END OF tinlinetab.
    DATA: BEGIN OF thead.
            INCLUDE STRUCTURE thead.
    DATA: END OF thead.
    lv_objname = it_lips-posnr.
      CONCATENATE it_lips-vbeln lv_objname INTO lv_objname.
      PERFORM read_item_text1 USING lv_objname it_lips-vbeln.
    *&      Form  read_item_text1
          text
         -->P_LV_OBJNAME  text
         -->P_IT_LIPS_VBELN  text
    FORM read_item_text1  USING    P_OBJNAME
                                   P_IT_LIPS_VBELN.
      CLEAR : v_regcarr , v_intcarr ,
                v_reqdate , v_commdate.
      CLEAR: thead,it_likp-traty.
      REFRESH : ttab, tinlinetab.
      thead-tdid     = '0001'.
      thead-tdspras  = sy-langu.
      thead-tdname   =  p_objname.
      thead-tdobject = 'VBBP'.
      CALL FUNCTION 'READ_TEXT_INLINE'
        EXPORTING
          id              = thead-tdid
          inline_count    = 1
          language        = thead-tdspras
          name            = thead-tdname
          object          = thead-tdobject
        IMPORTING
          header          = thead
        TABLES
          inlines         = tinlinetab
          lines           = ttab
        EXCEPTIONS
          id              = 1
          language        = 2
          name            = 3
          not_found       = 4
          object          = 5
          reference_check = 6
          OTHERS          = 7.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    and if you ar using smartforms
    you kan read text in this way
    program lines
    input parameters         output parameters
    gs_vbrp                 GV_TYPPKG
    gs_item
    CLEAR: GV_TYPPKG.
    CONCATENATE
    gs_ITEM-vbeln
    gs_ITEM-posnr INTO GV_TYPPKG.
    create>text, type>include text
    1)text name  --> &GV_TYPPKG&
    2)text object-->VBBP
    3)Text id    ->Z009
    4)lan       -->en
    tick mark no error if no text exists
    also provide standard paragraph and first paragraph
    reward points if satisfied

  • Smart form header data not displaying properly

    dear abapers,
         i need to display header..but am not able to get the data properly...

    Hi,
         Take a Text Element at the place where u want header(Before main Window) or
         use appropriate Smart Style(font ,size,style) or
         Check the Table ,Template Layout (if used).

Maybe you are looking for

  • Can you get a list of what media you used in your timeline? FCP7

    Working in FCPro 7, lets assume you imported 100 clips into your browser, but only used peices of 45 of those 100 clips in the actual timeline. Is there a method, using FIND or the Media Manager, to get a list of which 45 clips you have used in the t

  • Clamshell mode w/external monitor broken in 10.8.2

    Ever since I made the .2 upgrade in mountain lion clamshell mode does not work with my MBPro 8,2.  Previously in Lion and Mountain Lion clamshell mode worked fine, I even executed the following terminal command so I could open the lid without the int

  • Image Not Shown in Web

    Hai, Every body, I have a problem with showing my image on the web. My problem is like this : I create an employee table with one of its field is to store the employee photo or picture. I create this field with the data structure of Long Row. Then I

  • [solved] dolphin file manager losing all custom places entries

    Hi all, I am getting phantom problem with dolphin file manager, i added custom place entries there but suddenly they diappear from dolphin. There is no any pattern in disappearance. They appear for few days without any problem, even after shutdown/re

  • Enabling the java plugin of a browser

    how to enable the java plugin of a browser. It says go to control panel of the windows, but there is no such icon..how to enable it???