Introducing new field in IT0002

Hi Experts,
I want to introduce new filed GESCH in the IT0002.
I have gone to V_T588M, Specified the module pool program MP000200 & screen 2001.
But I am not able to find the field P0002-GESCH, I want to introduce it.
Thanks in Advance.
Regards,
IFF

Hi
Check the feature P0002 and find out which screen it's calling that program.
If you modified in Module Pool Program and same need to default that program through feature. Then only it will trigger your screen which will have new fields.
Regards
Chandra

Similar Messages

  • Addition of new field in FK01

    Hi Everyone,
    I got a requirement in which I have to introduce a new field for PAN number using  FK01 for vendor creation. We are not using CIN. But for some reports, we need PAN number. But in FK01 there is no such provision, can we use any other fields to store the PAN number or any other way to solve this.
    thanks
    regards
    srinivas

    Pusapati,
    There are many fields in LFA1 which are not used in many scenarios. Therefore its better that you find out such fields and use one for PAN details.
    Regards..

  • Addition of new field in existing cube which has data?

    I Have service provider field in ods and which is populating data on daily basis.
    Now I need to populate that field into cube and then reportingu2026u2026..
    For this do I need to delete the data from the cube and add that new field and need to load the last 6 month data? Or else with out doing deletion of data can I add a field in cube?
    Regards

    Remodeling is a new concept introduced in BI 2004s to manage changes to the structure effectively in an infoprovider, where the data is loaded and running. As of now we can make changes to the Infocube only. The same would be extended to the DSO and InfoObject in the future releases.
    Before you proceed to experience the remodeling process, letu2019s bear in mind few of the golden rules given by SAP.
    --> As a precaution, make a back-up of your data before you start remodeling.
    Before you start remodeling, make sure:
    --> You have stopped any process chains that run periodically and affect the corresponding InfoProvider.
    --> Do not restart these process chains until remodeling is finished. There is enough available table space on the database.
    --> After remodeling, check which BI objects that are connected to the InfoProvider (transformation rules, Multiproviders, queries and so on) have been deactivated. You have to reactivate these objects manually.
    You can go for remodelling. If you still have doubt, try the same in your Sandbox and repeat the process in Production as you are saying you have time of 1week.

  • Add new field infotype "z" in logical database selection screen pnp

    Can add new field infotype "z" in logical database selection screen pnp
    I could explain how to realize
    Thanks

    In case to somebody it interests to him: TO EXTEND SCREEN OF SELECTION WITH OPTIONAL DELIMITERS The case that can be given in a screen of selection of a logical data base it does not appear a certain field that we need in the filter, the steps that will be due to follow are the following:
    u2022 To create a view of selection in agreement with the fields that we want to show To review the following Link http://help.sap.com/saphelp_46c/helpdata/es/6e/6ed638e70ef679e10000000a114084/content.htm u2022 To assign the view of selection to a class of report
    u2022 In the code of report to create select option in the selection screen that allows to introduce imput to leak and after start-of-selection to put the following code,
    "Allocation operative area to optional delimiter
      IF NOT p_aroper IS INITIAL.
        DATA: lt_texpr TYPE rsds_expr OCCURS 0 WITH HEADER LINE,
              wa_texpr TYPE rsds_expr,
              lt_rsds_expr_tab LIKE rsdsexpr OCCURS 10 WITH HEADER LINE,
              wa_rsds_expr_tab LIKE rsdsexpr.
        REFRESH lt_rsds_expr_tab.
        wa_rsds_expr_tab-arity = '0'.
        wa_rsds_expr_tab-fieldname = 'OBJID'.
        wa_rsds_expr_tab-option = 'EQ'.
        wa_rsds_expr_tab-low = p_aroper.
        wa_rsds_expr_tab-high = '00000000'.
        MOVE-CORRESPONDING wa_rsds_expr_tab TO lt_rsds_expr_tab.
        APPEND lt_rsds_expr_tab.
        REFRESH lt_texpr.
        wa_texpr-tablename = 'PA9004'.
        wa_texpr-expr_tab[] = lt_rsds_expr_tab[].
        MOVE-CORRESPONDING wa_texpr TO lt_texpr.
        APPEND lt_texpr.
      pnpdynse[] = lt_texpr[].
      ENDIF.
    English is the forum language.
    Edited by: Rob Burbank on May 18, 2011 11:41 AM

  • Add new fields incu stomer data tab ( transaction BP)

    Hello,
    I need to add three new fields in the  standard  transaction BP.  I need the  three new fields show in the customer data tab when you have introduced a determinated value in control tab before.
    Is it possible?
    Can you tell me the way?
    Thanks

    Hello,
    I was changing  the  customer fields of transaction BP with transaction eewb.
    I was working in a specific project (ZBUPA) as you can see in the following images. I don´t know what I've changed but now the icon of the enhancement of the project is like a red broken box (Errors occurred if you look for it at the legend), and the task has got a prohibit icon (Processed with Errors). Like this:
    [[IMG]http://img329.imageshack.us/img329/6627/errorpp1.th.jpg]http://img329.imageshack.us/my.php?image=errorpp1.jpg][IMG]http://img329.imageshack.us/img329/6627/errorpp1.th.jpg | http://img329.imageshack.us/my.php?image=errorpp1.jpg]
    I am very interested in recover the system to the initial state of the screen, like this image shows.
    [[IMG]http://img329.imageshack.us/img329/3763/okzv3.th.jpg]http://img329.imageshack.us/my.php?image=okzv3.jpg][IMG]http://img329.imageshack.us/img329/3763/okzv3.th.jpg | http://img329.imageshack.us/my.php?image=okzv3.jpg]
    Thanx!

  • Adding new field with constant value for pre-existing records

    Hi,
    I have to introduce in different tables (ztable and standard one) a new field, containing the company code. The problem is that all the records already inserted in these tables should be filled with a particular company code ('DD01').
    I'd like to have this field automatically filled with a constant value without having to develop a program in order to update all the preexisting data. The reason is that cardinality of these tables is aroud 100 Millions of rec....
    Ideal solution should be to have some rule/routine defined in the data dictionary CR, so to get the field value during the import of the related CR.
    I've seen that is possible to define routine, but only for maintainance view (so new records..). If I open the db view, the situation is the following (example):
    Campi di ZKR_CRPU  
    Nm.campo Pos. Tp. dati Lngh. Decimali Not null Default
    MANDT 1 VARCHAR 3   X '000'
    ZZKDATANNO 2 VARCHAR 4   X '0000'
    ZZKDATMESE 3 VARCHAR 2   X '00'
    ZZKCODZONA 4 VARCHAR 3   X ' '
    ZZKDCODCTDIS 5 VARCHAR 6   X ' '
    ZZKCRPU 6 DECIMAL 10 9 X 0
    Is it possible to change the default value? is there a solution to my problem without developing a tool just for updating a field? I can also define a custom data element if the problem can be solved.
    Thanks a lot,
    Gabriele

    Hi!
    If I were you, I will not look for another solution, because it's pretty easy task for ABAP.
    It can be solved within 1 line:
    UPDATE ztable SET zzcompany = 'DD01' WHERE zzcompany = ''.
    Regards
    Tamá

  • Added new field to cube but data not passed from DSO

    Hope someone can help.
    (BI 7.0) We added new fields into a cube. The fields already existed in the DSO. When we ran the process chain in development for the first time after making this change, we notice that the 'historical' data for these fields is populated in the cube. When we do this in our quality system only new data passed to the cube is updated. In development in the sub-chain DTP request we see all previous requests listed under selections. In quality it is only the latest request. The only difference is that the DeltaInit flag in the DTP request in development is ticked (extraction mode) - but not in quality. Does anyone know whyb this is?

    hi peter,
    Adding fields to cube doesn't affect delta status...The delta DTP should be able to handle delta requests automatically.
    I guess in you quality system, the cube already got all requests updated from ODS before you importing the change request. And in develop system none of the requests in ODS were updated before the change.
    Regards,
    Frank

  • Error while adding a new field to the Segment in we31

    Hi ,
    I am getting error when i am trying to add the new field to the cust. segment.
    It is released for the adding the new fields i am cancelling the release , but i got a message like this
    Error while resetting release of segment 'segment name'.
    it is comming from the message class EA and message number 259.
    Thanks in advance.
    Reagrds,
    bharani

    Hi,
    Have you tried Cancelling the release before adding the version?
    Select the active version of the IDOC Segment and cancel its release first. Only then you will be able to add a version.
    Please let me know if it worked!
    Vijay

  • AET error while creating a new field

    Hi Experts,
    We have a requirement to create a check box/newfield on Account Details screen in Web UI. I am trying to create a new field using AET but am getting the following error message. Please help.
    1. Error during generation of object CI_EEW_BUT000
    2. Customizable CSOL conflict for objects changed in other TR.
    We have a config TR involving the role field on account details component (BP_HEAD/ACCOUNTDETAILS). Do we need to release the transport before creating any new fields.
    The generation of the field fails when I select the extension and click on 'SAVE and GENERATE'.
    Please help.
    Thanks,
    Rohit

    Hello Rohit,
    Please  apply note 1707978 to solve the issue.
    thanks
    Willie

  • How to find out the user who has created  a new field in the custom table.

    How to find out the user details who has created  a new field in the custom table.
    Thanks,
    Joan

    Hi Jesudasan ,
    You can know the user details with version management.Please find the
    below procedure to know.
    Go to table->Utilities tab->version->Version management->Compare the previous one .
    Hope this solves the issue,Let me know if you have any issues.
    Thanks,
    Rajani

  • Creation of new fields for business partner relationship

    Hi experts,
    We are currently on SAP CRM 7.0 EHP1.
    We have a requirement to maintain a custom checkbox (Relevant for business) on each business partner relationship.
    Can you please let us know on how we can achive this requirement.
    Thanks in advance,
    Vamsi.
    Moderation: Duplicated. I lock this one and continue here: [Create a new field in Business Partner Relationships|Create a new field in Business Partner Relationships#10795912]
    Edited by: Joaquin Fornas on Nov 8, 2011 12:17 PM

    Please, anyone can help?
    Thanks!!

  • Populating marketing attribute of bp in new field created by eew in crm

    Hi all,
        I have created new field in transaction types(lead opp, quotation and order) through eew.
        how do i populate a value of a marketing attribute that i have maintained for a business partner(TABLE for marketing attribute:- AUSP) in the new fields created in all the transaction types.
        Can anyone help me in how to achieve this as it is an high priority issue for me?
        I have tried doing by writing a code in pbo of the screen in which fields are created but it gives me a dump at item level if item is maintained otherwise it works but item is compulsary.
    Regards,
    Rahul

    Hi Rahul,
    Check the BADI 'CRM_CUSTOMER_H_BADI'
    Implement the method 'CRM_CUSTOMER_H_MERGE'
    First of all select the data from the table.
    Fill in the appropriate corresponding field in the structure 'CS_CUSTOMER_H_BADI',of the method, with the data extacted. Finally(very important), In the table 'IT_INPUT_FIELD_NAMES', of the method, append a line with the field FIELDNAME containing the name of the field in the Customer_h structure and field CHANGEABLE containing space.
    I think this should solve your problem.

  • Creation of new fields under sales tab in XD01

    Hello,
    I have to create a new field under the sales tab in XD01. Please let me know how i can do this? or is there any other way of adding the new fields to the customer master..
    Thank You!!!!
    Suresh

    Hi,
    you can add to fields with customizing a cross the below path:
    Financial accounting/accounts receivable and accounts payable/customer accounts/master data/define screen per activity (customers),
    but i dont know how add new fields,
    regards,
    David

  • Creation of new field

    Hi Alll,
    Can you give me some help in this area---
    Requirement is 5 decimals in amot which i cant go with std sap------(Ie. I cant go with chnages in global settings)
    I want chnage the field KONP-KBERT) as with 5 decimal
    if its not possible can we make one new field instead og KBERT like ZBERT with 5 decimal and we also should be ale to display only ZBERT not KBERT
    Regards
    ishikesh

    First you should ask why amount is required in 5 decimal places.  Anything is possible to do in ABAP but we need to see if it is worth doing it

  • Creation of new field in Web Page

    Hi All,
    i am new in SAP CRM 2007. i wanted to add one field therefore i went to EEWB and try to create one extension. In extension i have enter all fields like Name, Description, EEW Bus. Object and Extension Type when i click on continue system is giving error that is "No request was sent" (No request was sent through the interface).
    please tell me how to solve this error???
    Thanks & Regards,
    RAJ

    Hi Raj,
    Check if you have followed the below steps:
    -While creating new project in EEWB you Need to enter existing package then you will get transport request Dialog box .
    -Click on create on continue which will then create the project.
    -Then right click on Project create extesion.You must select EEW Bus Object and Extension Type Header or Item level.
    -Then you will get the Wizzard and assign Transaction TYpe while proceeding in Wizzard.
    -In define field you must maintain the data type i.e Character or check box
    -In assign field must check header or Item and assign the subbobject and continue.
    It may take some time but will create a new field.
    Regds
    Arup

Maybe you are looking for

  • Key Figures getting added

    Hi All, We arein a process of migrating 3.x Transfer rules and update rules to NW2004s. We are following the standard procedure of migrating the objects such that transfer rules are migrated to a transformations and so do update rules. In on of the o

  • How can i start my new macbook air

    i brought a new macbook air but when i on it it is shown welcome  screen with world map but not going next screen

  • Updated BIOS - Can no longer boot arch in any shape or form

    So, I updated my BIOSrecently. After that, when I tried to boot into arch the boot screen says 'waiting 10 seconds for device /dev/sda6' and eventually 'could not find root device' which is when it drops me into a basic ramfs commandline. I tried to

  • Index not used in DELETE

    Guys, I have an index on a table that is being used in SELECT but not in DELETE. Both DELETE AND SELECT are using EXISTS clause to join with another table. Even in SELECT, if I use "* from" the index is not being used. If I use "<column name> from" t

  • PDF Form: Multiple Choice sheet that displays a percentage based on answers provided

    Hello, Im trying to create a form that has 4 multiple choice questions, the answers to each being the values 0,1,2,3,4, 5 or N/A. Once answers are given, I'd like the percentage to appear on the form. I can't figure out how to do this, as the total f