Pricing field catlog

hi,
what ar the steps to be followed to add new field to pricing field catlog
say KNBW-WITHT
PL SUGGEST

As said above, follow the menu path to reach the Field catalog for Condition tables-
VOk0- from Menu Environment - Condition table- Maintian Field catalog,
Here place the cursor,on one of the given filed & choose "F4"- you will observe the list of allowed for fields for pricing.
if you find the ,desired field in this,selection, Now click on "New entries"- & maintain that fields' tech.name.
or
if you dont find the field, which means in Std SAP has nto provided , desired field, so you need to create/add this field in field catalog & move to Pricing structures.
hope it adds info

Similar Messages

  • Field catlog in V/03

    Hi,
    Can we add new field catlog in the list (V/03 - create table)?
    if yes how can we add?
    regards,
    Akshay

    Hi,
    For adding field into Field catalogue:
    For example if you want to use field PSTYV ('Sales document item category') that is included in structure KOMP ('Pricing Communication Item') as a key for a condition table.
    When you create a condition table (Transaction V/03), however, the system does not propose the field in the field catalog.
    Prerequisites:
    For technical reasons, field PSTYV was included in structure KOMP, however, not in structure KOMG ('Allowed Fields for Condition Structures').
    To solve the problem, proceed as follows:
    1. Call up the ABAP Dictionary (Transaction SE11) and create data type ZZPSTYV. Choose PSTYV as a domain.As a short text, you can use, for example, 'ZZ - sales document item category' and as a field label, you can use the field labels of PSTYV.Save, check and activate your entries.
    2. Call up structure KOMPAZ in the ABAP Dictionary (Transaction SE11) in the change mode and make the following entry:
    Component   Component type
    ZZPSTYV     ZZPSTYV
    Save, check and activate the change you made.
    3. Note:Because of the change in structure KOMPAZ, field ZZPSTYV is now known in structures KOMG and KOMP because structure KOMPAZ is included in both structures.
    4. Call up Transaction SPRO. Navigate to 'Sales and Distribution -> Basic Functions -> Pricing -> Pricing Control' and execute 'Define Condition Tables'. Choose 'Conditions: Allowed fields' and include ZZPSTYV as a new entry.
    5. Note:Now you can use field ZZPSTYV as a key field when you create a condition table Axxx.
    6. Supply the new field you defined by including the following source code line in USEREXIT_PRICING_PREPARE_TKOMP:
                  MOVE xxxx-PSTYV TO TKOMP-ZZPSTYV.
    In order processing you find the user exit in Include MV45AFZZ, and in billing document processing you find it in Include RV60AFZZ.
    Consider that you can also use this note as a help if you want to use other customer-specific fields as key fields in a condition table.For header fields, use structure
    KOMKAZ instead of structure KOMPAZ and USEREXIT_PRICING_PREPARE_TKOMK instead of USEREXIT_PRICING_PREPARE_TKOMP.
    For more information, see Transaction SPRO via the path 'Sales and Distribution -> System Modifications -> Create New Fields (Using Condition
    Technique) -> New Fields for Pricing' and Note 21040.
    Regards

  • New field in Pricing field catalog for Item category

    Dear SD colleagues,
    We have scenario of maintaining pricing for Lower level BOM component.
    Like:
    Base price - 100/-
    When BOM explodes - 95/-.
    For this, I have taken ABAPer help and inseted a Z field for Item category in Pricing field catalog.
    Then, a new condition table is been generated using ZPSTYV and included in Access sequence. For Base price condition type, we have maintained record in combination with ZBOM-Item category for lower level BOM item.
    A new pricing routine is created in VOFM for Condition value and same is been assigned to Condition type as Alternative calculation type in pricin gprocedure contro data.
    Whe I create Sales order, value based on ZBOM is being pciked up by system.
    request you to please help in this regard.
    Thanks & regards,
    Praveen.

    Hi Marino,
    I have a requirement to determine the pricing based on "Discount Code", which is not a standard SAP field and i would like to have this as a custom field and linked to  customer in custom table.
    Question: When i add a new custom field and custom table for pricing, what are all the things i need to do in terms of ABAP.
    As per my knowledge, below are the steps...Please check and confirm my understanding is correct and let me know if i miss anything.
    1. Create a new field
    2. Create Custome Table
    3. Add field to Field Catlogue KOMG
    4. Add Field to KOMP (as this is item field)
    5. Add code in userexit USEREXIT_PRICING_PREPARE_TKOMP to make the data avaialable - Sales Order
    5. Add code in userexit USEREXIT_PRICING_PREPARE_TKOMP to make the data avaialable - Billing
    Thanks.

  • How to add standard field in the CRM Pricing field catalog?

    Hello All
    I am working on CRM 7.0 , I have a problem with the CRM pricing field catalog that when I am trying to add new field in the catalog the system gives me an error message that the entries should be in the allowed namespace (Y Or Z) but the field I am trying to add in the field catalog is standard field.  What should I do to add this field in the field catalog?
    The field is : BATCH_ID with data element CRMT_BATCH_ID
    Thanks in advance
    Jacopo Francoise

    Follow note : 441083

  • FBL3N - ALV Field Catlog

    I have modified the FBL3N standard Zprogram “RFITEMGL” to add some fields for display in the report. I have changed the input parameters for the Function Module ‘FI_ITEMS_DISPLAY’ in RFITEMGL like it_items = ‘My_table_item’ to display modified table values.  But when I try to append the field catlog ‘gt_fieldcat’ using the following code I am not able to see these fields in the report layout but I have it in My_table_item.
    gt_fieldcat-TABNAME = 'IT_POS1'.
    gt_fieldcat-FIELDNAME = 'NAME1'.
    gt_fieldcat-OUTPUTLEN = '20'.
    gt_fieldcat-SELTEXT_L = 'Vendor Name'.
    APPEND GT_FIELDCAT.
    gt_fieldcat-TABNAME = 'IT_POS1'.
    gt_fieldcat-FIELDNAME = 'MAKTX'.
    gt_fieldcat-OUTPUTLEN = '20'.
    gt_fieldcat-SELTEXT_L = 'Material Desc.'.
    APPEND GT_FIELDCAT.
    What Should I do? Kindly help me

    Hi,
    Just check your code in subroutines
    perform make_fieldcatalog
    perform make_fieldcatalog2
    There may be chance that it is getting deleted in another routine. Also this program used REUSE_ALV_FIELDCATLOG_MERGE
    check how it is populating values.
    Regards,
    Atish

  • Problem in ALV Field catlog

    Hi Experts,
    I have an internal table with 20 fields, i used that internal table in REUSE_ALV_FIELDCATALOG_MERGE.
    It's diplayed the output properly. But now i added a new field in the internal table, but its not displaying inthe output even its not comming in the field catlog itself. How to add this one field inthat field catlog list?
    FORM build_field_catalog TABLES   r_field_cat LIKE g_field_cat[].
      CLEAR r_field_cat[].
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
        EXPORTING
          i_program_name         = g_repid
          i_internal_tabname     = 'IT_DATA'
          i_client_never_display = 'X'
          i_bypassing_buffer     = 'X'
          i_inclname             = g_include
        CHANGING
          ct_fieldcat            = r_field_cat[].
    I used the above code..
    Can any one help this issue?
    Mohana.

    Can u pl tell me how u have declared this new field? If possible pl. paste ur code.
    If it is declared with TYPE statement then may be the REUSE_ALV_FIELDCATALOG_MERGE cannot process it. It should be declared with LIKE statement.
    Pl. check.
    Regards,
    Joy.

  • Query regarding in Field catlog of my oops report

    Hi Experts,
    i developed a program to maintain ZTABLE. When we excute the report i need all fields of table should be non-editable.I done this. but when choose CREATE NEW ENTRY icon all fields should be editable.
    How can i done this dynamical field catlog setting..
    Thanks in Advance...
    Siva.

    hi
    go through this code this is for editable alv
    *& Report  ZDEMO_ALVGRID_EDIT                                          *
    *& Example of a simple ALV Grid Report                                 *
    *& The basic ALV grid, Enhanced to display specific fields as          *
    *& editable depending on field value                                   *
    REPORT  ZDEMO_ALVGRID_EDIT                 .
    TABLES:     ekko.
    TYPE-POOLS: slis.                                 "ALV Declarations
    *Data Declaration
    TYPES: BEGIN OF t_ekko,
      ebeln TYPE ekpo-ebeln,
      ebelp TYPE ekpo-ebelp,
      statu TYPE ekpo-statu,
      aedat TYPE ekpo-aedat,
      matnr TYPE ekpo-matnr,
      menge TYPE ekpo-menge,
      meins TYPE ekpo-meins,
      netpr TYPE ekpo-netpr,
      peinh TYPE ekpo-peinh,
      field_style  TYPE lvc_t_styl, "FOR DISABLE
    END OF t_ekko.
    DATA: it_ekko TYPE STANDARD TABLE OF t_ekko INITIAL SIZE 0,
          wa_ekko TYPE t_ekko.
    *ALV data declarations
    DATA: fieldcatalog TYPE slis_t_fieldcat_alv WITH HEADER LINE.
    DATA: it_fieldcat TYPE lvc_t_fcat,     "slis_t_fieldcat_alv WITH HEADER LINE,
          wa_fieldcat TYPE lvc_s_fcat,
          gd_tab_group TYPE slis_t_sp_group_alv,
          gd_layout    TYPE lvc_s_layo,     "slis_layout_alv,
          gd_repid     LIKE sy-repid.
    *Start-of-selection.
    START-OF-SELECTION.
      PERFORM data_retrieval.
      PERFORM set_specific_field_attributes.
      PERFORM build_fieldcatalog.
      PERFORM build_layout.
      PERFORM display_alv_report.
    *&      Form  BUILD_FIELDCATALOG
          Build Fieldcatalog for ALV Report
    FORM build_fieldcatalog.
      wa_fieldcat-fieldname   = 'EBELN'.
      wa_fieldcat-scrtext_m   = 'Purchase Order'.
      wa_fieldcat-col_pos     = 0.
      wa_fieldcat-outputlen   = 10.
      wa_fieldcat-emphasize   = 'X'.
      wa_fieldcat-key         = 'X'.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
      wa_fieldcat-fieldname   = 'EBELP'.
      wa_fieldcat-scrtext_m   = 'PO Item'.
      wa_fieldcat-col_pos     = 1.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
      wa_fieldcat-fieldname   = 'STATU'.
      wa_fieldcat-scrtext_m   = 'Status'.
      wa_fieldcat-col_pos     = 2.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
      wa_fieldcat-fieldname   = 'AEDAT'.
      wa_fieldcat-scrtext_m   = 'Item change date'.
      wa_fieldcat-col_pos     = 3.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
      wa_fieldcat-fieldname   = 'MATNR'.
      wa_fieldcat-scrtext_m   = 'Material Number'.
      wa_fieldcat-col_pos     = 4.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
      wa_fieldcat-fieldname   = 'MENGE'.
      wa_fieldcat-scrtext_m   = 'PO quantity'.
      wa_fieldcat-col_pos     = 5.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
      wa_fieldcat-fieldname   = 'MEINS'.
      wa_fieldcat-scrtext_m   = 'Order Unit'.
      wa_fieldcat-col_pos     = 6.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
      wa_fieldcat-fieldname   = 'NETPR'.
      wa_fieldcat-scrtext_m   = 'Net Price'.
      wa_fieldcat-edit        = 'X'. "sets whole column to be editable
      wa_fieldcat-col_pos     = 7.
      wa_fieldcat-outputlen   = 15.
      wa_fieldcat-datatype     = 'CURR'.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
      wa_fieldcat-fieldname   = 'PEINH'.
      wa_fieldcat-scrtext_m   = 'Price Unit'.
      wa_fieldcat-col_pos     = 8.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
    ENDFORM.                    " BUILD_FIELDCATALOG
    *&      Form  BUILD_LAYOUT
          Build layout for ALV grid report
    FORM build_layout.
    Set layout field for field attributes(i.e. input/output)
      gd_layout-stylefname = 'FIELD_STYLE'.
      gd_layout-zebra             = 'X'.
    ENDFORM.                    " BUILD_LAYOUT
    *&      Form  DISPLAY_ALV_REPORT
          Display report using ALV grid
    FORM display_alv_report.
      gd_repid = sy-repid.
    call function 'REUSE_ALV_GRID_DISPLAY'
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY_LVC'
           EXPORTING
                i_callback_program      = gd_repid
               i_callback_user_command = 'USER_COMMAND'
                is_layout_lvc               = gd_layout
                it_fieldcat_lvc             = it_fieldcat
                i_save                  = 'X'
           TABLES
                t_outtab                = it_ekko
           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.
    ENDFORM.                    " DISPLAY_ALV_REPORT
    *&      Form  DATA_RETRIEVAL
          Retrieve data form EKPO table and populate itab it_ekko
    FORM data_retrieval.
      SELECT ebeln ebelp statu aedat matnr menge meins netpr peinh
       UP TO 10 ROWS
        FROM ekpo
        INTO  CORRESPONDING FIELDS OF TABLE it_ekko.
    ENDFORM.                    " DATA_RETRIEVAL
    *&      Form  set_specific_field_attributes
          populate FIELD_STYLE table with specific field attributes
    form set_specific_field_attributes .
      DATA ls_stylerow TYPE lvc_s_styl .
      DATA lt_styletab TYPE lvc_t_styl .
    Populate style variable (FIELD_STYLE) with style properties
    The NETPR field/column has been set to editable in the fieldcatalog...
    The following code sets it to be disabled(display only) if 'NETPR'
    is gt than 10.
      LOOP AT it_ekko INTO wa_ekko.
        IF wa_ekko-netpr GT 10.
          ls_stylerow-fieldname = 'NETPR' .
          ls_stylerow-style = cl_gui_alv_grid=>mc_style_disabled.
                                                 "set field to disabled
          APPEND ls_stylerow  TO wa_ekko-field_style.
          MODIFY it_ekko FROM wa_ekko.
        ENDIF.
      ENDLOOP.
    endform.                    " set_specific_field_attributes
    regards
    anil chaudhary

  • Field catlog

    Hi All,
          i am developing a class which will populate the fieldcatlog automatically . so pass the internal table to my class it_table. now i want to create the field catlog for the same..i have written a code as below.. but it dumps at the ASSIGN it_table-> TO <t_dyntable>.*  it_table is of type any
    Can any onehelp me out with this..
    DATA: wa_fieldcat     TYPE lvc_s_fcat,
            it_fieldcat     TYPE lvc_t_fcat,
            it_tabdescr     TYPE abap_compdescr_tab,
            wa_tabdescr     TYPE abap_compdescr,
            ref_table_descr TYPE REF TO cl_abap_structdescr,
            p_table         TYPE char30 VALUE 'IT_TABLE'.
      DATA: dref TYPE REF TO data.
      DATA: newtable TYPE REF TO data.
      DATA: newline TYPE REF TO data.
    FIELD-SYMBOLS: <t_dyntable> TYPE STANDARD TABLE,
                   <fs_dyntable> TYPE any,
                   <fs_fldval> type any.
      FIELD-SYMBOLS: <table> TYPE STANDARD TABLE,
                   <line>  TYPE ANY.
    ASSIGN it_table->* TO <t_dyntable>.
      CREATE DATA newline LIKE LINE OF <t_dyntable>.
    ref_table_descr ?= cl_abap_typedescr=>describe_by_name( p_table ).
      it_tabdescr = ref_table_descr->components[].
      LOOP AT it_tabdescr INTO wa_tabdescr.
        CLEAR wa_fieldcat.
        wa_fieldcat-fieldname = wa_tabdescr-name .
        wa_fieldcat-datatype = wa_tabdescr-type_kind.
        wa_fieldcat-inttype = wa_tabdescr-type_kind.
        wa_fieldcat-intlen = wa_tabdescr-length.
        wa_fieldcat-decimals = wa_tabdescr-decimals.
        APPEND wa_fieldcat TO it_fieldcat.
      ENDLOOP.

    Hi Neha,
    Modified program as below:
    CALL METHOD CL_ALV_TABLE_CREATE=>CREATE_DYNAMIC_TABLE
        EXPORTING
          IT_FIELDCATALOG = it_fieldcat
        IMPORTING
          EP_TABLE        = IT_NEWTABLE.
      ASSIGN IT_NEWTABLE->* TO <FS_T_DYNTABLE>
    Create dynamic work area and assign to FS
      CREATE DATA IT_NEWLINE LIKE LINE OF <FS_T_DYNTABLE>.
      ASSIGN IT_NEWLINE->* TO <FS_DYNTABLE>.
    Thanks
    Mohit Khandelwal

  • User based block the pricing field in the sale order

    HI FRIEND
    We have requirement user based block the pricing field in the sale order
    pls suggest me the configuration steps
    with regards
    dinesh

    hi friend
    when create a sale orde,r price and exchange rate is triigger from the master record.
    head department want not require to End user to change the price in the sale order .
    so head department only have authorisation to change price.
    selected user is not allow the change the price.
    so i need the configuration
    with regards
    dinesh

  • Pricing field INCLUDE

    Hi! all..
    We are adding a new pricing field, DESTINATION CITY, field - ORT01 from table KNA1.
    I am listing out the steps below. Please look for it's correctness and let me know the missing steps and mistakes.
    1. Create a data element ZZORT01 and choose TEXT35 as its domain. Save, check and activate ZZORT01.
    (ORT01_GP is the data element of ORT01 and it's domain is TEXT35.)
    2. Extend structure KOMP by including ZZORT01 to KOMPAZ. Also allocate the data element ORT01_GP to ZZORT01. Again save, check and activate.
    3. Assign a value to the new field in the FORM routines for sales order processing using the user exit.The code look like this:
    FORM USEREXIT_PRICING_PREPARE_TKOMP.
    MOVE KNA1-ORT01 TO TKOMP-ZZORT01.
    ENDFORM.
    4. Finally, allocate the specifications in table T681F.
    I think if I do the above, then I must be able to get the value in SOrd. during pricing.
    Let me know guys if what I am doing is right. I am a bit woried about the data element, domain part.
    Please help me out.
    Thanks a lot.
    -Karthi.

    Hi! there.
    Thanks for the reply. Do you mean to say that I cannot move values from master data tables for pricing during SOrd. creation? Ok, let me go ahead and do what you've adviced. I need the address of the ship-to party. What special arrangements I've to do to move the SH city to KOMP? Please help me out.
    Also, I have one more question, infact I've already mailed about it in the topic PRICING FIELD ERROR.
    Anyways, we are trying to use the field TRAGR-transportation group(once again in our SOrd. pricing) but I don't see it anywhere in the SOrd. But it appears in LIKP, LIPS. So if I suppose that I can't move the value from a master data table (MARA for this field) and use the field in SOrd. pricing am I right? Again I would like to know how to get around this?
    Thanks a lot.
    -Sri.

  • What is field catlog...

    Hi all,
       anybody explain field catelog.
        how to use in reports,what is the use of field catlog.
    regards.
    krish

    Maintaining the Field Catalog
    Storing aspect fields in the field catalog
    The characteristics and basic key figures are stored in a field catalog when they are saved. This catalog can be seen as a EC-EIS/EC-BP-specific supplement to the ABAP Dictionary. Report-relevant attributes for the fields are also stored in the field catalog. The field catalog is aspect-independent. Once a field is contained in the field catalog, it may be copied to other aspects but may no longer be changed. This guarantees a uniform, cross-area use of evaluation groups and key figures.
    You can create field groups to structure the fields in the field catalog. A Field Group is a user-defined grouping of characteristics and basic key figures.
    Reorganization of the field catalog
    The field catalog and ABAP Dictionary information on the aspect data structures must be consistent with one another - each data structure field must also exist in the field catalog. If this is no longer the case, you should reorganize the field catalog in order to restore the consistency. When you do this, the system reads the aspect structure from the ABAP Dictionary and reconciles it with the field catalog.
    Deleting fields from the field catalog
    Characteristics and basic key figures, that are no longer used in any aspect, can be deleted from the field catalog. Any relevant master data, comments, generated ABAP Dictionary objects will be deleted at the same time.
    You can find more information on the field catalog in Customizing.
    We can implement Field catalog  by calling Function modules or classes..
    See the sample code
    REPORT  ALV_FM.
    TYPE-POOLS: SLIS.
    DATA:
      BEGIN OF FS_SPFLI,
        CARRID    TYPE SPFLI-CARRID,
        CONNID    TYPE SPFLI-CONNID,
        COUNTRYFR TYPE SPFLI-COUNTRYFR,
        CITYFROM  TYPE SPFLI-CITYFROM,
        AIRPFROM  TYPE SPFLI-AIRPFROM,
        COUNTRYTO TYPE SPFLI-COUNTRYTO,
        CITYTO    TYPE SPFLI-CITYTO,
        AIRPTO    TYPE SPFLI-AIRPTO,
        FLTIME    TYPE SPFLI-FLTIME,
        DEPTIME   TYPE SPFLI-DEPTIME,
        ARRTIME   TYPE SPFLI-ARRTIME,
        DISTANCE  TYPE SPFLI-DISTANCE,
        DISTID    TYPE SPFLI-DISTID,
        FLTYPE    TYPE SPFLI-FLTYPE,
        PERIOD    TYPE SPFLI-PERIOD,
      END OF FS_SPFLI.
    DATA:
      T_SPFLI LIKE STANDARD TABLE OF FS_SPFLI.
    SELECT * FROM SPFLI
      INTO CORRESPONDING FIELDS OF TABLE T_SPFLI.
    DATA: T_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
          FS_FIELDCAT LIKE LINE OF T_FIELDCAT.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                = ' '
      I_BUFFER_ACTIVE                   = ' '
      I_CALLBACK_PROGRAM                = ' '
      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                  = 'SPFLI'
      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                         =
      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
      I_HTML_HEIGHT_TOP                 = 0
      I_HTML_HEIGHT_END                 = 0
      IT_ALV_GRAPHICS                   =
      IT_HYPERLINK                      =
      IT_ADD_FIELDCAT                   =
      IT_EXCEPT_QINFO                   =
      IR_SALV_FULLSCREEN_ADAPTER        =
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
      TABLES
        T_OUTTAB                          = T_SPFLI
    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.
    Regards,
    Pavan P.

  • WHAT IS DATE BANDLING  WHAT IS FIELD CATLOG IN ALV

    WHAT IS DATE BANDLING  WHAT IS FIELD CATLOG IN ALV
    Explain clearly

    i guess u mean date "Handling"
    What abt date handling?

  • VA05 - Addiional Fields and Field Catlog

    Hello All,
    I have added the few Z fields as per requirements in the ALV out put as per the OSS notes 350068.
    I need to change the Field catalog for these Z fields. I have one way to change by creating the Zdomain and assiging the same to those Zfields, but is there any other option other than this?
    Please let me know.
    Also I am having one more issue I have added Ship to party in the selection screen using Config. But when I use that in the section the data is not being picked for hte value enterered there.
    REgards
    Ramesh

    Hello,
    Modify the field catlog in the program.

  • Change field catlog after the first display

    Hello,
    I am trying to change field catlog after the first display.
    Problem I am facing is at runtime fild catlog is not changing. Could some one suggest where I might have gone wrong.
    Thanks in advance.
    Regards,
    Vimal.
    IF sy-ucomm = 'CATLOG'.
        CALL METHOD g_alv_grid->get_frontend_fieldcatalog
          IMPORTING
            et_fieldcatalog = it_fieldcat[].
        LOOP AT it_fieldcat INTO str_fcat .
          IF str_fcat-fieldname = 'EBELP' .
            str_fcat-hotspot = 'X' .
            MODIFY it_fieldcat FROM str_fcat .
          ENDIF .
        ENDLOOP .
        CALL METHOD g_alv_grid->set_frontend_fieldcatalog
          EXPORTING
            it_fieldcatalog = it_fieldcat[].
      ENDIF.

    In that You change the Field catalog and
    call this method..
      CALL METHOD G_GRID->REFRESH_TABLE_DISPLAY
        EXCEPTIONS
          FINISHED = 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.
    try this...

  • Field catlog Change

    HI all,
    I am working on Interactive ALV. I am going to add 1 field to secondary list.
    When ever i click on Any filed in the basic list, the added filed is appearing in every seconadry list. But my req is When i click on perticular filed only, the added filed has to appear.
    How can i change the field catlog?
    regards,Ram

    Hi,
    In the event handler, toggle the NO_OUT field ( with 'X' and space ) in the Fieldcatalog and refresh the table display (If needed).
    Regards,
    Basu.

Maybe you are looking for

  • Getting Error Message When Try to Open iTunes

    I recently had to reinstall my Os now I am having some issues. I unlocked all the folders to access my archives but now I open iTunes. I even reinstalled (10.4.1) the application but I am still is getting this error message, "The folder "iTunes" is o

  • PS CS4 - photomerge

    I tried 4 times consequently to stitch 4 images in Photomerge activated from Bridge - with same settings (auto and defaults i.e. blending images on, vignette removal off, distortion correction off). I was surprised of the result because each time I t

  • ORA-1653 (unable to extend table) and ORA-1654  (unable to extend index)

    Hi, We recently installed 12c.r1 and have it running now form some three weeks. About 100 assets currently in it. When trying to add a new discovery profile a received an error message from the BUI, in the cacao log from the EC i found a lot java exc

  • My computer does not start?

    I turn on my computer mac pro and it does not start...

  • SVG changing size of objects

    I scan my pieces in. Trace them with the pencil (love the new version) save my file. Than I save as a svg file. But in some cases it changes the size of these objects and in others it does not. So some place somthing is different. How do I stop this?