Test conversion question

I am in the process of exporting a 4.7 Enterprise system. The system is currently at SAP_Basis 620 38. According to note 1051576 the minimum version of the guide is SAP Basis 6.20 SP 58-61.
Is it required to upgrade to SP58 in order to complete a Unicode Migration?

Hi my friend
Usually there's no minimum requirement for SP level, but it's better to apply the latest kernel patch, or at least to use the latest R3load and R3trans.
Regards,

Similar Messages

  • UPGRADE 1103 to 1159 - PAYMENTS CONVERSION QUESTION!

    Hello,
    UPGRADE 1103 to 1159 - PAYMENTS CONVERSION QUESTION!
    This is the scenario, we are planning to do. Currently we have 11.0.3 in one box. We are planning for re-implementation for 11.5.9 in the new box. So we
    have to convert approx 14 months of open and closed data for the historic purposes. (Like PO's, Invoices, Payments and ledger data etc.)
    Again, these conversions cannot be handled through the front end using some Data Loader kind of tool etc...
    Data Loader tool, I used a lot for loading Flexfield Value Set Values, Category Codes etc...
    But my question is converting these AP_PAYMENTS related data in the back end. (Like Check num, Payment Batch ID, Invoice Number, Invoice ID, Supplier Number,
    Supplier ID, etc.) from old 11.0.3 box to new 11i box.
    Since there was some confusion is going on with Payments related areas, because there was now API's etc... some of them are telling it is very difficult to migrate "AS IS" into 11i. I also heard that oracle won't support this.
    Just want to clarify clearly on this issues.
    Because we are moving from the small box of 11.0.3 into Big box for 11.5.9. So we don't want to loose all the histories for about 20 months. especially open
    Closed / Open - Invoices, Payments, PO's, REQ's, Active Items which are in the Open Blanket PO's, Employees, etc...
    Of all these everything sounds like doable because they do have API's etc... Of course, I belive there is no API for the Vendors only. We want to know is this true for the Payments also.
    Any urgent clarifications is very much appreciated with clear explanation.
    Thanks in advance
    Mani Varadan

    The payment conversion is little bit tricky in term on its understanding and functionality.
    There are lot of dependices of payments conversion on the others objects like invoice.
    You need to be very clear in requirements.
    Here is the extracted documents for giving you clear understanding about payments.
    Overview of Process
    Prior to creating a payment batch, four setup are required.
    A.Define a bank for bank branches with which you do business.
    B.Define bank accounts.
    C.Choose a predefined or custom payment format.
    D.Finally, define payment documents for disbursements for each bank account.
    To give an overview of the steps required to create payment batch payments:
    1) Initiate the payment batch by entering the criteria for invoices you want to pay. The payment batch process selects invoices, and then builds the payments. It determines which invoices will be paid on each payment document, and lists this information for you on the Preliminary Payment Register.
    2) Make any necessary modifications to your payment batch, such as selecting additional invoices, deselecting invoices, deselecting suppliers, etc. Once modifications are complete, the modify payment batch process automatically builds the payments if any invoices were added.
    3) Format payments to produce an output file.
    4) Print checks from the output file if you are not creating electronic payments or sending the output file to a third party for printing.
    5) Confirm the payment batch by recording the document numbers associated with each payment. During this step, the invoice status is updated to “Paid” and a document number is associated with the invoice and invoice payment.
    As conversion(from 11.0.3 to 11.5.9) is concern step 3,4 is excluded from the standard processes.
    These are the tables involved during the payment conversion.
    AP_SELECTED_INVOICES_ALL
    AP_INV_SELECTION_CRITERIA_ALL
    AP_INVOICES_ALL
    AP_PAYMENT_SCHEDULES_ALL
    These are background (concurrent) processes involved in batch process consists of the following
    a. Autoselect      
    b. Build Payments
    c. Preliminary Payment Register
    d. Format
    e. Confirm
    f. Final Payment Register.
    10.7:
    If you are using the application in character mode, navigate to the Reset Payment Batch form. The navigation path is
    \Navigate --> Controls --> Payment --> ResetPaymentBatch.
    Select the payment batch name and the system displays the status of the batch. Your options for proceeding vary according to the batch status.
    11.5.8/9
    You can perform actions on your batch in Payment Batches form by clicking on the Actions button. The appropriate actions are highlighted depending on the status of the batch.
    THIS SECTION TALK ABOUT THE DETAIL TECHNICAL OVERVIEW
    Payment Conversion Technical Overview
    For the conversion is concern we are following four-step process
    I.Defined and prerequisite steps as discussed above
    II.Selecting the Invoice
    III.Building the Payment
    IV.Confirm
    THESE ARE THE PREREQUISITE SETUP
    We are assuming the bank set is already done from 10.7 to 11i.Bank set up means bank account id, and its corresponding payment format.
    For this purpose we are using mapping function for bank account id and on that basis we are getting corresponding checks stock id.This means defining a payment documents for disbursements
    SELECT INVOICES
    When a payment batch is started one row for each record is created in the
    AP_INV_SELECTION_CRITERIA_ALL table.
    This table stores the criteria that a payment batch uses to select invoices for payments. The module name for the Auto Select process is APXPBSEL. The Select Invoices, or AutoSelect, is the first step in the payment batch process.
    When we run a concurrent program the AutoSelect process starts by loading records that meet the invoice selection criteria into the table AP_SELECTED_INVOICES_ALL from the tables AP_INVOICES_ALL and AP_PAYMENT_SCHEDULES_ALL.
    The criteria that AutoSelect uses to determine which record to select from AP_INVOICES_ALL and AP_PAYMENT_SCHEDULES_ALL is stored in AP_INV_SELECTION_CRITERIA_ALL.
    To be sure that no duplicate invoices get selected, invoices that are already selected in another payment batch are not selected. Invoice payments that have no remaining payment amounts are not selected either.
    BUILD PAYMENTS
    The module name for the Build Program is APXPBBLD. From the list created by AutoSelect, the Build program determines which invoices will be paid on each
    Payment document, and lists this information on the Preliminary Payment Register if Selected. The Build program is spawned when AutoSelect has completed. When the Build Program starts, the application uses information from the table AP_SELECTED_INVOICES_ALL to create rows in the table AP_SELECTED_INVOICE_CHECKS_ALL.
    In addition to creating rows in the AP_SELECTED_INVOICE_CHECKS_ALL, the build payments program also performs the following tasks:
    • Assigns document numbers for payments
    • Assigns Check Ids
    • Renumbers the remaining documents starting from the first_available_document
    • Updates the payment batch status to BUILT
    Since we are doing conversion from 10.7 to 11i where all payments need to converted hence we are keeping payment batch status as ‘FORMATTED’
    CONFIRM
    This is the final step for the payment batch process, where we will pick a payment batch from front end, and then making confirm. The menu for this
    AP Payable =>Payment Batches form =>by clicking on the Actions button
    Internally the confirm program first updates the AP_SELECTED_INVOICE_CHECKS_ALL records,
    then transfers those records to
    AP_CHECKS_ALL.
    In addition, the AP_SELECTED_INVOICES_ALL
    records are transferred into the corresponding
    AP_INVOICE_PAYMENTS_ALL,
    AP_INVOICES_ALL and
    AP_PAYMENT_SCHEDULES_ALL.
    Table Involved in Payment Batch Process
    These are the various table involved in the payment process of 10.7 and 11i.It is recommended that if corresponding earlier conversion is done then use the mapping function to get the new value.
    oAP_SELECTED_INVOICES_ALL
    oAP_INV_SELECTION_CRITERIA_ALL
    oAP_INVOICES_ALL
    oAP_PAYMENT_SCHEDULES_ALL
    oAP_SELECTED_INVOICE_CHECKS_ALL
    oAP_CHECKS_ALL
    oAP_INVOICE_PAYMENTS_ALL
    oAP_PAYMENT_SCHEDULES_ALL
    oAP_INVOICES_ALL
    oAP_BANK_ACCOUNTS_ALL `
    Common Issue:
    1.Determine the status of the Payment Batch?
    A: Query up the Payment Batch in the Payment Batches Summary window to view the status. If you can not get into the application, you can select the status from SQL*Plus:
    SELECT status FROM ap_inv_selection_criteria_all
    WHERE checkrun_name = ?<payment batch name>?;
    2. Don’t change the last update date
    We are doing the conversion for payments, hence we can’t change he last_updated_date to sysdate as this will create a problem by concurrent program, in that case we need to populate the field for FUTURE_DATED_PAYMENT=’N’
    3. don’t populate the value for INVOICE_PAYMENT_TYPE
    If there are some prepayments in the conversion process donor populate this field and pass NULL, otherwise this will create a duplicate invoice, which will cause a problem for concurrent batch for payment.
    Hope now you will be very clear about the process.
    let me me offline, if you need further.
    regards
    sanjit
    [email protected]

  • Can we send pre-test score (Pre-test question slide) and post test score (Question slide) both in lms from captivate?

    can we send pre-test score (Pre-test question slide) and post test score (Question slide) both in lms from captivate?

    Pretest score normally is not sent to the LMS. However it is stored in a system variable, you could use JS to send it.

  • Is there a possibility of doing a test conversion prior to subscription to ExportPDF?

    I would like to seriously consider a susbscription to online Adobe ExportPDF.
    However I have seen a number of other online conversion systems that are simply not good enough.
    Is there some way I can make a couple of test conversions of pdf's to Word to see just how Exprort PDF functions and how well it does that?
    Richard  

    Good day Richard,
    Unfortunately we do not offer a trial of our ExportPDF service.  We do however offer a 30-day money back guarantee on your purchase.  If you subscribe to ExportPDF, use the service and you're not satisfied, you may request a refund of your purchase within the first 30 days of your subscription.
    Kind regards,
    David
    Acrobat Community Manager
    Adobe Systems

  • Unicode test conversion - skip some steps?

    Hi all,
    We will be upgrading our system from R/3 4.7x200 to ERP2005, and we have recently successfully upgraded our sandbox R/3 4.7x200 system to ERP2005, all pretty much without too much of a hassle. Now we are planning to do a unicode conversion on the same sandbox system, to get some idea about the runtime of such a conversion. The problem is that we are short on time, and I wonder what the effects will be if I skip some of the steps that should be done before we begin with the actual conversion phase (R3load). I have done some of the pre-conversion steps, but not all, and I wonder if there are some that I absolutely MUST do in order to get through the actual conversion?
    In the end, we are not looking for a functioning system after this test conversion, we are only interested in the runtime and downtime findings.
    Regards,
    Thomas

    Hi,
    You cannot skip same conversion step.
    the good ideas is to use the released method by SAP to do upgrade/conversion at the same time. this will save you time.
    check OSS note
    Note 928729 - Combined Upgrade & Unicode Conversion FAQ
    Good Luck

  • Ibm Written Test Model Questions Plz

    Hi Experts
    Can Any one send me IBM written test model questions plz .tomorrow i have test with IBM .....
    Thnx In Advance....

    Hi,
    you can have the material in the following link.
    http://www.123eng.com/forum/viewtopic.php?t=105
    HOpe it could help you.
    Note: plz reward with points if it is useful to you.
    regards
    Rakesh

  • German Umlauts OK in Test Environment, Question Marks (??) in production

    Hi Sun Forums,
    I have a simple Java application that uses JFrame for a window, a JTextArea for console output. While running my application in test mode (that is, run locally within Eclipse development environment) the software properly handles all German Umlauts in the JTextArea (also using Log4J to write the same output to file-- that too is OK). In fact, the application is flawless from this perspective.
    However, when I deploy the application to multiple environments, the Umlauts are displayed as ??. Deployment is destined for Mac OS X (10.4/10.5) and Windows-based computers. (XP, Vista) with a requirement of Java 1.5 at the minimum.
    On the test computer (Mac OS X 10.5), the test environment is OK, but running the application as a runnable jar, german umlauts become question marks ??. I use Jar Bundler on Mac to produce an application object, and Launch4J to build a Windows executables.
    I am setting the default encoding to UTF-8 at the start of my app. Other international characters treated OK after deployment (e, a with accents). It seems to be localized to german umlaut type characters where the app fails.
    I have encoded my source files as UTF-8 in Eclipse. I am having a hard time understanding what the root cause is. I suspect it is the default encoding on the computer the software is running on. If this is true, then how do I force the application to honor german umlauts?
    Thanks very much,
    Ryan Allaby
    RA-CC.COM
    J2EE/Java Developer
    Edited by: RyanAllaby on Jul 10, 2009 2:50 PM

    So you start with a string called "input"; where did that come from? As far as we know, it could already have been corrupted. ByteBuffer inputBuffer = ByteBuffer.wrap( input.getBytes() ); Here you convert the string to to a byte array using the default encoding. You say you've set the default to UTF-8, but how do you know it worked on the customer's machine? When we advise you not to rely on the default encoding, we don't mean you should override that system property, we mean you should always specify the encoding in your code. There's a getBytes() method that lets you do that.
    CharBuffer data = utf8charset.decode( inputBuffer ); Now you decode the byte[] that you think is UTF-8, as UTF-8. If getBytes() did in fact encode the string as UTF-8, this is a wash; you just wasted a lot of time and ended up with the exact same string you started with. On the other hand, if getBytes() used something other than UTF-8, you've just created a load of garbage. ByteBuffer outputBuffer = iso88591charset.encode( data );Next you create yet another byte array, this time using the ISO-8859-1 encoding. If the string was valid to begin with, and the previous steps didn't corrupt it, there could be characters in it that can't be encoded in ISO-8859-1. Those characters will be lost.
    byte[] outputData = outputBuffer.array();
    return new String( outputData ); Finally, you decode the byte[] once more, this time using the default encoding. As with getBytes(), there's a String constructor that lets you specify the encoding, but it doesn't really matter. For the previous steps to have worked, the default had to be UTF-8. That means you have a byte[] that's encoded as ISO-8859-1 and you're decoding it as UTF-8. What's wrong with this picture?
    This whole sequence makes no sense anyway; at best, it's a huge waste of clock cycles. It looks like you're trying to change the encoding of the string, which is impossible. No matter what platform it runs on, Java always uses the same encoding for strings. That encoding is UTF-16, but you don't really need to know that. You should only have to deal with character encodings when your app communicates with something outside itself, like a network or a file system.
    What's the real problem you're trying to solve?

  • Microsoft Office 2004 Test Drive Question

    Hello all,
    Please forgive me if this is the wrong forum, but I'm looking for help here... or possibly somebody has a forum elsewhere where I might ask this question:
    I have recently purchased a brand new Macbook Pro.
    I installed Office 2004 (Student/Teacher Edition).
    When I double-click on a document created by Word (from my PC that I transferred over), instead of my "real" Word 2004 opening the document... I get the Office 2004 Test Drive opening it...and a warning saying "I have 29 days remaining until it expires".
    My question is: How can I either remove the Office 2004 Test Drive and/or get it so that my document is opened with the "real" Office, instead of the test drive?
    As I said, I apologize if this is the wrong forum... but if you can please a) direct me to the correct forum or b) help me out with a link... I'd VERY much appreciate it.
    Thanks very much!
    Macbook Pro   Mac OS X (10.4.8)  

    If you installed (used) the Trial version of Office then merely dragging the folder to the Trash won't do the trick. You will instead have to run the Office Uninstaller (in the /Office 2004/Additional Tools/Remove Office/ folder) and completely remove both the Trial and the licensed version of Office including preferences. Then reinstall your licensed version. This is the only sure way of avoiding any conflicts between the two versions.
    You were obviously pleased with the help provided by the other poster. Consider rewarding his/her effort:
    Why reward points?(Quoted from Discussions Terms of Use.)
    The reward system helps to increase community participation. When a community member gives you (or another member) a reward for providing helpful advice or a solution to their question, your accumulated points will increase your status level within the community.
    Members may reward you with 5 points if they deem that your reply is helpful and 10 points if you post a solution to their issue. Likewise, when you mark a reply as Helpful or Solved in your own created topic, you will be awarding the respondent with the same point values.

  • Real Application Testing (RAT); questions

    Hi,
    We are currently working on a missing involving RAT, both SPA and DB Replay.
    The customer raised some questions and I was wondering if anybody has more detailed information to share?
    FYI: we are using in most cases the API calls, as we don’t have an EMGC 11G available, only Database control.
    h4. Q1: If the DB capture runs out of space, what would be the impact on Prod database
    My response would be: no impact on the database as the recorder stops
    Best Practice: create a separate location to store the recording
    h4. Q2: What could be missing with RAT (SPA/DB Replay) --> gap analysis.
    Reduce as most as possible the time needed by ADM (Development Team) in order to validate database migration.
    The database team wants to be as independent as possible of the development team in order to do the upgrade of the databases more autonomous. They want to have an idea on what they could be missing if they use SPA and DB Replay to make sure they don't miss anything which could have an impact on the developers after the upgrade. Are there any particular things that SPA and DB-replay would miss, and as a consequence aren't tested, which could lead to unhappy developers after the upgrade of the database.
    h4. Q3: Difference between DB Replay and SPA (when to use which one)
    h4. Q4: Oracle recommends shutting down database before recording workload, but may not be always possible (Web Banking), when and how to do it then?
    My response was to start recording at a the lowest load time.
    Any other ideas to minimize the impact of a running instance
    h4. Q5: Does it need to filter out sys/system, rman,... Activities during captures?
    h4. Q6: The capture report is showing 5 user calls captured with Errors, but I can’t find any related information on what went wrong.
    To what is this related?
    Captured Workload Statistics
    •     'Value' represents the corresponding statistic aggregated across the entire captured database workload.
    •     '% Total' is the percentage of 'Value' over the corresponding system-wide aggregated total.
    Statistic Name     Value     % Total
    DB time (secs)     7.77     10.43
    Average Active Sessions     0.03     
    User calls captured     1713     9.09
    User calls captured with Errors+_     5     
    Session logins     23     32.39
    Transactions     33     3.74
    h4. Q7: During the capture we can execute an export AWR, but we also need to do an import AWR somewhere, and this is not documented on how this is done in the RAT User Guide.
    Can you comment on how this process is working in order to do some proper reporting.

    Q1
    I have not had a space issue in the RAT capture files that caused a database issue when space ran out.
    Q2
    You will miss anything you filtered the capture on, anything that errored during the capture
    Capture will also not get and to be aware of
    Direct Path Load (SQL Loader)
    Shared server (Oracle MTS)
    Oracle Streams & Advanced Replication Streams
    Non-PL/SQL based Advanced Queuing (AQ)
    Flashback queries
    OCI-based Object Navigation
    Non SQL-Based Object Access
    Distributed transactions, remote describe/commit operations (will be replayed as local transactions)
    Q3
    I typically use DB Replay for an overall work load perspective, SPA for SQL Level.
    For example I will to a DB replay find from my reports SQL that needs a further look see and use SPA from there.
    or potentially use SPA to focus on the SQL itself and not concern myself the the whole workload until I am ready.
    Q4
    Set the SCN for when capture is started, have the replay database be recovered to that SCN prior to any replay operation. No real need to shutdown, done this many times with success.
    Q5
    Typically I will filer any grid control agent or other agent software activities from the capture for sure.
    Q6
    Your Capture Report does not show anything?
    Q7
    You can extract and load AWR with the following packed procedures
    sys.dbms_swrf_internal.awr_extract
    sys.dbms_swrf_internal.awr_load

  • Data conversion questions

    Hi Everyone,
    I'm confused by the data conversion rule and how to do it in abap, could you help me about some of my questions?
    1. How many ways to do data conversion ( like assignment .....)?
    2. When using field symbol, we know we can assign reference to field symbol , and at mean time , we can casting type.
        Is this kind of casting also a way to do data conversion?
    3. In my real case, I have unknown type data to convert to xstring. the type could be any ( I, D, T, STRING......). Is there an easy way to implement that when I get the data reference, I only need to import it to a method and then the method return an xstring to me?
    4. question 3 is about data->xstring, and how can I convert xstring back to the original data( should be the same type )?
    Thanks and Regards,
    Aaron

    Hi Aaron,
    try this FM:     CONVERSION_EXIT_ALPHA_INPUT
    is useful for convert different data type, here an example:
         call function 'CONVERSION_EXIT_ALPHA_INPUT'
              exporting
                input         =   A    ( type unknown )
              importing
                output        =  B  ( type xstring ).
    Perhaps that helps,
    Regards,
    Davide

  • DEV Test Company question

    Hi experts,
    I'm not sure where to post this question so please forgive me:
    I'm coming from SAP Business One and now getting involved with SAP R3/ECC.  I can't wait to explore the many things about it, but I have a question:
    I really want to understand the business procedures and I'm wanting to create a test company, I have access to the DEV environment but I don't have access to sandbox.  Is it Ok to do it in DEV and delete the transport requests? 
    Thanks in advance!

    Hello Marianne,
    Yes, you can do it in DEV environment. If you delete your TR still, your data will be there in DEV. I hope that will not be any problem. So, Go ahead.
    Thanks & Regards,
    Abhijit

  • Is there a possibility of doing a test conversion prior to subscription?

    I would like to seriously consider a subscription to Adobe ExportPDF. I have a small library of pdf's to convert to Word.
    However, I would first like to see how it works and the quality of the resulting Word document before I commit.
    I have seen a number of online conversions, all of them of poor quality.
    Is there someway I can do a test run?
    Richard

    ExportPDF is one of the Acrobat.com features/services.
    The Acrobat.com user forum is:
    http://forums.adobe.com/community/acrobatdotcom 
    where there ExportPDF user forum can be found.
    FAQs associated with the ExportPDF service is located at: 
    http://kb2.adobe.com/community/publishing/898/cpsid_89847.html
    Be well...

  • Removing Test Drive Question

    I have never activated Test Drive. When I go to remove it via its uninstaller it does not find any components to remove. I want to install MS Office Student teacher edition instead. That software recommends deleting Test drive. My question is how do I remove Test Drive when it has never been activated into its 30 day trial period?

    Thank you for your response. You are referring to the Test Drive Folder itself, not the individual components within the folder correct?

  • PAL - NTSC Conversion question

    I have some PAL DV footage at 25fps which I need to convert to NTSC to match some existing NTSC footage. The NTSC originated footage, when played in Quicktime diisplays the following info:
    FPS: 23.98
    Playing FPS: 24
    I need to convert the PAL footage to match the NTSC frame rates, annd also I'd like to converted footage to appear that it is NTSC roriginated (i'e, with the slower framerate as opposed to 25fps).
    I've made a few tests using the Frame Controls "Set Duration" options in compressor, but the results always seem end up at the wrong frame rates. Which setting should use? And can somebody explain what all the settings mean?
    24@25
    23.98@24
    23.98@25
    [email protected]
    29.97@30
    [email protected]
    Message was edited by: Marc Morris
    Message was edited by: Marc Morris
    Message was edited by: Marc Morris

    Marc,
    I dont have extensive knowledge in this area although am literally doing the same conversion (PAL to NTSC) on my mac as I type this.
    I also recently read in Videography magazine about a project that was assembled from archived footage and all of the footage used originated from different formats and that was the hardest part about editing.
    They mentioned all the different ways they attempted to convert the footage but in the end it seemed as if they just settled for what looked best because they couldnt get an exact conversion.
    If your looking for a better way I would contact a transfer house to see what they may be capable of doing. Another thing worthy of pointing out that reading how they did the conversion they never mentioned using compressor so there are probably better systems at converting the files.
    hopefully this helps.
    -jeremywearsvans

  • GL Balances Conversion Question

    Hi,
    Recently I started working in oracle apps so you can consider me as a beginer.Now; I'm working on a GL Conversion project. We have balances from 2003. It has been decided that we will convert the balances from 2003-2006 and for 2007, 2008 we will convert in detail (every journal). We also use multiple currencies. My question is on extracting the balances. There are various values for Translated flag and some thing about BEQ columns.
    I will appreciate, if you can tell me what balances I should extract for conversion purposes.
    Thanks for your help !!
    Shreekar.

    Can you give me details of what you have done?? i have the same issue and i do not know what has to be done
    Thank you!

Maybe you are looking for

  • Need help inserting spry correctly

    ok im trying to build a website about video games which will include things like cheats, tips, guides, etc. for thousands of games so im gonna have a lot of pages so using a template is my only choice. Wehn making the template i created an editable r

  • Is it that we cannot run sql statement in main??

    Hi all, sorry to bother again. But i have some problems. I had a program that have main method and some other small methods that contains some sql statement that call the db to retrieve info. But it keep on prompting me error: "Connection refused. Ch

  • MiniDisplay Port

    I bought a MiniDisply Port to DVI. When i hook it up to my MBP the screen goes black and there is no display on my TV. I unhook it and the display on my MBP continues to stay black. The only way to get the display back is to perform a restart of the

  • PS cc 2014 printing problem

    Is there anyone has a solution regarding printing problem with Photoshop CC2014 ? Windows shuts the application as soon I choose print , ( any file, psd or jpeg ) ?

  • Network issues with 2nd server in pool

    Hi All, Created a test environment with ovs 3.0.2 and manager 3.0.2. Initially started with just one host and one manager (seperate physical blades). Created the NFS storage with 2 repos, one 12 GB for file system and another large repo for vm's. The