Approve EVERY add, delete, modify by hand.

I've looked through the forum, but perhaps I haven't been using the right search terms...
Is there a way to change a setting on iSync such that I can approve EVERY modification by hand?
right now I have it set to notify me if ANY changes are to be made, but it will only tell me 2 additions, 1 deletion, and 3 modifications, but won't tell me WHICH 2 are being added, which 1 is being deleted, and WHICH 3 are being modified.
Of couse, the big concern is the deletions and the modifications. (Not so much the additions) There are plenty of cases where I want to make sure that what is being changed/deleted is what I really want: Accidental pushing of cell phone buttons while in pocket, mistaken changes, cell software deleting objects randomly.
The Conflict window would be great for reviewing these changes, but that only is invoked when it dectects items that have either both been changed or have not been synced.
Anyone have any ideas?
Thanks!
Various    

Newsletter? I don't actually have one. I've often thought of starting an online forum outside of Apple Discussions specifically for Mac OS X synchronization, but I just don't have the free time required to support it yet.
There is some publicly available documentation you can read concerning the Sync Services framework. This overview is a good place to start:
http://developer.apple.com/macosx/syncservices.html
Embedded in it are links to other developer material, but in order to get access to the tools you need to examine client registration information, the truth database, conflicts and synchronization history, you need to be a paid, active developer. My best guess is that the specific capabilities you require essentially don't exist at the moment, and it may be some time before they do.
There is an iSync 'roadmap' but it's not publicly available. If the development team itself were publicly accessible, they would never get any development work done because of the demand from users for help, feature improvements and information about upcoming releases. I am confident that they are well aware of user desires for such features as reviewable, non-conflicting record changes, but my best guess is that you will not see that sort of capability in iSync or other components of the framework for some time.
As you can imagine, a great deal of effort is going into the soon-to-be released Mac OS X 10.5 package, with the many changes coming to client, contact and other data synchronization.

Similar Messages

  • Creating (view, add, delete, modify) bsp application

    Hi gurus,
    Could anyone here please help. I am totally a new user in SAP and I would wish to create a small bsp application that could interact with my database in transaction se16.
    Below are the requirements.
    1) Allow user to<b> view </b>all Database Records
    2) Allow user to <b>add</b> records into the Database
    3) Allow user to <b>delete</b> records from the Database
    4) Allow user to <b>modify</b> records from the Database
    My table name in se16 is ZRM_PERIOD_CTRL
    and has 4 fields which are : CLASS, FISCPER3, FISCYEAR, ZG_PVER
    Can you please provide some direction on this?
    Thanks in advance
    Message was edited by:
            gary lee
    Message was edited by:
            gary lee

    Hi Gary,
    Lets start...!!!
    1) Create a new page <b>page.htm</b>
    2) In the<b> layout section</b> of the page put :
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <htmlb:content design="design2003" >
      <htmlb:page title="Modify table " >
        <htmlb:form>
          <htmlb:tray id     = "tray1"
                      title  = "Data Tray"
                      design = "BORDER" >
            <htmlb:trayBody>
              <htmlb:tableView id             = "TV"
                               table          = "<%= itab %>"
                               design         = "ALTERNATING"
                               onRowSelection = "MyEventRowSelection"
                               selectionMode  = "MULTILINEEDIT"
                               columnWidth    = "100%"
                               filter         = "SERVER" />
              <br>
              <br>
              <center>
              <htmlb:button id       = "Update"
                            text     = "Update"
                            onClick  = "onInputProcessing"
                            design   = "emphasized"
                            disabled = "false" />
              </center>
            </htmlb:trayBody>
          </htmlb:tray>
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    3) In the <b>TYPE DEFINITIONS</b> : 
    TYPES : itab_t type standard table of ZBANCTECPRD,
            wa_t type line of itab_t.
    4) Then in <b>page attributes</b> :
    itab                      TYPE     ITAB_T
    selectedrowindextable TYPE     INT4_TABLE
    wa                      TYPE     WA_T
    zindex                      TYPE     SY-INDEX
    5) In the <b>Event Handler</b> : 
    In <i><b>onCreate</b></i> :
    select * from ZBANCTECPRD INTO TABLE ITAB.
    In <i><b>onInputProcessing</b></i> :
    * To get the selected RowIndex...
    CLASS cl_htmlb_manager DEFINITION LOAD.
    DATA: tv          TYPE REF TO cl_htmlb_tableview,
          event       TYPE REF TO cl_htmlb_event,
          table_event TYPE REF TO cl_htmlb_event_tableview.
    FIELD-SYMBOLS <i> LIKE LINE OF selectedrowindextable.
    tv  ?= cl_htmlb_manager=>get_data( request = request
                                       name    = 'tableView'
                                       id      = 'TV' ).
    IF tv IS NOT INITIAL.
      table_event = tv->data.
      CLEAR selectedrowindextable.
      selectedrowindextable = table_event->prevselectedrowindextable.
      IF table_event->event_type EQ cl_htmlb_event_tableview=>co_row_selection.
        READ TABLE selectedrowindextable WITH KEY table_line = table_event->row_index TRANSPORTING NO FIELDS.
        IF sy-subrc EQ 0.
          DELETE selectedrowindextable INDEX sy-tabix.
        ELSE.
          APPEND INITIAL LINE TO selectedrowindextable ASSIGNING <i>.
          <i> = table_event->row_index.
          zindex = table_event->row_index.
        ENDIF.
      ENDIF.
    ENDIF.
    * get the button event.
    IF event_id = cl_htmlb_manager=>event_id.
      event = cl_htmlb_manager=>get_event( runtime->server->request ).
      IF event->name = 'button' AND event->event_type = 'click'.
        DATA : button_event TYPE REF TO cl_htmlb_event_button.
        button_event ?= event.
      ENDIF.
      CASE event->id.   " Use this for specifying code for different buttons.
        WHEN 'Update'.          " This is the button id.
          tv ?= cl_htmlb_manager=>get_data(
                 request      = request
                 name         = 'tableView'
                 id           = 'TV' ).
          IF tv IS NOT INITIAL.
            DATA : tv_data TYPE REF TO cl_htmlb_event_tableview .
            tv_data = tv->data.
    *get values from screen to work-area...get_cell_value is for tableView and get_data is for other objects like inputfield
            wa-scnotify     = tv_data->get_cell_value(
                                             row_index     = zindex
                                             column_index  = 1 ).
            wa-equipmentid  = tv_data->get_cell_value(
                                             row_index     = zindex
                                             column_index  = 2 ).
            wa-clientname   = tv_data->get_cell_value(
                                             row_index     = zindex
                                             column_index  = 3 ).
            wa-sla          = tv_data->get_cell_value(
                                             row_index     = zindex
                                             column_index  = 4 ).
            wa-reference_no    = tv_data->get_cell_value(
                                             row_index     = zindex
                                             column_index  = 5 ).
            wa-district_code    = tv_data->get_cell_value(
                                             row_index     = zindex
                                             column_index  = 6 ).
            DATA : temp_date(10) TYPE c, new_date TYPE d.
            temp_date  = tv_data->get_cell_value(
                                   row_index     = zindex
                                   column_index  = 7 ).
            CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL'
              EXPORTING
                date_external = temp_date
              IMPORTING
                date_internal = new_date.
            wa-malfuncstdate = new_date.
            temp_date  = tv_data->get_cell_value(
                                   row_index     = zindex
                                   column_index  = 8 ).
            CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL'
              EXPORTING
                date_external = temp_date
              IMPORTING
                date_internal = new_date.
            wa-malfuncendate = new_date.
            wa-ceid   = tv_data->get_cell_value(
                                             row_index     = zindex
                                             column_index  = 9 ).
            MODIFY itab INDEX  zindex FROM wa .
            MODIFY zbanctecprd FROM wa.
          ENDIF.
      ENDCASE.
    ENDIF.
    <u><i><b>This is the code to modify a table line.....Try and think on these lines to add or delete a table line....!!</b></i></u>
    Also note that i have used my own Ztable....you will have to modify the code a bit for your Ztable....!!
    <i>Do reward each useful answer..!</i>
    Thanks,
    Tatvagna.

  • Add/Delete/Modify Record form question

    I have a form set up in which I want the viewer to be able to
    select a job title from a list menu. From that selection, I want
    them to have the option to modify or delete that job selection or
    add a new job. WIth that I have a "Add Job" button, "Modify Job" or
    "Delete Job" button in the form for them to submit the form with.
    But how do I set it up so each button will submit to the
    appropriate page, (i.e the modify the selected job page, the delete
    the selected job page, or the create new job page"
    Thanks,
    Dave

    Okay-
    Maybe I need to take a step back or something, but here is
    what I now set up trying a slightly different approach:
    <cfif form.title GT 0>
    <cfif IsDefined("form.edit")>
    <cfinclude template="../Admincopy/UticaEditJob.cfm">
    <cfelseif isdefined("form.Delete")>
    <cfinclude template="../Admincopy/UticaDeleteJob.cfm">
    <cfelseif isdefined("form.Insert")>
    <cfinclude
    template="../Admincopy/UticaInsertPosting.cfm">
    </cfif>
    <cfelse>
    <cflocation url="UticaJobPostings.cfm?"> Please select
    a job to edit.
    <cfexit>
    </cfif>
    What I thought would happen is that if form.title had a
    value, it goes to the appropriate template. If it doesn't have a
    value, the page returns to the UticaJobPostings.cfm page which has
    the form field to select the posting.
    Initially, if I select a job listing, it will go to the
    appropriate template. If I don't choose a job listing, it still
    goes to the template with the missing value error.
    I am truly trying to figure this out and hate to keep posting
    you with this problem, but I am at my wits end here!!!
    Viewing what I have, what can I change???
    Dave

  • How to create global toolbar for some common operation like add, delete etc

    Hi,
    I want to create one global toolbar which contains buttons for common operations such as add, delete, modify etc.
    I have one globl .jspx page and in its center facet, I am loading my each screen's .jsff page.
    Now I want to create global toolbar on my .jspx page and when I click on toolbar's add button at that time it should call, currently loaded .jsff (loaded in center facet of .jspx page) backing bean's add method.
    How can I get the instance of currently loaded .jsff backing bean in my toolbar's backing bean and also I need it with its current state( means whatever UI components have values I should be able to get it in my instance).
    Regards,
    Devang

    Hi,
    since page templates don't support method expression arguments there are two options I can imagine
    - define a contract between the toolbar buttons and the availability of a managed bean available for the consumer page. If for example each page has a managed bean like <viewId>_toolbar then the Toolbar could reference exposed methods on this bean (which must be consistent)
    - Another option is to have the page passing in the EL string to access the iterator to operate on as an attribute of the template you use. Then you create a ValueExpression from it and call it for the button action events that you point to the managed bean you deploy with the template
    Frank

  • HT201250 Every time I add/delete music to itunes, does time machine backup my entire library?  If so can I limit backup just to added music?

    Usimg time machine-every time I add/delete music in itunes library does time machine backup entire file? If so,an I set it up to just backup added music?

    It shouldn't be backing up the whole thing again, just the changes.

  • How to connect, add delete and modify sqllite data base.

    dear friends,
    i am developing a stand alone project, in that i want to
    store the datas in the local machine using sql lite. Iam new to
    Flex. i know air and flash very well.. any body can help me, how to
    connect, add, delete and modify the data in sql lite. i want to
    store users option in local machine.. i got struct up. i have to
    finish my project...pls..
    thanks and Regards,
    Syed Abdul Rahim

    Hi,
    Please find details on how to access SQL Lite database from
    AIR applications at the URL below.
    http://livedocs.adobe.com/flex/3/html/SQL_01.html
    Hope this helps.

  • Using Java, How can I Update, Add, Delete nodes in XML Files.

    Hi,
    I want to store the student record (like Name, Age, school name, total mark etc.,) as nodes in the XMLfile. Also I should able to Update, Add, Delete any nodes (student record) in the XML file. How can I achieve this...using Java
    I am able to read the content of the xml file using xml-parser. But my problem is
    updating the xml file.
    pls suggest some solutions or links with " example source code"
    Thanks :-)

    There are 2 kinds of XML parsers : SAX and DOM. DOM seems to suit your need. You can use JAXP APIs to add, delete or change nodes or attributes.
    http://java.sun.com/webservices/jaxp/dist/1.1/docs/tutorial/TOC.html provides contents that would satisfy most of the needs.
    To save a DOM modified XML file use java IO APIs to write to the same file from which it was read using a Document object ( doc.getNodeValue() ).

  • How to view hidden users, add & delete?

    I administer eMacs and iBooks in an elementary school setting. Ideally, having hidden users like an administrator, would clean up login page and make the system more secure. The login page would not normally display the hidden login users until required.
    How do you view, add & delete hidden users?

    For now, I used a Library/Preferences/com.apple.loginwindow.plist file that has a "HideAdminUsers" command in it, and used it by simply replacing the standard com.apple.loginwindow.plist file that displays all users. Conversely, I switched them back when the task was done.
    It sounds as if you used this command to modify the .plist file:
    sudo defaults write /Library/Preferences/com.apple.loginwindow HideAdminUsers -boolean Yes
    As an aside, it can be reversed with
    sudo defaults write /Library/Preferences/com.apple.loginwindow HideAdminUsers -boolean No
    I don't think there is a keystroke to show the hidden admin usernames, but you can log into a hidden admin account with just a few more keystrokes. At the login screen, press the down-arrow to highlight one of the non-admin accounts, then hold down the option key and press Return. At the next window, enter your admin username (the shortname is fine) and enter your admin password. If there is only one non-admin account in the login window, then click the back button before pressing the down-arrow key.

  • Adding/Deleting T codes to roles. Finding the correct roles to add/delete T

    Hi Folks
    I would like solutions to 3 questions.
    1) How do you Add/Delete transaction codes to roles (ECC6)
    2) How do you find the correct roles to Add/Delete these T codes
    3) Has anyone any documentation and or screenshots on Versa, the Compliance Calibrator.
    We are using single roles within composite roles.
    Useful answers will be rewarded.
    Thank you very much
    Mark W

    Hi Mark,
    Typically the functional team or organisational design team will specify the roles required and the transaction assignment to those roles.  By working with them, you can understand what part of the business processes the roles represent and get an idea about which transactions go in what roles.  They will also be able to advise if a new role is required id a transaction is missing.
    The allocation of tx to roles should only be approved by role owners or appropriate responsible resource, and they should stipulate exactly which roles those tcodes go into.  If you have not been involved in the role design then it is not appropriate for them to expect you to make those kind of decisions.
    All of the recent compliance calibrator docs are on the service marketplace, I'm sure that the basis team on your current project will either give you their OSS ID to let you download them, or alternatively will download the docs for you if they have concerns about sharing the ID.  From memory, if you have security certification, you should be able to get an individual OSS ID from SAP.
    There is some high level info available from www.sap.com/grc and a brief overview of an install of CC5.1 here: http://www.*********************/sox_sod/sox_sod.htm
    Hope that helps
    Cheers
    Alex

  • To add/delete the rows in ALV report outpout

    Hi,
    Is there any way by which we can  add/delete the rows in ALV report output.
    Thanks
    Ankul

    Hi,
    Try out this way:
    data: i_modified TYPE STANDARD TABLE OF mara,"For getting modified rows
            w_modified TYPE mara.
    CASE e_ucomm.
          WHEN 'EDIT'.
          perform save_database.
          CALL METHOD ref_GRID->REFRESH_TABLE_DISPLAY.
        ENDCASE.
    FORM SAVE_DATABASE .
    data: i_selected_rows TYPE lvc_t_row,                "Selected Rows
          w_selected_rows TYPE lvc_s_row.
    * Getting the selected rows index
        CALL METHOD ref_grid->get_selected_rows
                    IMPORTING  et_index_rows = i_selected_rows.
    * Through the index capturing the values of selected rows
        LOOP AT i_selected_rows INTO w_selected_rows.
        READ TABLE it_tab INTO wa_it_tab INDEX w_selected_rows-index.
        IF sy-subrc EQ 0.
          MOVE-CORRESPONDING wa_it_tab TO w_modified.
          APPEND w_modified TO i_modified.
        ENDIF.
      ENDLOOP.
      MODIFY mara FROM TABLE i_modified.
    Thanks,
    Krishna

  • Control Enable/Disable of Save/Delete/Modify buttons

    Hi Friends,
    Have some one written a program how to enable disable the buttons on a for. Like i have 4 buttons
    1) Add New
    2) Save
    3) Modify
    4) Delete
    Now i want to control the enable/disable of these butons. Like when a blank record. ADD NEW, MODIFY, DLETE button shuld remain disable and ONLY SAVE button remains Enable. Similarly when there a change in record. MODIFY BUTTON is enabled.
    Similarly other functions. Have someone written the code for this control. I am trying but no desire results.
    Pliz Help,
    Imran

    Hello Imran
    You have to write a code like
    If <condition> the
    set_item_property(button,enable,property<true/false>);
    ELSIF <condition2>
    set_item_property(button,enable,property<true/false>);
    ELSIF <condition3>
    set_item_property(button,enable,property<true/false>);
    ELSE
    set_item_property(button,enable,property<true/false>);
    END IF;
    the condition can be checked :SYSTEM.form_status.
    Regards
    Mel

  • Urgent!!!! Add/Delete nodes

    Hi Friends!
    How to add/delete nodes at any level and update the base table whenever I add/delete nodes to the tree?
    Thanks

    There are 2 kinds of XML parsers : SAX and DOM. DOM seems to suit your need. You can use JAXP APIs to add, delete or change nodes or attributes.
    http://java.sun.com/webservices/jaxp/dist/1.1/docs/tutorial/TOC.html provides contents that would satisfy most of the needs.
    To save a DOM modified XML file use java IO APIs to write to the same file from which it was read using a Document object ( doc.getNodeValue() ).

  • How to use create, delete, modify butttons in a table

    hi all
    in my application i have emp table in my source view
    in that table i have inserted static data in columns i.e., empid, empname. i have 3 buttons create, delete, modify buttons in that table. when i press Create button it navigates to another view1 in which we have a emp form with create new emp button and labels empid, empname and 2 input fields.After filling the form when hit the create newemp button the form data should be displayed in the table.
    The same for Modify and delete.  i.e., when i select a particular empid row in my source view table and hit the modify button it should navigate to view2 in which the particular record form with data displays and after making necessary modifications the modified data should be display in the particular row .
    For delete button, when i select a particular record in the table and hit delete button it should be deleted from the table.
    any snippet of code is valuable
    Thanks in advance
    sravan

    Hi Sravan,
    I just need a clarification, are you getting the table data from the back-end system?
    On the second view, after the user input on click of the "Create New" or "Modify" button, update the back-end. Once the update is successful, fire a plug back to the first view and reload the table or execute the model again. The updated records will be fetched from back-end system.
    On click of "Delete" button, remove the record from the back-end and execute the model again.
    This holds good if you have the data fetched from the back-end.
    Regards,
    Santhosh.C

  • Is there a way to add/delete words from the predictive text ?

    Is there a way to add/delete words from the predictive text options that my iPhone is giving me? I'm using an iPhone 6 Plus with iOS 8.
    There are specific words that are popping up in the area right above the keyboard where it displays 3 word suggestions to choose from. This area seems to suggest words that I have typed before, I'd like to remove these words. Default seems to select the word in the center and when I'm typing fast on occasion it will recommend and select words that I don't need to use.
    Any help would be appreciated.

    999753 wrote:
    I know in 10g delete is added but in 9i i can only work with UPSERT( update, insert)
    is there a way to add delete into 9i MERGE? or somehow encapsulate it?
    Thank youI would suggest upgrading to a supported version of the database. 9i has been unsupported for many many years now.
    And to answer your question... to the best of my knowledge, there is no workaround. It works as it works.

  • Trace  to find who out who has deleted / modified  the attendance record

    Dear All
    Some one has deleted the attendence record of a particular user of previous month , so how i can track who has deleted / modified the same in salary slip it is showing 1 leave record for the same month, but while checking throught pa30 there is no record shown for the same . can you please tell me how to trace that and which tables are updated once we update the attendence and while processing the salary slip , from which table it picks the leave availaed data .
    Thx
    Shilpa
    Edited by: Shilpa on Nov 13, 2009 11:31 AM

    Hi Shilpa,
    You have to activate the audit Trail.
    RPUAUD00 isthe program to see the changes in infotypes records, but before that you have to configure T585A, T585B, T585C
    Regards,
    Kapil Kaushal

Maybe you are looking for

  • Z report for Stock agening

    Hi Expert i need to create a new Zreport for Stock Agening  that i have input. Material Posting Date Batch storage Location Plant Company code. but i dont know which output must come. Regard Nabil Edited by: sayednabil on Dec 10, 2010 8:28 AM

  • ICan I update Lr3 to recognize RAW files from Canon EOS T5?

    I just got a Canon EOS Rebel T5 and now I find out that Lightroom 3 doesn't recognize it's CR2 (RAW) files. The link below states that Lr 5.4 is the minimum Lr version required to read these files. Camera Raw plug-in | Supported cameras My question i

  • Doubt in exception!

    hi... i created a procedure for deleting a row in a table...and included an exception to handle the error if no data found... it works/display th message if i use raise_application_error...but it is not working when i use predefined exception..i.e No

  • PDF files are OCR'd and searchable in Preview, but Spotlight is unable to find

    I use Microsoft OneDrive to sync all of my scanned invoices, bills, and receipts for my business to my home and work computers.  At the office I have a newer HP desktop with Windows 8.1 with OneDrive built in natively.  At home I use a 4+ year old iM

  • Missing Mouse with new MP

    Has anyone else received there MP with a keyboard and no mouse? Not that I am a fan of the mini mouse but shouldn't it be in the top packaging or under the keyboard? Guess it's time to call apple care. Other wise the system is amazingly quite and fas