To adda a Text field in BP Transaction

Hi ,
I want to add a Text field for a email address in BP transaction Address tab  and want to update that in to a data base table So can we suggest  User Exit and BADI for the Updation if Any or tell me the process....

Hi,
Create a project in the transaction in EEWB with the object BUPA, its an wizard so just follow the steps. enter the appropriate details and lastly generate the project.
this would mean in SAP gui you should be able to see the field in the tab you gave while doing EEWB.
But not in Web UI, for this field to be appeared in web UI, you need to go to the component in which you added through tranx BSP_WD_CMPWB.
Go to the configuration tab and you will see to blocks, list of available fields and list of displayed field, so the new field would be available in list of available fields.
Move the field to the listof displayed field and now you shouls be able to see the field in Web UI.
For data to be enterered in that field, it would happen automatically update the data base if entered manually. if you want to put the data thru program then you can use BAPI_CENTRALPERSON_CHANGE or something like this, as i dont remeber the exact FM.
Please let me know if you have any further doubts.
Regards
Sidd

Similar Messages

  • To add a Text field in Standard Transaction

    Hi..
    i want to add a Text field for a email address in BP transaction Address tab  and want to update that in to a data base table So can we suggest  User Exit and BADI for the Updation if Any or give the the process to over come this issue

    Hi,
    You have not mentioned the version you are using (assume its 5.0 or lower). Also, do you want to add a custom field & also programatically update it? If you want to add a custom field , you can use EEW.
    But, from what you have written, I have a feeling that you can use some of the (existing) standard fields. What is your exact requirement.
    Regards,
    L

  • Which field from idoc INVOIC01 maps to Item Text field in MIRO transaction?

    Hi
    Will anybody please tell me which of the field in which segment of IDOC INVOIC01 maps to Item text (INVFO-SGTXT) field in Basic data tab of MIRO transaction

    Thanks Ravi for your response.
    But I have tried with all fielsd related to texts in IDOC but it is not being filled in transcation .
    If you see the F4 help in text field then Text Id is four character and when I manually assign this in transactin then it is putting = symbol in fron of the id. And then if we save or go to other tab then it is filling text.
    I am not able to find the error bcoz document is being posted through idoc but text field is not getting filled.

  • TEXT field in MIGO_GR transaction

    Hi All,
    There is one requirement related to T-Code MIGO_GR.
    For any Purchase Order in this Transaction, there is one field called TEXT under the WHERE tab.
    I need to know if I enter any value for this field, where this is getting updated ? I mean is there any table where it is getting updated ?
    Can you please suggest on this?
    Thanks & Rgds,
    Sanjeet

    hi,
    it is stored in MSEG-SGTXT.

  • Where to find "Partner Text", field from inside transaction IW33?

    Hi all!
    Inside the transaction IW33, there is a folder/screen Partner. Inside this Partner screen it is a field u201CNameu201D. This is the third line from left. Do anyone now where in the database the data inside the field u201CNameu201D is been read? If I look into the technical details, I do only se the structure name. And that is DIADR-NAME_LIST. I do want to find out where this data has been read from.

    Hi,
    In Tcode: ME42, enter the request for quotation number (RFQ) and press enter. System will take you to 'Item Overview' screen. From menu select 'Header' -- 'Details' or press F6. Then the system will take you to 'Header screen' there you can see the 'company code' after RFQ number field.
    Or
    Directly from Tcode: ME42, enter the request for quotation number,then from menu select 'Header' -- details. Here you can have the company code field.
    The data for company here too will get updated in table and field EKKO-BUKRS.
    Hope this helps.
    Thanks,
    Viswanath

  • How to populate Doc Header Text Field & Ref Field in OASV Transaction?

    Hello everyone,
    I need to seek your help regarding, on how can I populate values in "Document Header Text Field" & "Reference Text Field" in OASV transaction, as these fields are invisible and are mandotory at document type.
    (I know we can disable their status in the document type, but we don't want to do so).
    Regards,
    Saurabh Patni

    Hi Mukthar,
    Thanks for the quick reply.
    I had tried to work out with substitution rule for the document type and transaction code, but still no use, the same error persists.
    (In Subsitution I am going with constant value to be replaced), I am defining it for Callup point 1, but it is not working.

  • General text field in invoice register

    Hi,
    Can anybody plz tell me how to fetch general text field from
    vf03 transaction in SD. i am not able to find out its field name and table name.
    vf03 --> goto --> header ---> header text.
    regards
    Fozia

    Hi,
    Check this sample code:
    REPORT ZEXAMPLE.
    TABLES: TTXID, ITCPO.
    DATA: LANGUAGE      LIKE  T002-SPRAS VALUE 'E',
          ACTION        LIKE  TTXCT-FUNCTION,
          TEXTTITLE     LIKE TTXIT-TDTEXT.
    DATA BEGIN OF TEXTHEADER.
            INCLUDE STRUCTURE THEAD.
    DATA END OF TEXTHEADER.
    DATA BEGIN OF TEXTLINES OCCURS 0.
            INCLUDE STRUCTURE TLINE.
    DATA END OF TEXTLINES.
    CREATE A ONE-LINE TEXT ELEMENT
    PARAMETERS: P_OBJ  LIKE TTXID-TDOBJECT DEFAULT 'DOKU' OBLIGATORY,
                P_ID   LIKE TTXID-TDID DEFAULT 'TB' OBLIGATORY,
                P_NAME LIKE STXH-TDNAME DEFAULT 'MARA' OBLIGATORY.
    PARAMETERS: P_LINE LIKE TLINE-TDLINE,
                P_PRNFMT LIKE THEAD-TDTEXTTYPE,
                P_DEL  AS CHECKBOX.
    CLEAR: TEXTLINES, TEXTLINES[].
    TEXTLINES-TDLINE = P_LINE.
    APPEND TEXTLINES.
    SELECT SINGLE * FROM TTXID WHERE TDOBJECT EQ P_OBJ
                                 AND TDID EQ P_ID.
    IF SY-SUBRC EQ 0.
      CALL FUNCTION 'READ_TEXT'
           EXPORTING
                ID       = P_ID
                LANGUAGE = LANGUAGE
                NAME     = P_NAME
                OBJECT   = P_OBJ
           IMPORTING
                HEADER   = TEXTHEADER
           TABLES
                LINES    = TEXTLINES
           EXCEPTIONS
                OTHERS   = 1.
      IF SY-SUBRC = 0.
        MOVE 'LOCL' TO ITCPO-TDDEST.
        MOVE 1 TO ITCPO-TDCOPIES.
        IF P_PRNFMT = 'ITF'.
          CALL FUNCTION 'PRINT_TEXT_ITF'
               EXPORTING
                    HEADER  = TEXTHEADER
                    OPTIONS = ITCPO
               TABLES
                    LINES   = TEXTLINES.
        ELSE.
          CALL FUNCTION 'PRINT_TEXT'
               EXPORTING
                    HEADER  = TEXTHEADER
                    OPTIONS = ITCPO
               TABLES
                    LINES   = TEXTLINES
               EXCEPTIONS
                    OTHERS  = 1.
        ENDIF.
        IF SY-SUBRC EQ 0.
          CALL FUNCTION 'INIT_TEXT'
               EXPORTING
                    ID       = P_ID
                    LANGUAGE = LANGUAGE
                    NAME     = P_NAME
                    OBJECT   = P_OBJ
               IMPORTING
                    HEADER   = TEXTHEADER
               TABLES
                    LINES    = TEXTLINES.
          CALL FUNCTION 'EDIT_TEXT'
               EXPORTING
                    EDITOR_TITLE = TEXTTITLE
                    HEADER       = TEXTHEADER
                    SAVE         = SPACE
               IMPORTING
                    FUNCTION     = ACTION
                    NEWHEADER    = TEXTHEADER
               TABLES
                    LINES        = TEXTLINES.
          CALL FUNCTION 'CREATE_TEXT'
               EXPORTING
                    FID       = P_ID
                    FLANGUAGE = LANGUAGE
                    FNAME     = P_NAME
                    FOBJECT   = P_OBJ
               TABLES
                    FLINES    = TEXTLINES
               EXCEPTIONS
                    NO_INIT   = 1
                    NO_SAVE   = 2
                    OTHERS    = 3.
          IF SY-SUBRC EQ 0.
            CALL FUNCTION 'SAVE_TEXT'
                 EXPORTING
                      HEADER    = TEXTHEADER
                 IMPORTING
                      NEWHEADER = TEXTHEADER
                 TABLES
                      LINES     = TEXTLINES.
            CALL FUNCTION 'COMMIT_TEXT'
                 EXPORTING
                      OBJECT   = P_OBJ
                      NAME     = P_NAME
                      ID       = P_ID
                      LANGUAGE = LANGUAGE.
          ELSE.
            IF P_DEL EQ 'X'.
              CALL FUNCTION 'DELETE_TEXT'
                   EXPORTING
                        OBJECT   = P_OBJ
                        ID       = P_ID
                        NAME     = P_NAME
                        LANGUAGE = LANGUAGE.
              WRITE:/ P_OBJ, 'DELETED'.
            ELSE.
              WRITE:/ P_OBJ, 'EXISTS'.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDIF.
    Values for     ID ,  NAME  ,OBJECT  can be founf by displaying the document in change mode then goto the header texts..select the text and then double click the editor it will goto sapscript editor from there Goto->Header..in the popup screen u will get all the info.
    Regards,
    Joy.

  • Item level Info record PO text field in Purchase Order Me21n transaction

    Hello All,
    I have to enter some information in the PO info record text field (which is in Item level Texts tab of ME21n transaction ) using an user-exit at the time of creation/change of purchase Order.
    Does anyone knows the user-exit and how to update the text field ?
    Any help is really appreciated
    Thanks
    Ricky

    Check with : Enhancement : MM06E005
    Function module : EXIT_SAPMM06E_017
    This user exit will trigger when you enter the data in item level(Both creation and change)

  • Adding text field to Fast entry screen transaction F-26

    We need to add a text field in the GL account for payments e.g. 572000, when we are using transaction f-26.
    We manage to add this field to the screen variant SAP01,copyinng this varaiant into a new one called ZSAP1 but it gives as an error. For doing so we have had to delete some fields from the variant .
    At this moment we do not get this error but the field doesn't appear.
    We cannot use variant SAP02 cause this has 2 screens and we would have to reprogram the interfase program we are using to feed this aplication.
    Can you help us?
    Thank you

    HI
    You can reduce the width of each field and accomodate the text field in the variant.
    Wish you happy new year.
    Dont forget the award points

  • Text Field is Blank in Transaction F-28

    Hi Experts,
    There is a requirement to add to the current layout the text field in F-28 transaction code. However, when I add them as an administrator, The text field is blank. We already maintained the text field in both Accounting Document Line item and in the Invoice but still the text field is blank. Where can we find the value of text field in the documents shown in F-28. Are there any configuration to do this?

    Ok. Currently they had this problem on tagging which Invoices to be considered for payment clearance in tcode F-28. Their current process is every Ship-To-Party, they also equate it as one project code with the location of the project information,etc. They are using this ever since the first implementation. So in their process, they go to FBL5N to check those invoices created before going to F-28. In FBL5N, I incorporated the text field there (filled by user-exit display) which also came from the accounting document. But it's not correct since they are using the ship-to-party value in F-28.
    So we tested by manual input directly the Ship-To-Party Code to Acc Doc Line Item Text Field. It went to FBL5N, as showing the value there but in F-28 it is not showing.
    Do you have any solution for this? Since during payment in F-28, I think these entries are already Acc Doc Entries and Ship-To-Party is not reflected here but Payer only (coming from the invoice).

  • Changing the text of Text field in standard SAP transaction.

    Hi expert,
    I have a requirement in which i have to change the text of Text field in standard SAP transaction.
    Is it possible? If so, how?
    Any pointers will be highly appreciated.

    Hi,
    I think you want to change the field label of the text field.
    For ex in tcode MM01, you can change the field label of Material text field.
    The description of the field label comes from the data element it is associated with. To change the text of the field label, you have to change the field label of the data element.
    But it will effect all the fields associated with this data element.
    To change the field label of the data element go to tcode CMOD. Then click on GOTO->TEXT ELEMENTS->KEYWORDS->CHANGE.
    Then enter the data element which is to be changed. In the next screen, change the field label and save it.
    Regards,
    Vinod

  • Create a text field in transaction code VF11

    Hi,
    How to configure a text field in transaction code VF11.Please help me on this.
    Presently we are just cancelling the invoices through VF11. but no inputing the reason for cancellation.
    We need to have a mandatory field, were in we need to input the reason for cancellation of that invoices.
    Thanks & Regards,
    vcsreddy.

    Dear
    Create One text type for Billing document header and Assign the Biling Type S1
    and when your doing Vf11Transcation select GOTO Billing Document Over view and select the line item
    go to text there your text type will determine.
    Do this I hope your requriment full fill
    Regards
    Supriya

  • Text Field is not displaying in MIRO , Screen Variant SHD0

    Hi,
    All Experts.
    In my client TEXT field is not there in MIRO T.code. I heard Screen Variant can be a good option for adding field in MIRO.
    Or is there any work around to bring TEXT ( SGTXT ) field in MIRO ?
    I gone through the already posted threads regarding this, unfortunately no any perfect solution found.
    Experts help will be great on this.
    Regards,
    Sharvari Joshi.

    Hi,
    Go to SHD0 and enter transaction code as MIRO
    Then in first tab "Standard variant", sub tab "Standard Variants", do F4 on the field "Name"
    You will get the list of the standard Variants for MIRO.
    Then select one of them and press enter. It the "Activate Match Stick" is enables, that means that standard variant is not activated yet. Similarily check for other standard variants of MIRO.
    If all the standard variant have "Activate Match Stick" enabled, then SAP MIRO should be showing SGTXT as a part of standard SAP.
    Regards,
    SDNer

  • Sale Order Item Level Text Field which table and field

    Hi,
    Thanks for your prompt reply and best solution.
    Can you please tell me one more thing, in sale order at item level the TEXT Field maintaining by user at transaction level now they want that field in one of the report, so can you please tell what is the table and field where i will get this sale order item level text details.

    Hello,
    is this going to work for item level text as well.
    can you tell how to proceed with this functional module
    or is there any other thing required.Please elaborate to
    understand better way.
    You can check out two table in respect to Sales TEXT i.e. STXH (STXD SAPscript text file header) and STXL(SAPscript text file lines).
    The best approach of tracing out the Text in respect to Sales Order would be to use the Function module READ_TEXT and put this FM in SE37 and execute with the following parameter.
    Client
    Text ID of text to be read
    Language of text to be read
    Name of text to be read
    Object of text to be read
    Archive handle
    Text catalog local
    When you are essentially looking to read item level Text with respect to Sales Order then your Text OBject would be VBBP.
    Regards,
    Sarthak

  • Text field to be reflected in GR/IR Account

    hi,
         I am having problem with the text field in Transaction : MIRO  and GR/IR a/c.
    The text field which we enter in MIRO Transaction is to be reflected in GR/IR a/c.
    Should we enter text manually in GR/IR a/c or it has to be popup from MIRO Transaction.
    Could any one help me how to get the text in  GR/IR Transaction  from MIRO text.
    u should be appreciated mate
    Subramanyam

    HI
    First verify the field status group of GR/IR account ...generally g045 is assigned for that....
    Go to obc4, then click on g045 ...then click on general data... make text as required entry
    if any other field status group (material group) is assigned ...for that also you can do the same as above...
    Radha

Maybe you are looking for