Total Secured Receivables field KNKK-ABSBT

Hi,
I need to understand which is the working of field KNKK-ABSBT Total Secured Receivables, into transaction FD32/FD33. Can this field be filled with the insured amount which we fill in the master data field KNB1-VLIBB?
Many thanks,
regards
Roberta

Hi Umberto,
In addition to Credit Management, there are several other ways to guarantee payments including letters of credit, export credit insurance, and payment cards. These forms of payment guarantees are all integrated in the Risk Management for Receivables component, providing you with an efficient tool for guaranteeing the payment of all billing values that arise in sales and distribution processes. The payment guarantee procedure is dependent on the customer and a document payment guarantee procedure. These can be determined in Customizing for Sales and Distribution
The amount of a receivable guaranteed for payment is stored in the line item, which is the one represented as total at field name ABSB,  and can be displayed when displaying documents, the line item itself and in the credit overview (with line layout variants).
In risk management, the credit value of a sales order is calculated as follows:
Total value = open confirmed quantities * credit price
(In the standard system the credit price is calculated by totaling the net value plus taxes.)
Guaranteed value = total value * guaranteed factor
Credit value = total value - guaranteed value
Hope this helps,
GG

Similar Messages

  • Secure receivables field is not getting updated in FD32

    Hi All,
    I have created an LC for a customer & assigned the LC in the sales order. The system does not consider the LC amount as credit exposure which is a correct behaviour. When I post the Invoice the system does not populate any value in the secured receivables field in FD32 which should ideally haapen after posting the invoice.
    Please guide me if I am missing anything.
    Thanks In advance for your efforts.
    Regards,
    Sulabh

    Hi,
    Found the ans by myself.
    As these are the secured receivables, so after generating  invoice, the invoice amount sit under secure receivable as this amount is secured with LC attached in sales order.
    Regards,
    Sulabh

  • I am receiving pop up alerts when opening and using firefox stating "win 7 total security 2011 has blocked a program" is this a virus and how can i fix it?

    Whenever I open or use Firefox I'm receiving a pop up message telling me I am under attack and my info is at risk and I am being prompted to activate "win 7 2011 total security" to remove the threat.
    I have run my own virus scan and nothing is detected.
    Is this legitimate from Firefox?
    If not, how do I safely remove the threat?

    "win 7 2011 total security" is a rogue application. For details on it see http://www.2-viruses.com/remove-win-7-total-security
    To ensure your computer is clean try running several malware scanners. It is best to run several as each will pick up things that the others miss. Some scanners you can try are:
    * Malwarebytes - http://www.malwarebytes.org/mbam.php
    * SuperAntiSpyware - http://www.superantispyware.com
    * Ad-Aware - http://www.lavasoft.com/products/ad_aware_free.php
    * Windows Defender - http://www.microsoft.com/windows/products/winfamily/defender/default.mspx
    * Spybot S&D - http://www.safer-networking.org/en/home/index.html

  • Not allowing totaling of a field in alv output

    hi,
    I had made a ALV in which i have to hide 1 field for getting it totaling.
    i.e. if somebody try to make total of it ,it should not be allowed on dat field . is dere any solution for this problem?
    plzz provide me guidelines for it.

    Please please it this. I made the total for every field other than RACCT and SUM_COMM.
    *&      Form  sub_prepare_display_output
          Display output
    -->  No Parameter
    FORM sub_prepare_display_output .
    Local variables
      DATA: l_lead_col   TYPE char25,       " Lead column
            l_progname   TYPE sy-repid,     " Program name
    Local internal tables
            l_oref_layout TYPE REF TO cl_salv_layout, "Layout
    Local work area
            l_wa_key      TYPE salv_s_layout_key,     "Work area for key
            l_except1   TYPE REF TO cx_salv_msg,"Exception
            l_text1     TYPE string.            "Exception msg
    If profit center is checked
      IF p_prfctr = c_check.
        l_lead_col = 'Profit Center'(041).
    If product catagory is checked
      ELSEIF p_prodc = c_check.
        l_lead_col = 'Product Category'(042).
    If material is checked
      ELSEIF p_smatnr = c_check.
        l_lead_col = 'Material No.'(043).
      ENDIF.
    Create ALV instance with class-method cl_salv_table=>factory
      TRY.
          CALL METHOD cl_salv_table=>factory
            EXPORTING
              list_display = if_salv_c_bool_sap=>false
            IMPORTING
              r_salv_table = v_oref_table
            CHANGING
              t_table      = i_final.
        CATCH cx_salv_msg INTO l_except1.
          l_text1 = l_except1->get_text( ).
          MESSAGE i000 WITH l_text1.
          LEAVE LIST-PROCESSING.
      ENDTRY.
    Make header of the report
      PERFORM sub_header_report USING v_oref_table.
    Get the toolbar
      v_oref_functions = v_oref_table->get_functions( ).
    For activating application toolbar
      v_oref_functions->set_all( abap_true ).
      v_oref_columns = v_oref_table->get_columns( ).
    It populate the key fields which are always displayed
      PERFORM sub_fill_fields_of_fcatalog USING:
    'SUM_COMM'        l_lead_col                ' ',
    'RACCT'          'Account Number'(035)      ' ',
    'FOBAC'          'FOB Acrual'(023)          'X',
    'EXCESS'         'Excess'(024)              'X',
    'OBSOLE'         'Obsolescence'(025)        'X',
    'PPV'            'Puchachse Price Var'(026) 'X',
    'FR_VAR'         'Freight Variance'(027)    'X',
    'PROD_OR_VAR'    'Produc Ord Var'(028)      'X',
    'DEP_VAR'        'Dept. Variance'(029)      'X',
    'OTH_PROD_VAR'   'Other Prod Var'(030)      'X',
    'PR_OR_SCRP_VAR' 'Scrap Variance'(031)      'X',
    'COST_OF_ACC'    'Cost of Sales Accnt'(032) 'X',
    'INV_ACC'        'Inventory Account'(033)   'X'.
    Optimize the columns
      v_oref_columns->set_optimize( value = 'X' ).
    Setting the layout
    get the LAYOUT object
      l_oref_layout = v_oref_table->get_layout( ).
    set the layout key
      l_progname = sy-repid.
      l_wa_key-report = l_progname.
      l_oref_layout->set_key( value = l_wa_key ).
    set save restriction:
    none / only user-dependent / only user-independent
      l_oref_layout->set_save_restriction(
      value = if_salv_c_layout=>restrict_none  ).
    set: setting of default layout is allowed / isnu2019t allowed
      l_oref_layout->set_default( value = 'X' ).
    Dispaly the output
      v_oref_table->display( ).
    ENDFORM.                    " sub_prepare_display_output
    *&      Form  sub_header_report
        Create the header of the report
         -->P_v_oref_TABLE  table name
    FORM sub_header_report  USING    p_v_oref_table TYPE REF TO
                                               cl_salv_table .
      DATA : l_oref_grid TYPE REF TO cl_salv_form_layout_grid.
      CREATE OBJECT l_oref_grid.
    Add  text items for top of page
      l_oref_grid->create_text( row = 1  column = 1  text = 'Program'(022)
      l_oref_grid->create_text( row = 1  column = 2  text = sy-repid  ).
      l_oref_grid->create_text( row = 2  column = 1
      text = 'User Name'(021) ).
      l_oref_grid->create_text( row = 2  column = 2  text = sy-uname  ).
      l_oref_grid->create_text( row = 3  column = 1  text = 'Date'(020) ).
      l_oref_grid->create_text( row = 3  column = 2  text = sy-datum ).
      l_oref_grid->create_text( row = 3  column = 3  text = 'Time'(019)  ).
      l_oref_grid->create_text( row = 3  column = 4  text = sy-uzeit  ).
      l_oref_grid->create_text( row = 4  column = 1  text = 'System'(018) ).
      l_oref_grid->create_text( row = 4  column = 2  text = sy-sysid ).
      l_oref_grid->create_text( row = 4  column = 3  text = 'Client'(017) ).
      l_oref_grid->create_text( row = 4  column = 4  text = sy-mandt ).
    Declare grid as header of list
      p_v_oref_table->set_top_of_list( value = l_oref_grid ).
    ENDFORM.                    " sub_header_report
    *&      Form  sub_fill_fields_of_fcatalog
          This subroutine populates the field catalog excluding
          period fields
         -->P_FIELDNAME Table field name
         -->P_NAME      Field description
         -->P_DEC       Decimal value flag
    FORM sub_fill_fields_of_fcatalog  USING p_fieldname TYPE lvc_fname
                                            p_name      TYPE c
                                            p_dec       TYPE c.
      DATA: l_char_l TYPE scrtext_l,  "For short text
            l_char_m TYPE scrtext_m,  "For medium text
            l_char_s TYPE scrtext_s,  "For long text
            l_except1   TYPE REF TO cx_salv_not_found,"Exception
            l_text1     TYPE string,            "Exception msg
            l_orf_aggregs TYPE REF TO cl_salv_aggregations.
    Getting the text long/short/medium into variables
      l_char_l = p_name.
      l_char_m = p_name.
      l_char_s = p_name.
    Setting the long/short/medium text and fix the key fileds
      TRY.
          CALL METHOD v_oref_columns->get_column
            EXPORTING
              columnname = p_fieldname
            RECEIVING
              value      = v_oref_column1.
        CATCH cx_salv_not_found INTO l_except1.
          l_text1 = l_except1->get_text( ).
          MESSAGE i000 WITH l_text1.
          LEAVE LIST-PROCESSING.
      ENDTRY.
      v_oref_column ?= v_oref_column1.
      v_oref_column->set_long_text( l_char_l ).
      v_oref_column->set_medium_text( l_char_m ).
      v_oref_column->set_short_text( l_char_s ).
      v_oref_column->set_key( value = 'X' ).
      v_oref_columns->set_key_fixation( value = 'X' ).
    Set the decimal length
      IF p_dec = 'X'.
        v_oref_column->set_decimals( value = '2' ).
      ENDIF.
      IF p_fieldname = 'RACCT' AND p_gl <> c_check.
        v_oref_column->set_visible( value = space ).
      ENDIF.
      IF p_gl = c_check.
        v_oref_columns->set_column_position( columnname = 'RACCT'
                                               position = 2 ).
      ENDIF.
      IF p_fieldname NE 'RACCT' AND p_fieldname NE 'SUM_COMM'.
        l_orf_aggregs = v_oref_table->get_aggregations( ).
        l_orf_aggregs->add_aggregation( columnname = p_fieldname
                       aggregation = if_salv_c_aggregation=>total ).
      ENDIF.
    ENDFORM.                    " sub_fill_fields_of_fcatalog

  • I am recieving pop up alerts when opening and using firefox stating "win 7 total security 2011 has blocked a program" is this a virus and how can i fix it?

    Suddenly I received a pop up that a virus was attacking my computer and my info was at risk. I was prompted to initiate "win 7 2011 total security" to remove the threat.
    Is this a legitimate part of Firefox or a virus attempting to access my computer. My virus protection software scan does not detect any virus when I run n a scan.
    Please help.

    "win 7 2011 total security" is a rogue application. For details on it see http://www.2-viruses.com/remove-win-7-total-security
    To ensure your computer is clean try running several malware scanners. It is best to run several as each will pick up things that the others miss. Some scanners you can try are:
    * Malwarebytes - http://www.malwarebytes.org/mbam.php
    * SuperAntiSpyware - http://www.superantispyware.com
    * Ad-Aware - http://www.lavasoft.com/products/ad_aware_free.php
    * Windows Defender - http://www.microsoft.com/windows/products/winfamily/defender/default.mspx
    * Spybot S&D - http://www.safer-networking.org/en/home/index.html

  • Total Quantity received as well as pending Qty against an Inbound No.

    I have to make report for showing Total quantity received and pending quantity of inbound angainst inbound delivery number.
    which table, field name i use to make report.

    Inbound delivery against PO
    LIPS-VGBEL = Reference Document ( In this case it would be PO number)
    EKES Vendor Confirmations table also use for it
    Go to EKBE table for GR document and get the field ETENS (Sequential number of vendor confirmation).
    Go to EKES table and select the record based on EBELN, EBELP and ETENS to get the corresponding delivery number

  • Firefox won't open, error msg = can't find profile; deleted all app.data to rid new Win 7 Total Security virus - tried both v 4.0 & v 3.6 (now no error msg either). Can't open profile manager, can't open safe mode. pls help

    My mother's computer was infected with the new "Win 7 Total Security" virus (apparently a fake antivirus program) - corrupted real av. To remove, we followed online advice to delete everything in AppData, for all programs, plus some other stuff. We moved it all to a flashdrive for safety, but after successfully removing virus, likewise cleaned & reformatted flashdrive. This apparently deleted Firefox profile(s), and after uninstalling & reinstalling, Firefox still won't open - I can't create a new profile. With v 4.0, I get an error message about not being able to find the profile. Found advice on how to open profile manager, but it won't open. Found reference to version 4 dispensing with profile manager, so tried installing version 3.6 again; still won't open, still can't open profile manager, but now no error message at all.

    THANX for the reply cor-el. I've never had a problem using just "firefox -p", but i did use the full path like you advised after i read the profile manager article here before i posted my question. Unfortunately it didn't work. I've backed up all 3 profiles from the "%appdata% profile" file, and also from my remaining main profile that i'm on right now. I decided i'm going to uninstall ff3.6.28 & upgrade to "firefox 11" this weekend and hopefully create the other 2 profiles along with my main one. I do like in the newer versions of FF the tabs on top like googles chrome because it gives you more room on the page. I also like some other features too, but the main reason i kept my old version both times is because the newer versions didn't seem to load pages any faster than version 3.6.28. I'm not going to worry about some themes/personas not being compatible with ff11. I'll find some new ones. I think when i tried "ff9" awhile back along with my current version, i just deleted the shortcut that the article said to create on the desktop and still had all 3 profiles & no problems like i have now. In case your curious, the article on how to create more than one version of firefox at the same time was on the site "Dottech.org>[How To] Tip: Install multiple versions of Firefox to test before upgrading to latest release". It works but i obviously did something different this time that caused this problem. THANX again for your time/help, i do appreciate it.

  • Alv subtotals  and grand total for a field

    Hi friends,
    I Have an internal table ITAB1
    in that i have a senario as below.
    In my GRID display iam getting values in the layou as follows
    BUKRS =  1000
    LIFNR      MATNR     STCST
    100          abc            500,00
    100          pqr             400,00
    100          xyz            200,00
                        sub total
    200         pto              700,00
    200         vbr              900,00
                        sub total
    BUKRS =  2000
    LIFNR      MATNR     STCST
    150          abc            500,00
    150          pqr             400,00
    150          xyz            200,00
                        sub total
    260         pto              700,00
    260         vbr              900,00
                        sub total
              GRAND TOTAL = 
    Now my requirement is at the end of every vendor  i need sub total for STCST field.
    and at the end of every company code i need GRAND TOTAL for STCST field.
    Its alv grid display.
    how can i do that.
    Regards,
    Priyanka.

    Check this sample code may it will help u:
    *& Report  Z_ALV_SUBTOTAL
    REPORT z_alv_subtotal.
    *& Table declaration
    TABLES: ekko.
    *& Type pool declaration
    TYPE-POOLS: slis. " Type pool for ALV
    *& Selection screen
    SELECT-OPTIONS: s_ebeln FOR ekko-ebeln.
    *& Type declaration
    * Type declaration for internal table to store EKPO data
    TYPES: BEGIN OF x_data,
           ebeln  TYPE char30,  " Document no.
           ebelp  TYPE ebelp,   " Item no
           matnr  TYPE matnr,   " Material no
           matnr1 TYPE matnr,   " Material no
           werks  TYPE werks_d, " Plant
           werks1 TYPE werks_d, " Plant
           ntgew  TYPE entge,   " Net weight
           gewe   TYPE egewe,   " Unit of weight                          
           END OF x_data.
    *& Internal table declaration
    DATA:
    * Internal table to store EKPO data
      i_ekpo TYPE STANDARD TABLE OF x_data INITIAL SIZE 0,
    * Internal table for storing field catalog information
      i_fieldcat TYPE slis_t_fieldcat_alv,
    * Internal table for Top of Page info. in ALV Display
      i_alv_top_of_page TYPE slis_t_listheader,
    * Internal table for ALV Display events
      i_events TYPE slis_t_event,
    * Internal table for storing ALV sort information
      i_sort TYPE  slis_t_sortinfo_alv,
      i_event TYPE slis_t_event.
    *& Work area declaration
    DATA:
      wa_ekko TYPE x_data,
      wa_layout     TYPE slis_layout_alv,
      wa_events         TYPE slis_alv_event,
      wa_sort TYPE slis_sortinfo_alv.
    *& Constant declaration
    CONSTANTS:
       c_header   TYPE char1
                  VALUE 'H',                    "Header in ALV
       c_item     TYPE char1
                  VALUE 'S'.
    *& Start-of-selection event
    START-OF-SELECTION.
    * Select data from ekpo
      SELECT ebeln " Doc no
             ebelp " Item
             matnr " Material*
             matnr " Material*
             werks " Plant*
             werks " Plant*
             ntgew " Quantity
             gewei " Unit
             FROM ekpo
             INTO TABLE i_ekpo
             WHERE ebeln IN s_ebeln
             AND ntgew NE '0.00'.
      IF sy-subrc = 0.
        SORT i_ekpo BY ebeln ebelp matnr .
      ENDIF.
    * To build the Page header
      PERFORM sub_build_header.
    * To prepare field catalog
      PERFORM sub_field_catalog.
    * Perform to populate the layout structure
      PERFORM sub_populate_layout.
    * Perform to populate the sort table.
      PERFORM sub_populate_sort.
    * Perform to populate ALV event
      PERFORM sub_get_event.
    END-OF-SELECTION.
    * Perform to display ALV report
      PERFORM sub_alv_report_display.
    *&      Form  sub_build_header
    *       To build the header
    *       No Parameter
    FORM sub_build_header .
    * Local data declaration
      DATA: l_system     TYPE char10 ,          "System id
            l_r_line     TYPE slis_listheader,  "Hold list header
            l_date       TYPE char10,           "Date
            l_time       TYPE char10,           "Time
            l_success_records TYPE i,           "No of success records
            l_title(300) TYPE c.                " Title
    * Title  Display
      l_r_line-typ = c_header.               " header
      l_title = 'Test report'(001).
      l_r_line-info = l_title.
      APPEND l_r_line TO i_alv_top_of_page.
      CLEAR l_r_line.
    * Run date Display
      CLEAR l_date.
      l_r_line-typ  = c_item.                " Item
      WRITE: sy-datum  TO l_date MM/DD/YYYY.
      l_r_line-key = 'Run Date :'(002).
      l_r_line-info = l_date.
      APPEND l_r_line TO i_alv_top_of_page.
      CLEAR: l_r_line,
             l_date.
    ENDFORM.                    " sub_build_header
    *&      Form  sub_field_catalog
    *       Build Field Catalog
    *       No Parameter
    FORM sub_field_catalog .
    *  Build Field Catalog
      PERFORM sub_fill_alv_field_catalog USING:
         '01' '01' 'EBELN' 'I_EKPO' 'L'
         'Doc No'(003) ' ' ' ' ' ' ' ',
         '01' '02' 'EBELP' 'I_EKPO' 'L'
         'Item No'(004) 'X' 'X' ' ' ' ',
         '01' '03' 'MATNR' 'I_EKPO' 'L'
         'Material No'(005) 'X' 'X' ' ' ' ',
         '01' '03' 'MATNR1' 'I_EKPO' 'L'
         'Material No'(005) ' ' ' ' ' ' ' ',
         '01' '04' 'WERKS' 'I_EKPO' 'L'
         'Plant'(006) 'X' 'X' ' ' ' ',
         '01' '04' 'WERKS1' 'I_EKPO' 'L'
         'Plant'(006) ' ' ' ' ' ' ' ',
         '01' '05' 'NTGEW' 'I_EKPO' 'R'
         'Net Weight'(007) ' ' ' ' 'GEWE' 'I_EKPO'.
    ENDFORM.                    " sub_field_catalog
    *&     Form  sub_fill_alv_field_catalog
    *&     For building Field Catalog
    *&     p_rowpos   Row position
    *&     p_colpos   Col position
    *&     p_fldnam   Fldname
    *&     p_tabnam   Tabname
    *&     p_justif   Justification
    *&     p_seltext  Seltext
    *&     p_out      no out
    *&     p_tech     Technical field
    *&     p_qfield   Quantity field
    *&     p_qtab     Quantity table
    FORM sub_fill_alv_field_catalog  USING  p_rowpos    TYPE sycurow
                                            p_colpos    TYPE sycucol
                                            p_fldnam    TYPE fieldname
                                            p_tabnam    TYPE tabname
                                            p_justif    TYPE char1
                                            p_seltext   TYPE dd03p-scrtext_l
                                            p_out       TYPE char1
                                            p_tech      TYPE char1
                                            p_qfield    TYPE slis_fieldname
                                            p_qtab      TYPE slis_tabname.
    * Local declaration for field catalog
      DATA: wa_lfl_fcat    TYPE  slis_fieldcat_alv.
      wa_lfl_fcat-row_pos        =  p_rowpos.     "Row
      wa_lfl_fcat-col_pos        =  p_colpos.     "Column
      wa_lfl_fcat-fieldname      =  p_fldnam.     "Field Name
      wa_lfl_fcat-tabname        =  p_tabnam.     "Internal Table Name
      wa_lfl_fcat-just           =  p_justif.     "Screen Justified
      wa_lfl_fcat-seltext_l      =  p_seltext.    "Field Text
      wa_lfl_fcat-no_out         =  p_out.        "No output
      wa_lfl_fcat-tech           =  p_tech.       "Technical field
      wa_lfl_fcat-qfieldname     =  p_qfield.     "Quantity unit
      wa_lfl_fcat-qtabname       =  p_qtab .      "Quantity table
      IF p_fldnam = 'NTGEW'.
        wa_lfl_fcat-do_sum  = 'X'.
      ENDIF.
      APPEND wa_lfl_fcat TO i_fieldcat.
      CLEAR wa_lfl_fcat.
    ENDFORM.                    " sub_fill_alv_field_catalog
    *&      Form  sub_populate_layout
    *       Populate ALV layout
    *       No Parameter
    FORM sub_populate_layout .
      CLEAR wa_layout.
      wa_layout-colwidth_optimize = 'X'." Optimization of Col width
    ENDFORM.                    " sub_populate_layout
    *&      Form  sub_populate_sort
    *       Populate ALV sort table
    *       No Parameter
    FORM sub_populate_sort .
    * Sort on material
      wa_sort-spos = '01' .
      wa_sort-fieldname = 'MATNR'.
      wa_sort-tabname = 'I_EKPO'.
      wa_sort-up = 'X'.
      wa_sort-subtot = 'X'.
      APPEND wa_sort TO i_sort .
      CLEAR wa_sort.
    * Sort on plant
      wa_sort-spos = '02'.
      wa_sort-fieldname = 'WERKS'.
      wa_sort-tabname = 'I_EKPO'.
      wa_sort-up = 'X'.
      wa_sort-subtot = 'X'.
      APPEND wa_sort TO i_sort .
      CLEAR wa_sort.
    ENDFORM.                    " sub_populate_sort
    *&      Form  sub_get_event
    *       Get ALV grid event and pass the form name to subtotal_text
    *       event
    *       No Parameter
    FORM sub_get_event .
      CONSTANTS : c_formname_subtotal_text TYPE slis_formname VALUE
    'SUBTOTAL_TEXT'.
      DATA: l_s_event TYPE slis_alv_event.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type     = 4
        IMPORTING
          et_events       = i_event
        EXCEPTIONS
          list_type_wrong = 0
          OTHERS          = 0.
    * Subtotal
      READ TABLE i_event  INTO l_s_event
                        WITH KEY name = slis_ev_subtotal_text.
      IF sy-subrc = 0.
        MOVE c_formname_subtotal_text TO l_s_event-form.
        MODIFY i_event FROM l_s_event INDEX sy-tabix.
      ENDIF.
    ENDFORM.                    " sub_get_event
    *&      Form  sub_alv_report_display
    *       For ALV Report Display
    *       No Parameter
    FORM sub_alv_report_display .
      DATA: l_repid TYPE syrepid .
      l_repid = sy-repid .
    * This function module for displaying the ALV report
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program       = l_repid
          i_callback_top_of_page   = 'SUB_ALV_TOP_OF_PAGE'
          is_layout                = wa_layout
          it_fieldcat              = i_fieldcat
          it_sort = i_sort
          it_events                = i_event
          i_default                = 'X'
          i_save                   = 'A'
        TABLES
          t_outtab                 = i_ekpo
        EXCEPTIONS
          program_error            = 1
          OTHERS                   = 2.
      IF sy-subrc <> 0.
    *    MESSAGE i000 WITH 'Error in ALV report display'(055).
      ENDIF.
    ENDFORM.                    " sub_alv_report_display
    *       FORM sub_alv_top_of_page
    *       Call ALV top of page
    *       No parameter
    FORM sub_alv_top_of_page.                                   "#EC CALLED
    * To write header for the ALV
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary = i_alv_top_of_page.
    ENDFORM.                    "alv_top_of_page
    *&      Form  subtotal_text
    *       Build subtotal text
    *       P_total  Total
    *       p_subtot_text Subtotal text info
    FORM subtotal_text CHANGING
                   p_total TYPE any
                   p_subtot_text TYPE slis_subtot_text.
    * Material level sub total
      IF p_subtot_text-criteria = 'MATNR'.
        p_subtot_text-display_text_for_subtotal
        = 'Material level total'(009).
      ENDIF.
    * Plant level sub total
      IF p_subtot_text-criteria = 'WERKS'.
        p_subtot_text-display_text_for_subtotal = 'Plant level total'(010).
      ENDIF.
    ENDFORM.                    "subtotal_text
    Edited by: Joyjit Ghosh on Aug 21, 2008 5:25 PM

  • FD33 - Receivable Field in Customer master is not getting updated

    FD33 - Receivable Field in Customer master is not getting updated for the FI documents posted in the customer account. I need to know is there any setting either in FI or in SD, which control whether the FI document is relevant to credit check?
    In SD, we are having the item category but i am not getting how to control for FI documents? How can i make them credit relevant item. Also for special item, we are controlling the same through Transaction code : OBXY - by special GL indicators but what about the normal/general item?
    How can I control the general FI documents having various FI documents type as relevant to credit check?

    Apart from the above,please also check the below:
    FD33 - Receivable Field in Customer master is not getting updated for the FI documents posted in the customer account. I need to know is there any setting either in FI or in SD, which control whether the FI document is relevant to credit check?
    As per me there is no specific control to active the credit active field in FI values unlike for updating the sales values in FD32 we activate credit active for the item cat(VOV7) which will ensure the sales values to update (open order, open delivery and open invoices) in to credit management.
    For FI values to update i think this is inbuilt in the program only.( example update group 000012,15,18 etc).
    Any way coming into query not updating the receivables, please check the below points once again.
    1. Check the whether invoice has accounting document generated or not, make sure that it is generated then only system update the receivables.
    2. Even if the above all points are checked including above all posts,then also still the same issue repeating  then try to run the program RVKRED77, before this first run RVKRED88 and compare this values with FD32.
    thanks,
    Srinu.

  • How to get total of any field in sapscript?

    Hello ,
    i m making sapscript...
    How to get total of any field in sapscript?

    Hi
    Yes, you can define a variabe in your print program and pass it to the SAPScript.
    LIKE:
    Define L_SUM in the Global data.
    DATA: L_SUM TYPE BSEG-DMBTR.
    LOOP AT ITAB.
    L_SUM = L_SUM + ITAB-AMOUNT.
    ENDLOOP.
    CALL FUNCTION 'WRITE_FORM'
    WINDOW = 'MAIN'
    ELEMENT = 'TOTAL'.
    Now, in your SAPScript, create a text element in MAIN window
    /E TOTAL
    Total,, &L_SUM&.
    Go through below link
    http://sap-img.com/sapscripts/sapscript-how-to-calculate-totals-and-subtotals.htm
    Regards,
    Chandru

  • How do u calculate total of a field in forms

    how do u calculate the total of a field in forms which u are entering and then compare it with a particulat amount so that it is not more than that amount.
    Message was edited by:
    user521989

    I tried using this query, (it is just an example). in the 'key-next-item-trigger'.....but it takes directly from the database , i want it to take the values that i enter in the form and total those values, but like i said it takes all the stored values from the database and then totals it. could you suggest something
    post;
         declare
         x number:=0;     
         begin
         select sum(salary) into x from dept;
              message(x); pause;
         IF x > 5000 THEN
              message('cannot be greater than 5000');
              raise form_trigger_failure;
         end if;
         end;

  • Total Item Value Field in PR

    Dear Experts ,
    I need to know in which table where  the Total Value Item field is in  ... because i want to use it in SQVI
    Note : I searched for it in EBAN and EBKN but i didn't find it .. i think it is not stored in the table and just being calculated (Price * Quantity) in the run time .
    Thanks

    Hi ,
    I think you can find the logical table for that structure table. And you can use that logical table in query.
    Regards,
    Zubin
    Edited by: zubin on Feb 25, 2009 8:36 AM

  • Total Before Discount field.

    Hi, evrybody!
    Can you show me about what table store Total Before Discount field..in SQL tables
    Can you help me! Thank you.

    Hi,
    The total before discount is the sum of the line total which are stored in the lines table.
    For an example ,
    Sales Order,
    SELECT SUM(PriceBefDi),docentry FROM RDR1 WHERE DOCENTRY = "docentry value" group by docentry.
    Regards,
    Tom.

  • Assessments - company code as sender/receiver field

    Hello experts,
    We're currently running assessments to move costs between cost centers in SPL (GA11/13/15) and are deactivating SPL and moving to the CO module (KSU1/3/5).  In SPL, company code can be utilized as a sender/receiver field: you can define a range of receiving cost centers 1-9999999999 and list a single company code, and the assessment cycle will only post to cost centers associated with the listed company code.
    Is there a way to add this company code functionality into CO assessment cycles (use a full range of cost centers, but restrict assessment postings to cost centers associated with a specified company code)?  We cannot use cost center ranges or groups due to the way the master data was created.
    Thanks so much!

    HI,
    the functionality you've described (a number range containing all cost centers but restricting them for a single comp. code) is not available in CO allocations.
    But I can't understand this "We cannot use cost center ranges or groups due to the way the master data was created." ...
    Every cost center belongs to a single company code in its master data.
    By defining cost center groups based on comp. codes you can use this groups in all CO allocations to receive the results you need.
    To avoid cross company code postings due to wrong cost center group maintenance see SAPNET note 91005 + related notes.
    best regards, Christian

  • FEATURE REQUEST: include the "Received" field(s) in email headers as block and filter option

    Why can't I set up a filtering rule to block email based on strings appearing in the "Received" field of the Header?
    SPAMMERS spoof the information in all of the fields that Apple allows users to select in the iCloud settings, so setting up filters based on those fields is feckless.
    I want to be able to Block any emails that originate from specific subnets that are bad actors in SPAM and PHISHING operations. Most of these are in foreign countries.  For example - almost all of the SPAM that I'm currently plagued with is coming from IP address in the 89.39.yyy.xxx subnet. Yes, the spam comes from variants in the yyy and xxx indices, but is enabled by complicit domain hosts at the 89.39 level.
    If Apple would simply allow iCloud users to filter based on the "Received" header fields, we could set up a "filter/block" for all emails whose "Received" field contains the string " [89.39. "  (for example). 
    Outlook has created the ability for users to set up blocks against any emails originating from a user-specified range of IP addresses.  Why won't Apple give its users the same coveted capability?

    How would anyone here know why Apple chooses to do anything?
    If you want to tell Apple what you want, do so here: http://www.apple.com/feedback/icloud.html

Maybe you are looking for

  • Using Examine Document Remove increases pdf file size !

    Hi, I have Adobe Acrobat Pro v9.3.0 I've been editing a lot of scanned .pdfs - rotating and cropping pages. All this has previously worked fine with v8 but now I find that Acrobat 9 is increasing the .pdf file size after using Examine Document and cl

  • [noob needs help] Loading image from a URL

    Hey everyone. I'm new here. And I'm new at J2ME as well. I have a simple school project and I have doubts about it. I've searched everywhere on the net yet I could not find the solution. Anyways, I do understand the concept of loading images by putti

  • Problem in Metalink

    Hi All, Till today morning i was able to open Forums in metalink and was able to post ,can read .But suddenly today afternoon onwards i am getting below error when clicking on any discussion in the Community. View Discussion Error Error View Discussi

  • How to cancel Skype sign in tone?

    how can we cancel the start up or sign in tone of Skype?

  • No INTERNET SHARING TAB in LUMIA525

    I want internet sharing option in lumia 525. There is no tab of internet sharing. I feel alot of difficulty while using this product. Some apps that i download previously and also installed are worked efficiently but after uninstalling and then reins