Validating Screen Fields in FD32 - BTE 1520

Hello everyone,
I have a requirement to make various checks before saving in FD32. For example I want to make sure that KNKK-DBEKR will be less than or equal to KNKK-KLIMK.
I have searched SCN and I have implemented BTE 1520 (you can see an example thread here).
My problem is that while in BTE 1520 I don't have the screen fields available (or at least I don't know how to make them available to my function module).
Has anyone done something similar?
Thank you in advance.

Thanks Neal, but I already tried that. The function module (a copy of SAMPLE_INTERFACE_00001520) uses only two variables I_KUNNR and I_KKBER.
As you can see in the screenshot below (from the debugger), I have been trying to find whether I have anything else available at that point.

Similar Messages

  • Validating screen fields in VK11/VK12 tcodes

    Hello all,
    My requirement is while creating/changing condition record via VK11 or VK12  user enter rate > 50% THEN error message
    needs to be displayed.
    For this I have implemented BADI SD_COND_SAVE_A  to validate the rate of the condition record.
    My issue is...after geeting error message when i click on back button and go back to correct the rate value...
    it's copying the rate in all line items.
      LOOP at ct_konpdb_new INTO wa_konpdb_new.
         wa_konpdb_new-kbetr = wa_konpdb_new-kbetr * -1.
         IF wa_konpdb_new-kbetr GT 500.
            MESSAGE e042(XXXXXXX).
         ENDIF.
    Can you please tell me how to correct this issue.
    regards,
    Lokesh

    Hi
    Try with this tcode:
    function z_sd_00503305.
    *"*"Interfase local
    *"  IMPORTING
    *"     VALUE(FIELDNAME) TYPE  SEFELD
    *"     VALUE(VALUE)
    *"     VALUE(KOMG_I) TYPE  KOMG
    *"     VALUE(KONP_I) TYPE  KONP
    *"     VALUE(T681E_I) TYPE  T681E
    *"  CHANGING
    *"     REFERENCE(CHECK_FIELD) TYPE  CHAR1
    *"     REFERENCE(RETURNCODE) TYPE  SUBRC
    *  break: username.
      check sy-tcode = 'VK12' or sy-tcode = 'VK11'.
      case t681e_i-kvewe.
          case t681e_i-kotabnr.
            when '071'.                       "your table A071,
              if fieldname = 'WERKS'.
                "YOUR ALGORITHM TO CHECK ENTRIES
                 returncode = sy-subrc.
              endif.
            when '155'.                        "and so on
          endcase.
      endcase.
    endfunction.
    To know how to work with BTE, please, check this [article|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/207835fb-0a01-0010-34b4-fef1240ba9b7] by Lakshman Tandra.
    Regards
    Eduardo

  • How to validated screen field(Age) at PA30 transaction

    Hi SAP Technical Guru,
    i'm working with PA30 transaction, i have to validate the sceen field i.e. Birth Date.it should not consider less than 18 years,
    eg:the person who has <18 yrs it should raise a message like min age invalid for employement
    so ple

    Hi SAP Techinical Guru,
    please see code below, which i written to raise a message for filed date of birth,when the entere date if lessthan the 18 yrs it should raise message,
    data: dyears   like P0347-SCRYY,
          ddays  TYPE i,
          fromdate TYPE d,
          todate   TYPE d,
          temp TYPE string.
    CASE innnn-infty.
    WHEN '0002'.
        IF sy-tcode = 'PA30'.
          todate = sy-datum.
          temp = innnn-data3.
          CONDENSE temp NO-GAPS.
          fromdate = temp.
          CALL FUNCTION 'HR_HK_DIFF_BT_2_DATES'
            EXPORTING
             date1                   = todate
             date2                   = fromdate
             output_format           = '01'
            IMPORTING
              years                   = dyears
            EXCEPTIONS
              invalid_dates_specified = 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.
           IF dyears < 18.
               MESSAGE ID sy-msgid TYPE 'E' NUMBER sy-msgno
                       WITH 'EMPLOYEE AGE IS LESS THAN 18 YEARS'.
               RAISE error_occured.
           ENDIF.
    please give where iam getting wrong.
    regards,

  • Validating a selection-screen field

    Hi all,
    I am Anil.can any body explains me how to validate a selection-screen field for the following scenario?
    I have customer nos ranging from 100-1000.among them i dont have any sales orders for the customers who are in between 150-250.I have sales order(VBELN) as select-options and Plant(WERKS) as Parameter on the selection-screen.I want to validate these fields without hardcaode.How can i do that?Please send me the complete code.
    I am not getting how to validate a field  which is declared as parameter?
    regards and thanks in advance.
    Anil.

    Make sure that u are validating against the header table.
    say eg if u wnat t validate matnr in marc, then do as below.
    SELECT-OPTIONS: s_matnr FOR  marc-matnr.                  "Material No
    AT SELECTION-SCREEN.
    *Validate material no details
      PERFORM validate_matno.
    FORM validate_matno.
    DATA: v_matnr LIEK mara-matnr.
      SELECT SINGLE matnr INTO v_matnr
             FROM <b>mara</b>
             WHERE matnr IN s_matnr.
      IF sy-subrc NE 0.
        MESSAGE i128.
        LEAVE LIST-PROCESSING.
      ENDIF.
    ENDFORM.
    Dont select from marc.
    Hope this is clear.

  • Selection-screen fields validation for dialog

    Hello ABAP Gurus
    Requirements: this is a report wherein , depending upon the correct select-options , user will pick some field values from table and some will be entered by the user in the next se51 custom screen for creation of a record in a ztable .
    the problem is :without validating select-options values , it calls the se51 screen 100.
    How to keep the cursor at the selection-screen field until & unless user enters the correct i/p s .if i/p are correct then only it should call screen 100 otherwise remain in the selection screen only .
    *& Report ZSD_REP_QUOT_BANK_CREATE *
    REPORT ZSD_REP_QUOT_BANK_CREATE NO STANDARD PAGE HEADING LINE-SIZE 255.
    TABLES: VBAK,VBAP,VBRK,ZSD_TABL_QOTBANK,MARA,KONV.
    DATA: OK_CODE LIKE SY-UCOMM,
    SAVE_OK_CODE LIKE SY-UCOMM,
    WA_ITAB LIKE ZSD_TABL_QOTBANK,
    ANSWER TYPE C,
    COPIED ,
    STS TYPE N,
    EMGRP LIKE MARA-EXTWG,
    QTY LIKE ZSD_TABL_QOTBANK-QTY,
    UPRICE LIKE ZSD_TABL_QOTBANK-UPRICE,
    TOT LIKE ZSD_TABL_QOTBANK-TOT,
    INO LIKE VBAP-POSNR.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-000.
    SELECT-OPTIONS: S_QTNO FOR ZSD_TABL_QOTBANK-QTNO
    NO INTERVALS NO-EXTENSION OBLIGATORY,
    S_ITNO FOR ZSD_TABL_QOTBANK-ITNO
    NO INTERVALS NO-EXTENSION OBLIGATORY.
    S_MATNO FOR ZSD_TABL_QOTBANK-MATNO
    NO INTERVALS NO-EXTENSION. "
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION-SCREEN.
    SELECT SINGLE VBTYP
    INTO VBAK-VBTYP
    FROM VBAK
    WHERE VBELN IN S_QTNO.
    IF SY-SUBRC EQ 0 AND VBAK-VBTYP NE 'B'.
    MESSAGE I005(ZQOTBANK).
    SET CURSOR FIELD S_QTNO-LOW.
    SUBMIT (SY-REPID) VIA SELECTION-SCREEN.
    ENDIF.
    CLEAR WA_ITAB.
    SELECT SINGLE QTNO ITNO
    INTO WA_ITAB
    FROM ZSD_TABL_QOTBANK
    WHERE QTNO IN S_QTNO
    AND ITNO IN S_ITNO.
    IF SY-SUBRC EQ 0.
    MESSAGE I001(ZQOTBANK).
    SET CURSOR FIELD S_QTNO-LOW.
    SET CURSOR FIELD S_ITNO-LOW.
    SUBMIT (SY-REPID) VIA SELECTION-SCREEN.
    ENDIF.
    *START-OF-SELECTION.
    END-OF-SELECTION.
    CALL SCREEN 0100.
    *& Module STATUS_0100 OUTPUT
    text
    MODULE STATUS_0100 OUTPUT.
    SET PF-STATUS '0100'.
    SET TITLEBAR '0100'.
    ZSD_TABL_QOTBANK-QTNO = S_QTNO-LOW.
    SELECT SINGLE BUKRS_VF VKORG VTWEG SPART KUNNR ERDAT BNDDT
    KNUMV
    INTO (ZSD_TABL_QOTBANK-CCODE,
    ZSD_TABL_QOTBANK-SORG,
    ZSD_TABL_QOTBANK-DISTCHAN,
    ZSD_TABL_QOTBANK-DIV,
    ZSD_TABL_QOTBANK-CUSTNO,
    ZSD_TABL_QOTBANK-QTDAT,
    ZSD_TABL_QOTBANK-QTVALDAT,
    VBAK-KNUMV)
    FROM VBAK
    WHERE VBELN IN S_QTNO
    AND VBTYP = 'B'.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE KWMENG POSNR MATNR
    INTO (QTY , INO , ZSD_TABL_QOTBANK-MATNO)
    FROM VBAP
    WHERE VBELN IN S_QTNO.
    SELECT SINGLE EXTWG
    INTO EMGRP
    FROM MARA
    WHERE MATNR EQ ZSD_TABL_QOTBANK-MATNO.
    ZSD_TABL_QOTBANK-ITNO = INO.
    ZSD_TABL_QOTBANK-EMATGRP = EMGRP.
    ZSD_TABL_QOTBANK-QTY = QTY.
    SELECT SINGLE KBETR
    INTO UPRICE
    FROM KONV
    WHERE KNUMV = VBAK-KNUMV
    AND KPOSN = INO
    AND KSCHL = 'PR00'.
    ENDIF.
    ZSD_TABL_QOTBANK-UPRICE = UPRICE.
    TOT = QTY * UPRICE .
    ZSD_TABL_QOTBANK-TOT = TOT .
    CLEAR: QTY, UPRICE, TOT.
    QTY = ZSD_TABL_QOTBANK-CGL_QTY.
    UPRICE = ZSD_TABL_QOTBANK-CGL_UPRICE .
    TOT = QTY * UPRICE .
    ZSD_TABL_QOTBANK-CGL_TOT = TOT .
    CLEAR: QTY, UPRICE, TOT.
    QTY = ZSD_TABL_QOTBANK-BHEL_QTY.
    UPRICE = ZSD_TABL_QOTBANK-BHEL_UPRICE .
    TOT = QTY * UPRICE .
    ZSD_TABL_QOTBANK-BHEL_TOT = TOT .
    CLEAR: QTY, UPRICE, TOT.
    QTY = ZSD_TABL_QOTBANK-BHEL_QTY.
    UPRICE = ZSD_TABL_QOTBANK-BHEL_UPRICE .
    TOT = QTY * UPRICE .
    ZSD_TABL_QOTBANK-BHEL_TOT = TOT .
    CLEAR: QTY, UPRICE, TOT.
    QTY = ZSD_TABL_QOTBANK-ALSTOM_QTY.
    UPRICE = ZSD_TABL_QOTBANK-ALSTOM_UPRICE .
    TOT = QTY * UPRICE .
    ZSD_TABL_QOTBANK-ALSTOM_TOT = TOT .
    CLEAR: QTY, UPRICE, TOT.
    QTY = ZSD_TABL_QOTBANK-SIEMENS_QTY.
    UPRICE = ZSD_TABL_QOTBANK-SIEMENS_UPRICE .
    TOT = QTY * UPRICE .
    ZSD_TABL_QOTBANK-SIEMENS_TOT = TOT .
    CLEAR: QTY, UPRICE, TOT.
    QTY = ZSD_TABL_QOTBANK-TELK_QTY.
    UPRICE = ZSD_TABL_QOTBANK-TELK_UPRICE .
    TOT = QTY * UPRICE .
    ZSD_TABL_QOTBANK-TELK_TOT = TOT .
    CLEAR: QTY, UPRICE, TOT.
    QTY = ZSD_TABL_QOTBANK-OTH_QTY.
    UPRICE = ZSD_TABL_QOTBANK-OTH_UPRICE .
    TOT = QTY * UPRICE .
    ZSD_TABL_QOTBANK-OTH_TOT = TOT .
    CLEAR: QTY, UPRICE, TOT.
    ENDMODULE. " STATUS_0100 OUTPUT
    *& Module USER_COMMAND_0100 INPUT
    text
    MODULE USER_COMMAND_0100 INPUT.
    CASE OK_CODE.
    WHEN 'SAVE'.
    INSERT ZSD_TABL_QOTBANK.
    IF SY-SUBRC EQ 0.
    MESSAGE I000(ZQOTBANK).
    COMMIT WORK.
    CALL SELECTION-SCREEN 1000.
    ELSE.
    MESSAGE E001(ZQOTBANK).
    CALL SELECTION-SCREEN 1000.
    ENDIF.
    ENDCASE.
    ENDMODULE. " USER_COMMAND_0100 INPUT
    *& Module EXIT_COMMAND INPUT
    text
    MODULE EXIT_COMAND INPUT.
    SAVE_OK_CODE = OK_CODE.
    CLEAR OK_CODE.
    CASE SAVE_OK_CODE.
    WHEN 'CANCEL'.
    CALL FUNCTION 'POPUP_TO_CONFIRM'
    EXPORTING
    TITLEBAR = 'Quotation Bank Entry'
    TEXT_QUESTION = 'Do you want to Cancel ?'
    TEXT_BUTTON_1 = 'Yes'
    TEXT_BUTTON_2 = 'No'
    DEFAULT_BUTTON = '2'
    IMPORTING
    ANSWER = ANSWER.
    IF ANSWER = '1'.
    LEAVE PROGRAM.
    ELSE.
    CALL SELECTION-SCREEN 1000.
    ENDIF.
    WHEN 'EXIT'.
    CALL FUNCTION 'POPUP_TO_CONFIRM'
    EXPORTING
    TITLEBAR = 'Quotation Bank Entry'
    TEXT_QUESTION = 'Do you want to Exit ?'
    TEXT_BUTTON_1 = 'Yes'
    TEXT_BUTTON_2 = 'No'
    DEFAULT_BUTTON = '2'
    IMPORTING
    ANSWER = ANSWER.
    IF ANSWER = '1'.
    LEAVE PROGRAM.
    ELSE.
    CALL SELECTION-SCREEN 1000.
    ENDIF.
    ENDCASE.
    ENDMODULE. " EXIT_COMMAND INPUT
    Thnx in Advance

    Put the statement
    CALL SCREEN 100
    in the event <b>AT SELECTION-SCREEN</b> and NOT in <b>END-OF-SELECTION</b>.
    Regards,
    Subramanian V.

  • Validations on the screen fields in a module pool program

    Hi all
    i am creating a sales order against a purchase order ,i am selecting a PO click on a button to call another screen which has all the mandatory fields of the SO i want validations on the screen fields or the input fields as when i enter the header data and the items data and the partner data from the input serach help that is already enabled on the screen fields ,if there is any mismatch among the fileds and an error message is displayed for example:-" material no 100-100 does not exist for  sales area" then only that field where this message is present should be field enabled and the rest of the fields should be field disabled.
    also the error message i m displaying is in short text form and not in long text i clicked on it (long text) however how to use it was not known to me .
    thanks
    varun
    Moderator message: please do more research before asking, try solving problems yourself first, look for previous discussions of similar issues, post texts in more readable format, you have been warned several times before.
    Edited by: Thomas Zloch on Feb 7, 2012

    i want to have input search help as if i select sales document type then corresponding sales organizations should appear
    This would be quite opposite of what h_vakz does. h_vakz gives Sales document based on Sales org..and you want vice versa. Create a simple SH with
    selection method : TVAKZ
    AUART as importing only
    VKORG as exporting only. So when you enter an AUART you get all VKORG it is defined in. I'm not aware of a standard search help which matches the requirement. If anybody does please help me.
    i have header data (only mandatory fields),items data,partner data(all mandatory fields)
    and when i select all the header data the search help that is on the material number and partners role and number should appear corresponding to that header data
    You will have to be more specific sir..
    not able to apply please guide someone
    As for that just mention them in SCREEN->ELEMENT LIST->REFERENCES

  • Need to enhace tcode FD32 to add new screen fields on the initial screen

    Hi All,
    I am supposed to add two new screen fields on the initial screen of TCODE FD32,
    I am unable to find any screen exit for that. Is there any screen exit present for that or is there any way to do this.
    Kindly help me, solutions will be greatly rewarded.
    Thanks in advance,
    Nagaraju.

    check below
    Transaction Code - FD32                     Change Customer Credit Management                                                                               
    Exit Name           Description                                                                               
    RFDRRANZ            User exits: Accounts Receivable Information System                                                                               
    No of Exits:          1                                                                               
    Rewards if useful...............
    Minal

  • "Valid on field" on VK13 screen

    Hi SD Gurus,
    Can anyone tell me if there is any link between the "valid on" field on condition records screen (VK11, VK12, VK13) and pricing reports.
    Thank You,
    Alekhya.

    Hi Alekhya,
    The field valid on in VK11/VK12/VK13 is for the validity of your condition record what ever you are maintaining.
    Till the given date your condition record will be valid.For example if the date is 1/12/2008.Means that price will come in the sales order for that condition type will come if you have created the order on or before that date.If that condition type is mandatory and if you create another order on 2/12/2008 means it will not fetch your price because it's validity expires.Then you have create new condition record for that or extend the validity period in change mode by VK12 T.Code.
    Regards,
    Mohan

  • Screen field validation

    Hi,
        My requirement is to validate a particular screen field.......while  user enters the value on that field....(i.e) the message should not come after the user action....it should get displayed while entering the value itself.....is it possible...if so...how.?
    Thanks in advance,
    Varsha..

    Hi Varsha,
    If you use a field of type NUMC the system doen't allow you to enter CHARS
    i dont to that deapth, even for type i  and type SY-DATUM Fields system doesnt allow to enter chars aswell.
    Check this out.
    CL_GUI_DATAMANAGER
    in the above class there is a method ON_INPUT
    CL_PARSER_PII
    in the above classes there is a method PARSE_INPUT which might work as on focus event
    but we need to know the functionality in deapth.
    which might be useful to you
    Regards
    Ramchander Rao.K
    Edited by: Ramchander Krishnamraju on Dec 26, 2008 8:09 AM
    Edited by: Ramchander Krishnamraju on Dec 26, 2008 8:11 AM

  • How to skip the mandatory field validation for clearing the screen fields

    Hi Friends,
      I have created a module pool screen, and made some fields mandatory. after entering some fields, if i try to clear the fields, am unable to clear. Its throwing the error "Enter all required fields"., since some mandatory fields are there. But i could able to navigate through other screen. Both the "CLEAR" and "NEXT" command are given in the at-exit command only. Next is working but clear is not working.
    Please  provide me the solution.
    Thanks
    Karthikeyan.L

    Hi,
    To avoid automatic input checks you have to assing function type - E to appropriate screen field, which is not to be checked.
    These function codes don't trigger PAI processing, instead they go directly to
    MODULE mod AT EXIT-COMMAND.
    ..placed in PAI of the screen. In this way you can ommit automatic checks performed by system on mandatory fields. Please ensure you have assing E type to next and clear functions in GUI status.
    Regards
    Marcin

  • FI-AR-CR: Adding new custom field to FD32

    Hi,
    We need to add a custom field to FD31/FD32/FD33 transaction that is going to be feed by another develpment that we have.
    I searched in customizing but no luck. I found some info that i need to do one (or both) steps:
    1) Add a screen field to the  standard SAP program (namely SAPMF02C and screen 0210);
    2) Enhance an user exit, for instance FI_DUZI_ROUND_CML (Rounding in Accordance with Contract Conditions)
    Do you guys have any other idea ?
    The first option needs that the standard veiw to be changed so we are trying to found different options...
    Best Regards,
    Bruno Sousa

    Hi Christian,
    So your client made an enhancement to KNKK table.
    Does the field appeared automatically in FD32 transaction (for instance) or did you needed to do any other enhancement, like changing the view for instance ?
    I have an specific KPI to put in the view status and so, since i don't have any other standard field that i can use, i need to add a specific one....
    Thanks in advance.
    Best Regards,
    Bruno Sousa

  • Error "no valid screen name" for FM DYNP_VALUES_READ

    Hi PM Experts and ABAPers,
    I have a requirement to fetch Operation tab details dynamically while creating a order through IW31 transaction.
    I have tried using Function module  DYNP_VALUES_READ to fetch the screen field values dynamically to read the Work centre field value from operations tab.
    Please look at the code i have used.
    DATA: gv_program_name TYPE D020S-PROG VALUE 'SAPLCOIH',
                 gv_screen_no    TYPE D020S-DNUM VALUE '3010',
                 gs_dynpread     TYPE DYNPREAD,
                 gt_dynpread     TYPE TABLE OF DYNPREAD.
    clear gs_dynpread.
    gs_dynpread-fieldname = 'AFVGD-ARBPL'.
    APPEND gs_dynpread TO gt_dynpread.
       CALL FUNCTION 'DYNP_VALUES_READ'
         EXPORTING
           DYNAME                               = gv_program_name
           DYNUMB                               = gv_screen_no
         TABLES
           DYNPFIELDS                           = gt_dynpread
    - The function module has returned a dump with error 'No valid screen name'.
    Can anyone help me in reading the work centre ( ARBPL)  value directly from screen.
    Thanks in advance,
    Sreenivas

    Hi Sreenivas,
    Kindly check whether field-symbol is assigned before using for preventing the run-time error.
    ASSIGN('(MP000800)TBLGART[]')TO<tblgart>.
    "Check Whether the field-symbol value is assigned or not
    IF <tblgart> IS ASSIGNED.
    CREATE DATA obj_tbl LIKE LINE OF <tblgart>.
    ASSIGN obj_tbl->* TO <wa_tblgart>.
    ENDIF.
    In CREATE DATA statement we are assigning the structure, if you know the structure name, it is better use TYPE statement instead of LIKE statement as shown below.
    CREATE DATA obj_tbl TYPE STRUCTURE_NAME.
    Regards
    Rajkumar Narasimman

  • Selection screen fields are not getting detected in an infoset in code

    Hi All,
    I am developing an infoset query using logical database 'PNPCE'. I am facing problem while writing a validation on selection screen fields on an infoset query at infoset code level.
    The fields that are under program specific selection are determined at runtime with variables viz. SP$00001, SP$00002 etc. There are actually select options on selection screen of an infoset query.
    So I cannot write a direct  code on these fields as they do not exist at infoset level and hence cannot be detected.
    I want to put down a validation that if user does not select anything on selection-screen and executes the query, then he should get a pop-up message 'Narrow down your search...' and he should go back to selection screen again.
    Is there any alternative way to achieve this?

    hi,
    Your Screen resolution is more in the system that's why while creating it was fine and while executing it was gone after the next field.
    so you better create a frame and place that inside it or you can change cols size  in the properties about the columns you want

  • Adding custom fields to FD32

    Hi All,
    I need to add 4 new fields to "Status" screen of FD32 transaction. I cannot use the already existing standard fields so I need to add custom fields. I have searched the forum and found the following enhancement and BADI :
    RFDRRANZ
    FI_DUZI_ROUND_CML
    I tried to implement them but did not achieve the results that I wanted.
    There are so many forums on this topic but none of them had an actual solution.
    Did any had success adding custom fields to FD32? If yes, could you please let me know the solution.
    Thank You,
    Sonali.

    Hi,
    Business Requirement:
    As per the client Business critical requirements, additional fields are
    required in the Article Master. This is because the existing fields in
    the Article master are not adequate to capture the data.
    We have referred the SAP Note 925424 (Table MAW1) and 44410 (MARA) for
    this.
    Based on the above note 44410, we have added fields in MARA table,
    since Manufacturing
    activities are envisaged in future instead of proceeding with 925424.
    Whether, MAW1 (925424) also to be considered?  
    Since this is very critical requirement from client, we cannot avoid
    and do not have any
    alternate solution.
    These fields will be used in reports and pricing in sales &
    distribution.
    Apart from this, are there any other SAP notes to be referred?
    Is there any restrictions there in length for fields to be used in MARA table .
    By referring note 44410 , i added 20 fields in MARA table, in which some 4 fields are more than 40 characters .
    All custom fields are updated in MM41 and MM42 .
    Shall i proceed by this approach .Kindly guide me on this .
    Thanks and Regards,
    S.Sivakumar

  • Custom fields in FD32 Transaction

    Hi All,
    My requirement is to add custom Fields in FD32 transaction in central data tab.
    Please help.

    Hi Santhosh,
    I am not that familar with FD32 functionality but by looking at its program in subroutine ECS_INITIALISIEREN, it call function OPEN_FI_SUBSCREENS_GET to get a list of screens for displaying. So I guess you need to investigate in this function what tables need to be populated so that maybe a customer screen can be added within FD32.
    You should not use screen 210 or any subscreens in SAP program except it goes thru User Exit (SMOD) or BADI (SE18).

Maybe you are looking for

  • Does anyone have any suggestions for Ad blocking? I'm getting a lot of pop up ads while using Facebook from Safari.

           I'm getting a lot of pop up ads. mostly while using  Facebook. I'm running Safari on a Macbook Pro running Yosemite. Does anyone have any suggestions for an Ad blocker. I don't see anything in the App store.       I can't swear to it but I don

  • Public Read-Only Attributes

    I'm trying to pick up ABAP on my own by reading through various resources I've collected and writing my own programs.  Unfortunately I don't have an experienced ABAP guru to ask questions of.  I'm hoping someone can help me with the following: Based

  • Hide Menu bar at Transaction iview

    Hi, I hav created a Transaction(e.g:se11) iview and i m displaying it in my portal. Its displaying properly...but the problem is its displayinlg along with menu with options Menu,Save as Variant, OKCode,Back,Cancel,Execute etc., Now i dont want to di

  • Regarding Configuration of Change Request Management in solution manager4.0

    HI Techies, I have configured the change request in solman 4.0 but the transactions SDCR,SDMN,SDMI,SDAD,SDDV,SDTM,SLFN,SDHFare not working for activating this i have executed the BC sets as mentioned in Note :903527 ,is there any BC sets available fo

  • Conversion Problems between Mac and Windows

    I work in a school district that is running an old version of Adobe Photoshop CS3 in a Macintosh environment.  The Macs are old 10.4.11 machines that would not print.  So, I set up a Windows Server with Macintosh accessible folders and copied files t