Table view in EDIT mode

Hi Team ,
I created custom Result view which is bound to BOL entity.
Now i need to EDIT result list.I made  allRowsEditable       = "TRUE".
But still result list is coming in display mode only .
Pl help me on this.
Thanks in advance, Vijay

Hi Raj,
  Please check the below code in HTM page of my custom view it is wotking fine for me.
<%@page language="abap" %>
<%@extension name="thtmlb" prefix="thtmlb" %>
<%@extension name="chtmlb" prefix="chtmlb" %>
<%@extension name="bsp" prefix="bsp" %>
<%
  data: lv_xml    type string.
        lv_xml    = controller->CONFIGURATION_DESCR->GET_CONFIG_DATA( ).
%>
<thtmlb:areaFrameSetter toolbarButtons  = "<%= controller->gt_buttons %>"
                        maxButtonNumber = "14" />
<chtmlb:tableExtension tableId = "tv1"
                       layout  = "FIXED" >
<chtmlb:configTable xml="<%= lv_xml %>"
                    id="tv1"
                    navigationMode="BYPAGE"
                    onRowSelection        = "select"
                    table="//CONTEXTNODE/Table"
                    allRowsEditable = "TRUE"
                    downloadToExcel  = "TRUE"
                    personalizable        = "TRUE"
                    width="100%"
                    displayMode = "<%= controller->view_group_context->is_view_in_display_mode( controller ) %>"
                    headerVisible= "FALSE"
                    hasLeadSelection= "FALSE"
                    selectedRowIndex      = "<%= CONTEXTNODE->SELECTED_INDEX %>"
                    selectedRowIndexTable = "<%= CONTEXTNODE->SELECTION_TAB %>"
                    selectionMode         = "<%= CONTEXTNODE->SELECTION_MODE %>"
                    visibleFirstRow       = "<%= CONTEXTNODE->VISIBLE_FIRST_ROW_INDEX %>" />
   </chtmlb:tableExtension>
Hope this helps you.
Regards,
Lakshmi.Y

Similar Messages

  • Unable to open a view in edit mode

    Hi All,
    I have a Notes assignment block in the Account Overview page. It contains a text area and an EDIT button to modify the notes. Corresponding view and context node for this block are  BP_DATA/NOTES and NOTES respectively. Notes context node is bound to Text context node of the component controller.
    The issue is, when agent confirms an account, goes to Overview page and clicks on EDIT button of the Notes block, then, if the block already has some text, then it turns in to EDIT mode. But if Notes section is empty initially, then, on click of EDIT button will not make the view editable.
    During debugging, I can see that if notes section is already filled with some text, then there is an entity in the collection wrapper of the NOTES context node(also in the component controller collection wrapper). But if notes section is initially empty, then collection wrapper is empty(both view and component controller context nodes).
    My requirement is to make the notes section editable even if there is no text present in it initially. It will be very helpful if someone could give me suggestions on this issue.
    Thanks and Regards,
    Naren

    Hi Nitish,
    Thanks for your reply. Infact I only coded the event handler. In the first line, I am reading the entity from the collection wrapper of the context node. If it is bound, only then I can set it in EDIT mode.
    ob_entity ?= me->typed_context->notes->collection_wrapper->get_current( ).
    IF ob_entity IS BOUND.
    Sets the view in EDIT mode
    Now, ob_entity is null if there is initially no data in the notes section of the confirmed account. However, if notes is not empty, then, ob_entity is bound and I can set the view to edit mode. This is the issue.
    Regards,
    Naren

  • [iPhone] Not hiding cell accessories when table is in editing mode

    I've got a UITableView, and I want the cells to show disclosure indicators when the table is in editing mode... is there a way to do this? I've implemented this line
    - (UITableViewCellAccessoryType)tableView:(UITableView *)aTableView accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath {
    return UITableViewCellAccessoryDisclosureIndicator;
    but the accessories are still hidden. Is there a property of the table I'm missing somewhere?
    Thanks!

    You need to set
    cell.hidesAccessoryWhenEditing = NO;
    for the cell(s) you want in your
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    Andreas

  • How to get the view in editable mode with OCA button.

    Dear Experties,
    I am new to CRM WEB UI ,I have got the requirement to develope a view with OCA button on it and when i click on the button it should direct to the second view  and it should open with edit mode.
    The Source view is table type and target view is form type.
    I am able to achieve this but unable to get it in editable mode.
    I have added the below code in do_prep_output method but getting dump  at the line
    lr_entity ?= me->typed_context->EMAINLEG->collection_wrapper->get_first( ).
    The error message is
    Long text During a 'CAST' operation ('?=' oder 'MOVE ? TO')a type conflict occurred. The source type '\CLASS=CL_BSP_WD_MIXED_NODE' is not compatible for assigning with the target type '\CLASS=CL_CRM_BOL_ENTITY'.
    Please somebody help me on this
    lv_display = me->view_group_context->is_view_in_display_mode( me ).
      IF lv_display EQ abap_false.
      ELSE.
         me->view_group_context->set_view_editable( me ).
      ENDIF.
      DATA:    lr_tx           TYPE REF TO if_bol_transaction_context,
              lr_entity       TYPE REF TO cl_crm_bol_entity,
               lr_comp type REF TO ZL_BT131QI__BSPWDCOMPONEN_IMPL.
      lr_comp ?= me->comp_controller.
      Check lr_comp is BOUND.
      lr_entity ?= lr_comp->typed_context->BTADMINI->collection_wrapper->get_current( ).
      CHECK lr_entity IS BOUND.
      IF lr_entity->lock( ) = abap_true.
        me->view_group_context->set_view_editable( me ).
      ENDIF.
      lr_entity ?= me->typed_context->EMAINLEG->collection_wrapper->get_first( ).
      WHILE lr_entity IS BOUND.
        lr_entity->lock( ).
        lr_entity ?= me->typed_context->EMAINLEG->collection_wrapper->get_next( ).
      ENDWHILE.
    The following error text was processed in the system:
    Source type \CLASS=CL_BSP_WD_MIXED_NODE is not compatible, for the purposes of assignment, with target type \CLASS=CL_CRM_BOL_ENTITY
    Exception Class CX_SY_MOVE_CAST_ERROR
    Error Name MOVE_CAST_ERROR
    Program ZL_ZBT131QI_EMAINLEG_IMPL=====CP
    Include ZL_ZBT131QI_EMAINLEG_IMPL=====CM00C
    ABAP Class ZL_ZBT131QI_EMAINLEG_IMPL
    Method EH_ON_EDIT
    Line 33 
    Long text During a 'CAST' operation ('?=' oder 'MOVE ? TO')a type conflict occurred. The source type '\CLASS=CL_BSP_WD_MIXED_NODE' is not compatible for assigning with the target type '\CLASS=CL_CRM_BOL_ENTITY'.
    Thanks in advance!!!

    Hi,
    in CRM a context can consist of model nodes,  value nodes and, unfortunately, mixed nodes. While mixed nodes implement the same interface as model nodes they can't be casted into a CL_CRM_BOL_ENTITY directly. Instead you need to perform the following conversion in order to get the model node from the mixed node:
    DATA:  mixed_node     TYPE REF TO cl_bsp_wd_mixed_node,
               entity              TYPE REF TO cl_crm_bol_entity.
    mixed_node = me->typed_context->EMAINLEG->collection_wrapper->get_first( ).
    entity = ?= mixed_node->if_bsp_wd_ext_property_access~get_model_node( ).
    Best,
    Christian

  • Table Control in Editable mode

    Hello All,
    I have created an infotype which has a table control. But all the table control lines are in non-editable mode. I would like to have all the lines in editable mode.
    Kindly help out.
    Regards,
    shails

    If your internal table contains no record and when you are refering to the table control then all the lines will get disabled.
    Now you will be knowing the number of lines your table control displays in singe page...say 10 lines.
    So initially in the PBO append 10 initial lines to your itab. then set the property lines of the table control to the total lines of internal table.
    Now in pbo capture the user command page down and append 10 initial lines to your itab.
    Hope you got the idea.
    Now if your itab already has some records , then just set the lines as total record count of your internal table.
    Also change the property in the screen attributes for each field of the control

  • Assertion Failed with switching between editing mode of table view

    I'm writing an app that can switching between edit mode of a table view
    - in edit mode a new line appear at the bottom
    - out edit mode this line will disappear
    I used insertRowsAtIndexPath and deleteRowsAtIndexPath to achieve this effect, but then during testing, if I switching edit mode too frequently, I got an assertion failure
    Assertion failed: (cache->size >= g->size), function evictglyph_entry_fromcache, file Fonts/CGFontCache.c, line 836.
    It seems someone has also encountered this before, but I have found no solution yet. Anyone know how to fix it or work around it?

    Hi,
    Please check if you have entries on the table RSTRANRULE with:
    GROUPID   =  'space'
    GROUPTYPE =  'space' or 'S'
    REF_RULE  <> 'space'
    If there are inconsistent entries in the RSTRANRULE table such as:
           TRANID         *
           OBJVERS        *
           RULEID         *
           SEQNR          *
           GROUPID        00
           GROUPTYPE      space  or  GROUPTYPE    'S'
           RULETYPE       space
           REF RULE       *
    Delete these entries from the table.
    Activate the affected transformations.
    More info check the note 998730.
    9987300-ASSERTION_FAILED when calling or changing groups, group 00.
    Thanks,
    Walter Oliveira.

  • How to display table in editable mode

    hi all,
    I have displayed data using table wizard.Now i want to perform insert and delete row operations in table.but its displaying table in non-editable mode.
    can anyone tell me, what should i do to display it in editable mode.
    Thanks.

    Hi Swati,
    Please refer the link,
    How to display Table Control in Active mode
    Regards,
    Hema.
    Reward points if it is useful.

  • Table view in EHP1 CRM 7.0

    How to create a table view in ehp1 CRM.
    Is it the same way by creating a view and adding value node /model node then selecting view as table view with congigurable mode?

    Hi Anita,
    As per your requirement, AET table enhancement will be best suited to it.
    Use the help.sap.com link i gave in earlier reply to know more about  AET table enhancements.
    Now to get on to this task ,
    1) Use transaction AXTSYS and create an entry for Z component, give a name say ZAET_TBLEXT.
    and Save. The AET Table extension, then will use this component by default( if you select the radio button there) to create the views. Remember, just give any name you desire for the component. You dont need to create this componenet. AET extension wizard will create the component automatically.
    2) Open the overview page on which you would like to have the tableview as an assignment block. Since its a compititor info, i assume you want to place it on a BP/Account/Prospect. Competitor Overview Page or Opportunity Overview Page. Now chose the config button and once the Assignment blocks are highlighted, select the Header View( Compititor header or Opportunity header view depending on the overview page you are in) and config tool will open. Use the Display Enhancement button or create enhancement button and another popup will open which display the enhancements if any,
    3) On this Pop up you will see the AET table extensions assignment block. Use the Add table button. Follow the wizard and create the table, mention fields, translations etc. Also mention it as 1:n relation and so the table view. Chose the Standard buttons so you get all action buttons as well as inser, editlist, delete buttons etc.
    Once done, save and generate. This creates the view and also adds the component usage on overviewpage.
    Now all you need to do is just configure the overviewpag to pull the new tableview assignment block from Available to Displayed blocks.
    Note :
    1) this creates a Ztable , name same as mentioned/defaulted while AET table enahncement
    2) this create Z BOL entity with 1:n relation with Access Entity of OverviewPage , for example, BuilHeader if account overview page or BTAdminH if Opportunity overview page.
    3) creates BOL strucutre, handler class etc on its own.
    4) You do not need to do any coding,
    Thus in half an hour, you are done with Table view enhancement with Z table based entities.
    Before EhP1, we had to extend the BT/BP model with ZBOL and had to do a lot of thigs on our own. Almost 2 days job for an advance developer which is reduced to 15-20 minutes with zero coding required.
    If you have a sandbox or IDES system, i would recommand you to try it there frst, get confident and then do development on your development system.
    Remember ->
    1) AET Enhancement tool has to be started from WEB UI - which is generally runs on Customizing client, but creating AET table and enhancements is Workbench task. So if your customizing client is locked for workbench developments, then You must run the WEBUI on your workbench client ( use transaction wui ). It does not make any difference as far as development is concerned because your development its pure Workbench activity. later, you configure the Overview Page to pull the AET table view on your customizing client.
    2) Be confident and have well determined about the table design & about your table view design like the fields you need etc. because once you add the fields and mention the field type like Numeric, indicator,text etc, you can not change it later once the Tableview is generated. You can add more fields later and you can delete fields too but you can not change their type later.
    All the best.
    Thanks & Regards
    Suchiita
    Edited by: Suchita Phulkar on Jul 30, 2011 12:16 AM

  • Changing the background color of the row of the selected cell in table view

    How can I change the background color of the table row when user clicks on table cell in table view?
    Edited by: a_brar on May 5, 2012 11:12 PM

    You could apply the following css style (by defining a custom stylsheet with the following lines and loading it into your app).
    The last color sets the background color of the selected row while the table-view has focus (in this case to orange).
    .table-view:focused .table-row-cell:filled:focused:selected {
        -fx-background-color: -fx-focus-color, -fx-cell-focus-inner-border, orange;
    }There are quite a lot of subtleties in the css styling for the tableview (e.g. different colors for the selected row when the control has focus vs when it doesn't or when the user hovers over a selected row in an unfocussed tableview), which you may want to cater for when chaning the background color of the selected row in a table view. There is also alternate styling for when the tableview is in row selection vs cell selection mode. So you may want to look at customizing further based on the css styles in caspian.css in sdk/rt/lib/jfxrt.jar if you can understand the complex css there.

  • Edit mode simulation

    I'm trying to make my pages look like documents on Lotus Notes/Domino.
    That is : the page displays first with the texts, and no input fields, but with an Edit button at the bottom.
    Once the Edit button has been pressed, you can see the fields, and modify them. At the bottom of the page you have a Save button that saves the information you entered in the beans, and toggle back the read mode.
    The problem is that the EditMode bean can't be sotred in the session because then the edit mode would be toggled for the other pages you migh have open in other browser windows.
    Here is a snipset from my application :
    faces-config.xml
    <faces-config>
         <managed-bean>
              <description>
                   This bean is used to change the state from edit fields, to simulate read and edit modes.
              </description>
              <managed-bean-name>editMode</managed-bean-name>
              <managed-bean-class>com.seanergie.faces.EditMode</managed-bean-class>
              <managed-bean-scope>request</managed-bean-scope>
         </managed-bean>
    </faces-config>
    In the jsp :
    <f:view>
         <h:form id="editAdvertiser">
              <h1>Advertiser ${advertiser.name}</h1>
              <label><h:outputText value="Name"/></label>
              <h:inputText id="name" value="#{advertiser.name}" size="50" rendered="#{editMode.edit}"/>
              <h:outputText value="#{advertiser.name}" rendered="#{editMode.read}"/>
              <h:commandButton value="Edit" actionListener="#{editMode.switchMode}" rendered="#{editMode.read}"/>
              <h:commandButton value="Save" actionListener="#{advertiser.save}"/> rendered="#{editMode.edit}"/ >
         </h:form>
    </f:view>
    The edit mode bean :
    public class EditMode {
         private boolean edit = false;
         public EditMode(){}
         public EditMode(boolean edit){
              this.edit = edit;
         public boolean getEdit(){
              return edit;
         public void setEdit(boolean edit){
              this.edit = edit;
         public boolean isEdit(){
              return edit;
         public boolean isRead(){
              return !edit;
         public void switchMode(ActionEvent event){
              edit = !edit;
         public static void setMode(boolean editMode) {
              java.util.Map scopeMap = FacesContext.getCurrentInstance().getExternalContext().getRequestMap();
              scopeMap.put("editMode", new EditMode(editMode));
              //Following Doesn't work if the bean hasn't been referenced yet
              //FacesContext context = FacesContext.getCurrentInstance();
              //Application application = context.getApplication();
              //ValueBinding binding = application.createValueBinding("#{editMode}");
              //binding.setValue(context, new EditMode(editMode));
    }This works fine if the editMode bean has a session scope, but if it has a request scope (as it needs to be), it doesn't work anymore.
    The advertiser.name isn't updated, as the default value for the editBean is false (read mode), and the input tag for the name field as rendered="#{editMode.edit}", when the view is restored, the input tag is hidden, and so, the new name value isn't commited in the apply requested values phase.
    Is there a way to have this working ?
    This would be really nice, as it allows to have the same page for editing and displaying customer info for example, and it would greately reduce the amount of coding and maintenance for our project.
    Thank you,
    Sylvain

    I made it work using the MyFaces x:saveState tag :
    Just add <x:saveState
    value="#{editMode.edit}"/> in the page and it
    works :-)Hi Sylvain,
    Could you send me example your form?
    I'm working on almost same thing and had similar problem.
    I have several ideas in area editing data and ready to send you some of them.
    I'm creating form that used RowSet.
    For example I found solution for delete row from table by button that located outside dataTable.
    Vladimir

  • Access web app - Check if form is in edit mode

    I want to hide some fields when a form is in edit mode but I can't figure out how to check that. I tried
    That is not working. Is there another way to check the "state" of a form.
    Thanks, Mike

    Hi Mike,
    Unfortunately, there is no existing method that I'm aware of to know if a view in an Access 2013 web app is currently in Edit mode or view mode. I can sympathize with you on this one since I’ve had many occasions in my apps where I wanted to use something
    like this for various scenarios. I will pass along your feedback to the product team. You can set various properties on controls using macros, however, you cannot read control property values on views in Access 2013 web app views. The one exception is reading
    values of data entry controls.
    About the closest you can come to achieving you end goal would be to do a whole lot of extra work to control basic editing and save operations on that view. For example, you could create a new custom Action Bar button on your view with the same icon as the
    existing Edit Action Bar button. Slide that one into the position you want in the Action Bar. For the On Click event of this custom one, you put the view into Edit mode, and then show the controls that you want (which are hidden by default I presume in the
    On Load event of the view).
    If you want to experiment with this technique, I would suggest trying it out on a copy of the view. There are a couple of caveats to this approach that I should point out. First, don’t delete the existing built in Edit and Save Action Bar buttons (or any
    of the built in ones for that matter). Once deleted, you can never get them back. I am always in the habit of sliding ones I don’t want to the far right and then hiding them in the On Load event of the view. That way if I ever have a need in the future to
    bring it back, the button(s) is still there for my use and all I have to do is remove the macro that is hiding it.
    The second caveat is that once you put your view into Edit mode using your own custom Action Bar edit button and then click the save button to save the record changes, your hidden controls that you wanted to display on initial load will still show for the
    next record. That may not be the behavior you want. In that case you would need to also create your own custom save Action Bar button too. In that On Click event, you would use the Save Record macro action and you would re-hide the controls that you want hidden
    again for the next record since Access will automatically pop you back into view mode with the save operation. You’ll have to experiment with this if you want to try it. You might need to hide the controls before doing the Save Record action.
    Hope that helps,
    Jeff Conrad - Access Junkie - MVP Alumnus
    Senior Content Developer - Modern Assistance and Support Experience - Microsoft Corporation
    Author - Microsoft Access 2013 Inside Out
    Author - Microsoft Access 2010 Inside Out
    Co-author - Microsoft Office Access 2007 Inside Out
    Access 2007/2010/2013 Info: http://www.AccessJunkie.com
    This posting is provided "AS IS" with no warranties, and confers no rights.
    Use of included script samples are subject to the terms specified at
    http://www.microsoft.com/en-us/legal/Copyright/Default.aspx

  • Change from edit mode to display mode

    Hi ppl
    In transaction CO11N , I want to change the quantity (COWB-ERFME) column of a table control
    from edit mode to display mode. I created a badi implementation for WORKORDER_GOODSMVT.
    This gets triggered before the screen with quantity (COWB-ERFME) is displayed. How to code, to change the column from edit mode to display mode.
    I tried using transaction variant and it is working , but I want it to be plant specific. So I m trying badi.
    Need ur help to go abt the coding

    Hi
    U make sure a method of the BADI WORKORDER_GOODSMV is called in PBO while looping table control, if it's so u can use the statament LOOP AT SCREEN.ENDLOOP:
    LOOP AT SCREEN.
      IF SCREEN-NAME = ....
         SCREEN-INPUT = 0.
         MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
    Max

  • Edit mode in a table view with value node

    Hi experts.
    I'm trying to create a table view. This table is based on a structure that is filled with data with a RFC function module retrivening the data from another system.
    The problem is that i'm unable to set it editable. There is for exemple a check box that i need to check / uncheck, but the field is always read only. We don't even go through the method get_i_.
    In the do_prepare_output of the view, i have checked, as below, the view is in edit mode, but still i can't do anything.
    *DAtA lv_str type abap_bool.
    *lv_str = me->view_group_context->is_view_in_display_mode( me  ).
    Any ideas why ?
    Thanks for your time and help.
    Regards.
    AW

    Solved by sending X in IV_ALL_ROWS_EDITABLE.
    cl_thtmlb_util=>translate_selection_mode(
      exporting
      iv_selection_mode    = NODE->SELECTION_MODE
      iv_all_rows_editable = 'X'
      importing
      ev_selection_mode   = lv_cellerator_selectionmode
      ev_edit_mode        = lv_cellerator_editmode
      ev_selection_column = lv_cellerator_selectioncolumn ).
    Edited by: aw_crm on Jun 16, 2011 10:02 AM

  • Table Creation of new rows in editable mode

    Hello,
    I'm using Jdev11g.
    I create a JSF page with a table, I add a button connected to CreateInsert bindings.
    Everything works fine but I want that when a new row is created on the table, the new row must be in editable mode.
    Thank's

    Hi Max:
    According to what you described, it's really wierd. An ADF table is Surrounded by a panelCollection or not doesn't matter in terms of CreateInsert operations, I think. Also each step you said OK doesn't mean that step is 100% problem free towards your final goal. For example, when you drag and drop and ADF table onto a JSF page, you forget to turn on 'row selection', it will be OK, you won't get any error message, but later on when you find that you need to turn it back on, you have to go back to JSF page source, to manually added codes to do so.
    The simpliest solution and quickest one is to reinitiate a clean ADF project and do it all over again. It's simple straightforward in my view. Probably don't use PanelCollection first, just drop your ADF table on a form, or af:panelForm, but make sure your table and 'CreateInsert' button is surrounded by a form, otherwise, when you click on 'CreateInsert', nothing will happen. When everything works, then probably back it up and replace your form or af:panelForm with panelCollection. See how it goes.
    Thanks,
    Alex

  • Can't view photos in edit mode

    Hello,
    I just upgraded to iPhoto '08, and while I can view all my thumbnails ok, the photos themselves won't load at all in edit mode.
    I was using iPhoto to try to"jumpstart" my iWeb (per my other help request in another topic) when I noticed this.
    I have Leopard 10.5.2, iPhoto 7.1.2 and a 1.8 GHz processor and 512 MB RAM in my upgraded G4 tower. I tried deleting the preferences file, rebuilding the library file, opening in another account, etc, with no luck. I had even just erased my hard drive and cleanly re-installed Leopard, etc. with still the same problems in both apps. Do I just need to add more memory perhaps? I can't think of anything else...?Does Leopard require much more memory than Panther (which I had before) to run properly?
    Thanks,
    Paul

    I've had the what sounds like the exact same problem with iPhoto '08. I, too, have an upgraded 1.8 GHz G4 (AGP Graphics) running OS 10.5.3 (although the original installation was 10.5.1 and the same problem occurred before the software updates). When I try to edit a photo, the edit window opens but no picture appears. Clicking on the various editing tools and manipulating them (blindly, on a blank screen) shows that editing is actually taking place, and that changes can be saved.
    An earlier post of mine concerned the first problem I noticed since my OS and processor updates; namely, that the DVD player app won't work, but instead returns an error message saying that a valid device could not be found for playback. Several responses to that post seemed to suggest that the ATI Rage 128 video card might be the culprit and that it would need to be replaced. In the past week I've been on the phone or in email contact with tech support people at ATI, Sonnet, Other World Computing, and Apple, the last being the least knowledgeable of all of them, I'm sorry to say.
    The Sonnet guy personally runs a computer just like mine, but with the ATI Radeon 9800 Pro Mac video card. That item costs $209 at OWC. But ATI says it won't work because of the G4's 200 power supply.
    These folks think that the iPhoto problem would be solved by the new video card -- but I'm not yet convinced I want to spend that kind of money to find out. Most also say that the DVD Player issue would be fixed, although the OWC guy says it has nothing to do with it.
    So we're going blind here, with much conflicting expert opinion. I'll keep watching for further discussion.
    cc

Maybe you are looking for

  • Connecting a PC with an external wireless card

    I have an iMac and am connected wirelessly to the Internet through the Airport Extreme. My roommate has a new Dell Laptop with Windows XP and has been connected through ethernet to the base station. She just recently purchased an external wireless ca

  • Infotype authorizations at Company Code level

    The project I am working on has two company codes 1000 & 1100.  The user requirement is that a person working in one company should be able to make changes only to employee data of employee's in his/her company and to have only read authorizations fo

  • Adobe reader installation file is missing? (need an awser ASAP)

    Hi i work for a computer store and a coustmer called with a problem about his adobe reader. He said when he tries to open Adobe Reader it would say that the installation file was missing. So i figured it would be an easy fix right? just reinstall it

  • Help Needed With Conversion of Creative Player2 files to other programs

    THR AUG th I have some picture, graphic and text files that have in some way been saved in the Creative Player2 format on my computer. I need to associate these files with another program so that I can reoer the images and text. Can anyone tell me wh

  • Batch operation in function

    hey folks, I have a number of mcs labelled h 1-15. I want to have a function that if someone places an mc on it, it'll lock to the h mc centered. So I'm thinking I'll have a function similar to this (see below). Is there a way to run this without hav