Splitting DATA_TOP to different mountpoints

Hi,
I am doing a single node to multi node clone of Apps.
In the database code tree copy I have placed the RDBMS_ORACLE_HOME in /u01
Now I need to evenly split data files across three mount points /u02 , /u03, /u04.
How can I achieve this?
Can this be done by randomly placing .dbf files across three mount poins and while running adcfgclone.pl I can answer the below questions like this :
Number of DATA_TOP's on the Target System [1] : 3
Target System DATA_TOP Directory 1 [u02/data] : /u02/data
Target System DATA_TOP Directory 2 [u03/data] : /u03/data
Target System DATA_TOP Directory 3 [u04/data] : /u04/data
Will adcfgclone.pl recognize the data files on the mount points mentioned above and automatically create the database depending on them?
Please Clarify.
Thanks,
Ram

Hi,
How can I achieve this?You have already done it (as shown above in your post).
Can this be done by randomly placing .dbf files across three mount poins and while running adcfgclone.pl I can answer the below questions like this :
Will adcfgclone.pl recognize the data files on the mount points mentioned above and automatically create the database depending on them?Yes, it will. If there is any issues in any of the mount points (like if does not exists), then adcfgclone.pl will prompt you to enter the correct PATH again.
Regards,
Hussein

Similar Messages

  • Billing doc Split due to different partner data in VOFM

    I have a Billing doc split due to different partner data in a routine in VOFM. How do you clear these. I have tried VBPA without success. We want a billing document by Payer and PO number.

    Hi,
    I am facing a similar issue. Please let me know a s how you proceeded in clearing the "SPLIT DUE TO PARTNER DATA".
    Thanks in Advance.
    Regards,
    Rajesh

  • Split data into different fields in TR

    I have a flat file with space (multiple spaces between different fields) as a delimiter. The problem is, file is coming from 3rd party and they don't want to change the separator as comma or tab delimited CSV file. I have to load data in ODS (BW 3x).
    Now I am thinking to load line by line and then split data into different objects in Transfer rules.
    The Records looks like:
    *009785499 ssss BC sssss 2988 ssss 244 sss 772 sss  200
    *000000033 ssss AB ssss        0  ssss   0 ssss 0 ssss 0
    *000004533 ssss EE ssss        8  ssss   3 ssss 2 ssss 4
    s = space
    Now I want data to split like:
    Field1 = 009785499
    Field2 = BC
    Field3 = 2988
    Field4 = 244
    Field5 = 772
    Field6 = 200
    After 1st line load, go to 2nd line and split the data as above and so on. Could you help me with the code pleaseu2026?
    Is it a good design to load data? Any other idea?
    I appreciate your helps..

    Hi,
    Not sure how efficient this is, but you can try an approach on the lines of this link /people/sap.user72/blog/2006/05/27/long-texts-in-sap-bw-modeling
    Make your transfer structure in this format. Say the length of each line is 200 characters. Make the first field of the structure of length 200. That is, the length of Field1 in the Trans Struc will be 200.
    The second field can be the length of Field2 as you need in your ODS, and similarly for Field3 to Field6. Load it as a CSV file. Since there are no commas, the entire line will enter into the first field of the Trans Structure. This can be broken up into individual fields in the Transfer Rules.
    Now, in your Start Routine of transfer rules, write code like this (similar to the ex in the blog):
    Field-symbols <fs> type transfer-structure.
    Loop at Datapak assigning <fs>.
        split <fs>-Field1 at 'ssss' into <fs>-field1 <fs>-field2 <fs>-field3....
        modify datapak from <fs>
    endloop.
    Now you can assign Field1 of Trans Struc to Field1 of Comm Struc, Field2 of Trans Struc to Field2 of Comm Struc and so on.
    Hope it helps!
    Edited by: Suhas Karnik on Jun 17, 2008 10:28 PM

  • Invoice split due to different price group

    Hi Experts,
    My business scenario starts from scheduling agreement -OBD- Commercial Invoice-Excise invoice - ARE3 Invoice
    To address different prices in the scheduling agreement i have maintained the pricing based on price group.
    The two line items falls different price group, it is fetching the prices correctly
    but the problem is ,invoice gets split up because of different price group.
    I know the control is in copy control VTFL- data VBRK / VBRP-invoice split, here VBRk-ZUKRI is not accounted with VBRP-KONDA_AUFT
    Could you please help me to explain this split functionality in details to avoid splitting of invoice ..please
    With regards,
    Pratheep

    Hi friends,
    Split due to Different header data
    Price group (Customer) 5 and 4
    How to overlook this split, where do i bypass this splitting functionality
    Thanks,
    Pratheep

  • Invoice split due to different header data

    23.09.2008
    Generation of Invoice against sales orders, splits due to different header data. Split analysis shows the reason as a)Billing date for billing index b)Combination criteria c) Reference document number d) Translation date and  e) Payment reference.
    Will a routine at VBRK/VBRP at item level for each of the item categories help. Can i put it as combine billing if the Sales Order number and billing date is same?
    Please advise.
    Regards,
    Udaynath

    Hi,
    Could you please check and confirm following details:
    T. Code: VTFA
    Select your for Order-to-Bill Combination (say, F2 -- OR) and Double-Click.
    In Header (Left-Hand-tree),
    Copying requirements:   001  Header/order-related
    Determ.export data: B
    (Also, is there any entries maintained in:
    Assignment Number:
    Reference number:
    In Item (Left-Hand-tree), Select your Item Category and Double-Click
    Copying requirements:   001  Header/order-related
    Data VBRK/VBRP:         001  Inv.split (sample)
    Best Regards,
    Amit.
    Note: refer SAP Notes:
    A. 11162
    B. 31188
    with BASIS for more detail. I hope this might help you.

  • Invoice split due to different partner data

    Hi,
    Based on two sales orders, we would like to create one billing document. Here's the case:
    Sales order 1 (and delivery 1) has customer number A as sold-to party and customer number C as bill-to party and payer
    Sales order 2 (and delivery 2) has customer number B as sold-to party and customer number C as bill-to party and payer
    Using the "Simulate" option in VF04 causes the system to propose two different billing documents, due to the following (info from the split analysis):
    Split due to different partner data:
    Customer Number 1
    Address
    Split due to different header data:
    Sold-to party
    We have attached a VOFM routine to the processing, in which we clear out the sold-to party:
    clear: vbrk-kunag
    This eliminates the "split due to different header data", but how do we clear out the fields "Customer Number 1" and "Address"? I have tried the following code in the same VOFM routine, but with no luck:
    clear: vbpa-kunnr
    -> How can we clear out the customer number and the address to eliminate the split?
    All helpful answers will be rewarded.
    Best Regards,
    MV

    OMG! This is crazy - I don't think you're supposed to do this... It will mess up the standard functionality - reports, index tables, etc.
    Tell your SD consultant to configure partners differently, so that Sold-to is the same but Ship-to or something else is different. Or, in the worst case, you can always create a custom program and Smartform to print several invoices together, if your customers require.

  • How to avoid invoice split due to different billing due dates?

    Dear All,
    How to avoid invoice split due to different billing due dates for the group of  outbound deliveries?
    Thanks in advance.
    Regards,
    Niketan

    Hi,
    Thanks for the inputs.
    I want to avoid the invoice split during invoice creation through transaction VF04 for  no. of delivery documents having different billing due dates.
    I can club only 14 delivery documents via VF01 which will have the common billing date. Is there any other method of clubbing 25-30 delivery documents with different billing due dates in one invoice?
    Regards,
    Niketan

  • Split due to different partner data

    hi experts,
    i have read a lots of post about this problem and i have not found a solution. problme is that i want to create a invoice from 2 deliveries and SAP split the invoice in 2 invoices due to different partner data for field Bill-to-party (BP).
    BP    Address
    Thanks.

    Hi Experts,
           I have the same problem while craeting delivery its showing Split due to different partner data
           Split due to different partner data
            PR Fld Name                            $000000001           $000000002
            CP Number of contact pe         0000002135          0000002133
            CP Address                              0000055901           0000055903
            CP Person number                   0000056026           0000056018
    I copied the standard routine and cleared the value VBPA-ADRNP, VBPA-ADRNR,VBPA-PARNR but still its spliting, How to resove it ,
    I checked mostly all threads but all are related to ship/sold-to-party, terms of payment only not related to my issue,
    Please help me out,
    Thanks in advance

  • Invoice Split due to different incoterms 2

    Hello SD experts..
    Kindly advise on the following situation.
    we are making supplemetary invoice with  ref of invoice which could be more than one sometimes.
    Further more in first invoice we have put incoterm 2 as a BY ROAD. In 2nd inovice we have put incoterm 2 as BY TRAIN & in 3rd it is BY AIR.
    So when we try to make supplementay invoice with ref to these 3 invoice ( we want to make only 1 supplemetary invoice) it is getting split saying " different header data- Incoterms 2"
    What settings I have to change.?
    Thanks & Regards
    RaviRaj0308

    Thanks Arun for paying attention towards this...
    I will explain the situation again.
    1) We have document flow like this. Order- Delivery- Invoice- supplementary order- supplementary invoice
    2) We make the supplementary order with ref to Invoice which could be more than 1 sometimes. So these invoice might have different incoterms 2.
    3) We make & save the supplementary order & save it.
    4) then we make invoice with ref to this supplementary order, which is getting split, which we do not want.
    5) Also the split analysis says " different header data- incoterms 2"
    Question 1) How to restrict the  "Invoice Split"
    Question 2) If not possible through the settings, which user exit/ development I should ask to ABAP team.
    Fell free to ask further queries.
    Thanks & Regards
    RaviRaj0308

  • Invoice split because of different ADRNR

    Hello,
    Invoices are getting splitted because of different Address numbers created for the invoice documents. when i checked in VBPA table i found that for the sold to party for few orders the address indicator is E and for few the address indicator is D . All the orders with address indicator D carry the same ADRNR but the ones with E carry different address numbers can i know the reason for the same
    i have checkd if any changes are made manually while creating the sales order,delivery or invoice but i couldnt found any.
    what is the concept of address numbers and where is the configuration done for that.
    Thanks in advance

    Hi,
    Even I check this, ifthe indicator is E, then those are manually changes addressess.
    There is a possibility that while creation of order, the adress came from master data and the it was changed manually, hence you are not able to see any changes..  I did not check how it behaves while order creation..but think this muast have happened.
    As suggested earlier, please check in copy controls.. let us know
    Regards,
    SB

  • How to avoid invoice split due to different partner function?

    Hi,
    I have problem when i create a bill from two deliveries. During the billing overview i have two invoices and the split analysis give me a message split due to different partner functions. The split must be avoid because we are using custom partner. Í try use the VOFM control copy but without result.Can you help me, please?.

    Hi Pedro,
    To combine multiple deliveries into one billing document, the deliveries should have same PAYER, PAYMENT TERM, INCOTERM, BILLING DATE and DESTINATION COUNTRY.
    Ship-to-party or BP etc are not the criteria for combination.
    If the above criteria are not same then you can not combine the deliveries.
    Some settings in the copy control (VTFL)has to be made.
    At Item level in VBRK/VBRP field put value "001".
    At Item level in the Copying requirement field put value "004".

  • How to avoid invoice split due to different billing dates?

    Hi All,
    How to avoid invoice split due to different billing dates during executing VF04 transction?
    I want to club 30 delivery documents with different billing due dates in one invoice.
    I am using VF04 tr for the same. However, here i cannot control the invoice split based on diff billing due dates.
    If the same thing is tried via VF01 , it allows only 14 del dcouments at a time.
    Can u suggest  abetter technique to do the same?
    Regards,
    Niketan

    I think I already explained you in a similar post to use VF04 setting the billing date as default:
    menu: settings->default data. Place  the date in field Billing Date.
    pls. reward if helpfull
    Roberto

  • How to move a tempfile online to a different mountpoint

    Hi,
    I need to move a tempfile online to a different mountpoint
    Can you please tell me the steps
    Thanks
    bsac14

    hi,
    I would recommend the following steps:
    ==============================
    SQL> alter database tempfile '/u01/app/temp02.dbf' drop;
    Database altered.
    SQL> alter tablespace USER_TEMP_1 add tempfile '/oracle/temp03.dbf' size 2M;
    Tablespace altered.
    $ rm /u01/app/temp02.dbf
    ==============================
    i.e. Drop the tempfile and add a new one to the tablespace. Then remove the OS file.
    Hope this helps!

  • Splitting Midi To different tracks

    Hey,
    Is there anyway to split a midi part to separate channels. Let me explain - Say you have you sequence a kick snare and hihat on one midi part. Then is there an option to split each part to there own channel (so the kick will be on one track and the snare will be on its own etc).
    Sounds complicated but this means you could then mix down better and add different parameters to each part. I know you can do this in Cubase so was wondering if there was something similar on Logic.
    Cheers.

    There are several ways to deal with this. If you are using something like BFD, Superior, etc - make a multi instance of the virtual instrument. In the VI assign each drum to a different output bus, then each drum will come up on a seperate channel in your mixer..
    If you were using a stereo instance - would be to mute all drums, but the kick, and record that to audio, then the snare, hats, etc. One at a time, that way you have complete control over it. You can go back later, and replace the snare, change pitch etc. without disturbing the rest of the mix.

  • Amount should be split in to different accounts

    Our client is selling Computers and it is accessories.
    I have material with one valuation class ,  for this material there are three warranties.
    1. Base Warranty
    2. Extended warranty
    3. Base & Extended warranty.
    Case 1: if the material falls under "Base warranty" then it has to post in one GL account.(After making GR)
    Case2: If the material falls under extended warranty , then it has to post another GL account..(After making GR)
    Case3: If the material falls under both Base & Extended warranty , then the amount should  split in to both accounts , based on Percentage. .(After making GR)
    How can it be possible?
    If any one know the solution, please inform me.
    I request you , to forward , if you have any solutions for the above scenario.
    Thanks in advance .
    Kind Regards,
    N.Chandrasekhar.

    Chandrasekhar,
    How do you identify the different types of warranties for the material in SAP?
    You can definitely use the split valuation functionality where in you could create 3 different valuation types to represent your 3 types of warranty and then use 3 different valuation classes to link the same material to 3 different G/L accounts. For case 3, you will have to use a BADI or user exit during GR to split the amount based on your criteria.
    If you are not aware of the split valuation functionality, you may wish to go through this nice explanation below.
    http://www.sap123.com/showthread.php?t=29
    Hope this helps.
    H Narayan

Maybe you are looking for

  • Windows 7 toolbox on system with only 2 partitions

    I installed Win 7 with a clean install and new hardrive on my T500. So I have only 2 partitions, C and D (system and data). Anyone know if toolbox will install without wanting the hidden lenovo partitions? I don't want to install it if it does as I l

  • It takes long time to invoke the Exception handler code

    In our setup there is firewall between the Appserver that is using toplink and the database.The firewall terminates idle connection on any port if the connection is idle for 1 hr.So i have implemented an exception handler to reconnect when the connec

  • Problem with PT8 NEO Y VGA ATI SAPHIRE 9250SE

    problem with PT8 NEO Y VGA ATI SAPHIRE 9250SE

  • Report XML as datasource

    Is it possible to use the xml for individual reports taken from the catalog manager as a datasource? The idea being that this could be used to augment the level of detail available when reporting on the structure of the rpd, in addition to the usual

  • Can I undo iPhoto to Aperture import?

    Hello, I recently installed Aperture and proceeded to import my iPhoto library; however, instead of all my albums and folders importing as projects, they imported as one giant iPhoto library folder, with the individual folders and smart albums integr