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

Similar Messages

  • 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

  • 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

    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 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 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 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

  • Adding new field in PCUI

    Hi All,
    Can anybody tell me how to add new field in PCUI screen which is already present in database?
    As per my understanding,I need to create a Zstructure which will be copy of my standard structure. To this Z structure I will add my new field. Then I will replace standard structure against my fieldgroup with my Z structure.Activate it. Then in Application set defination I will replace std structure and class with my Z structure and std class.
    By this way fields gets display on PCUI screen. But its value is not saved in database?
    Is there any step I am missing?
    Regards,
    Vikas

    Hello Vikas,
    The following will be best approach to Add new Field in PCUI:
    (1) Get Information in which Screen area of application new field is requried to shown i.e. details like screen structure, field group and model access class.
    (2) Check the new field is available the corresponding screen structure ..
    (3) If Yes, then add to field group and generate field group layout, i this case, the field value will be stored in DB by standard Model class.
    (4) If No, then create Custom structure and add to field group in order to expose to screen.
        in this case, you have to assign this structure correspoding screen details in CRMC_BLUEPRINT_C->application layout. Create Model class inheriting standard on MAC impliment modify and read method to write logic of saving...reading fielf value and Assign it new structure in application set of corresponding application,
    Regards,
    Arjun

  • MM17 Delete a Field from this Transaction

    Hi,
      Could someone tell me how to delete a field from the MM17 transaction code.
       Please let me know if this is feasible.
    Thanks & Regards,
    YJR.
    Message was edited by:
            YJR

    Hello,
    I think it is not possible to delete fields or add tables in MM17.
    Vasanth

Maybe you are looking for