BDC not working in display no screen mode

Hi exparts,
I am facing a strange problem. I am creating or changing PIR ( transaction ME11, ME12) through BDC.
when i am running it in 'Display all screen mode' It is running fine and creating or changing the PIR.
But, when i am running it in 'Display no screen mode' It is not working. I have used call transaction of BDC and its OPTIONS parameter to export mode and default sixe. In the both cases the return message carry only success message.
Please advice where i am going wrong and how to run it in 'display no screen' mode.
Thanks in advance.
Regards,
abhshek sarkar

DId you try  OPT-RACOMMIT = 'X' ?
DATA: P_OPT TYPE CTU_PARAMS.
            P_OPT-DISMODE = 'N'.
           P_OPT-UPMODE = 'L'.
           P_OPT-RACOMMIT = 'X'.
CALL TRANSACTION tcode  USING BDC_TAB OPTIONS FROM P_OPT MESSAGES INTO MESSTAB.

Similar Messages

  • BDC not working in NO screen mode

    Hi All,
    We have a BDC in which we need to enter a multiple selection for a document field.
    For this we are using the table control concept.
    However, how do we fill in more than 8  single selections  (the number of input rows available on the screen)?
    We have tried to use the ok code "LINS" that inserts a line at a time. This is working perfectly in ALL screen mode.
    However, in NO screen mode what we observed is that the values get overwritten and only 1 document is eventually selected.
    Thanks & Regards,
    Sana.

    Hi,
    plz have a look at the below code...
    FORM bdc_data .
    Work area for data record.
      DATA : lwa_header1 TYPE t_header.
    Declaration of local variable.
      DATA : lv_index TYPE sytabix.
      IF NOT i_header[] IS INITIAL.
        v_item_cntr = 1.
        v_cond_cntr = 2.
        v_scale_cntr = 1.
        v_cong_flg = 2.
        LOOP AT i_header INTO wa_header.
          lv_index = sy-tabix + 1.
          CASE wa_header-rec_type.
            WHEN c_h.
    -- For header of contracts--
              PERFORM header_data_upload USING wa_header.
    --For items of contarcts--
            WHEN  c_i.
    If the number of lines in the line item screen exceeds
    14 then we need to use the newpage okcode for adding
    new line items
              IF v_item_cntr GE 15.
                PERFORM bdc_dynpro      USING 'SAPMM06E' '0220'.
                PERFORM bdc_field       USING 'BDC_OKCODE'
                                                      '=NP'.
                v_item_cntr = 2.
              ENDIF.
    For uploading the item data
              PERFORM item_data_upload USING wa_header.
    Read the internal table for next record
              READ TABLE i_header INTO lwa_header1 INDEX lv_index.
              IF lwa_header1-rec_type = c_h OR sy-subrc <> 0.
    if no more line items found then the data should be saved
                PERFORM bdc_dynpro      USING 'SAPMM06E' '0220'.
                PERFORM bdc_field       USING 'BDC_OKCODE'
                                                    'BU'.
    If there exists condition record for that line item
    then go to condition screen with OKCODE '=KO'
              ELSEIF lwa_header1-rec_type = c_c.
                PERFORM bdc_field       USING 'BDC_OKCODE'
                                         '=KO'.
              ENDIF.
    --for items conditions--
            WHEN c_c.
    Upload the condition data
              PERFORM conditions_data_upload USING wa_header.
    Read the internal table for next record
              READ TABLE i_header INTO lwa_header1 INDEX lv_index.
    If the next record is an item go back to item screen
              IF lwa_header1-rec_type = c_i.
                PERFORM bdc_dynpro      USING 'SAPMV13A' '0201'.
                PERFORM bdc_field  USING 'BDC_OKCODE'
                                         'BACK'.
    If the next record is header then save the data
              ELSEIF lwa_header1-rec_type = c_h OR sy-subrc <> 0.
                PERFORM bdc_dynpro      USING 'SAPMV13A' '0201'.
                PERFORM bdc_field       USING 'BDC_OKCODE'
                                        'BACK'.
                PERFORM bdc_dynpro      USING 'SAPMM06E' '0220'.
                PERFORM bdc_field       USING 'BDC_OKCODE'
                                                    'BU'.
    If there exists scale record for that condition
    then go to scale screen with OKCODE '=PSTF'
              ELSEIF lwa_header1-rec_type = c_s.
                PERFORM bdc_field       USING 'BDC_OKCODE'
                                          '=PSTF'.
              ENDIF.
    --for items Scales--
            WHEN c_s.
    Upload the scales data
              PERFORM scales_data_upload USING wa_header.
    Read the internal table for next record
              READ TABLE i_header INTO lwa_header1 INDEX lv_index.
    If the next record is condition record then go to condition
    screen
              IF lwa_header1-rec_type = c_c .
                v_cong_flg = v_cong_flg + 1.
                v_scale_cntr = 1.
                PERFORM bdc_dynpro      USING 'SAPMV13A' '0303'.
                PERFORM bdc_field  USING 'BDC_OKCODE'
                                         'BACK'.
    If the next record is header the go back to item screen
    and save the data
              ELSEIF lwa_header1-rec_type = c_h OR sy-subrc <> 0.
                PERFORM bdc_dynpro      USING 'SAPMV13A' '0303'.
                PERFORM bdc_field       USING 'BDC_OKCODE'
                                        'BACK'.
                PERFORM bdc_dynpro      USING 'SAPMV13A' '0201'.
                PERFORM bdc_field       USING 'BDC_OKCODE'
                                        'BACK'.
                v_cond_cntr = 2.
                v_scale_cntr = 1.
                v_cong_flg = 2.
                PERFORM bdc_dynpro      USING 'SAPMM06E' '0220'.
                PERFORM bdc_field       USING 'BDC_OKCODE'
                                                    'BU'.
    If the next record is item the go back to item screen
              ELSEIF lwa_header1-rec_type = c_i.
                PERFORM bdc_dynpro      USING 'SAPMV13A' '0303'.
                PERFORM bdc_field       USING 'BDC_OKCODE'
                                        'BACK'.
                PERFORM bdc_dynpro      USING 'SAPMV13A' '0201'.
                PERFORM bdc_field       USING 'BDC_OKCODE'
                                        'BACK'.
                v_cond_cntr = 2.
                v_scale_cntr = 1.
                v_cong_flg = 2.
              ENDIF.
          ENDCASE.           "CASE wa_header-rec_type.
    If the next record is header or no next record found then
    call the transaction
          READ TABLE i_header INTO lwa_header1 INDEX lv_index.
          IF lwa_header1-rec_type = c_h OR sy-subrc NE 0.
            v_cong_flg = 2.
            v_scale_cntr = 1.
            v_item_cntr = 1.
            PERFORM call_transaction USING wa_header2 .
            CLEAR lv_index.
          ENDIF.
        ENDLOOP.               "LOOP AT i_header INTO wa_header.
      ENDIF.                   "IF NOT i_header[] IS INITIAL.
    ENDFORM.                   "bdc_data
           Start new screen                                              *
    FORM bdc_dynpro USING pv_program LIKE bdcdata-program
                          pv_dynpro LIKE bdcdata-dynpro.
      CLEAR wa_bdcdata.
      wa_bdcdata-program  = pv_program.
      wa_bdcdata-dynpro   = pv_dynpro.
      wa_bdcdata-dynbegin = c_x.
      APPEND wa_bdcdata TO i_bdcdata.
      CLEAR wa_bdcdata.
    ENDFORM.                    "BDC_DYNPRO
           Insert field                                                  *
    FORM bdc_field USING pv_fnam LIKE bdcdata-fnam
                         pv_fval TYPE any.
      CLEAR wa_bdcdata.
      wa_bdcdata-fnam = pv_fnam.
      wa_bdcdata-fval = pv_fval.
      APPEND wa_bdcdata TO i_bdcdata.
      CLEAR wa_bdcdata.
    ENDFORM.                    "BDC_FIELD
    Declaration of local constants
      CONSTANTS : lc_tcode  TYPE tstc-tcode VALUE 'ME31K',
                  lc_n      TYPE ctu_mode   VALUE 'N'.
    Declaration of local variables
      DATA: lv_msg   TYPE string,
            lv_opt   TYPE ctu_params.
      lv_opt-defsize = c_x.
      lv_opt-dismode = lc_n.
      lv_opt-updmode = c_l.
      REFRESH i_messtab.
    Call the transaction to create the Purchasing Contracts
      CALL TRANSACTION lc_tcode USING i_bdcdata
                       OPTIONS FROM lv_opt
                       MESSAGES INTO i_messtab.
      IF NOT i_messtab[] IS INITIAL.
        READ TABLE i_messtab WITH KEY msgtyp = 'E'.
        IF sy-subrc EQ 0.
          CALL FUNCTION 'FORMAT_MESSAGE'
            EXPORTING
              id   = i_messtab-msgid
              lang = sy-langu
              no   = i_messtab-msgnr
              v1   = i_messtab-msgv1
              v2   = i_messtab-msgv2
              v3   = i_messtab-msgv3
              v4   = i_messtab-msgv4
            IMPORTING
              msg  = lv_msg.
          MOVE: p_wa_header-lifnr TO wa_error-lifnr,
                p_wa_header-evart TO wa_error-evart,
                p_wa_header-vedat TO wa_error-vedat,
                p_wa_header-ekorg TO wa_error-ekorg,
                p_wa_header-ekgrp TO wa_error-ekgrp,
                p_wa_header-epstp TO wa_error-epstp,
                p_wa_header-knttp TO wa_error-knttp,
                p_wa_header-bukrs TO wa_error-bukrs,
                p_wa_header-kdatb TO wa_error-kdatb,
                p_wa_header-kdate TO wa_error-kdate,
                p_wa_header-ktwrt TO wa_error-ktwrt,
                p_wa_header-waers TO wa_error-waers,
                p_wa_header-wkurs TO wa_error-wkurs,
                p_wa_header-inco1 TO wa_error-inco1,
                p_wa_header-inco2 TO wa_error-inco2,
                p_wa_header-ihran TO wa_error-ihran,
                p_wa_header-angnr TO wa_error-angnr,
                lv_msg            TO wa_error-msg.
          APPEND wa_error TO i_error.
          CLEAR wa_error.
        ELSE.
          READ TABLE i_messtab WITH KEY msgtyp = 'S'.
          IF sy-subrc EQ 0.
            CALL FUNCTION 'FORMAT_MESSAGE'
              EXPORTING
                id   = i_messtab-msgid
                lang = sy-langu
                no   = i_messtab-msgnr
                v1   = i_messtab-msgv1
                v2   = i_messtab-msgv2
                v3   = i_messtab-msgv3
                v4   = i_messtab-msgv4
              IMPORTING
                msg  = lv_msg.
            MOVE: p_wa_header-lifnr TO wa_success-lifnr,
                  p_wa_header-evart TO wa_success-evart,
                  p_wa_header-vedat TO wa_success-vedat,
                  p_wa_header-ekorg TO wa_success-ekorg,
                  p_wa_header-ekgrp TO wa_success-ekgrp,
                  p_wa_header-epstp TO wa_success-epstp,
                  p_wa_header-knttp TO wa_success-knttp,
                  p_wa_header-bukrs TO wa_success-bukrs,
                  p_wa_header-kdatb TO wa_success-kdatb,
                  p_wa_header-kdate TO wa_success-kdate,
                  p_wa_header-ktwrt TO wa_success-ktwrt,
                  p_wa_header-waers TO wa_success-waers,
                  p_wa_header-wkurs TO wa_success-wkurs,
                  p_wa_header-inco1 TO wa_success-inco1,
                  p_wa_header-inco2 TO wa_success-inco2,
                  p_wa_header-ihran TO wa_success-ihran,
                  p_wa_header-angnr TO wa_success-angnr,
                  i_messtab-msgv2   TO wa_success-ebeln.
            APPEND wa_success TO i_success.
            CLEAR wa_success.
          ENDIF.
        ENDIF.
      ENDIF.
      REFRESH i_bdcdata.
    ENDFORM.                    " call_transaction
    Regards,
    Nagaraj

  • BDC not working in MODE "N"

    Hi All,
    I have written a BDC for F-37, which is working fine in all screen mode
    but not working in "N" mode..
    P.S. I have BDC as the only option.
    Thanks in advance,
    Kalyan Venigalla.

    If you look at the documentation of CALL TRANSACTION you can pass BDC options which is of type CTU_PARAMS. In this assign 'X' to field 'RACOMMIT' and try to run the BDC in 'N' mode.
    DATA: OPT TYPE CTU_PARAMS.
    OPT-DISMODE = 'N'.
    OPT-UPMODE = 'L'.
    OPT-RACOMMIT = 'X'.
    CALL TRANSACTION 'F-37' USING BDC_TAB OPTIONS FROM OPT MESSAGES INTO MESSTAB.
    Thanks and regards,
    S. Chandramouli.

  • NB100 touchpad scroll bar stops working after exit full screen mode youtube

    I have few Toshiba laptops, satellite, and now netbook100.
    All of them share one problem, touchpad scroll bar:
    It will stop working after exit full screen mode in youtube.
    Here is how to reproduce the incident:
    1. using any mainstream browser, start playing a youtube video, click full screen button at the bottom right corner of the video.
    2. click on the [cross] to exit the full screen mode. (next to full screen button.)
    3. check if you scroll bar still functioning.
    4. a reboot will restore the function.
    Currently, Im on vista, I believe in XP you will have the same problem.
    Searching in google (touchpad scroll bar stops full screen youtube) will return more people share the same question but no answer.
    Environments: win xp all, win vista all.
    Windows all most updated driver, touch pad driver up to date.
    This is not a major tech problem but for a netbook, this is very annoying.
    If anyone have this problem or answers, please share it here.
    Thank you in advance.
    regards.

    I had the exact same problem on my laptop and after a lot of searching, I finally found the simplest solution that really works for me so here goes:
    Once you exit the full screen video and the scroll pad has stopped working, click once anywhere on the youtube page(just to unfocus from the video) and press the spacebar button on your keyboard twice.
    Et voila, your scroll pad should be working again. Beats the hassle of having to log off everytime.
    Hope this helps

  • Silverlight 5 WebBrowser Control - Is the SL5 WebBrowser control is set to work in IE7 mode only? I have a 3rd party web site i'm hosting and now they will not work with IE 7 Compatibility mode. Looks like this control can't detect I'm setup for IE 9.

    Silverlight 5 WebBrowser Control - Is the SL5 WebBrowser control is set to work in IE7 mode only? I have a 3rd party web site I'm hosting and now they will not work with IE 7 Compatibility mode. Looks like this control can't detect I'm setup for IE 9. I'm
    running IE 11 with registry hack for IE 9. I think the SL5 webbrowser control is set to work only in IE 7. can some one verify this or tell me how to set the WebBrowser control up to run either IE8, 9, 10 or 11? I have same issue with machines running IE 8
    and above. This Silverlight 5 application is running out of browser with the elevated privileges (hack) and at test certificates install in proper stores. This application has been running for 2.5 years. Vender switch on some changes a couple days ago that
    broke this application. Help!!

    Hi,
    It seems there is nothing to do with IE mode.
    Please make sure your link still can be accessed.
    The WebBrowser displays HTML content in applications running in a Silverlight 4 or later out-of-browser applications or in Silverlight 5 in-browser trusted applications only.
    For more infromation,please check link below:
    http://msdn.microsoft.com/en-us/library/system.windows.controls.webbrowser(v=vs.95).aspx
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • My ipod classic got wet back in August.. it seemed to work fine for about a month, but recently is not working at all..screen appeared to get cloudy and then it just stopped working. thanks.

    my ipod classic got wet back in August.. it seemed to work fine for about a month, but recently is not working at all..screen appeared to get cloudy and then it just stopped working. thanks.

    Most likely, water damage.
    You can try putting your iPod in a tupperware, half filled (maybe half inch) with rice grains, close the cover for about a week.
    If you have done this, as soon as it got wet, higher chances of success, now looks like the water moisture is getting to the LCD screen.
    Then you can always bring it to Apple Genius bar, for a an overhaul. (may cost you half the price of a new iPod classic.)

  • The "portable document format" icon is a Word 2010 icon, so selecting Adobe Reader as action does not work to display the PDF.

    In the Applications tab -- Content Type -- the "portable document format" icon is a Word 2010 icon (not Adobe), so selecting Adobe Reader or preview in Firefox as action does not work to display the PDF. I can see this Applications difference because my other Firefox laptop has the Adobe icon, and I can view PDFs. Essentially, a PDF is coming in as a Word document -- and the computer tries to open it up as a Word file.
    How do I get the correct PDF icon in the Applications list -- the same way it displays (and works) on my other laptop.

    Adobe PDF Plug-In For Firefox and Netscape 10.1.7 ?
    I think you need to add this to the list of applications and the action to take on the type of content. This can also be managed in the about:permissions page. [[Permissions Manager - Give certain websites the ability to store passwords, set cookies and more]]

  • My back button does not work because the prior screen does not appear in the history.  I therefore must go back to the blue screen and reload safari.  Apple tech support could not help.  Can anyone else help?

    After I installed mountain lion my back button frequently does not work because the prior screen does not appear iunder History.  Apple tech support was not able to fix the problem.  Does anyone have any suggestions?

    lbryan1987 wrote:
    I dont want the button problem solved i need to know how to restore the phone without using that button or going into settings
    You don't in the condition it's in. You will either have to get the phone replaced by Apple or pay a 3rd party to repair it.
    there seriously should be more than two ways to solve this other wise apple is useless and we will never buy another apple product.
    Seriously? It's physically broken!

  • Cached credentials are not working on the lock screen (Windows 7)

    Hello all,
    We are having a difficult time trying to troubleshoot a problem with credential caching seemingly not working on the lock screen for our laptop users. Users are instructed to logon to the laptop while connected to the domain to cache their credentials. The
    user then leaves the network, and is able to log in to the laptop using cached credentials. The laptop locks either due to a manual lock, or due to an inactivity timer. The user tries to relog and is presented with the error “no logon servers available to
    service the request.” Users are reporting the problem from both home and public networks. We have been able to recreate the issue by logging on the laptop while in the office and setting our internal wireless network to manually connect, and then simply clicking
    start > shutdown arrow > lock. Many users have reported that they were able to get back into the laptop after a hard shut down, but would be unable to log in again if they returned to the lock screen. One user has reported that selecting other credentials
    > switch user > other user while on the lock screen and then entering in his DC credentials would allow him to get back into the laptop. I was unable to recreate this workaround on our test machine. I also tried to logon using the switch user account
    with the “.\username” method to see if that would look for cached credentials. One user has reported that he was unable to hard shut down the computer to get back in. He also reported that he tried to pull the battery and give it time before trying again.
    We have set the value for “Interactive logon: Number of previous logons to cache” to 50. The status of “Interactive Logon: Require Domain Controller to unlock workstation” is disabled. We have tried to turn the Wi-Fi switch off and then back on while on
    the lock screen. Error logs that we think are related to the problem include – Event ID:5719, NETLOGON and Event ID:4343, NlaSvc error 0x4C6 and error 0x51
    I have a slightly sinking feeling it has something to do with NLA thinking that they are connected to a domain while on the lock screen, but this is pure speculation. Thanks for reading my post and any potential solutions are greatly appreciated! 

    I'd try them over here.
    Windows IT Pro forums on TechNet
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Got a replacement Ipod Touch 3rd Generation and backed up to store version on computer and now it will not work. Goes into restore mode but cant restore. Any suggestions?

    Got a replacement Ipod Touch 3rd Generation and backed up to store version on computer and now it will not work. Goes into restore mode but cant restore. Any suggestions

    What happens when you try to restore? Error message?

  • PSE11 Why does Sharpening not work in Quick or Guided Mode?

    I have used PSE 5 happily and greatly liked the auto sharpen feature. I have been forced to upgrade to PSE 11 due to Windows 8 incompatibility with 5.
    I am appalled to find that the sharpen feature, including auto, does not work in Quick or Guided modes. The small previews in Quick mode show the correct sharpening effect but clicking on them or using the slider does not transfer to the main image. I either have to go into full unsharp mask, which I hate for quick fixes, or use the 'adjust sharpness' option under 'filter' in Quick or Guided Mode, which increases sharpness by an unspecified amount on each click.
    Surely there si something wrong here. The feature is there so why doesn't it work?
    Any ideas would be welcome. If it isn't fixable I shall want a refund based on the product not being fit for purpose.
    Thanks
    dlgoodyear

    Thanks for confirming that it should work ok. I've now done the obvious and uninstalled/reinstalled and it's fine now.
    Dave

  • Xbox live not working in WPA/WPA2 personal mode.

    Xbox Live is not working in WPA/WPA2 personal mode. It does, however, work in WEP mode. I have 2 windows laptops on my wireless network. when I am on WEP, the laptop is stuck in a perpetual "Acquiring Network Address" state. When I have WPA/WPA2 enabled, my laptops work fine, but xbox live cuts in and out of detecting my network, and I cant even get close to connecting at all.
    So until I figure this out, I have to choose between WEP (xbox live working, and not PCs) WPA(PCs working, not xbox live) or unsecured (risky). what should I do?

    Thats strange topcat, i have exactly the same problem as you except that when i am in WEP encryption my xbox cant even see the extreme on the network and i cant even get it it to connect at all. In WPA mode the xbox sees the network but will not connect. I have rang xbox and they say that it should work and that the problem lies with Apple, although i dont believe this personally. In the meantime ive had to hardwire the xbox to the router which isnt why i bought the router. Disappointed
    Regards
    Stu

  • Form load rules are not working on display and edit forms

    Hi
    I have customized SharePoint 2013 list form using InfoPath 2013. I want to hide certain fields based on user group. I created rules on form load for that. These rules are working fine on New Form but are not working on display and edit form.
    What can I do?

    It could be because the value might have not changed ie, you might be checking for a particular value, the values might have got overwritten when the new form is saved, see if that value is blank or overwritten in display and edit forms.
    I would first check the form load rules and check those values again in Display form and edit form, if the values are not getting cleared/overwritten.
    It would be better if you could upload the screenprint.
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

  • HT5858 When I swipe up from the bottom of the screen to use control center I am not able to use the music controls for music or podcasts and music controls do not work on the lock screen either is anybody else having this problem???????

    When I swipe up from the bottom of the screen to use control center I am not able to use the music controls for music or podcasts and music controls do not work on the lock screen either is anybody else having this problem???????

    Not really sur easy you would be having that problem.  Mine works.  You might try RESET DEVICE
    Hold down the Sleep/Wake button and the home button together until the apple logo appears (ignore the ON/OFF slider) then let both buttons go and wait for device to restart (no data will be lost). Then try again and see if it makes a difference

  • BDC - not working in 'No Display' mode

    Hi Friends,
    I have written a BDC for TCode O3URV_SS0.I have used CALL TRANSACTION for that.For capturing messages I have used application log.
    In 'N' mode this BDC is not performing properly.For a new set of line item and  a header data it should save that  records and generate a document number.But in 'N' mode the BDC is working for 1st line item only.
    This BDC is working fine in 'A' mode.
    Please help me to solve this problem.

    Moderator message - Welcome to SCN
    But please search before asking - post locked
    Please read [Rules of Engagement|https://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement], How to post code in SCN, and some things NOT to do... and [Asking Good Questions in the Forums to get Good Answers|/people/rob.burbank/blog/2010/05/12/asking-good-questions-in-the-forums-to-get-good-answers] before posting again.
    Rob

Maybe you are looking for

  • How to create a full page background image that is fluid?

    I'm creating a website for my portfolio, and one of the things I wanted to have is a full page background image that the div tags are in.  I know there is a way to put it in via page properties, but that doesn't allow you to add CSS styles and I want

  • Error message KI249- Enter only one true account assignment for each cost

    Hi, When i released a billing to accounting tcode VF02, i encounterd this message: : You made assignments to several objects in CO( cost center, order, project etc). 2 of these have been created as true cost object. 1.There is no order assigned to sa

  • Logic Pro 8 usage

    Hey all, Simple question: can one copy of Logic Pro 8 be installed on multiple PC's?

  • IOS support for MPLS QoS as stated in RFC 3270 L-LSP

    Hi, does anybody know something about the degree of implementation of RFC 3270 (Multi-Protocol Label Switching (MPLS) Support of Differentiated Services), particularly on the classification based on Labels (L-LSP)? From what is detailed on the CCO it

  • "Checking In" tunes in iTunes

    Hi, Can someone please help? I have recently transferred my music files to an external hard drive. In the "advanced" option of iTunes I have changed the location in which I wish iTunes to look for the music files and specified the correct location on