Types of files accepted by different BDC methods

Hi,
Could you please tell me differnt file structures accepted by all the existing BDC methods and how to define the same in program ??
Thaks in advance
Ravindra

HI,
<b>.XLS</b>(There is space between the fields) And <b>.DAT</b>(there is no space between fields) files can be upload in BDC by using
for uploading these are Fm--<i>UPLOAD,WS_UPLOAD,GUI_UPLOAD</i>.
for downloading these are Fm--<b>DOWNLOAD,WS_DOWNLOAD,GUI_DOWNLOAD</b>.
Regards,
Kishore.

Similar Messages

  • Device type file compatability with different SAP versions

    Hi All,
             I need to know whether there is any difference in Device type file (.PRI) for different SAP versions [ SAP 4.6b , 4.6c, 4.7, mySAP ERP 2005.,]
             Is there any change in .pri file required when upgrading/degrading SAP versions?
            Pls let me know abt this. very urgent..

    i tried the following code on a WAS 7.00 SP14 and it works as expected.
    create object cached_response type cl_http_response exporting
      add_c_msg = 1.
        cached_response->set_data( file_content ).
        cached_response->set_header_field( name  =
      if_http_header_fields=>content_type
                                           value = file_mime_type ).
        cached_response->set_status( code = 200 reason = 'OK' ).
        cached_response->server_cache_expire_rel( expires_rel = 180 ).
        call function 'GUID_CREATE'
          importing
            ev_guid_32 = guid.
        concatenate runtime->application_url '/' guid into display_url.
        cl_http_server=>server_cache_upload( url      = display_url
                                             response = cached_response ).
    call method runtime->server->response->redirect( url = display_url ).
    navigation->response_complete( ).

  • Converting '.xls' file to '.txt' in BDC Session method

    Hi gurus,
    Happy DIWALIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII------',','
    Please help me in converting '.xls' file to '.txt' in BDC Session method. Is there is any method or function module for this conversion. Please help me with coding.
    Thanks and regards,

    Hi
    File->save as -> Save as type ( text tab delimted.txt) ->Click on yes .
    Now open .txt file -> here data will be tab delimted.
    genrally i use tab delimted file to upload the data.
    Even if you want to programtically then get the data from xls file to Internal table,now use concatenate with comma ,now download it.
    Check the below program :
    Upload xls file and you can see .txt file ( with comma delimted)
    Input ( XLS file )
    aaa 1245 2344 233 qwww
    233 2222 qwww www www
    Output ( .txt file with comma delimted)
    aaa,1245,2344,233,qwww
    233,2222,qwww,www,www
    REPORT ZFII_MISSING_FILE_UPLOAD no standard page heading.
    data : begin of i_text occurs 0,
    text(1024) type c,
    end of i_text.
    Internal table for File data
    data : begin of i_data occurs 0,
    field1(10) type c,
    field2(10) type c,
    field3(10) type c,
    field4(10) type c,
    field5(10) type c,
    end of i_data.
    data : begin of i_download occurs 0,
    text(1024) type c,
    end of i_download.
    data : v_lines type sy-index.
    data : g_repid like sy-repid.
    data v_file type string.
    data: itab like alsmex_tabline occurs 0 with header line.
    data : g_line like sy-index,
    g_line1 like sy-index,
    $v_start_col type i value '1',
    $v_start_row type i value '1',
    $v_end_col type i value '256',
    $v_end_row type i value '65536',
    gd_currentrow type i.
    selection-screen : begin of block blk with frame title text.
    parameters : p_file like rlgrap-filename obligatory.
    selection-screen : end of block blk.
    initialization.
    g_repid = sy-repid.
    at selection-screen on value-request for p_file.
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
    PROGRAM_NAME = g_repid
    IMPORTING
    FILE_NAME = p_file.
    start-of-selection.
    Uploading the data into Internal Table
    perform upload_data.
    download the file into comma delimted file.
    perform download_data.
    *& Form upload_data
    text
    --> p1 text
    <-- p2 text
    FORM upload_data.
    CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
    EXPORTING
    FILENAME = p_file
    I_BEGIN_COL = $v_start_col
    I_BEGIN_ROW = $v_start_row
    I_END_COL = $v_end_col
    I_END_ROW = $v_end_row
    TABLES
    INTERN = itab
    EXCEPTIONS
    INCONSISTENT_PARAMETERS = 1
    UPLOAD_OLE = 2
    OTHERS = 3.
    IF SY-SUBRC <> 0.
    write:/10 'File '.
    ENDIF.
    if sy-subrc eq 0.
    read table itab index 1.
    gd_currentrow = itab-row.
    loop at itab.
    if itab-row ne gd_currentrow.
    append i_data.
    clear i_data.
    gd_currentrow = itab-row.
    endif.
    case itab-col.
    when '0001'.
    first Field
    i_data-field1 = itab-value.
    second field
    when '0002'.
    i_data-field2 = itab-value.
    Third field
    when '0003'.
    i_data-field3 = itab-value.
    fourth field
    when '0004'.
    i_data-field4 = itab-value.
    fifth field
    when '0005'.
    i_data-field5 = itab-value.
    endcase.
    endloop.
    endif.
    append i_data.
    ENDFORM. " upload_data
    *& Form download_data
    text
    --> p1 text
    <-- p2 text
    FORM download_data.
    loop at i_data.
    concatenate i_data-field1 ',' i_data-field2 ',' i_data-field3 ','
    i_data-field4 ',' i_data-field5 into i_download-text.
    append i_download.
    clear : i_download,
    i_data.
    endloop.
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    BIN_FILESIZE =
    FILENAME =
    'C:\Documents and Settings\smaramreddy\Desktop\fff.txt'
    FILETYPE = 'ASC'
    APPEND = ' '
    WRITE_FIELD_SEPARATOR = ' '
    HEADER = '00'
    TRUNC_TRAILING_BLANKS = ' '
    WRITE_LF = 'X'
    COL_SELECT = ' '
    COL_SELECT_MASK = ' '
    DAT_MODE = ' '
    IMPORTING
    FILELENGTH =
    TABLES
    DATA_TAB = i_download
    EXCEPTIONS
    FILE_WRITE_ERROR = 1
    NO_BATCH = 2
    GUI_REFUSE_FILETRANSFER = 3
    INVALID_TYPE = 4
    NO_AUTHORITY = 5
    UNKNOWN_ERROR = 6
    HEADER_NOT_ALLOWED = 7
    SEPARATOR_NOT_ALLOWED = 8
    FILESIZE_NOT_ALLOWED = 9
    HEADER_TOO_LONG = 10
    DP_ERROR_CREATE = 11
    DP_ERROR_SEND = 12
    DP_ERROR_WRITE = 13
    UNKNOWN_DP_ERROR = 14
    ACCESS_DENIED = 15
    DP_OUT_OF_MEMORY = 16
    DISK_FULL = 17
    DP_TIMEOUT = 18
    FILE_NOT_FOUND = 19
    DATAPROVIDER_EXCEPTION = 20
    CONTROL_FLUSH_ERROR = 21
    OTHERS = 22
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDFORM. " download_data
    Regards
    Pavan

  • Trying to drag pdf files i have and combine them into one pdf file in the account i just purchased with Adobe. when i drag a pdf file over Adobe doesn't accept it. says it can not convert this type of file. but it is an Adobe file. Do I need to change it?

    Trying to drag pdf files i have and combine them into one pdf file in the account i just purchased with Adobe. when i drag a pdf file over Adobe doesn't accept it. says it can not convert this type of file. but it is an Adobe file. Do I need to change it in some other form befor dragging it?

    Hello djensen1x,
    Could you please let me know what version of Acrobat are you using.
    Also, tell me your workflow of combining those PDF files?
    Please share the screenshot of the error message that you get.
    Hope to get your response.
    Regards,
    Anubha

  • HT204382 What do I need to down load to make Quick Time play different types of files, like mPeg etc?

    I'm new to this site and to my REfurbished 13" Mac Book Pro. I really love this note book! IO wish I had gotten the REtina Display now. I passed on it because It didn't have a lot of storage space. But what was I thinking....I don't want to fill this note book with hundreds of Albums and load my nearly 5000 photos onto it. I wouldn't want to slow it down by having to wait for it to load all the data everytime I turned it on.
    I tried to down load a file from a trusted friend, the Quick Time Player icon appeared in the Dock when I opened the down loadopened. Along with it, a message of sorts came up saying I need to download something else to make this file open/play. Any idea what I should get to make the Quick Time Player able to play more different types of files/clips?
    I'm just not so computer savy......like most of you.
    So, LOL.....could you please talk in simple language if you respond to me question?
    Thank You all,
    mike

    You could download VLC - it plays numerous formats:
    http://www.videolan.org/vlc/download-macosx.html

  • How load different types of file in SSIS

    could you please suggest how can we load different types of file in SSIS. The file metadata is not defined . So the SSIS
    package will read the files palced in a defined shared location or folder where based on the column value will determine the datatype on runtime and load the data.

    Hi SubhadipRoy,
    SSIS doesn’t support dynamic data access provider or metadata. That means that we need to use different source adapters for flat files (.csv and .txt) and Excel files. So, in the Control Flow, you can use three Foreach Loop Container: one to loop through
    .txt files, one to loop through .csv files, and the last one to loop through Excel files. In each Foreach Loop Container, you use a Data Flow Task to extract data from the corresponding source files. 
    If the source files have different structures, you need to use Script Component in the Data Flow Task to parse the first row of the source files and create destination table dynamically. Here are two script examples for your reference:
    http://www.citagus.com/citagus/blog/importing-from-flat-file-with-dynamic-columns/ 
    http://stackoverflow.com/questions/21672064/ssis-dynamic-column-mapping-in-excel-source-and-destination-sql-server-table 
    Regards,
    Mike Yin
    TechNet Community Support

  • How do I save all mp3 files as an attachable file in text messaging on a G'z One Commando? Some mp3 save as these types of files but I don't how or what I do differently.

    How do I save all mp3 files as an attachable audio file in text messaging on a G'z One Commando? Some mp3 save as these types of files but I don't how or what I do differently.

    In summary, it sounds to me as though the Mac concept of "hidden extension per file" isn't embraced at all by Photoshop.
    So assuming the extension is always visible, what is the easiest way do each of the following (ignoring issues with integration with other apps):
    1.  Save a JPEG as:  abc.jpg
    2.  Save a JPEG as:  abc
    3.  Save a JPEG as:  abc.
    4.  Save a JPEG as:  abc.xxx
    Since it seems to me we still haven't nailed down whether there's a disparity between how this works on Photoshop for Mac vs. PC, I'll answer the above questions for PC:
    1.  File - Save As, choose Format: JPEG, type (replace filename with):  abc
    2.  No difference than 3 on a PC.
    3.  File - Save As, choose Format: JPEG, type:  abc.
    4.  File - Save As, choose Format: JPEG, type:  abc.xxx
    How is it different from the above on a Mac?
    Is there something more complex, such as the sequence of operations, or another system setting, that I didn't cover here?  I normally always keep Explorer set so that file extensions are visible (it's global on a PC).
    -Noel

  • Types Of Files For Bdc's

    Hey guys, i just wanted to know what all types of files can be uploaded into SAP through BDC's. Can anyone please help me out with this. Can we transport a pdf file into SAP through BDC?, how about an image through bdc?.
    Please answer in detail
    Thanks & Regards,
    Abhishek.

    BDC is for transferring data from legacy system to SAP system.
    Its same as running a transaction and putting the data into corresponding table.
    You need to call the function module  to do upload of data.
    UPLOAD, WS_UPLOAD, GUI_UPLOAD, are used for the same.
    If using function module GUI_UPLOAD
    The FILETYPE refer to the type of file format you need:
    For e.g 'WK1' - Excel format , 'ASC' - Text Format .
    ALSM_EXCEL_TO_INTERNAL_TABLE to upload data from excel.
    Then the contents of the flat file have to copied to your internal table and then u need to call the transaction through which you want to update the database.

  • What type of file is accepted for proof of purchase upload?

    I need to submit proof of purchase for a product purchased with Apple (hello Apple!!!) but it wont accept any type of file- ive tried about 6 or 7.

    what is the reason when i read a 24 bit png image...it shows the type as 0 (TYPE_CUSTOM) ?
    From the the Field Detail section for the TYPE_CUSTOM field in BufferedImage: the image type is not recognized.
    You could make a new BufferedImage with TYPE_INT_RGB, or TYPE_INT_ARGB if the image has or will have transparent pixels, and copy the TYPE_CUSTOM image into it. Then you can manipulate/process the new image.

  • File name with different type

    Hi,
    I need to send specific date format with file name to two different receivers. So the file name is same for both the two receivers but file extension is different. So I configured with dynamic configuration in UDF and in the receiver channel i have given .txt and .dat but it is not working. Can we do it in any other way.
    Thanks,
    kum

    Hi Kum,
    If I am not wrong, you must be using conditional receiver determination for determining 2 receivers.
    In this case, you can define 2 separate mappings which you can call in Interface determinations (2 interface determinations).
    In one mapping, you can have UDF for .txt file and in other .dat file.
    -Tanaya.

  • Wich objecttype for coloms should i use for storing different types of file

    Hello,
    Could someone tell me which objecttype i should use for a colom in a table that is used to store any type of files, by example:
    bmp,doc,txt,jpg etc.
    I'm thinking of a BLOB or CLOB, because i think that those types are for such kind of files, but i don't really know the difference so maybe somebody could help me with this and explain the difference.
    thanks by regards,
    Menno

    Menno,
    Depending on your requirements, you can use internal LOBs or
    external LOBs. You can also consider Oracle InterMedia cartriges
    to perform sophisticated functions on text, image, video, and
    spatial data. Another solution would be to use Oracle's iFS
    (internet file system).
    Regards,
    Geoff

  • HT201304 How can I change the account card on file to a different card?

    How can I change the account card on file to a different card?

    HT1918 iTunes Store: Changing account information
    Learn how to change your name, billing address, email address, and credit card information for your iTunes Store account.
    Note: If your previous payment method was not accepted, you can edit your payment type or credit card information by following the steps in this article.
    You can change all of your account information from the Apple Account Information page. To get to the Apple Account Information page, follow these instructions:
    Changing your account information using a computer:
    Open iTunes.
    Choose Store > Sign In.
    Enter your Apple ID and password, then click the Sign In button.
    Choose Store > View My Account.
    Enter your account password, and click the View Account button.
      To update your email address, follow these instructions: 
    From the Apple Account Information page, click the Edit button to the right of your Apple ID.
    Enter your new email address into the Email Address field.
    Click the Done button.
      To update your name, billing address, or payment information, follow these instructions: 
    From the Apple Account Information page, click the Edit Payment Information button.
    Edit the information that you would like to change.  Note: The payment methods that the iTunes Store accepts can be found in the payment type section. If you do not want a payment method on your account, select None in the payment type section.
      Click the Done button once you've updated all of your information.
    Changing your account information using an iOS device:
    Tap Settings on the Home screen.
    Tap iTunes & App Stores.
    Tap on your Apple ID. (If you are not signed in, enter your Apple ID and password, and tap Sign In.)
    Tap View Apple ID.
    Enter your Apple ID password.
      To update your email address, follow these instructions: 
    In the Edit section, tap the Apple ID field.
    Tap the Apple ID field.
    Enter the email address that you would like to be your Apple ID.
    Tap the Done button.
      To update your name, billing address, or payment information, follow these instructions: 
    In the Edit section, tap Payment Information.
    Update the information that you want to change.
    Tap the Done button when finished.
    Additional Information  Notes 
    If you use an AOL screen name to sign in to the iTunes Store, editing your information on the Apple Account Information page will not carry over to your AOL account. If you need to update your AOL account information, contact AOL.
    If your account information does not match your credit card, you may get a message stating "The credit card was declined."
    When you update your credit card number or billing address through the iTunes Store, any equivalent information you might use with iCloud, Apple Store online, iPhoto, or Aperture is also updated.
    The iTunes Store will place a minimal authorization hold on your credit card each time that you update your account information (equal to around 1 USD). The authorization hold is not a charge. The authorization hold is placed on your credit card to make sure that the information provided matches the information on file with your financial institution. The authorization hold will not be displayed in your iTunes Store purchase history.
      Important: Information about products not manufactured by Apple is provided for information purposes only and does not constitute Apple’s recommendation or endorsement. Please contact the vendor for additional information.
    Last Modified: Sep 24, 2012

  • Container Managed Security on Tomcat - configuring different auth-methods

    I am trying to configure the container managed security on tomcat4. Or rather I am trying to add a further dimension to the configuration that already exists.
    At the moment the entire application uses LDAP authentication and I would like to separate an area that requires further authentication. That is to say I would like everyone using the web application to authenticate using the existing Form-Based LDAP authentication but I would like only certain users to be able to use the data upload facility (whose code is stored in it's own directory).
    This is the authentication bit of my web.xml:
      <security-constraint>
        <web-resource-collection>
          <web-resource-name>qmrae</web-resource-name>
          <url-pattern>*.do</url-pattern>
          <url-pattern>*.jsp</url-pattern>
        </web-resource-collection>
        <auth-constraint>
          <role-name>*</role-name>
        </auth-constraint>
      </security-constraint>
      <login-config>
        <auth-method>FORM</auth-method>
        <realm-name>Form-Based Authentication Area</realm-name>
        <form-login-config>
          <form-login-page>/login.jsp</form-login-page>
          <form-error-page>/loginError.jsp</form-error-page>
        </form-login-config>
      </login-config>My first hurdle is in understanding exactly how the application knows where to go for its authentication.
    I had guessed that the realm-name would map "areas" of my application to realm configuration defined in my application's context area in Tomcat's web.xml but this doesnt seem to be the case. In fact I have read conflicting explanations as to what the realm-name is for. One source has said that this is only used for BASIC authentication as a way of naming the resulting pop up window - many others say it maps the login-config to the web-resource-name. However the latter doesnt make sense because the authentication works in my application at the moment even though those values are completely different (and indeed are different in most of the examples i've read on the web). Furthermore I can find any other mention of the defined realm-name in any other file (which of course be because i'm looking in the wrong place).
    I was prepared to accept that the realm-name might not actually do anything and so I've been looking for examples of defining a different auth-method for different url-patterns but i've had no luck.
    I know a user can have one or more roles but I dont have access to the LDAP server to set these up and haven't found anything about defining different auth-methods other than one thread in this forum suggesting that is wasnt possible on AIS.
    This thread suggests that you can have more than one security-constraint but again i'm not sure about the auth methods and how you map an auth method to a security-constraint
    http://forum.java.sun.com/thread.jspa?forumID=33&threadID=320918
    To summarise my questions:
    1) What are the functions of the realm-name and web-resource-name? Are they related?
    2) Is it possible to configure different areas of an application to use different authentication methods? and if so, could you point me in the direction of relevant documentation
    3) If (2) is not possible and I have to assign a new role to the privileged LDAP users, is it enough to define a new security-constraint? Could you describe the behaviour I could expect for users that have authenticated once and try to access this super-security area, will they be shown another login form or will it just let them in because the container is already aware of their permissions.
    Many thanks for your attention,
    Rachel

    If you create your own Realm classes - look at JAAS - you can sort out your last login time, just wrap them around the DataSourceRealm.
    As far as 'remind' him is concerned - I'm guessing you mean provider a reminder for the password based on the user name. If you use form based authentication you can put what ever you like on the page.

  • EasyLoader,be more stronger,more simple!load all types of files in one way!

    Hi,guys!Very happy to announce to the world,my easyLoader project was updated to 1.012.
              this class can be used to load sound,video,txt,xml,image,swf,event dae and on.and you guys can add custom file type for easyLoader.
              author :liuyi email:[email protected],
    Home and document online!:http://www.ourbrander.com/easyloader/
    Google code:https://code.google.com/p/easyloader/
              What is easyLoader?
              This work is use load all the assets of  website or game,it is an good assets manager.
              People can use it to load sound,video,txt,xml,image,swf,dae and any custom  types of files.
              Why we need it?
              -easy of use
                       Every method have a good naming,you can use it likes speak to an friend.Only need several lines to complete the work.
              -never be lost items
                load items one by one.
              -excellent memory manage
                       Using it continually more than 24 hours,memory do not increase without limit.item can be destoried,easyLoader Object(include all assets) too.
              -flexible
                      User can add custom file type to loading.
              -dynamic add items for easyLoader
               EasyLoader can add and load new assets anytime and anywhere,although all the items were loaded.
              -Updates
               will updates according to user's requirements.
              How to use?
              Realy only need several lines:
              step1:
              new a easyLoader Object
              line1: var _assetsManager = new EasyLoader();
              step2:
              add some necessary event Listener
              line2: _assetsManager.addEventListener(EasyLoaderEvent.COMPLETED,assetsLoaded)
              step3:add the assetsLoaded function
              line2:private function assetsLoaded(e:EasyLoaderEvent) {
               line3:     //put some code to here like init()
               line4:}
               step4:load assets according to config xml
               line5:_assetsManager.loadConfig("assets.xml")
               ok,this is all!
    Public Methods
    EasyLoader()              
    addFile(path:String, alias:String = "", loadTip:String = "", autoRemove:Boolean = false, method:String = "text"):void             
    addType($type:String, $name:String):Boolean     
    dispose():void             
    disposeFileByAlias(alias:String):Boolean             
    disposeFileByName(name:String):Boolean             
    getFileByAlias(alias:String):LoadedItem              
    getFileByIndex(number:uint):LoadedItem             
    getFileByName(name:String):LoadedItem
    init(obj:* = null, $autoLoad:Boolean = true, $ignoreError:Boolean = true):Boolean    
    loadConfig(str:String):void
    pause():void
    removeFileByAlias(alias:String):Boolean
    removeFileByName(name:String):Boolean    
    start():void     
    unPause():void

    Further note: I have uninstalled this stupid program now THREE different times, including using a registry cleaner, which then deleted my DVD drive, thankyouverymuch. And even after I got the DVD drive back so I could reinstall the program, it was like I'd never uninstalled it (with the exception of the custom brushes still being missing) right down to the canvas size and paint color I had been using when all this started.
    So uninstalling it does nothing, resetting preferences does nothing... I can not save my work, period. I've been fighting with this for about 8 hours and I am so frustrated I could just throttle someone with my bare hands for putting me through this crap.
    For a product that came bundled with a $200 graphics tablet, it sure isn't worth a damn. Anybody got any ideas? I'm at my wits' end here.

  • Calling web service from MBean weblogic cannot find type mapping file

    When calling web service from custom MBean i get java.io.IOException.
    java.io.IOException: unable to find the type mapping resource file for:
    net.msl.sfx.ebooking.client.BookingPartiesServiceService
    at weblogic.webservice.core.encoding.DefaultRegistry.<init>(DefaultRegis
    try.java:67)
    at weblogic.webservice.core.rpc.ServiceImpl.<init>(ServiceImpl.java:83)
    at net.msl.sfx.ebooking.client.BookingPartiesServiceService_Impl.<init>(
    BookingPartiesServiceService_Impl.java:22)
    at net.msl.sfx.ebooking.service.EBookingService.getBookingParties(EBooki
    ngService.java:59)
    The types.xml file is placed in same jar file as the classes such as net.msl.sfx.ebooking.client.BookingPartiesServiceService_Impl.
    When calling the same class/method from a EJB, everything works fine and the web service is called.

    i am having the same problem.
    Do you have a solution now?
    Thanks

Maybe you are looking for

  • Wifi slow - Fixed in Safe Mode though, what to do now?

    Hey everyone! I have a new Macbook Pro Retina and the WiFi is acting super slow sometimes. The connection is stable and it also connects instantly. But sometimes it takes a while for the pages to actually load to the point where content is being show

  • Mod_perl/Installing RT Request Tracker

    Hi, I'm trying to install RT Tracker on Mac OS X 10.5 following these instructions: http://wiki.bestpractical.com/view/MacOSXServerInstallGuide I don't want to build apache, I just want to install mod_perl running side by side w/ mod_php, is there an

  • Safari 6 crashes on startup

    My Safari 6 browser keep crashing on startup. I am running Mac OS X 10.7.4. Here is the problem report log from Safari. Any help would be much appreciated. Thanks. Process:         Safari [464] Path:            /Applications/Safari.app/Contents/MacOS

  • MP3 import to stereo track reduces quality from what I hear in iTunes

    Hi. Project settings is 24 bit, 44100khz and 320kbs stereo mp3 settings in logic. When I import a song bought in iTunes into a stereotrack, I lose some quality. Especially the high end suffers and to simulate getting it back I need to boost a Waves H

  • Error Message: Cannot import files because they cannot be found.

    What do I do?  I just purchased this!  I tried restarting and I just installed it about an hour ago.  I shouldn't already have this problem!