Hide radiobutton group

Hi
I maintained two radiobuttons one for uploading the data record and other generating a smartform in the standard selection screen.
And I have another set of radiobuttons below smartorm radiobutton.when I click on the smart form radiobutton only those suboptions  should be displayed.How can i do this. Pls Reply soon.

Hi,
Go through this piece of code as an example...
TABLES: MARA,
         EKKO,
         VBAK.
PARAMETERS: P1 TYPE C RADIOBUTTON GROUP GRP1 USER-COMMAND USER_SEL DEFAULT 'X',
             P2 TYPE C RADIOBUTTON GROUP GRP1,
             P3 TYPE C RADIOBUTTON GROUP GRP1.
SELECT-OPTIONS : S_MARA FOR MARA-MATNR MODIF ID MI1,
                  S_EKKO FOR EKKO-EBELN MODIF ID MI2,
                  S_VBAK FOR VBAK-VBELN MODIF ID MI3.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
  IF SCREEN-GROUP1 = 'MI1'.
    IF P1 = 'X'.
      SCREEN-INVISIBLE = '0'.
      SCREEN-ACTIVE = '1'.
      ELSE.
        SCREEN-INVISIBLE = '1'.
        SCREEN-ACTIVE = '0'.
    ENDIF.
     MODIFY SCREEN.
  ENDIF.
  IF SCREEN-GROUP1 = 'MI2'.
    IF P2 = 'X'.
      SCREEN-INVISIBLE = '0'.
      SCREEN-ACTIVE = '1'.
      ELSE.
        SCREEN-INVISIBLE = '1'.
        SCREEN-ACTIVE = '0'.
    ENDIF.
      MODIFY SCREEN .
  ENDIF.
  IF SCREEN-GROUP1 = 'MI3'.
    IF P3 = 'X'.
      SCREEN-INVISIBLE = '0'.
      SCREEN-ACTIVE = '1'.
      ELSE.
        SCREEN-INVISIBLE = '1'.
        SCREEN-ACTIVE = '0'.
    ENDIF.
      MODIFY SCREEN.
  ENDIF.
ENDLOOP.
Regards.

Similar Messages

  • Is there a way to show/hide a group of objects that will work in html5?

    I consider myself to have a fairly decent understanding of captivate and its functions but this recent issue has stumped me.
    I have a button with javascript attached to it that runs a typical if loop: (pseudo code to follow)
    if(variable = 1){
    show "group" and variable = 0; 
    } else{
    hide "group" and variable = 1; 
    Now normally, I would do this with single images, etc, and it would work fine.  You click the button (the image being unticked where it says "visible in output") and the image shows itself, then you click the button, and it hides.  Very standard stuff.
    My issue, is that captivate seems to let you name a group you make....but they have not given you any control of that group.
    Problem:
    I want a way to show and hide a group of objects by only clicking one button (when published to html5).
    I want to only have to reference the group and dont want to need to write a separate line of code for every single component that makes up that group (assuming the solution has to be coded).
    Is it even possible to control groups like this within captivate?
    Thanks!

    There is an adobe video that I think shows how to do exactly what you are asking.
    This is the video link:
    Lightbox-style Menu in Adobe Captivate 6 - YouTube
    At about 10min 50sec, it goes over creating a group from a number of single elements.
    At about 12min 30sec, it shows creating an action that turns the whole group on and another to turn the group off.
    When I did this myself, I used just one action that toggled the group on or off, but they show it as two actions. The idea is the same.
    I hope that helps. Apologies if I mis-understood the issue.

  • Hide the 'group tree' in crystal reports 2008

    Hey Guys,
    Please help me out.
    I need to hide the group tree which automatically shoots on the crystal report after execution.
    This is what i need to see. Only the report data (After report execution) i do not need to see the group tree under the tab 'main report' which appears on the left had side of the report.
    I know that in the previous version there was an option which would hide the group tree option under File>Report Option> uncheck Group tree.
    But there is no option here in CR 2008.
    Is there a code i need to insert somewhere in the report??
    Regards,
    Harvino

    Hi Chinmay,
    Thanks for your quick reply, I was late on the reply because I had a load of other things to do. Sorry for that....
    I am aware that we can click the toggle panel to remove the group tree.
    But a user wants to hide the group tree on 1st run,,,, that is causing the problem.....
    I cant seem to find an option we can disable group tree for the user, so that he may not view the group tree..
    Harvin

  • How to handle multiple radiobutton groups in a selection screen?

    Hi All,
    I have tabbed selection screen.
    * SELECTION SCREEN                                    *
    SELECTION-SCREEN BEGIN OF TABBED BLOCK TABB1 FOR 20 LINES.
    SELECTION-SCREEN TAB (20) TAB1 USER-COMMAND TAB1
                         DEFAULT SCREEN 1010.
    SELECTION-SCREEN TAB (20) TAB2 USER-COMMAND TAB2
                         DEFAULT SCREEN 1020.
    SELECTION-SCREEN END OF BLOCK TABB1.
    I have a radiobutton group in each of my tabs in the selection screen.
    SELECTION-SCREEN BEGIN OF SCREEN 1010 AS SUBSCREEN.
    SELECTION-SCREEN BEGIN OF BLOCK GUI WITH FRAME." TITLE TEXT-GUI.
    PARAMETERS: P_GUI1 RADIOBUTTON GROUP GUI,
                P_GUI2 RADIOBUTTON GROUP GUI,
                P_GUI3 RADIOBUTTON GROUP GUI,
                P_GUI4 RADIOBUTTON GROUP GUI,
                P_GUI5 RADIOBUTTON GROUP GUI,
    SELECTION-SCREEN END OF BLOCK GUI.
    SELECTION-SCREEN END OF SCREEN 1010.
    SELECTION-SCREEN BEGIN OF SCREEN 1020 AS SUBSCREEN.
    SELECTION-SCREEN BEGIN OF BLOCK REP WITH FRAME." TITLE TEXT-REP.
    PARAMETERS: P_REP1 RADIOBUTTON GROUP REP,
                P_REP2 RADIOBUTTON GROUP REP,
                P_REP3 RADIOBUTTON GROUP REP.
    SELECTION-SCREEN END OF BLOCK REP.
    SELECTION-SCREEN END OF SCREEN 1020.
    The issue is I want to be able to process only one of the tabs based on the checked radiobutton, but by default both the groups will have one of the radiobuttons checked. My piece of code is something like this.
    data : c_selected(1) value 'X'.
    case c_selected.
    when P_GUI1.
    * Process GUI 1
    when P_GUI2.
    * Process GUI 2
    when P_GUI3.
    * Process GUI 3
    when P_GUI4.
    * Process GUI 4
    when P_GUI5.
    * Process GUI 5
    when P_REP1.
    * Process Report 1
    when P_REP2.
    * Process Report 2
    when P_REP3.
    * Process Report 3
    endcase.
    How do I acheive this?
    Karthik
    Edited by: Karthik Boyapalli on Jun 16, 2008 9:10 PM

    The issue is I want to be able to process only one of the tabs based on the checked radiobutton, but by default both the groups will have one of the radiobuttons checked. My piece of code is something like this.
    You will be able to process the Radiobutton based on the tab. Use the sy-ucomm to determine the TAB that is selected on the selection screen. Then you can do further processing based on the radio button selected.
    Only one TAB will be available for User Interaction so there will be no issue with processing based on the radio button

  • How to use a radiobutton  group on table control ?

    In the selection screen ,i could define a variable as radiobutton group xxx .It's just so easy ,button when I want to use it in the table control through the the wizard ,but in the 4.6c version there is simply no such as radionbutton component in the panel .how could i do ?

    Hi Jack,
    It's a bit tricky to get the Radio Button in the Table Control. Only a few things needs to be done.
    1. Create a structure with an Checkbox field of TYPE CHAR 1.
    2. Create the Table Control with Wizard and mark the Checkbox field as CHECKBOX in one of the popup.
    3. In the Screen, right-click on the Checkbox field. You will get a list of options and there you should check the radio button option. You will get the selection as Radio button available across all the rows.
    You can check out the demo codes at SE38 by searching DYNPRO.
    Also have a look at this following link.
    http://www.esnips.com/doc/48bd95e8-facc-4932-b923-465ba59bad24/Table-Control
    Hope this will help.
    Thanks,
    Samantak.

  • At selection-screen on radiobutton group is triggering again on execute??

    Hi Friends,
    I want to show a Information pop up on selection of a radio button for that i have done
    AT SELECTION-SCREEN ON RADIOBUTTON GROUP RG.
      IF P_UPL = 'X'.
        CALL FUNCTION 'POPUP_TO_INFORM'
          EXPORTING
            TITEL = TEXT-017
            TXT1  = TEXT-015
            TXT2  = TEXT-016.
      ENDIF.
    I have two radio buttons and second radio button is P_UPL. Its working fine.
    But same event is getting triggered when execute button is pressed( i mean when report is executed ), which i don't want.
    How to restrict.
    Any help is greately appreciated.
    Thanks,
    Simha

    when the event is clicked for the first time .
    Initiate the before the popup is called .
    Now when again when you execute and p_upl = 'X'
    check the falg if value then don't call the pop-up .
    and clear the flag at that moment .
    So the Popup fun is ignored when you click execute event .
    SEE THE lines in bold .
    AT SELECTION-SCREEN ON RADIOBUTTON GROUP RG.
      IF P_UPL = 'X'.
    if v_flag is initial.
    v_flag = 'X'.
        CALL FUNCTION 'POPUP_TO_INFORM'
          EXPORTING
            TITEL = TEXT-017
            TXT1  = TEXT-015
            TXT2  = TEXT-016.
    ENDIF.
      ENDIF.

  • How to Create Dynamic RadioButton Group by Index

    Hi to all,
                 I would like to create an Questionaire.For that, I have created one Text View & Radio button Group by index at design time. which will fetch the values(ie Values are Questions & Ans options ) from R/3. since I need to fetch N number of values which must be mapped with Multiple Text views & Radio Button Groups i want to create Text view & Radio button Group by index UI Elements dynamically.How to do that?
    Please bring me an solution to this problem.
    Thanks in advance.
    Regards,
    Malar.

    Hi Murtuza,
                        Thanks for ur solution...
    anyway again i got an same error. Option button not enabled...
    so i have created a dynamic context node & map it with the RadioButton Group by Index...Now it s working fine...
    if(firstTime){
           //Test2Node.invalidate();
              for(int i=0;i<wdContext.nodeQuestions().size();i++)
                        IWDNodeInfo nodeinfo=wdContext.getNodeInfo();
                        /* This will add a ValueNode */
                        IWDNodeInfo customerNode=nodeinfo.addChild("Questionaire"+i,null,true,true,true,false,false,true,null,null,null);
                        /* This will add a Attribute to the above Node */
                        IWDAttributeInfo custAttr=customerNode.addAttribute("Quest"+i,"com.sap.dictionary.string");
                        IWDAttributeInfo custAttr1=customerNode.addAttribute("Options"+i,"com.sap.dictionary.string");
                        IWDNode NodeQuest = wdContext.getChildNode("Questionaire"+i,0);
                        NodeQuest.getCurrentElement().setAttributeValue("Quest"+i,wdContext.nodeQuestions().getQuestionsElementAt(i).getQues());
              //     NodeQuest.getCurrentElement().setAttributeValue("Options"+i,wdContext.nodeQuestions().getQuestionsElementAt(i).getOptionA());
                   IWDTransparentContainer tc = (IWDTransparentContainer)view.getElement("TransparentContainer");
                        IWDTextView tv =(IWDTextView) view.createElement(IWDTextView.class,"MyTextView1"+i);
                      tv.setText(wdContext.nodeQuestions().getQuestionsElementAt(i).getQues());
                      tc.addChild(tv);
                     IWDNodeElement NodeElt= NodeQuest.createElement();
                     NodeElt.setAttributeValue("Options"+i,wdContext.nodeQuestions().getQuestionsElementAt(i).getOptionA());
                  NodeQuest.addElement(NodeElt);
                   IWDNodeElement NodeElt1= NodeQuest.createElement();
                                   NodeElt1.setAttributeValue("Options"+i,wdContext.nodeQuestions().getQuestionsElementAt(i).getOptionB());
                                   NodeQuest.addElement(NodeElt1);
                   IWDNodeElement NodeElt2= NodeQuest.createElement();
                                   NodeElt2.setAttributeValue("Options"+i,wdContext.nodeQuestions().getQuestionsElementAt(i).getOptionC());
                                   NodeQuest.addElement(NodeElt2);
                   IWDNodeElement NodeElt3= NodeQuest.createElement();
                                                  NodeElt3.setAttributeValue("Options"+i,wdContext.nodeQuestions().getQuestionsElementAt(i).getOptionD());
                                                  NodeQuest.addElement(NodeElt3);
                   IWDRadioButtonGroupByIndex rbg = (IWDRadioButtonGroupByIndex)view.createElement(IWDRadioButtonGroupByIndex.class,"RBG1"+i);
                             rbg.bindTexts("Questionaire"i".Options"+i);     
                             //IWDRadioButton rb = (IWDRadioButton)view.createElement(IWDRadioButton.class,"RBG1"+Iter);
                             //rb.bindText("Test2.RadioTest");          
                                tc.addChild(rbg);
                 This s the code....
    Thank you. anyway
    Regards,
    Thenmalar

  • How to hide the Group Tree in WPF viewer

    I am trying to hide the GroupTree when I run a report, I would like to be able to turn this feature on for a few reports, however; I will normally like to hide the groups.
    Your help will be highly appreciated

    Are you using the CR4VS2010 beta? If so check the readme and change your subject line then search.
    See this link for more info on Beta release: Crystal Reports for Visual Studio 2010 Beta - read before posting
    Edited by: Don Williams on Jul 25, 2010 12:39 PM

  • Hide empty groups

    Hi, everybody.
    Is there a way to hide empty groups in a stacked chart bar view as in a pie chart view?
    I want to avoid something like this
    Layer 1, 0, 0%
    Layer 2, 0, 0%
    Layer 3, 5, 100%
    Layer 4, 0, 0%
    Layer 5, 0, 0%
    But i don't found an option to hide that values.
    Thanks
    Luciano

    http://www.ralphjohns.co.uk/page5.html#_addons
    Some of these are from iChat 2 onwards.
    Some of those are now features in iChat.
    ChatFX for Instance is now Backdrops and Effects (Although some of those are restricted to Intels).
    Conference Recorder in also a iChat item now as are Animated icons
    iChat 4 can Auto accept.
    Go to the iChat Preferences > Alerts
    Pick the action (Receive Invite) and then choose the AppleScript item and then the Auto Accept.
    iChat 5 has an "In new Chat window Show (Last Chat)" The bit in the brackets is a drop down and this is found in the iChat Preferences > Messages.
    8:07 PM Tuesday; December 22, 2009
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • CRVS2010 Beta - How do you hide the Group Tree for Visual Studio 2010

    Would anyone know how to hide the group tree in the Crystal Reports viewer for Visual Studio 2010.  I have tried
    DisplayGroupTree="False" and found the property doesn't exist in the new version for VS 2010.  I have search in the designer options and found nothing.  Note this report is for ASP.net.
    Thanks
    Dave.
    Subject modified as per the sticky post at the top of this forum; [Crystal Reports for Visual Studio 2010 Beta - read before posting|Crystal Reports for Visual Studio 2010 Beta - read before posting;
    Edited by: Ludek Uher on Sep 15, 2010 8:55 AM

    A simple search using the search box in the top right corner of this web page would have come up with the following KBase as one of the 1st - if not the 1st hit (for once, we beat Google    ).
    [1183704 - How to display or hide the Group Tree in CrystalReportViewer control through code in Crystal Reports 2008|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333133383333333733303334%7D.do]
    - Ludek

  • Hide the group tree while previewing the report

    Post Author: sanjay_usa1
    CA Forum: General
    Hello! Everyone i would like to hide the group tree which comes in the report while previewing it when i preview the report each time the group tree in the left hand side appears everytime i know i can hide and unhide it from the toolbar in the upperside but i dont want it to dispaly the group tree while previewing it as default , Is it possible to do that.
    Pls Help out it will be a great help
    Regards,Sanjay

    Post Author: yangster
    CA Forum: General
    Under file -> optionsuncheck the display group tree that will remove the group tree from displaying by default

  • Dynamic Radiobutton Group By key in Web dynpro Java

    Hi I am making an online exam application in that there is a question and four options.  But when i am trying to create radiobuttons i could not bind options with radiobuttons. I tried using all three types of radiobuttons i.e single radiobuttons, group by index and group by key but the problem is the same
    for(int j=0;j<4;j++)
        IWDRadioButtonGroupByIndex radioButtonGroupByIndex = (IWDRadioButtonGroupByIndex)view.createElement    (IWDRadioButtonGroupByIndex.class,"RadioButtonGroupByIndex1"ij);
    radioButtonGroupByIndex.bindTexts("Questions.option"+wdContext.nodeQuestions().getQuestionsElementAt(i).getOption());
    radioButtonGroupByIndex.setColCount(1);
    transparentContainer.addChild(radioButtonGroupByIndex);
    The problem is I get the same set of options in all the questions.
    I am confused at what code should i write in bindTexts in groupby index and bindSelectedKey in groupby key
    Please help
    Swapnil Indulkar

    That's absolutely genius, Armin !
    This didn't strike my mind. Wonderful solution.
    However i have managed to achieve it in a bit complex way as compared to yours.
    (I have hard-coded it for 3 questions with 4 options each.)
    //Code in wdDoInit() of View
         g_questionNode = wdThis.wdGetAPI().getContext().getRootNode().getChildNode("Questions", IWDNode.LEAD_SELECTION);
         g_optionsNode = wdThis.wdGetAPI().getContext().getRootNode().getChildNode("Options", IWDNode.LEAD_SELECTION);
         for(int i=0; i<3; i++){
              g_questionNode.getNodeInfo().addAttribute("Question"+i,"com.sap.dictionary.string");
              g_questionNode.getCurrentElement().setAttributeValue("Question"+i, "This is QuestionText["+ i+"] ?");
              g_optionsNode.getNodeInfo().addAttribute("Option"+i,"com.sap.dictionary.string");
              IModifiableSimpleValueSet optionsSet = g_optionsNode.getNodeInfo().getAttribute("Option"+i).getModifiableSimpleType().getSVServices().getModifiableSimpleValueSet();
              for(int j=0; j<4; j++){
                   optionsSet.put("Q"+i+"O"+j, "This is optionText[" +j +"] for QuestionText[" + i + "]");
    //Code in wdDoModifyView()
        if(firstTime){
              IWDTransparentContainer rootContainer = (IWDTransparentContainer) view.getElement("RootUIElementContainer");
              for(int i=0; i<3; i++){
                   IWDLabel label = (IWDLabel) view.createElement(IWDLabel.class, "label_"+i);
                   rootContainer.addChild(label);
                   label.bindText(g_questionNode.getNodeInfo().getAttribute("Question"+i));
                   label.setDesign(WDLabelDesign.EMPHASIZED);
                   IWDGridData labelGridData = (IWDGridData) label.createLayoutData(IWDGridData.class);
                   labelGridData.setCellBackgroundDesign(WDCellBackgroundDesign.PLAIN);
                   labelGridData.setHAlign(WDCellHAlign.CENTER);
                   IWDRadioButtonGroupByKey rbgbk = (IWDRadioButtonGroupByKey)view.createElement (IWDRadioButtonGroupByKey.class,"rbgbk_"+i);
                   rootContainer.addChild(rbgbk);
                   label.setLabelFor("rbgbk_"+i);
                   rbgbk.bindSelectedKey(g_optionsNode.getNodeInfo().getAttribute("Option"+i));
                   IWDGridData rbgbkGridData = (IWDGridData) rbgbk.createLayoutData(IWDGridData.class);
                   rbgbkGridData.setCellBackgroundDesign(WDCellBackgroundDesign.PLAIN);
                   rbgbkGridData.setHAlign(WDCellHAlign.CENTER);
    This works fine too.
    With regards,
    Amey Mogare

  • Hide radiobutton in web

    Hi,
    I have layout in web (not exel web) with 2 columns :
    - Target 2007 (greyed)
    - Current month 2007
    The first one has period = # and the second one has period = variable (1,2....12).
    I activated the comment fonctionnality in line but it doesn't work. Indeed, the first
    column has a period with # and the second has lets say 4. In this case, the system posts the document on the # period which is wrong for me. I finally activated the comment fonctionnality in cell to be able to type a comment for period 4 but the system displays the radiobutton for the column greyed "Target".
    As it is not functionally relevant, do you konw a way to hide this radio button ?
    Thanks in advance

    You should use the same statement, if you want to hide radiobuttons. Change "Layout1-table" to id of radiobutton that you want to hide and do it in the cycle for every radiobutton.
    If you want to hide the column at whole, statements will be more complex.
    Generally, you should get object of table for layout, and iterate throught all rows, deleting cells, that not needed.
    All this is done in JS.

  • Checking of Radiobutton Group selection

    Hi,
    I have a screen wherein i have 3 Radiobuttons wrapped in radiobutton group and  2 input fileds. Whenever i select  1st radiobutton on the screen then 1st imput field should be enabled and the other field should be disabled.
    if i click second radiobutton then 2nd field should be enabled and first one should be disabled. if i click 3rd radiobutton then two of the fields should be enabled.
    I have tried using onClick event for radiobuttongroup but ended up in Portal Runtime Exception. May be, i'm not using the event in a correct way ?. Should we use onClick event of RadiobuttonGroup or is there any other way to achieve the same ? . Would be happy if you can send code snippet for reference
    Any ideas/help would be rewarded..
    Jojo

    HI,
    Try this
    <%@ taglib uri="tagLib" prefix="hbj" %>
    <%@ page import = "com.sapportals.htmlb.enum.EventTrigger" %>
    <%@ page import = "com.sapportals.htmlb.event.Event;"%>
    <hbj:content id="myContext" >
      <hbj:page title="PageTitle">
    <hbj:form id="myFormId" >
    <script>
    function process()
    var funcName = htmlb_formid+"_getHtmlbElementId";
    func = window[funcName];
    var inputfield1 = eval(func("txtMaterialNumberFrom"));
    if (!inputfield1.isEnabled) {
          inputfield1.setEnabled(true);
    function process1()
    var funcName = htmlb_formid+"_getHtmlbElementId";
    func = window[funcName];
    var inputfield1 = eval(func("txtMaterialNumberFrom"));
    if (inputfield1.isEnabled) {
    inputfield1.setDisabled(true);
    </script> 
    <hbj:inputField
    id="txtMaterialNumberFrom"
    type="string"
    maxlength="100"
    jsObjectNeeded="TRUE"/>
    <hbj:radioButtonGroup
    id="radioGroup"
    columnCount="1"
    selection="BOL">
    <hbj:radioButton
    id="BOLProducts"
    text="BOL Products"
    key="BOL"
    tooltip="Search BOL products"
    jsObjectNeeded="TRUE">
    <% radioGroup.getRadioButtonForKey("BOL").setClientEvent(EventTrigger.ON_CLICK, "process()"); %>
    </hbj:radioButton>
    <hbj:radioButton
    id="MOLProducts"
    text="MOL Products"
    key="MOL"
    tooltip="Search MOL products"
    jsObjectNeeded="TRUE">
    <% radioGroup.getRadioButtonForKey("MOL").setClientEvent(EventTrigger.ON_CLICK, "process1()"); %>
    </hbj:radioButton>
    </hbj:radioButtonGroup>
       </hbj:form>
      </hbj:page>
    </hbj:content>
    if you click on MOL the inputfield will be disabled.
    if you click on BOL the inputfield will be enabled.
    Message was edited by: Kirupanand Venkatapathi

  • Hide the group by item in the final output

    Hi All,
    I am using BIP version:10.1.3.4.1
    I have BIP publisher which is a group by report
    Group1
    item dept
    it1 d1
    it2 d2
    Can I not to display the Group1 field in the final output(but the field should be present in the .rtf file).
    Thanks in advance
    Regards,

    Sorry for the confusion.
    I have generating the report on the basis of Group1 field.
    in the RTF file I have code for
    Group1 <?VENDOR?>
    F <?for-each:current-group()?>
    I want to keep the Group1 the rtf file but do want not want to display in the output file.
    Is there any setting for the item where we can hide the item from the final output but the item will be present in the rtf file.
    Thanks & Regards

Maybe you are looking for

  • No active nametab exists for...

    Hi, I try to maintain BOM data by CSAP_MAT_BOM_MAINTAIN bapi. Everthing works ok when I use example code of this function module. But when it comes to terms deleting an item from BOM, I always get error : "No active nametab exists for CI_STPO". But i

  • I am trying to link to page in my document from the table of contents.  How can this be done?

    I am trying to link to page in my document from the table of contents.  How can this be done?

  • Installing  Repository Creation Utility (RCU) for OBIEE 11g

    Hello, We are working on installing the Oracle Business Intelligence Entreprise Edition Plus 11g (v 11.1.1.6.0) for a POC in our Company's network. We have to install the OBI Server and other server-side components on a IBM AIX (64-Bit) server; and t

  • Entry in /etc/hosts.allow for insecure VNC?

    I read the ssh wiki article which teaches to add an entry to /etc/hosts.allow for sshd.  I am know that tunneling vnc through sshd is the way to go security wise, however, there are cases where I need to switch on un-encrypted vnc for the purposes of

  • "This movie cannot be played on this computer."

    I was watching the movie with no problems and then Itunes froze. When I tried to restart the movie it was nowhere to be found. I had to search for it in Windows and located the movie in its downloaded folder. I tried contacting support regarding this