How to delete a field in Infotype.

Hi All,
Can anyone suggest me how to delete a field in infotype.
Thanks,
Chakradhar.

Hi Chakradhar!
Check these links for your taste:
<a href="http://help.sap.com/erp2005_ehp_02/helpdata/en/bb/bdb6c8575911d189240000e8323d3a/frameset.htm">Delete infotype record - OM</a>
<a href="http://help.sap.com/erp2005_ehp_02/helpdata/en/48/35c7414abf11d18a0f0000e816ae6e/frameset.htm">Delete infotype record - PA</a>
Best regards,
Zsolt

Similar Messages

  • How to delete a field's name in the form of 2014.1

    In the 2014 version, you can delete the field's email in html and online everything worked. In version 2014.1 so you can do. Necessary to create a form with the name and telephone. Help!

    I would like to know how to delete the email field in the Muse Web Form. I need to create a form which does not require an email field.

  • How to delete a field in pcui

    hi,
    i am new in pcui.
    can i one tell me how to delete ( label and input field ) a field in pcui.
    thnx in advance

    Hi Amit,
    You can delete or hide the fields u want in  PCUI application refer below steps:
    1) Tcode CRMC_PCUITOOLS in Analysis Tools enter u r application and Ziview and execute (make sure u r changing the zivew, which will not affect standard ivews)
    2) in Window u'll see the all technical details i.e.Structure, field group, Access class, Toolbar Group etc.
    3) Tcode CRMC_BLUEPRINT_C in Application Element u can Customize Toolbar, Tab Page Group, Field Group etc u r Zivew.
    Note : You can get the PCUI cookbook from the service market place which will help you in making changes specific to PCUI applications.
    Hope it'll help u.
    Thanks,
    Dipesh.
    Edited by: DD's on Nov 10, 2008 6:30 AM

  • How to delete a field

    Hi,
    I have a table t1 in the table t1 i have a field f1, how to delete the data of field f1.

    Dropping Columns
    Only with the release of Oracle 8i has it been possible to drop a column from a table. Prior to this it was neccessary to drop the entire table and rebuild it. Now you can mark a column as unused (logical delete) or delete it completely (physical delete).
    Logical Delete
    On large tables the process of physically removing a column can be very time and resource consuming. For this reason you may decide to logically delete it:
    ALTER TABLE table_name SET UNUSED (column_name);
    ALTER TABLE table_name SET UNUSED (column_name1, column_name2);
    Once this is done the columns will no longer be visible to the user. If at a later date you have time to physically delete the columns this can be done by:
    ALTER TABLE table_name DROP UNUSED COLUMNS;
    On large tables you can reduce the amount of undo logs accumulated by using the CHECKPOINT option which forces a checkpoint after the specified number of rows has been processed:
    ALTER TABLE table_name DROP UNUSED COLUMNS CHECKPOINT 250;
    The DBA_UNUSED_COL_TABS view can be used to view the number of unused columns per table.
    Physical Delete
    To physically drop a column you can use one of the following syntaxes, depending on whether you wish to drop a single or multiple columns:
    ALTER TABLE table_name DROP COLUMN column_name;
    ALTER TABLE table_name DROP (column_name1, column_name2);
    Dropping a column from a table will cause all unused columns in that table to be dropped at the same time.

  • How to delete invisible fields from screen painter SE51?

    Dear all,
    How to delete/remove invisible fields from screen painter SE51?
    Thanks.

    HI,
    just go to screen painter-->layout in change mode.
    the invisible fields will be looking faded
    click on that and press the DEL button.
    that will be deleted.
    <b><REMOVED BY MODERATOR></b>
    vivekanand
    Message was edited by:
            Alvaro Tejada Galindo

  • How to delete a field from search help which is delivered

    hi
    I got a requirement to delete a field from search help which is delivered long back
    Regards
    krishna

    Hi
    Whether it exists in DEV system or not?
    Take the name of that Search Help from PRD/Quality(if it is not there in DEV system) and modify/change it by removing that field from the search help in DEV system and create a Transport request and transport the same request to Quality/PRD systems
    Now the New changes (in which the field was removed) will be over written on the old search help in the PRD system, since it is the same Name (search help)
    Regards
    Anji

  • How to delete predefined fields  like Provisioning Date in users- create

    Hi,
    Is there a provision to delete predefined fields like Provisioning Date in users->create form in admin console.
    If so, please tell me all the files i need to change.
    Thanks in advance

    Hi,
    You need to comment on following sections in FormMetaData.xml.
    <!-- User Provisioning Date -->
    <!--
              <AttributeReference editable="true" optional="true">-23</AttributeReference>
    -->
              <!-- User Provisioned Date -->
    <!--
              <AttributeReference editable="false" optional="true">-25</AttributeReference>
    -->
              <!-- User Deprovisioning Date -->
    <!--
              <AttributeReference editable="true" optional="true">-24</AttributeReference>
    -->
              <!-- User Deprovisioned Date -->
    <!--
              <AttributeReference editable="false" optional="true">-26</AttributeReference>
              -->
    Please let me know if you have any questions.
    Regards
    Nitesh

  • How to delete customized field from an infotype

    Hi All,
    I have created a customized field in standard infotype.Now i want to remove that field. Can anyone pls send me procedure to delete the customized field.
    Thanks
    Partha.

    u can use transaction se11 to delete the corresponding customised domain, data element etc. (if any), and finally delete the structure CI_Pnnnn.
    if u have already input data in the field, u have to firstly delete these data.
    Kind regards,
    Echo

  • How to delete a field from a Dynamically created internal table

    Hi friends,
    I have got a requirement in which, I will be entering the table name and Excel file from seletion-screen.
    based on the Table I have entered in the selection-screen I need to create a dynamic internal table so that I can fill that Execel data into that internal table and later i using BDC i can I can fill the database table using SM30 transaction.
    here. my problem is that, When I am creating internal table dynamically, MANDT filed is also getting created in the internal table.
    please, help in deleteing the filed MANDT from the internal able.
    following is the code which creates the dynamic internal table.
    CREATE DATA dy_table TYPE TABLE OF (p_tabname).
    assign dy_table->* to <dyn_table>.
    please provide, if any sample code is available.
    Regards,
    Xavier.P

    Hi,
    You can use this logic,
    While creating the Dynamic filed catalog try to avoid MANDT field.
    Ex:
    *Dynamic creation of a structure
      CREATE DATA LP_STRUCT TYPE (V_TABLE).
      ASSIGN LP_STRUCT->* TO <FS>.
    *Fields Structure
      OF_SDESCR ?= CL_ABAP_TYPEDESCR=>DESCRIBE_BY_DATA( <FS> ).
    LOOP AT OF_SDESCR->COMPONENTS ASSIGNING <COMPONENTS>.
    *Field MANDT not displayed
        IF SY-TABIX = 1 AND <COMPONENTS>-NAME = 'MANDT'.
          CONTINUE. " Next loop
        ENDIF.
    *Build Fieldcatalog
        LS_LVC_CAT-FIELDNAME = <COMPONENTS>-NAME.
        LS_LVC_CAT-REF_TABLE = V_TABLE.
        APPEND LS_LVC_CAT TO LT_LVC_CAT.
        CLEAR LS_LVC_CAT.
      ENDLOOP.

  • How to delete target field in graphical mapping

    Hi all,
            i have a field called failedsubject in my target my requirement is if their is no value in this field then it has to be deleted means it should not be shown iam using graphical mapping. please help me
    thanks in advance

    Hi,
               Please try with the below logic.
    public String failedSubject(String sub1, String sub2, String sub3, Container container) throws StreamTransformationException{
    if (Integer.parseInt(sub1) >= 40)          //assuming 40 as passmark
              if (Integer.parseInt(sub2) >= 40)
         if (Integer.parseInt(sub3) >= 40)
               return false;
                          else
                                return true;
              else
                      return true;
    else
           return true;
    failedSubject---->ifWithoutElse-->failedSubject
    pass all subjects as input to the UDF.
    Regards
    Priyanka
    Edited by: priyanka.anagani on Sep 16, 2011 3:26 PM

  • How to delete a field from already created search help

    hi
    i got a requirement that delete a search help field which is already delivered
    regards
    krishna

    Hi Krishna,
    1. Go to SE80 and Enter the Package name
    2. Dictionary objects --> Search helps ---> select ur Srarch help[double click it]     --->  CTRL + F1.
    3. Then remove the unwanted fields.
    Thanks,
    Reward If Helpful.

  • How to delete QUAN field zeros

    Hi experts,
    I am facing problem while Deleting zeros of QUAN filed. senerio like this
    mov type      Issue     Comsum
    541              200.00   0.00
    541              300.00   0.00
    543               0.00     200.00
    543               0.00     300.00   here i am seperating values in loop 541 in one filed and 543 in another filed so i want space where there is no data ex. 0.00. so how i achive this? give me solution.
    Thanks,
    Ashish.

    Hi,
    check this sample code.
    data: typ_char(100) type c.
    data: begin of itab occurs 0,
          mvt(3)  type c,
         quan     type p decimals 2,
         end of itab.
    data: begin of jtab occurs 0,
            mvt(3) type c ,
            quan(20) type c,
          end of jtab.
    itab-mvt = '541'.
    itab-quan = '100.00'.
    append itab.
      itab-mvt = '541'.
    itab-quan = '200.00'.
    append itab.
      itab-mvt = '542'.
    itab-quan = '0.00'.
    append itab.
      loop at itab.
        jtab-mvt = itab-mvt.
        jtab-quan = itab-quan.
        if itab-quan eq '0'.
          jtab-quan = ''.
        endif.
        append jtab.
      endloop.
    loop at jtab.
      write:/ jtab-mvt, jtab-quan.
    endloop.

  • How to delete Justification field in OIM 11g screen

    Hi,
    I have one requirement to remove the Justification field in last screen while submitting the request for a resource in OIM 11g
    any idea how to do it?
    Thanks for your help.

    Please try this:
    OIM Advanced -> System Management -> System Configuration -> Search: *just*
        "Indicator to skip the justification page" -> Value: true -> SAVE
    Managed object: Deployment Manager/System Property/SkipRequestJustificationStep
    NOTE: I'm checking on 11.1.1.5.5, but I wouldn't expect it to be different
    Yash

  • How to delete buffer for HRP infotypes

    Hi all,
    I am using DFPS workbench and currently it stored buffer of hrp infotype when more than 1 record is being save . i am able to get the buffer using FM : RHOM_GET_BUFFER_FOR_INFTY. However when i try with 'RH_CLEAR_BUFFER' the buffer is still there when i try.
    Any solution to this?
    Thanks and Regards,
    LH

    Hi
    Try using this FM:HR_PSBUFFER_INITIALIZE.
    For more info about this function module, click on this [link|http://shafiq.us/sap/index.php?option=com_content&view=article&id=59:hrmaintainmasterdata-and-hrinfotypeoperation-update-performance&catid=45:hr-abap-tips-and-differences&Itemid=64 ].
    Hope this helps.
    Harsh

  • Create New Field in infotype 0001

    Hi
    Can any body guide me how to create new field in Infotype 0001,
    i want to create  two new fields with six reasons in each new field
    Thanks

    Hi,
    his can be acheived through enhancement. Hope these link helps
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/4f/d526be575e11d189270000e8322f96/content.htm.
    General steps are
    Step 1
    Using transaction PM01 chose the 'Enhance Infotype tab' and press the create 'All' button.
    Step 2
    Enter the new fields you wish to add to the Infotype.
    Step 3
    Once saved and activated the new fields will appear in the Infotype screen and database table
    Edited by: Raghu C on Nov 4, 2009 6:15 AM

Maybe you are looking for

  • How to register a report program ins EBS?

    HI, I made a new report program called APVOUCHER.rdf it is developed/tested/ and running on Reports 10g windows. Then I ftp it to my EBS R12 linux server. Then I put it under the base path of $AP_TOP/reports/us. Then I register it in EBS using this a

  • Copy and paste in Swing HTML editor

    Hi, I have two related questions: 1. Is there any detailed documentation on the method insertHTML(HTMLDocument doc, int offset, String html, int popDepth, int pushDepth, HTML.Tag insertTag) in class HTMLEditorKit available? The information included i

  • How to create a on/off modulation in AWR VSS?

    Hi all!!! This is my first post and want to know if anyone knows how to make a source amplitude modulation on / off in VSS, the purpose is to create a sequence of RF pulses at a frequency of 1090MHz and PRF of 250Hz for simulate a Secondary RADAR sys

  • Create new IMAP & SMTP account with AppleScript

    After reading a thread over here where some of you mentioned the problem creating a new mail account using AppleScript in fact there really seems to be a bug that doesn't allow to change authentication of a SMTP server to Password. So I ended up goin

  • Azure & Visual Studio Professional MSDN

    Hi, With a Visual Studio Professional MSDN subscription you can provision Visual Studio 2013 dev virtual machine(s). When selecting the MSDN option when creating a VM from the gallery gives several options with VST to choose from. - Is a VST Pro MSDN