Unicode related issue in 4.6c to ECC 6.0 upgrade

Hi
I am doing upgrade from 4.6c to ECC 6.
Here I am getting one unicode related issue.
"The data object A948 does not have a component called ZZMATWA.".
This type of issues , how can I resolve.
I am very new to upgrade, Plese do help me.
Regards
Sandeep Reddy.

Hi,
Can you give the error what you are coming across.
Regards,
Suhas

Similar Messages

  • ABAP related issues in 4.7 to ECC 6.0 Upgrade

    Hi All,
    We are in the process of upgrade of SAP 4.7 non unicode to ECC 6.0 non unicode system .
    Please let me know what are the things we need to check& what are the issues related to ABAP will encounter in this process.
    Please provide the touch points which we need to take care.
    Regards,
    Reddy

    Hi
    While doing Upgrade You have to aware of all related program like BDC's , Screens related errors and all dictionary related problems.
    Some function modules may become obsolete, and some screens will change
    and some new fields will be added in the new versions etc.
    Also take care of SPAU and SPDD tcodes.
    You should be able to know about Unicode concept in sap.
    check this
    http://www.thespot4sap.com/upgrade_guide_v2.pdf#search=%22upGRADE%20STEPS%20-%20SAP%22
    also chk these 2 notes in service.sap.com
    Technical Upgrade is only a version upgrade without any functionality changes.
    The objects that are needed to be upgraded are:
    Includes
    Function Groups / Function Modules
    Programs / Reports
    OSS Notes
    SAP Repository Objects
    SAP Data Dictionary Objects
    Domains, Data Elements
    Tables, Structures and Views
    Module Pools, Sub Routine pools
    BDC Programs
    Print Programs
    SAP Scripts, Screens
    User Exits
    You can refer to the below links for more information on technical upgrade:
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/profile/2007/05/07/upgradeFROMR3TOmySAPERP-PARTII&
    https://wiki.sdn.sap.com/wiki/display/profile/UPGRADEFROMR3TOmySAPERP-PARTIII
    http://help.sap.com/saphelp_nw2004s/helpdata/en/60/d6ba7bceda11d1953a0000e82de14a/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/2e/6d66647d9011d396b60000e82de14a/content.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5ac31178-0701-0010-469a-b4d7fa2721ca
    Regards
    Anji

  • Unicode related issue

    Hi,
    This is relating to UNICODE HEX to CHAR conversion.
    Here , i need to convert the HEX value to char format.
    'DATA: BEGIN OF HV,
          FILLER(10) TYPE X VALUE 'FFFFFFFFFFFFFFFFFFFF',
          END OF HV.
    I know the value of FILLER(10) TYPE X VALUE 'FFFFFFFFFFFFFFFFFFFF' is  '..........' Means 10 dots.
    But I need the Function module or any statement which translate the 'FFF...' values to 'Dots'.
    Please suggest...
    Thanks,
    Pradeep.

    Hi Pradeep,
    Please check the below link,
    Function Module to convert Hexa to Char
    Best Regards.

  • ECC 6.0 Upgrade & changes required in programs

    In case of a version upgrade to ECC 6.0, the programs would need to be changed. Some changes in the programs would be required to meet unicode compliance, while some changes would be required due to version upgrade (constructs becoming obsolete, etc). I guess the unicode related issues could be found by using the UCCHECK transaction and then resolved by making changes and again checking using this transaction, but is there some way to find out what issues would arise due to version upgrade? (The programs work fine in the lower version which is 4.6c). One way would be to actually check the programs in runtime and then handling the issues faced. But if we don't want to test all the programs, then is there some tool, or any best practice which would minimize the chance of having issues in the programs (and might be in help in solving the issues)?

    SAMT is a transaction that will allow you to create sets for syntax check. We generally do it for Z* and Y* objects if the count does not exceed 3000.
    Batch objects are the BDCs and Conversions as explained by Hema. Earlier upgrades had more than 80% of these objects failing becuase the screens may have changed or the screen fields may be missing, screen flow changed ... But now it has reduced especially from 46c to Ecc6 upgrade. However it still warrants testing them thoroughly.
    Clones are copies of standard SAP objects in Z space and modified. These objects generally tend to have standard includes within them or the program definition may still have the original SAP name. It is tricky to find all of them but simple rules like matching name strings (eg SAPMV45A -> ZAPMV45A or Z_SAPMV45A) would help. It may vary from customer to customer depending on their naming standards.
    Standard function modules used in the program can be easily found out using SCAN command in ABAP (see my example for SCAN in code snippets). Use the list of function modules identified and pass to the program below to see if their interfaces have changed. Test all objects affected by changed interfaces.
    *& Report  YACN_FUNC_ANALYSIS
    REPORT  YACN_FUNC_ANALYSIS.
    Tables: tfdir.
    DATA: v_found TYPE c.
    DATA: v_func LIKE enlfdir-funcname.
    DATA: BEGIN OF i_import OCCURS 0.
            INCLUDE STRUCTURE rsimp.
    DATA: END OF i_import.
    DATA: BEGIN OF i_changing OCCURS 0.
            INCLUDE STRUCTURE rscha.
    DATA: END OF i_changing.
    DATA: BEGIN OF i_export OCCURS 0.
            INCLUDE STRUCTURE rsexp.
    DATA: END OF i_export.
    DATA: BEGIN OF i_table OCCURS 0.
            INCLUDE STRUCTURE rstbl.
    DATA: END OF i_table.
    DATA: BEGIN OF i_exceptions OCCURS 0.
            INCLUDE STRUCTURE rsexc.
    DATA: END OF i_exceptions.
    DATA: BEGIN OF i_doc OCCURS 0.
            INCLUDE STRUCTURE rsfdo.
    DATA: END OF i_doc.
    DATA: BEGIN OF i_source OCCURS 0,
             INCLUDE STRUCTURE RSSOURCE.
              line(256)  TYPE c,
          END OF i_source.
    DATA: BEGIN OF e_import OCCURS 0.
            INCLUDE STRUCTURE rsimp.
    DATA: END OF e_import.
    DATA: BEGIN OF e_changing OCCURS 0.
            INCLUDE STRUCTURE rscha.
    DATA: END OF e_changing.
    DATA: BEGIN OF e_export OCCURS 0.
            INCLUDE STRUCTURE rsexp.
    DATA: END OF e_export.
    DATA: BEGIN OF e_table OCCURS 0.
            INCLUDE STRUCTURE rstbl.
    DATA: END OF e_table.
    DATA: BEGIN OF e_exceptions OCCURS 0.
            INCLUDE STRUCTURE rsexc.
    DATA: END OF e_exceptions.
    DATA: BEGIN OF e_doc OCCURS 0.
            INCLUDE STRUCTURE rsfdo.
    DATA: END OF e_doc.
    DATA: BEGIN OF e_source OCCURS 0,
             INCLuDE STRUCTURE RSSOURCE.
              line(256)  TYPE c,
          END OF e_source.
    DATA: BEGIN OF i_tab OCCURS 0,
              line(71)  TYPE c,
          END OF i_tab.
    PARAMETERS: p_file LIKE rlgrap-filename DEFAULT 'D:\Documents and Settings\prakash.bhatia\Desktop\funcmods.txt'.
    START-OF-SELECTION.
      CALL FUNCTION 'UPLOAD'
       EXPORTING
      CODEPAGE                      = ' '
          filename                      = p_file
          filetype                      = 'DAT'
      ITEM                          = ' '
      FILEMASK_MASK                 = ' '
      FILEMASK_TEXT                 = ' '
      FILETYPE_NO_CHANGE            = ' '
      FILEMASK_ALL                  = ' '
      FILETYPE_NO_SHOW              = ' '
      LINE_EXIT                     = ' '
      USER_FORM                     = ' '
      USER_PROG                     = ' '
      SILENT                        = 'S'
    IMPORTING
      FILESIZE                      =
      CANCEL                        =
      ACT_FILENAME                  =
      ACT_FILETYPE                  =
        TABLES
          data_tab                      = i_tab
    EXCEPTIONS
      CONVERSION_ERROR              = 1
      INVALID_TABLE_WIDTH           = 2
      INVALID_TYPE                  = 3
      NO_BATCH                      = 4
      UNKNOWN_ERROR                 = 5
      GUI_REFUSE_FILETRANSFER       = 6
      OTHERS                        = 7
      LOOP AT i_tab.
        v_func = i_tab-line.
        select single * from tfdir where funcname = v_func.
        if sy-subrc <> 0.
          continue.
        endif.
        PERFORM get_func_details TABLES i_import
                                        i_changing
                                        i_export
                                        i_table
                                        i_exceptions
                                        i_doc
                                        i_source
                                  USING ' ' v_func.
        PERFORM get_func_details TABLES e_import
                                        e_changing
                                        e_export
                                        e_table
                                        e_exceptions
                                        e_doc
                                        e_source
                                  USING 'D02' v_func.
        WRITE:/ v_func.
        CLEAR v_found.
        IF i_import[] = e_import[].
          WRITE: 'N'.
        ELSE.
          LOOP AT i_import.
            READ TABLE e_import WITH KEY parameter = i_import-parameter.
            IF sy-subrc <> 0.
              IF i_import-optional <> 'X'.
                WRITE: 'Y'.
                v_found = 'X'.
                EXIT.
              ENDIF.
            ELSE.
              IF i_import-typ <> ' '.
                IF i_import-typ <> e_import-dbfield.
                  WRITE: 'Y'.
                  v_found = 'X'.
                  EXIT.
                ENDIF.
              ELSE.
                IF i_import-dbfield <> ' '.
                  IF i_import-dbfield <> e_import-dbfield.
                    WRITE: 'Y'.
                    v_found = 'X'.
                    EXIT.
                  ENDIF.
                ENDIF.
              ENDIF.
            ENDIF.
          ENDLOOP.
          IF v_found = ' '.
            WRITE: 'N'.
          ENDIF.
        ENDIF.
        CLEAR v_found.
        IF i_changing[] = e_changing[].
          WRITE: 'N'.
        ELSE.
          LOOP AT i_changing.
            READ TABLE e_changing WITH KEY parameter = i_changing-parameter.
            IF sy-subrc <> 0.
              IF i_changing-optional <> 'X'.
                WRITE: 'Y'.
                v_found = 'X'.
                EXIT.
              ENDIF.
            ELSE.
              IF i_changing-typ <> ' '.
                IF i_changing-typ <> e_changing-dbfield.
                  WRITE: 'Y'.
                  v_found = 'X'.
                  EXIT.
                ENDIF.
              ELSE.
                IF i_changing-dbfield <> ' '.
                  IF i_changing-dbfield <> e_changing-dbfield.
                    WRITE: 'Y'.
                    EXIT.
                  ENDIF.
                ENDIF.
              ENDIF.
            ENDIF.
          ENDLOOP.
          IF v_found = ' '.
            WRITE: 'N'.
          ENDIF.
        ENDIF.
        CLEAR v_found.
        IF i_export[] = e_export[].
          WRITE: 'N'.
        ELSE.
          LOOP AT i_export.
            READ TABLE e_export WITH KEY parameter = i_export-parameter.
            IF sy-subrc = 0.
              IF i_export-typ <> ' '.
                IF i_export-typ <> e_export-dbfield.
                  WRITE: 'Y'.
                  v_found = 'X'.
                  EXIT.
                ENDIF.
              ELSE.
                IF i_export-dbfield <> ' '.
                  IF i_export-dbfield <> e_export-dbfield.
                    WRITE: 'Y'.
                    v_found = 'X'.
                    EXIT.
                  ENDIF.
                ENDIF.
              ENDIF.
            ENDIF.
          ENDLOOP.
          IF v_found = ' '.
            WRITE: 'N'.
          ENDIF.
        ENDIF.
        CLEAR v_found.
        IF i_table[] = e_table[].
          WRITE: 'N'.
        ELSE.
          LOOP AT i_table.
            READ TABLE e_table WITH KEY parameter = i_table-parameter.
            IF sy-subrc <> 0.
              IF i_table-optional <> 'X'.
                WRITE: 'Y'.
                v_found = 'X'.
                EXIT.
              ENDIF.
            ELSE.
              IF i_table-typ <> ' '.
                IF i_table-typ <> e_table-dbstruct.
                  WRITE: 'Y'.
                  v_found = 'X'.
                  EXIT.
                ENDIF.
              ELSE.
                IF i_table-dbstruct <> ' '.
                  IF i_table-dbstruct <> e_table-dbstruct.
                    WRITE: 'Y'.
                    v_found = 'X'.
                    EXIT.
                  ENDIF.
                ENDIF.
              ENDIF.
            ENDIF.
          ENDLOOP.
          IF v_found = ' '.
            WRITE: 'N'.
          ENDIF.
        ENDIF.
       IF i_exceptions[] = e_exceptions[].
         WRITE: 'N'.
       ELSE.
         WRITE: 'Y'.
       ENDIF.
    *if I_doc[] = e_doc[].
    write: 'N'.
    *else.
    write: 'Y'.
    *endif.
       IF i_source[] = e_source[].
         WRITE: 'N'.
       ELSE.
         WRITE: 'Y'.
       ENDIF.
      ENDLOOP.
    *&      Form  get_func_details
          text
         -->P_TRG  text
    FORM get_func_details  TABLES t_import
                                  t_changing
                                  t_export
                                  t_table
                                  t_exceptions
                                  t_doc
                                  t_source
                           USING  p_trg
                                  p_func.
      CALL FUNCTION 'RPY_FUNCTIONMODULE_READ'
        DESTINATION p_trg
        EXPORTING
          functionname             = p_func
    IMPORTING
      GLOBAL_FLAG              =
      REMOTE_CALL              =
      UPDATE_TASK              =
      SHORT_TEXT               =
      FUNCTION_POOL            =
        TABLES
          import_parameter         = t_import
          changing_parameter       = t_changing
          export_parameter         = t_export
          tables_parameter         = t_table
          exception_list           = t_exceptions
          documentation            = t_doc
          SOURCE                   = t_source
    EXCEPTIONS
      ERROR_MESSAGE            = 1
      FUNCTION_NOT_FOUND       = 2
      INVALID_NAME             = 3
      OTHERS                   = 4
    ENDFORM.                    " get func details
    -Cheers

  • Unicode Enabling Issues for HR ABAP.

    Heay Guys,
    I am working on a Unicode Enabling Project.
    For those who has worked on a Unicode Enabling Project, could you please tell me if there would be any issues specific to HR ABAP Programs? This is an urgent requirement for me.
    Please reply me as soon as possible.
    Thanks and Regards,
    Bhargava Kavuri.

    Hi Bhargava,
      I have some unicode related doc with me.
      I will forward it to your id.
      Those obslate statements are related to type
      decarations. To find them you create ome small prog
      and use PNP in that. and now you enable unicode
      and do EPC it will show you all the obsolete
      statements.
      I have sent the help dod to your id please check now.
    Thanks&Regards,
    Siri.
    Kindly award points to all the helpful answers.
    Message was edited by: Srilatha T

  • Can we set up a forum for Security related issues?

    I know many of us think security is a Windows related issue, but from time to time there are security issues that may come up. I had a question so I looked and couldn't find a forum, so I posted in one of the OS X 10.6 sub forums.
    Thanks!

    I am a co-founder of Calendar of Updates http://www.calendarofupdates.com/updates/index.php?act=idx This is a site that is primarily a Windows based security forum (I switched about 4-5 years ago). Over the years, I've tried to grow the Mac side of our forum, but, as you may know, there is little or no interest in security within the Mac community. For many, the feel security is a Windows issue.
    It's a free site, so don't think I have a vested interest in growing the membership, I'm not an owner, either.
    I just created an *Apple OS X Security Issues* forum http://www.calendarofupdates.com/updates/index.php?showforum=209
    Right now it's an empty forum since it was created 10 minutes ago. Please feel free to join the forum and share security related issues and questions.
    I am not aware of any other forums that deal with OS X security issues
    exclusively, so this forum could be a good place to bookmark and visit from time to time.

  • To everyone with IOS6 Sound related issues & Others

    If you are facing a problem of not having any system sounds, notification sounds, no calls or other software sound related issues I'd suggest you read below it's a stupidly simple fix and it should solve most software issues after an immediate iOS6 update:
    After updating unplug the phone from your computer and leave the phone alone for 5-10 minutes, if you still have problems: reboot, wait a few minutes and all sound related problems should be fixed.
    When I updated to iOS 6 I had lost my system sounds, so I unplugged from the computer, rebooted the phone and still no go. I decided to just let the system "settle in" for a bit, let it lock and when I unlocked after 5-10 minutes sounds were back and everythings up and running again.

    Well, to break it down. After my sounds finally came back (2nd time losing them) last night I decided to restore the phone in itunes. I did it twice. First time I backed up my data. Second time I restored it as a factory iPhone. Both times guess what NO SOUNDS! I also realized that last night I had lost my sounds after charging my phone and unplugging it from the data cord. I still have ringtones (when someone calls), but text messages, emails, and any other alert tones do not work. I cannot turn the volume up or down with the side buttons and also music does not play. It doesn't even have a slide bar at the bottom.
    I am on the phone with apple care now. They seem to not be aware of the problem at all.
    While I was on the phone with them my sounds ended up coming back, imagine that. Hopefully every time I charge my phone I am not going to have this issue.

  • Many Sporadic Preview Related Issues

    Not sure if this is where to post/report Lightroom 5 issues or not, but here are preview-related issues I am experiencing...
    Preview panel "preview" freezes indefinitely.
    App very slow to load while creating new previews. (previews take forever to create and update)
    Wrong previews showing for wrong images when swapping between folders, etc. (ie: all photos, last import, custom collections)
    This one is a little different...
    Ratings lost when switching between folders, etc. (ie: all photos, last import, custom collections)
    This was a clean install that ran beautifully at first. Started noticing this more and more after using the spot tool. (my last step in processing a job)
    I use separate catalogs per job. Some as small as a few dozen images. (family stuff) Others, as large as 500-600. (engagement and wedding clients)
    Hope you are working on this. It's making work a struggle. I'm not just a "consumer". ;-)

    This is a user to user forum so the responces you recieve here will mostly be from users like your self. I am sure someone will respond on how to help dealing with the problem you are experiencing.
    The official forum for reporting bugs and making feature requests is at the web link below.
    http://feedback.photoshop.com/photoshop_family/products/photoshop_family_photoshop_lightro om

  • SAP R/3 4.6 C to ECC 6.0 Upgrade using CU &UC method- Unicode conversion

    Basis Gurus
       I am working on upgrade from R/3 4.6C to ECC 6.0.
    ECC 6.0 upgrade completed( still in non Unicode).  Now I am in the process of Unicode conversion.
    I have used following methods for the upgrade.
    1. Combined Upgrade & Unicode conversion(CU & UC)
    2. Resource minimized( as I am doing it in Sandbox).
      As I understand I need to perform the DB export and Import now for the unicode conversion.
      According to the Upgrade document, First I need to run Export using R3load in ECC6.0(Non unicode)
      and then install Unicode system and import the same data file.
      My understanding was, when I choose, Resource minimized, I need to run Export and import
      in the same system.
      Can you please help me , whether I need another Unicode system for import ??
    Graham

    Hi,
    Dont get confused with upg strategy and unicode conversion.
    In general Upgrade strategy (either downtime-minimized/resource minimized)
    In unicode conversion you have export/import(exp/imp) of data concept
    In CU&UC approach you have to do in a streach to complete migrate from old release to new realease ECC 6.00.
    Using database independent (sapinst only) or Using database dependent (migration monitor or Distribution monitor)
    It can be done in 2 ways.
    If you dont have addtional server for unicode conversion
           1)you can either do exp on same hardware and take bakup and do import using the exp dump.
           2)Do exp on one server and prepare your target empty database on another server and complete imp of data.
    Hope this is clear.
    Regards,
    Vamshi.

  • We are facing an issue in our COE SAP ECC 6.0 instance

    Hi,
    We are facing an issue in our COE SAP ECC 6.0 instance. The sequence of steps performed is as given below
    1. Start Vendor Creation using Create Vendor: Initial Screen
    2. Create Vendor : Address
    3. Create Vendor : Control
    4. Create Vendor: Payment Transactions
    5. Create Vendor: Accounting Information Accounting
    6. Create Vendor: Payment Transactions Accounting
    7. Create Vendor: Correspondence Accounting
    After the above steps are performed the system displays a message Vendor <V No.> was created in company code 1000
    If we try to use the above created Vendor in F-90 or FK02 ( Change Vendor details TCode) it throws an error as "Vendor has not been created".
    The table LFB1 doesnt have the Vendor associated with the Company Id 1000.
    Query: But does anyone WHY the Table is not being updated and WHAT needs to be done to make sure Updation happens in future.
    A quick response on this will be greatly appreciated!

    HI,
       Please chk in the config....
    SPRO>MM->Partner Deter->Partner setting in Rebate Arrangement->Define partner schemas for Rebate..
    Here please check the partner function "PI" is made mandatory...
    You can main the Partner function "PI" in the agreement itself...
    Goto-- txn.MEB2-- enter the agreement no... inside click the icon "Agreement Partner" or (Ctrl+F2) and maintain the partner function PI..
    Regards
    GK.

  • How to add data in related issue field in issue tracking list sharepoint 2013

    Hi,
    I'm using out of box Issue Tracking List. In Related Issue I want to add some data like :- Business, Technical, HR, Contractor etc in right side so user can select one of them add it. Not sure how to add these data in Related Issue column. Please advice.

    Related Issues is a lookup column to the same list which is Issue Tracking List. so you can add new items where title is Business, Technical, HR, Contractor etc then you will get those under related issues.
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • In PP Interface related issues the role of functional consultant

    In PP Interface related issues what is the role of functional consultant .  what is the approach steps to analyse and resolve the issues  in XI, interface, idoc, etc.,

    For issues relating to interfaces, a functional person would need to diagnose what is causing the issue & thereby informing the technical person where to fix it, if the issue is due to system setup.
    As regards to the steps, I just wish there was a manual which read something like
    10 steps on how to analyze....
    unfortunately there is none that I have come across or even if one is ever written on those lines will be very specific, so not much of use for your need. A good approach would be to have a clear understanding of what the interface is supposed to do, which would assist you in fixing the issues.

  • How to Handle BARCODE related issues in WebDynpro ABAP

    Hi All,
    How to handle barcode related issues in WDA?
    is it possible in WDA or not?
    please provide information or any links related..
    Thanks,
    raj.

    Hi ,
    You just need to install the software comes with the barcode scanner in the local PC and while reading you have to put the cursor on the field like inputfield . a barcode when interpreted by scanner is nothing but alphanumeric words.
    Regards
    Yash

  • Performane related issue in Production Server

    Hi,
    when i deploy the whole application in development server (by remotely logging into client server through vpn) it works fine .
    But when it is run at client side for system testing, user acceptance testing and
    integration testing it becomes very slow .
    Due to this performance related issue , we are not able to transfer the DCs to production server .
    We are sure it is not coming from R3 side (BAPIs etc) . It is coming either from the Webdynpro or Portal side .
    Can anybody help out regarding how to solve this issue .
    Thanks .

    Hi Narendra,
    Please elaborate what is QAS customization and production  customization.
    TR has been done properly.
    Let me give you an overview of the project.
    In Organisational Assignment a Zprogram has been written which captures additional information like Grade Code, Designation Code & Pay Sheet Code
    Its a govt. client. Combination of Grade Code & Designation Code is Pay Scale Grouping
    e.g if Grade Code is A01 & Designation Code is A005
    Pay Scale Grouping is A01-A005
    If we put the values in 0001(Org Assignment) for Grade Code(A01) & Designation Code(A005), A01-A005 comes automatically in Pay Scale Grouping for a particular Pay Scale Structure.
    But now the problem is Pay Scale Type doesn't come get defaulted in 0008 for a Personnel Area & Personnel Subarea.
    I have maintained PST in Tariff & Check Assignment of Pay Scale Structure in Enterprise Structure.
    But in 0008, We have to put PST manually. Since client is having only 1 Pay Scale Area for all Personnel Area & Personnel Subarea, so we don't have to bother for it
    Please tell me where can be the error
    Regards,
    Usha

  • System relate issue

    Hi friends,
    im in guess of where to post system related issue, since this is my problem
    run --> drivers --> host file,
    i couldnt able to edit & save host file.
    Tried below steps:
    1. host --> properties --> Security --> add --> everyone --> given full control also.
    2. Not able to do that in administrator account alsoWhich is the right place to post this question.
    Regards,
    Saro
    Edited by: Saro on May 17, 2011 12:48 PM

    Hi,
    Probably in your OS provider support forum?
    Regards,
    Jari

Maybe you are looking for

  • How do I use a large finance app with ipad .eg moneydance

    I see in the ipad add the guy says you dont need a computer with the ipad....how do I use a personal finance app eg moneydance sort of like quiken i guess and keep track of a years transactions for tax purposes .  ??

  • Payment Terms transfer to PO

    Hi All, I have created a CUF field for payment terms in INCL_EEW* structures. I have to map this field to PO Payment Terms field, but Doc change BADI doesn't seems to have this field. Pls suggest if any badi exists in which i can do the same. Thanks,

  • HT1670 how can I copy the contact from iphone 2G first iphone

    how can I copy the contacts from iphone 3g

  • Confirmation control in PO

    Hi folks, While PO creation, the confirmation control key set up can be controlled by a. Vendor (Purchasing view). b. Info Record c. Scheduling agreement. At all the above locations, I havent done any settings for confirmation control i.e the confirm

  • Is the Sony HDR-FX7 HDV Camera compatible with Final Cut Pro 5 or 6?

    Has anyone gotten this to work correctly. I have read in a few forums that the camera is not supported by FCP and I checked on the compatibility list and it is not there. iMovie sees this camera and can capture from it. I can not get FCP 6 to recogni