RH_INSERT_INFTY

I'm trying to create a new infotype 1028 for one of the object of the structure.
Unfortunatly I cannot use the function module RH_INSERT_INFTY... Is there any other function modules to be used?
  data : lit_1028 type standard table of hrp1028,
         lwt_1028 like line of lit_1028.
  lwt_1028-begda = c_begda.
  lwt_1028-endda = c_endda.
  lwt_1028-stras = c_stras.
  lwt_1028-hausn = c_hausn.
  lwt_1028-pstlz = c_pstlz.
  lwt_1028-ort01 = c_ort01.
  lwt_1028-land1 = c_land1.
  lwt_1028-infty = '1028'.
  append lwt_1028 to lit_1028.
  call function 'RH_INSERT_INFTY'
    exporting
*   FCODE                     = 'INSE'
      vtask                     = 'S'
*   ORDER_FLG                 = 'X'
*   COMMIT_FLG                = 'X'
    AUTHY                     = space
*   PPPAR_IMP                 =
*   OLD_TABNR                 = ' '
*   REPID                     = ' '
*   FORM                      = ' '
*   KEEP_LUPD                 =
*   WORKF_ACTV                = 'X'
    tables
      innnn                     = lit_1028
   exceptions
     no_authorization          = 1
     error_during_insert       = 2
     repid_form_initial        = 3
     corr_exit                 = 4
     begda_greater_endda       = 5
     others                    = 6.

HI GOOD
go through this link,which might help you to solve your problem.
http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PE/PE.pdf
thanks
mrutyun^

Similar Messages

  • RH_INSERT_INFTY in update mode not working properly

    I am calling the FM RH_INSERT_INFTY using IN UPDATE TASK in my Inbound part of my IDOC.
    The IDOC is getting generated successfully in the Outbound part but getting errorred out in the Inbound side.
    I have checked for the attributes of the FM where the type of FM is NORMAL FUNCTION MODULE.
    any pointers on this will be of immense help to me.

    This is the output of journalctl --all
    May 12 20:55:04 egidiolaptop /usr/lib/gdm/gdm-x-session[19552]: Activating service name='org.gnome.Terminal'
    May 12 20:55:04 egidiolaptop /usr/lib/gdm/gdm-x-session[19552]: Successfully activated service 'org.gnome.Terminal'
    May 12 20:55:26 egidiolaptop gnome-session[19563]: 1431456926458 addons.update-checker WARN Update manifest for {972ce4c6-7e08-4474-a285-3208198ce6fd} did not contain an updates property
    May 12 20:56:03 egidiolaptop systemd[19544]: [/home/egidio/.config/systemd/user/googledrive.service:2] Unknown lvalue 'Type' in section 'Unit'
    May 12 20:56:03 egidiolaptop systemd[19544]: Cannot add dependency job for unit network-online.target, ignoring: Unit network-online.target failed to load: No such file or directory.
    May 12 20:56:03 egidiolaptop systemd[19544]: Created slice -.slice.
    May 12 20:56:03 egidiolaptop systemd[19544]: Starting -.slice.
    May 12 20:56:03 egidiolaptop systemd[19544]: Started Google Drive mount.
    May 12 20:56:03 egidiolaptop systemd[19544]: Starting Google Drive mount...
    May 12 20:56:03 egidiolaptop fusermount[20547]: /usr/bin/fusermount: failed to unmount /home/egidio/Google Drive: Device or resource busy
    May 12 20:56:03 egidiolaptop systemd[19544]: googledrive.service: control process exited, code=exited status=1
    May 12 20:56:03 egidiolaptop systemd[19544]: Unit googledrive.service entered failed state.
    May 12 20:56:03 egidiolaptop systemd[19544]: googledrive.service failed.

  • RH_INSERT_INFTY is not working in BADI

    Hello.
    I've got the following issue:
    I'm using RH_INSERT_INFTY within a BADI, just to limit a record in INFTOTYPE 1000 and is not working, even i don't get any error messages.
    The thing is that i'm using the same function within a single report and works fine, it looks like the behaviour of the FM is different within a BADI (I guess).
    Any ideas?

    I'm locking the object in a previous form.....
    FORM infotipo_1010
                USING  p_plaza TYPE objektid
                       p_fecha TYPE datum
                       p_plvar TYPE plvar..
      DATA:    l_t_hrp1010         TYPE STANDARD TABLE OF p1010,
               l_t_aux_hrp1010     TYPE STANDARD TABLE OF p1010,
               l_wa_t_hrp1010      TYPE p1010,
               l_wa_t_aux_hrp1010  TYPE p1010,
               l_t_objects         TYPE STANDARD TABLE OF hrobject,
               l_wa_t_objects      TYPE hrobject.
      l_wa_t_objects-plvar = p_plvar.
      l_wa_t_objects-otype = 'S'.
      l_wa_t_objects-objid = p_plaza.
      APPEND l_wa_t_objects TO l_t_objects.
      CALL FUNCTION 'RH_READ_INFTY'
       EXPORTING
       AUTHORITY                  = 'DISP'
       WITH_STRU_AUTH             = 'X'
         infty                      = '1010'
       ISTAT                      = ' '
       EXTEND                     = 'X'
       SUBTY                      = ' '
       BEGDA                      = '19000101'
       ENDDA                      = '99991231'
       CONDITION                  = '00000'
       INFTB                      = '1'
       SORT                       = 'X'
       VIA_T777D                  = ' '
       TABLES
         innnn                      = l_t_hrp1010
         objects                    = l_t_objects
        EXCEPTIONS
         all_infty_with_subty       = 1
         nothing_found              = 2
         no_objects                 = 3
         wrong_condition            = 4
         OTHERS                     = 5
      IF sy-subrc = 0.
        SORT l_t_hrp1010 BY subty endda ASCENDING.
        LOOP AT   l_t_hrp1010
             INTO l_wa_t_hrp1010.
          l_wa_t_aux_hrp1010 = l_wa_t_hrp1010.
          AT END OF subty.
            l_wa_t_aux_hrp1010-endda = p_fecha.
            REFRESH: l_t_aux_hrp1010.
            APPEND l_wa_t_aux_hrp1010 TO l_t_aux_hrp1010.
            CALL FUNCTION 'RH_INSERT_INFTY'
               EXPORTING
                 fcode                     = 'CUTI'
                 vtask                     = 'B'
               ORDER_FLG                 = 'X'
               COMMIT_FLG                = 'X'
               AUTHY                     = 'X'
               PPPAR_IMP                 =
               OLD_TABNR                 = ' '
               REPID                     = ' '
               FORM                      = ' '
               KEEP_LUPD                 =
               WORKF_ACTV                = 'X'
               TABLES
                 innnn                     = l_t_aux_hrp1010
                 ilfcode                   = l_t_objects
              EXCEPTIONS
                 no_authorization          = 1
                 error_during_insert       = 2
                 repid_form_initial        = 3
                 corr_exit                 = 4
                 begda_greater_endda       = 5
                 OTHERS                    = 6.
          ENDAT.
        ENDLOOP.
      ENDIF.

  • RH_INSERT_INFTY not creating new records

    Hi All,
    I am using the FM RH_INSERT_INFTY to insert new records in HRP1000.
    See the below FM call :
    CALL FUNCTION 'RH_INSERT_INFTY'
         EXPORTING
             fcode               = 'INSE'
             vtask               = 'D'
              order_flg           = 'X'
              commit_flg          = 'X'
              authy               = 'X'
              PPPAR_IMP           =
              OLD_TABNR           = ' '
              REPID               = ' '
              FORM                = ' '
                keep_lupd           = keep_lupd
         TABLES
              innnn               = it_i1000
         EXCEPTIONS
              no_authorization    = 1
              error_during_insert = 2
              repid_form_initial  = 3
              corr_exit           = 4
              begda_greater_endda = 5
              OTHERS              = 6.
    But instead of creating new records it is changing the existing record in HRP1000.
    Actually I want to create new records with different long text and short text in different languages so in case object id and object type even the dates can be same but the language would be different.
    So I need to create a new records with a different language key and different short text. But this function module is changing the existing object short text,long text and language.
    Could you please reply at the earliest.
    Thanks & Regards,
    Poonam

    Hi,
    you're right, this function didn't create new record when i want to create a record with same object but have different language.
    you can use  this function for your problem :  RH_INSERT_INFTY_DIRECT
    i tried and it works.
    CALL FUNCTION 'RH_INSERT_INFTY_DIRECT'
      EXPORTING
        vtask                     = 'V'
      KEEP_LUPD                 =
      tables
        innnn                     = p1000
    EXCEPTIONS
       NO_AUTHORIZATION          = 1
       ERROR_DURING_INSERT       = 2
       REPID_FORM_INITIAL        = 3
       CORR_EXIT                 = 4
       BEGDA_GREATER_ENDDA       = 5
       OTHERS                    = 6
    Regards,

  • Unable to create org unit using RH_INSERT_INFTY

    All,
    We are using internal number range to create Org Units in the SAP System. However, there are some org objects present in a legacy SAP system that we need to upload to the new ECC system and create relationships for them .
    Following is my code for the RH_INSERT_INFTY function module :
    w1000-mandt = sy-mandt.
    w1000-plvar = '01'.
    w1000-otype = 'O'.
    w1000-OBJID = ''.
    w1000-infty = '1000'.
    w1000-ISTAT = '1'.
    w1000-begda = '20090101'.
    w1000-endda = '99991231'.
    w1000-langu = 'E'.
    w1000-short = 'HR_AST5'.
    w1000-stext = 'HR Assistant 5'.
    append w1000 to i1000.
    CALL FUNCTION 'RH_INSERT_INFTY'
      EXPORTING
       FCODE                     = 'INSE'
        VTASK                     = 'S'
       ORDER_FLG                 = 'X'
       COMMIT_FLG                = 'X'
      TABLES
        INNNN                     = i1000
    IF SY-SUBRC <> 0.
    ENDIF.
    I am however unable to create the org units as i get an error saying "Creation of object ID 00000000 is not allowed".
    I know im getting this error because im leaving the objid field blank, but I figured since  it is internal number range, i would have to give this as blank .
    Could somebody please help me figure out how to load these Organizational Objects and their Relationships ?
    Thanks,
    Amit

    Hi Amit
    try to use 'D' as a value of VTASK
    or use FM
    call function 'RH_OBJECT_CREATE'
        exporting
          langu                     = l_langu
          plvar                     = plvar
          otype                     = c_otype
        EXT_NUMBER                = '00000000'              "???
        SHORT                     = ' '
          stext                     = stext
          begda                     = begda
          endda                     = endda
          ostat                     = l_istat
          vtask                     = 'B'
        GUID                      =
        KEEP_LUPD                 = ' '
       importing
          objid                     = objid
       exceptions
          text_required             = 1
          invalid_otype             = 2
          invalid_date              = 3
          error_during_insert       = 4
          error_ext_number          = 5
          undefined                 = 6
          others                    = 7.
    In this FM u dont need to pass the Object ID and call function
    *---if the above steps are succesful update the database
      call function 'RH_UPDATE_DATABASE'
        exporting
          vtask              = vtask
      BUFFER_UPD         = ' '
      ORDER_FLG          = 'X'
      COMMIT_FLG         = 'X'
      CLEAR_BUFFER       = 'X'
      KEEP_LUPD          =
      WORKF_ACTV         = 'X'
       exceptions
         corr_exit          = 1
         others             = 2  .
    as VTASK 'B' will create the entry in buffer and it will only commit to database after the secondFM
    or u can try with 'D' as VTASK
    Hope this will resolve ur issue
    Regards
    Guds

  • On using RH_INSERT_INFTY to change HRP1000 status

    Dear Gurus,
    I'm using RH_INSERT_INFTY to change the status(ISTAT) of HRP1000.
    According to the FM documentation: In the case of a status change, however, note the following: The fact that  the record is deleted with the old status (except PLVO).
    But the result seems that, when I change the ISTAT by using RH_INSERT_INFTY,  the record with the old status is still there in the DB table HRP1000. I think the time constraint of HRP1000 must be set to 1.
    Could you please advise how could I delete the record with the old status in this case?
    Thanks & Best Regards,

    Thanks for the advice.
    Finally, I have to delete the record by myself  by calling FM RH_DELETE_INFTY_DIRECT.
    Even if I changed only the ISTAT field of the HRP1000 record, say, from 1 to 2, the old record with ISTAT = 1 would not be deleted after I inerted the ISTAT =  2 record.
    If we don't delete the record with ISTAT = 1 before hand, there will be 2 record in the HRP1000 table, all the fileds' value are the same except the ISTAT field.
    But it's also very tricky that, it seems that if I change the ISTAT and the BEGDA/ENDDA in 1 FM call of RH_INSERT_INFTY, the ISTAT = 2 record will be delimited too.
    Thanks anyway!

  • Exception "NO AUTHORIZATION" in FM "RH_INSERT_INFTY"

    Hi all,
              My requirement is to create the Infotypes by simulating the PP01 transaction. I used the FM RH_INSERT_INFTY. I am able to create the OBJECT Infotype and ADDRESS Infortype. But, When i am trying to create the Reletionship Infotype with Relation type A002. It is returning an exception as "NO AUTHORIZATION" and created an Infotype with relation B027, which i did ot ask for.
              Does creation of Relationship needs any authorization?. Please help me out in this...
             It would be gr8 help......
    Thanks & Best Regards,
       Vishnu

    Hi,
       After getting the no-authorization error, go to transaction SU53 and there u can see what authorization object is needed .you can take the snapshot of the SU53 and tell the basis consultant to give the particular authorization object to ur user.
    regards,
    Santosh Thorat

  • Error using FM RH_INSERT_INFTY

    Hi Guy's
    Im facing an issue while using FM RH_INSERT_INFTY to insert data in Infotype HRP1028
    its raising a exception "2-ERROR_DURING_INSERT "
    DATA : it_hrp1028 TYPE STANDARD TABLE OF HRP1028 INITIAL SIZE 0.
          it_hrp1028-PLVAR = '01'.
           it_hrp1028-otype = 'S'.
           it_hrp1028-objid = positionid.
           it_hrp1028-infty = '1028'.
           it_hrp1028-istat = '1'.
           it_hrp1028-begda = begda.
           it_hrp1028-endda = endda.
           it_hrp1028-build = build.
           APPEND it_hrp1028.
           CALL FUNCTION 'RH_INSERT_INFTY'
             EXPORTING
               FCODE                     = 'INSE'
               VTASK                     = 'S'
             ORDER_FLG                 = 'X'
             COMMIT_FLG                = 'X'
             AUTHY                     = 'X'
             PPPAR_IMP                 =
             OLD_TABNR                 = ' '
             REPID                     = ' '
             FORM                      = ' '
             KEEP_LUPD                 =
             WORKF_ACTV                = 'X'
             TABLES
               INNNN                     = it_hrp1028
             ILFCODE                   =
            EXCEPTIONS
              NO_AUTHORIZATION          = 1
              ERROR_DURING_INSERT       = 2
              REPID_FORM_INITIAL        = 3
              CORR_EXIT                 = 4
              BEGDA_GREATER_ENDDA       = 5
              OTHERS                    = 6
           IF SY-SUBRC EQ 0.
            CALL FUNCTION 'RH_UPDATE_DATABASE'
                EXPORTING
                  vtask     = 'S'
                EXCEPTIONS
                  corr_exit = 1
                  OTHERS    = 2.
           ENDIF.
    Thanks in advance for the help

    Hi everybody,
    Did you solve this issue? I am facing a similar problem with FM RH_INSERT_INFTY, it's also raising a exception "2-ERROR_DURING_INSERT". In my case, i'm trying to insert a new record for the infotype 1028 but not as a position (S), im trying to insert the record as object type 'O'. So, in this case I don't have the field hrp1028-build.
    Is there any other way to do this?

  • Get error in FM RH_INSERT_INFTY'

    Hi Guy's
    Im facing an issue while using FM RH_INSERT_INFTY to insert data in Infotype HRP9503
    its raising a exception "2-ERROR_DURING_INSERT "
    Regards,
    S.Velsankar

    Hi,
    Debug the form routine INSERT_INFTY in the FM. In the form routine, there are places where subrc = 16 is set. check the same.
    Sujay

  • FM RH_INSERT_INFTY lock by CL_HR_ALEOX_BADI in production system

    Hi Gurus,
    I am using FM RH_INSERT_INFTY in a Z.. Report in order to massive charge the organizational structure. But it's taking so long, and when I see in SM50 is performing in report "CL_HR_ALEOX_BADI==============CP" in production system.
    Does anybody knows if something has to be set up before execute the class CL_HR_ALEOX_BADI.
    Any help is very useful.
    Thanks in advance,
    Regards

    This is my entry in SM50.
    Regards

  • Using FM RH_INSERT_INFTY

    Hi,
    I want to use FM RH_INSERT_INFTY in background job. If there is no error this FM works as expected, but if an error comes, this FM terminates the background job without any error.
    How can i catch errors from this FM in background job?
    Regards,
    Ashish Gupta

    Hi Richard,
    Thanks a lot for your reply.
    I am inserting a record in IT1001 (cost centre relationship 1001).
    I have used this FM in method FLUSH of HCM Process and Forms Advanced Generic service. If i create a normal program inse38, this FM gives error in exception as sy-subrc = 2, which is correct. But FLUSH method is run in background with user WF-BATCH.
    Now what happens is, there is a FM HRCA_COBL_CHECK in this FM RGH_INSERT_INFTY. Now what happens is  HRCA_COBL_CHECK  give an error message KI 260. To display this error message it is looking for  screen which is not available in background and hence just terminates the processing of program without returning any error message or short dump.In HR_INFITYPE_OPERATION we have option to supress dialog but no similar option in this FM.
    regards,
    Ashish Gupta

  • Error message return in RH_INSERT_INFTY

    Do you have any idea on how to return error messages from FM RH_INSERT_INFTY? im looking for something similar to HR_INFOTYPE_OPERATION bapi return 2.

    Just handling its Exceptions should be enough as it does not have any RETURN tables like the other ones. This is how I did it sometimes ago, you might find it helpful to refer to the below code.
    FORM update_pd_infty  USING    pt_old_pnnnn TYPE piq_p1001_t
                                   ps_new_pnnnn TYPE p1001
                          CHANGING pv_ok        TYPE boole_d.
      DATA:
        wplog_record       TYPE wplog,
        wplog_record_tab   TYPE wplog_tab.
      FIELD-SYMBOLS:
        <ls_old_pnnnn>     TYPE p1001.
    * check the old & new infotype records are not passed blank
      CHECK:
         pt_old_pnnnn IS NOT INITIAL,
         ps_new_pnnnn IS NOT INITIAL.
    * convert the Old PNNNN structure to WPLOG structure
      LOOP AT pt_old_pnnnn ASSIGNING <ls_old_pnnnn>.
        CALL METHOD cl_hrrcf_infotype=>pnnnn_to_wplog
          EXPORTING
            pnnnn = <ls_old_pnnnn>
          IMPORTING
            wplog = wplog_record.
        APPEND wplog_record TO wplog_record_tab.
      ENDLOOP.
    * delete the existing records (at buffer level only at this stage)
      CALL FUNCTION 'RH_DELETE_INFTY'
        EXPORTING
          vtask               = 'B'
          authy               = abap_false
        TABLES
          innnn               = wplog_record_tab
        EXCEPTIONS
          error_during_delete = 1
          no_authorization    = 2
          delete_first_record = 3
          corr_exit           = 4
          OTHERS              = 5.
      IF sy-subrc <> 0.
        RETURN.
      ENDIF.
      CLEAR:
        wplog_record,
        wplog_record_tab.
    * convert the New PNNNN structure to WPLOG structure
      CALL METHOD cl_hrrcf_infotype=>pnnnn_to_wplog
        EXPORTING
          pnnnn = ps_new_pnnnn
        IMPORTING
          wplog = wplog_record.
      APPEND wplog_record TO wplog_record_tab.
    * insert/create the new record (at buffer level only at this stage)
      CALL FUNCTION 'RH_INSERT_INFTY'
        EXPORTING
          vtask               = 'B'
          authy               = abap_false
        TABLES
          innnn               = wplog_record_tab
        EXCEPTIONS
          no_authorization    = 1
          error_during_insert = 2
          repid_form_initial  = 3
          corr_exit           = 4
          begda_greater_endda = 5
          OTHERS              = 6.
      IF sy-subrc <> 0.
        RETURN.
      ENDIF.
    * update the database now for all buffer changes above
      CALL FUNCTION 'RH_UPDATE_DATABASE'
        EXPORTING
          vtask     = 'D'
        EXCEPTIONS
          corr_exit = 1
          OTHERS    = 2.
      IF sy-subrc <> 0.
        RETURN.
      ENDIF.
      pv_ok = abap_true.
    ENDFORM.                    " UPDATE_PD_INFTY
    Hope this helps.
    Cheers,
    Sougata.

  • Problems creating hrp1000/1001 infotypes with HR function RH_INSERT_INFTY

    Hi,
    I'm trying to use fm <b>RH_INSERT_INFTY</b> in an rfc to create Personnel Planning infotypes 1000 and 1001. (I.e. to create a position.) They are linked, so I've tried creating using update type (vtask) of 'D' (Dialog) as well as 'B' (Buffer update) to just update the buffer with the 1000 and 1001 before applying the update. Whichever way I try I get the error "Creation of object ID 00000000 is not allowed" when I call fm RH_INSERT_INFTY.
    Any ideas what I'm doing wrong please.
    Can you create an infotype 1000 and 1001 in one call to the fm ? Or do you have to call it twice, once for each infotype ?
    Thanks,
    Craig.

    Hi Craig
    To create an HR object, try the FM <b>"RH_CREATE_OBJECT"</b>. To create relation data you can use <b>"RH_INSERT_INFTY_1001".</b>
    Or you can make use of the HR BAPI written for this.
    For HR objects (comprising also PD) you can use the Business Object <b>"HRMasterDataReplica"</b>. It has a class method as <b>"SaveReplicaMultiple"</b> where you can pass your data to the interface.
    You fill <b>"BAPIHROBJ" and "BAPIHRINF"</b> mainly and other infotype-related parameters. e.g. for infotype 1000 <b>"PdObject"</b> (structure like p1000) and for 1001 <b>"PdObjectRelationships"</b> (structure like p1001).
    These are BO names, you can use the transaction code <b>"BAPI"</b> for more information.
    The BAPI for this method is discussed also at BAPI_HRMASTER_SAVE_REPL_MULT.
    <i>And as a last thing, let me introduce you the SDN forums pointing system: You can assign points to posts you find helpful while solving your question. You can reward points by clicking the yellow star icon at header of each reply post. You can reward;
    - one 10 points (solved)
    - two 6 points (very helpful answer)
    - many 2 points (helpful answer)</i>
    Kind Regards...
    *--Serdar

  • RH_RELATION_MAINTAIN/RH_INSERT_INFTY

    I am trying to insert a new HRP1001 Cost Center record  in a program and have been trying to use the above Function Modules.  The problem I am having is that when they encounter a CONFIG problem, like the Cost Center is not open for posting, instead of coming back with a Return-Code other than 0 they are giving me the message in real time and actually starting the Transaction (PO02) in the first case and exiting the program in the 2nd case.  Neither is an acceptable solution.  I want it to just let me know it didn't work and keep going.  Is this the way these are supposed to work?

    When you are calling your FM give an extra exception parameter ERROR_MESSAGE i.e. = 9.
    Now when some message of type I,S, W will be raised it will automatically be skipped. Messages E, A will trigger that error so you can react accordingly outside FM. Message X will dump the systme out.
    This way you can handle old function modules which don't use exceptions or simply call some message inside their body. This is a preety handful way to handle such situations.
    As for calling tcode PO02 I am not sure about that. If the processing requires that you will likely be branched to this tcode anyway.
    Regards
    Marcin

  • RH_INSERT_INFTY to insert HRP1018

    Hi Guys,
    How will I use this function to upload HRP1018 (Cost distribution). There are fields that I want to upload which reside in another table HRT1018 but is connected to HRP1018.
    I would appreciate your response.
    Thanks,
    ~Mark

    Has anyone tried to upload HRP1018 or P1610 (US Job attributes) using function modules or user routines?
    I would appreciate any responses.
    Thanks,
    ~Mark

Maybe you are looking for

  • Options for printer configurations have disappeared from Print Center

    Hello, Checked through the past messages but couldn't find anything appropriate to fix the problem. I'm totally baffled by this this one, but you guys have never let me down before, so here goes. I'm using 10.3.9 and a HP LaserJet 2200dn connected vi

  • Oracle query taking more time in SSRS

    Hi All we have report which connects to Orale DB . the Query for the datset is running in 9 Secs  in PL/sql developer  but the same query is taking more than 150 secs in SSRS. we are using Oracleclient type provider. Surendra Thota

  • Print Preview of Purchasing Documents too small

    Some of my users are having difficulties with reading the content of Purchasing Document Previews as the font size selected for the documents is quite small. We want to increase the size of text on the screen without changing the document font size.

  • How do i put my ringtones off of itunes and on my iphone 4?

    i have 2 ringtones on my itunes and i have no idea how to transfer them to my phone. I've synced my phone but they're still not there.

  • Error message asking to reinstall iTunes

    Every time I start iTunes on my computer, I get a message telling me the registry entries for burning CDs are missing and I should renstall iTunes, which obviously I have done several tiimes. Any ideas on how to make this go away?