Adding radio button on a custom infotype!!

hi
how do u add a radio button on a custom infotype?
thx
gunjan

hi
how do u add a radio button on a custom infotype?
thx
gunjan

Similar Messages

  • Adding Radio Button dynamically, twice - Error #2025: The supplied DisplayObject must be a child of

    Hello
    I am having some trouble adding UI controls dynamically. Mostly with radio buttons.
    Here is an example that demonstrates my problem:
    <s:Application
        xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark" 
        xmlns:mx="library://ns.adobe.com/flex/mx"
        creationPolicy="all"
        >
        <fx:Script>
            <![CDATA[ 
                import mx.containers.Form;
                import mx.containers.Panel;
                import mx.controls.Label;
                import mx.controls.NumericStepper;
                import mx.controls.RadioButton;
                private var theChar:String = "B";
                protected function btnAdd_clickHandler(event:MouseEvent):void
                    var theForm:Form = new Form();               
                    theForm.label = theChar;
                    //1. Label
                    var myLabel:Label = new Label();
                    myLabel.text = "My Label";
                    myLabel.width=120;
                    theForm.addChild(myLabel);
                    //2. Numeric Stepper
                    var myNumStepper:NumericStepper = new NumericStepper();
                    myNumStepper.id = "numPointHigh" + theChar;
                    myNumStepper.name = "numPointHigh" + theChar;
                    myNumStepper.minimum = 0;
                    myNumStepper.maximum = 120;
                    myNumStepper.width = 50;
                    myNumStepper.height = 30;
                    theForm.addChild(myNumStepper);
                    //3. radio button
                    var myRadioButton:RadioButton = new RadioButton;
                    myRadioButton.id = "myRadioButton" + theChar;
                    myRadioButton.name = "myRadioButton" + theChar;
                    myRadioButton.label = "my radio button";
                    myRadioButton.selected = true;
                    theForm.addChild(myRadioButton);
                    //4. Panel
                    var thePanel:Panel = new Panel();
                    thePanel.width = 300;
                    thePanel.height = 475;
                    thePanel.name=theChar;
                    thePanel.title = "My Profile Panel";
                    thePanel.setStyle("backgroundColor", "blue");
                    //add the form to the panel
                    thePanel.addChild(theForm);
                    //add the Panel to the list control
                    myList.addChild(thePanel);
                protected function btnClear_clickHandler(event:MouseEvent):void
                    var numChildren:Number = myList.numChildren;
                    for(var i:Number=numChildren - 1; i > -1; i--){
                        myList.removeChildAt(i);
            ]]>
        </fx:Script>
        <mx:VBox width="100%">
            <mx:List id="myList" />
            <mx:Button id="btnAdd" label="Add a panel" click="btnAdd_clickHandler(event)" color="black"/>
            <mx:Button id="btnClear" label="Clear" click="btnClear_clickHandler(event)" color="black" />
        </mx:VBox>
    </s:Application>
    ^ Run that. Click the "Add a panel" button. Then click "Clear". Then click the "Add a panel" button again. You will see the error:
    ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.
        at flash.display::DisplayObjectContainer/getChildIndex()
        at mx.core::Container/getChildIndex()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\core \Container.as:2833]
        at mx.containers::Panel/getChildIndex()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\co ntainers\Panel.as:1174]
        at mx.controls::RadioButtonGroup/breadthOrderCompare()[E:\dev\4.0.0\frameworks\projects\fram ework\src\mx\controls\RadioButtonGroup.as:600]
        at mx.controls::RadioButtonGroup/breadthOrderCompare()[E:\dev\4.0.0\frameworks\projects\fram ework\src\mx\controls\RadioButtonGroup.as:611]
        at mx.controls::RadioButtonGroup/breadthOrderCompare()[E:\dev\4.0.0\frameworks\projects\fram ework\src\mx\controls\RadioButtonGroup.as:611]
        at Array$/_sort()
        at Array/http://adobe.com/AS3/2006/builtin::sort()
        at mx.controls::RadioButtonGroup/http://www.adobe.com/2006/flex/mx/internal::addInstance()[E:\dev\4.0.0\frameworks\projects \framework\src\mx\controls\RadioButtonGroup.as:465]
        at mx.controls::RadioButton/addToGroup()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\c ontrols\RadioButton.as:574]
        at mx.controls::RadioButton/commitProperties()[E:\dev\4.0.0\frameworks\projects\framework\sr c\mx\controls\RadioButton.as:514]
        at mx.core::UIComponent/validateProperties()[E:\dev\4.0.0\frameworks\projects\framework\src\ mx\core\UIComponent.as:7772]
        at mx.managers::LayoutManager/validateProperties()[E:\dev\4.0.0\frameworks\projects\framewor k\src\mx\managers\LayoutManager.as:572]
        at mx.managers::LayoutManager/doPhasedInstantiation()[E:\dev\4.0.0\frameworks\projects\frame work\src\mx\managers\LayoutManager.as:730]
        at mx.managers::LayoutManager/doPhasedInstantiationCallback()[E:\dev\4.0.0\frameworks\projec ts\framework\src\mx\managers\LayoutManager.as:1072]
    I do not understand why I cannot re-add the radio button? If you comment out the code for the radio button (comment section #3.) you can re-add the panels easily. It is only happening when I have radio buttons being added to the form/panel.
    Why is this happening and how do I fix it? Why is this only happening to radio buttons? I thought I had this fixed

    ^ well, okay, but that's not the problem.
    here, i removed list and replaced with Panel. same problem on the radio buttons.
    <s:Application
        xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark" 
        xmlns:containers="com.dougmccune.containers.*"
        xmlns:mx="library://ns.adobe.com/flex/mx"
        creationPolicy="all"
        >
        <fx:Script>
            <![CDATA[ 
                import mx.containers.Form;
                import mx.containers.Panel;
                import mx.controls.Label;
                import mx.controls.NumericStepper;
                import mx.controls.RadioButton;
                private var theChar:String = "B";
                protected function btnAdd_clickHandler(event:MouseEvent):void
                    var theForm:Form = new Form();               
                    theForm.label = theChar;
                    //1. Label
                    var myLabel:Label = new Label();
                    myLabel.text = "My Label";
                    myLabel.width=120;
                    theForm.addChild(myLabel);
                    //2. Numeric Stepper
                    var myNumStepper:NumericStepper = new NumericStepper();
                    myNumStepper.id = "numPointHigh" + theChar;
                    myNumStepper.name = "numPointHigh" + theChar;
                    myNumStepper.minimum = 0;
                    myNumStepper.maximum = 120;
                    myNumStepper.width = 50;
                    myNumStepper.height = 30;
                    theForm.addChild(myNumStepper);
                    //3. radio button
                    var myRadioButton:RadioButton = new RadioButton;
                    myRadioButton.id = "myRadioButton" + theChar;
                    myRadioButton.name = "myRadioButton" + theChar;
                    myRadioButton.label = "my radio button";
                    myRadioButton.selected = true;
                    theForm.addChild(myRadioButton);
                    //4. Panel
                    var thePanel:Panel = new Panel();
                    thePanel.width = 300;
                    thePanel.height = 475;
                    thePanel.name=theChar;
                    thePanel.title = "My Profile Panel";
                    thePanel.setStyle("backgroundColor", "blue");
                    //add the form to the panel
                    thePanel.addChild(theForm);
                    //add the Panel to the list control
                    myContainer.addChild(thePanel);
                protected function btnClear_clickHandler(event:MouseEvent):void
                    var numChildren:Number = myContainer.numChildren;
                    for(var i:Number=numChildren - 1; i > -1; i--){
                        myContainer.removeChildAt(i);
            ]]>
        </fx:Script>
        <mx:VBox width="100%">
            <mx:Panel id="myContainer" />
            <mx:Button id="btnAdd" label="Add a panel" click="btnAdd_clickHandler(event)" color="black"/>
            <mx:Button id="btnClear" label="Clear" click="btnClear_clickHandler(event)" color="black" />
        </mx:VBox>
    </s:Application>
    Any idea why radio buttons causing this to happen? If I comment out the radio button, this works fine. This is really baffling me.
    The exception is thrown when the dynamically created panel (thePanel) is added to the main Panel (myContainer):
    myContainer.addChild(thePanel); <--- causes the exception!
    ^ Why would radio buttons make a difference on "thePanel"?? How can I enforce parent-child relationship, explicitly? .parent is read-only

  • Adding radio button to each row of an interactive report: possible or not?

    First of all let me explain what the point of this application is.
    I'm making an application that allows a user to select something out of a drop-down select list. This list is a list of categories for food. Let's say the user selects "Fruit".
    Then the page refreshes and shows an interactive report with a list of food that belongs to the category of fruit.
    Here's where I want to change things:
    I want the user to see the interactive report, but in this interactive report I want to add a radio button for each row.
    Then, when a certain type of food is selected (let's say "Strawberry") via the radio button, a text field should appear underneath the interactive report. In this textfield, the user can then add the weight of the food item, and then it will calculate how many carbs there are in the strawberry.
    All I really want to know is:*
    How do I add a radio button to each row of the interactive report, and how do I link this radio button to the value of that particular row?*
    Additional information:
    The item "P17_FOOD_CATEGORY" contains the following LOV:
    select FOODCATEGORYNAME as display_value, FOODCATEGORYID as return_value
    from FOODCATEGORY
    order by 1
    The "Food" region contains the following source:
    select a.FOODID, a.NAME, b.FOODCATEGORYNAME, c.STANDARDAMOUNT, c.NAME Unit
    from FOOD a inner join FOODCATEGORY b
    on a.FOODCATEGORYID = b.FOODCATEGORYID join FOODUNIT c
    on a.FOODID = c.FOODID
    where a.FOODCATEGORYID = :P17_SET_CATEGORY
    EDIT:
    PLEASE! Even if you don't know a good answer or if you are unsure about your answer, do post! Even suggestions would be welcome! I really need all the help I could get, even if it's not much.
    Edited by: 917169 on Feb 29, 2012 12:25 AM

    Hi there!
    I tried to change my code to your version, but then I get an error message:
    Error Unable to change Interactive Report query.
    ORA-12899: value too large for column "APEX_040100"."WWV_FLOW_WORKSHEET_COLUMNS"."DB_COLUMN_NAME" (actual: 32, maximum: 30)
    I don't quite know what this means. After doing a quick search on the internet, I know that this message should mean that the length of the value for the columns named "APEX_040100", "WWV_FLOW_WORKSHEET_COLUMNS" and "DB_COLUMN_NAME" is too long. But, I don't have these columns. I searched for them in my object browser, and they can't be found in any table related to my application.
    I'm sure your answer is the solution, but do you perhaps have an idea on how to solve this error? I checked the allowed maximum length for any column value that is related to my application, but they all have "50" set as the maximum value...
    Thank you for your reply. ;)

  • Adding Radio button & regular button to selection-screen without new gui

    Hi,
    Is there a way to add a radio button & regular button to a selection-screen without having to create a new gui, status and etc?
    Thanks,
    John

    Hi
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 4(30) TEXT-001 FOR FIELD P_1.
    SELECTION-SCREEN POSITION 1.
    PARAMETERS: P_1 RADIOBUTTON GROUP R1 DEFAULT 'X'.
    SELECTION-SCREEN END   OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 4(30) TEXT-002 FOR FIELD P_2.
    SELECTION-SCREEN POSITION 1.
    PARAMETERS: P_2 RADIOBUTTON GROUP R1.
    SELECTION-SCREEN END   OF LINE.
    Where the symbols text TEXT-001 and TEXT-002 have the label for the radiobuttons
    Max

  • ADDING RADIO BUTTONS IN REPORT NEAR MISS (EHSM-NWBC)

    Hi Experts,
    I am new to this EHSM Enhancements , I have a requirement to add 3 radio buttons in Report Near Miss ( EHSM-NWBC ), I am not understanding this BOPF firm Enhancement .So please provided me the required information .
    Thanks & Regards.
    Bhushan K.   

    Hi Bhushan,
    If you want to add 3 radio buttons, then first of all you have to append one field in EHHSSS_INC_BASIC_INFO_ALL_D structure with Fixed Domain values.
    Then you need to enhance EHHSS_INC_REC_NRM_QAF_V3_BSCI component Configuration.
    In that Configuration you need to add field with display type Radio Button Group, with column count 3.
    Kindly refer the following snap for the same.
    Thanks and regards,
    Chetan P. Patil

  • Adding few new fields to Custom infotype already developed

    Hi
    I have a requirement to add new fields to already available custom infotype.  I have to edit the PS structure and add few fields there and activate it. My question is, when I tick on "Generate Objects" after maintaining the PS structure, it will show pop up boxes asking whether to overwrite those objects already exists, shall I tick it or exit? Because the code is already written in the module pool for some validations,if I regenerate the objects, will the complete code will be erased?
    Please guide me in this regard.
    Thanks,
    Pallavi.

    Hi,
    Yes you need to regenerate objects, for changes to reflect.
    Since the objects are regenrated, the custom validation codes should get overwritten.
    To be on safe side, you can copy this infotype to a dummy infotype and regenerate the code and check.

  • Adding Radio Button in a Table

    Hi
    I need to create a table in which there has to be a column for radio button.
    The radio button will be used to set one row as default row (row corresponds to template in application) i.e i need to set 1 template as default.
    I feel that this cannot be done using SingleSelection of table since i also need to set initial value of radio from database (which will be the radio selected previously)
    Now how can this be implemented using RadioGroup.
    If it is possible in any other way please advice
    Thanks
    Husain

    You should be able ti use the SingleSelection feature. In your CO processRequest, identify the Row which need to be selected based on your business logic, and set the value of the Attribute mapped to Select Field to 'Y'.
    The Radio button select/unselect is controlled by the value of the mapped to Selection field('Y' - Select, N - unselect).
    Hope this helps.
    Srini

  • Adding radio button fields to structure

    Hi,
    I have two fields in a structure, which domain i need to use so that i will get radio button in SRM browser like yes and no.
    Regards
    Badari

    Hi Badri,
      It is not the domain that determines if a field has to be displayed as a radio-button or a checkbox.
    for example:
    parameters : p_cb type xfeld as checkbox.
    parameters: p_rb1 type xfeld radiobutton group RB1,
                p_rb2 type xfeld radiobutton group RB1.
    Regards,
    ravi

  • Adding Radio buttons to table cell

    Hi,
    Im a beginner in JAVAFX, i would like to add a radio button to table cell.
    Please could anybody help us on this.
    Thanks,
    Dhanraj

    Hi,
    Im a beginner in JAVAFX, i would like to add a radio button to table cell.
    Please could anybody help us on this.
    Thanks,
    Dhanraj

  • Adding radio buttons to an applet

    Hi
    Just wondering if anyone else has had the same problem?
    i'm using the following which seems to work when run in Internet Explorer but it doesn't want to display in Opera!?!
         private CheckboxGroup radioGroup = new CheckboxGroup();
         private Checkbox radio1 = new Checkbox("Int", radioGroup, true);
              public void init(){
              add(radio1);}Any ideas of why?
    Cheers

    why don't you use JRadioButton, compile and run this:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class BackGroundTest extends JFrame implements ActionListener{
    JRadioButton patternBrushedBlue=new JRadioButton("Brushed Blue",true);
    JRadioButton patternBlueWaves=new JRadioButton("Blue Waves");
    JRadioButton patternBlackThatch=new JRadioButton("Black Thatch");
    JRadioButton patternMetalWall=new JRadioButton("Metal Wall");
    JRadioButton patternCoffeeBean= new JRadioButton("Coffee Bean");
    JRadioButton patternPrairieWind= new JRadioButton("Prairie Wind");
    JRadioButton patternBlackRock = new JRadioButton("Black Rock");
    JRadioButton patternStainless = new JRadioButton("Stainless");
    JRadioButton patternStars = new JRadioButton("Stars");
    JRadioButton patternGrayStone = new JRadioButton("Gray Stone");
    JRadioButton patternGreenStone = new JRadioButton("Green Stone");
    JRadioButton patternOcean = new JRadioButton("Ocean");
    JRadioButton patternIron = new JRadioButton("Iron");
    JTextField wallBox = new JTextField(20);
    String wallPaper;
    public BackGroundTest(){
    getContentPane().setLayout(new BorderLayout());
    JPanel topPanel = new JPanel(new GridLayout(1,6));
    JPanel bottomPanel = new JPanel(new GridLayout(1,7));
    ButtonGroup b = new ButtonGroup();
    b.add(patternMetalWall);
    b.add(patternBrushedBlue);
    b.add(patternBlackThatch);
    b.add(patternBlackRock);
    b.add(patternCoffeeBean);
    b.add(patternPrairieWind);
    b.add(patternBlueWaves);
    b.add(patternIron);
    b.add(patternStars);
    b.add(patternGrayStone);
    b.add(patternGreenStone);
    b.add(patternStainless);
    b.add(patternOcean);
    patternBlueWaves.addActionListener(this);
    patternBlackThatch.addActionListener(this);
    patternBrushedBlue.addActionListener(this);
    patternCoffeeBean.addActionListener(this);
    patternPrairieWind.addActionListener(this);
    patternMetalWall.addActionListener(this);
    patternStainless.addActionListener(this);
    patternBlackRock.addActionListener(this);
    patternIron.addActionListener(this);
    patternGrayStone.addActionListener(this);
    patternGreenStone.addActionListener(this);
    patternStars.addActionListener(this);
    patternOcean.addActionListener(this);
    topPanel.add(patternBrushedBlue);
    topPanel.add(patternBlueWaves);
    topPanel.add(patternBlackThatch);
    topPanel.add(wallBox);
    topPanel.add(patternMetalWall);
    topPanel.add(patternCoffeeBean);
    topPanel.add(patternPrairieWind);
    bottomPanel.add(patternBlackRock);
    bottomPanel.add(patternIron);
    bottomPanel.add(patternStars);
    bottomPanel.add(patternGrayStone);
    bottomPanel.add(patternGreenStone);
    bottomPanel.add(patternStainless);
    bottomPanel.add(patternOcean);
    wallBox.setEditable(false);
    getContentPane().add(topPanel,BorderLayout.NORTH);
    getContentPane().add(bottomPanel,BorderLayout.SOUTH);
    pack();
    setVisible(true);
    }//BackGrounds
    public void actionPerformed(ActionEvent e){
    if (e.getSource()==patternBlueWaves)
    wallPaper="Blue_Waves";
    else
    if (e.getSource()==patternBrushedBlue)
    wallPaper="Brushed_Blue";
    else
    if (e.getSource()==patternBlackThatch)
    wallPaper="Black_Thatch";
    else
    if (e.getSource()==patternMetalWall)
    wallPaper="Metal_Wall";
    else
    if (e.getSource()==patternCoffeeBean)
    wallPaper="Coffee_Bean";
    else
    if (e.getSource()==patternPrairieWind)
    wallPaper="Prairie_Wind";
    else
    if (e.getSource()==patternBlackRock)
    wallPaper="Black_Rock";
    else
    if (e.getSource()==patternStainless)
    wallPaper="Stainless";
    else
    if(e.getSource()==patternStars)
    wallPaper="Stars";
    else
    if (e.getSource()==patternGrayStone)
    wallPaper="GrayStone";
    else
    if (e.getSource()==patternGreenStone)
    wallPaper="GreenStone";
    else
    if (e.getSource()==patternIron)
    wallPaper="Iron";
    else
    if (e.getSource()==patternOcean)
    wallPaper="Ocean";
    wallBox.setText(wallPaper);
    }//actionPerformed
    public static void main(String[] args){
         new BackGroundTest();     
    }//main()
    }//BackGrounds

  • Radio buttons on interactive report

    Hello all,
    I've added radio buttons to an interactive report. What would be the best way to submit the form when user selects the buttons?
    Thanks.

    Hi inka,
    inka wrote:
    Hello all,
    I've added radio buttons to an interactive report. What would be the best way to submit the form when user selects the buttons?
    Thanks.
    one of the way to submit the form is use apex.submit
    Check the example given below
    1) Assuming you have used apex_item.radiogroup to create radio buttons.
    sample sql query for interactive report
    select EMPNO,
          ENAME,
          JOB,
          MGR,
          HIREDATE,
          SAL,
          COMM,
          DEPTNO,
          apex_item.radiogroup(1, EMPNO) r
      from EMP
    2) Go to Report Attributes -> Edit Radio button column
        Under Column Definition
        Display Type : Standard Report Column
        Under Column link -> do the changes given below
        Link Text : #R#  // here R is my radio button column name, so select yours radio button column name.
        Target : URL
        URL : javascript:apex.submit({request:'TEST',set:{'P6_HIDDEN':#EMPNO#}});
         // here P6_HIDDEN is item where i am setting EMPNO to that column, if you want to set any value to any item that you want to use in process then create Hidden item with protected value no.
    or if you want to show confirm message before submitting the page then use apex.confirm in place of apex.submit .
    Hope this helps you,
    Regards,
    Jitendra

  • Problem with Radio Button using JDeveloper 10.1.2 and Windows 2008

    When adding Radio Buttons ("Yes and "No") to a swing application and putting them under a button group. Selecting "Yes" the "No" choice diappears

    JDev 10.1.2 is quite old, and was never certified for Windows 2008.
    No need to post multiple threads - same question as {thread:id=2271522}

  • Trying to create multiple lines of radio buttons on the same page. how do i do that??

    Greetings. I'm brand new to this, and am trying to create a form with multiple lines of radio buttons on a single page to send to my students.  How can I do this??  I currently have a table that I want the students to fill out and return, but every time I put radio buttons in, the form only allows selection of one of the 12 - I want students to be able to select one on each row.........

    Each group of three radio buttons for a row should have the same field name and different "Radio Button Choice" (see Options tab). So if you copy & paste the first row, be sure to rename the new ly added radio buttons.

  • Radio buttons in jinternalframe

    Hi, can anyone tell how add radiobuttons in a jinternalframe?, I don't the whole code, just part or a hint.

    Its no different adding radio buttons to a panel in a JInternalFrame than it is adding radio buttons to a panel in a JFrame. So read the JRadioButton API and follow the link to the Swing tutorial in "How to Use Radio Buttons" for an example.
    Or you can always search the forum for examples as well.

  • Adding new fields in Custom Infotype

    Hi,
    I need to change some fields of Custom Infotype. But project is already gone live for 1 country. will making changes to infotype affect for existing live country?
    Safe side....We are thinking Adding new fields in Custom Infotype. & displaying corresponding fields for countries in another tab
    & hiding the old tab.
    Please let me know procedure for  Adding new fields in Custom Infotype for displaying in new tab.
    Edited by: Sachin Thigale on Aug 23, 2010 7:04 PM
    Edited by: Sachin Thigale on Aug 23, 2010 7:05 PM

    Please search. Lot of Threads on this.
    Follow these steps.
    Go to Transaction PM01.
    2) Enter the custom Infotype number which you want to create (Should be a 4 digit number, start with 9).
    3) Select the u2018Employee Infotypeu2019 radio button.
    4) Select the u2018PS Structure Infotypeu2019.
    5) Click on Createu2026 A separate table maintenance window appearsu2026
    6) Create a PS structure with all the fields you want on the Infotype
    7) Save and Activate the PS structure
    8) Go back to the initial screen of PM01.
    9) Click on u2018Allu2019 push button. It takes a few moments.
    10) Click on u2018Technical Characteristicsu2019. Infotype list screen appears
    11) Click on u2018Changeu2019(pencil) button
    12) Select your Infotype and click on u2018Detailu2019 (magnifying glass) button
    13) Give u2018T591Au2019 as subtype table
    14) Give u2018T591Su2019 as subtype txt tab
    15) Give your subtype field as subtype field
    16) Save and come back to PM01 initial screen
    17) Click on u2018Infotype Characteristicsu2019 u2026 Infotype list screen appears
    18) Click on u2018Changeu2019 (pencil) button
    19) Click on u2018New Entriesu2019
    20) Enter your Infotype number and short text
    21) Here we have to set different Infotype Characteristics as per the requirement. (Better open another session with some standard Infotypeu2019s infotype characteristics screen and use as the reference to fill yours)
    22) Save your entries.
    23) Now the Infotype is created and ready to use.
    24) If you want to change the layout of the Infotype as per your requirementu2026
    25) In the PM01 initial screenu2026Select u2018Screenu2019 radio button and give 2000 as the screen name, then click on edit.
    26) In the next screen.. Select u2018Layout Editoru2019 and click u2018Changeu2019.
    27) Screen default layout appearsu2026here you can design/modify the screen..change the attributes of the fields..etc.
    28) Save and activate. (Donu2019t forget to u2018Activate at every level
    i think u have to select CI_INCLUDE while enhanceing the Standrad Infotype
    The above details are from the following link
    Re: How to add fields in custom infotype and update its screens

Maybe you are looking for

  • 2.1 Update what is fixes and what it F's up

    Wow, I was initially amazed at the performance bump of the 2.1 update this am. After updating to Itunes 8 it sent my phone and 6 coworkers phones into bricks or partial bricks, here is the thread: "I own one Iphone, my fiance one, and my five cowoker

  • How can I get Minecraft onto my Macbook Pro?

    How can I get Minecraft onto my Macbook Pro? It is 15 inch Retina display, and it is Version 10.9.1 . I download the game, log in and press play, but as soon as it finishes loading, the blue bar goes away and nothing else happens! It goes from this:

  • Dynamic XSLT Transformation for ABAP

    Hi Team, I have a simple requirement, but could not get it to work. Tried different posts but need some help. I have an input XML file as follows: <ITEM>    <ITEMQUALF>    <MATERIAL>    <UPC>    <VENDORMATERIAL> <ITEM> I created my internal table wit

  • CAD - Desktop Monitoring Console

    Hi All, We are tried to monitor the CAD server using "CAD Desktop Monitoring Console" .   We configured the snmp community "public" & restart the snmp service as mentioned in the CAD installation guide. I am getting the snmp timeout error while acces

  • I want to make the black list for phone call in as...

    I am in trouble, sometime some of the unwanted person call me, and it so bad for me. I want official and stable program free or pay all i want.