How to create a .env after clone?

Hi:
I am doing a clone. The database clone is done. Now the apps tier. I copied files from prod to target. And now trying change APPS password. but got error. FNDCPASS: error while loading shared libraries:libclntsh.so.10.1: cannot open shared object file: No such file or directory
Hussien said in a thread that i need to run .env file. But i don't have one, only have prod's env file. What i should do?
OS: Linux; EBS: 12.1.3

I am doing a clone. The database clone is done. Now the apps tier. I copied files from prod to target. And now trying change APPS password. but got error. FNDCPASS: error while loading shared libraries:libclntsh.so.10.1: can not open shared object file: No such file or directory
Hussien said in a thread that i need to run .env file. But i don't have one, only have prod's env file. What i should do? You need to complete the application tier cloning before using FNDCPASS, and only then you will have the env file generated for you under $APPL_TOP directory (assuming Rapid Clone completes successfully at the application tier node).
Cloning Oracle Applications Release 12 with Rapid Clone [ID 406982.1]
Thanks,
Hussein

Similar Messages

  • How to create an ods after creating info objects?

    Hi,
    Please Explain me How to create an ods after creating info objects with all screenshots in BW 7.0?
    Thanks,
    Jini

    Hi Jini,
    In the create screen u will find some settings related information which u need to check and then there are key fields and data fields option.
    In Key field u need to include those objects which should make ur ODS Key fields. and then rest of the fields in the data fields.
    For setting related information u can search in help.sap.com or even on SDN threads.
    Thanks,
    Nagesh.

  • Hi Experts, how to create a subform after a subform?

    Hi Experts,
    does anyone know how to create a subform after a subform? thanks in advance!
    Kind regards
    Dawson

    Dear everyone,
    does anyone know the answer? thanks in advance! and the subform is in the content node, and at this time I have another question that is the content used in the pages of master page automatically? because there is a untitled content area in the pages of master page, can anyone give some tips?
    thanks.
    Kind regards
    Dawson

  • How to create a file after ElapsedTime

    Hi, I have a situation where my BPEL process consumes messages off of a queue and creates a output file using them via a FTP Adapter. The number of messages vary greatly depending on the day and the business needs only 1 file a day with the appropriate dateTime stamped to it. I tried using the elapsedTime option on the FTP adapter but it seems to be waiting for invocation before creating the file. I set the time to 2 minutes but instead of creating the file after 2 minutes of inactivity, it waits for a message to be triggered with more than 2 minutes time difference from the last one. Since the messages come in a burst on this queue, the next message wont come in until the next day for the file to be triggered.
    I also tried appending to a file but this is over a SFTP connection so it just kept overwriting the file and in the end I just have 1 record on the file. Any suggestions on this would be really helpful as to how should I go about creating this file in a way that it captures all the messages for today and creates the file the same day as well. Thanks!

    like an action class?Huh? What exactly is your requirement?
    Creating a file is usually done with java.io API. Read the java.io tutorials how to play with files.

  • How to Create a DML AFTER trigger

    Hi Friends,
    I need a help from you.
    THe Scenario is We have Tables like parent and Child Table.
    Like we have Child Table as  Name AcademyContacts,In that we have Columns like 
    Guid(PK)Not Null,
    AcademyId(FK), Not Null,
    Name,Null
    WorkPhone,Null
    CellPhone,Null
    Email Id,Null
    Other.Null
    Since we have given Null to ''Workphone'',''Cellphone '', ''Email ID''.when inserting the data into these table 
    if the particular columns are empty while inserting also the data will get populate into the table.And
    I need is if these columns are ''Workphone'',''Cellphone'' , ''Email ID''  they cant insert the data into table.
    Like it must trigger like ''Please enter atleast one of these ''Workphone'',''Cellphone'' , ''Email ID'' columns.
    How to do this in triggers please suggests me friends !!!!
    I am waiting for your response !!!
    Arunraj Kumar

    Respecting all i would suggest it is not manager who decide which is right or wrong. Business should decide which is a good  solution. 
    Trigger also use for business validation and you can put this validation is Stored procedure also.
    Question is how are you inserting  data to parent table , whether your parent  and child table are in within same transaction or not . Other wise if you insert data to parent and while inserting to child table you throw this message it will not
    be consistent and   where you want to show this message . You have to consider all these scenarios.
    If you use Stored procedure you can return your message. Or It is advisable if you have a front end better handle this in front end.
    For your scenario if you want to go for trigger , for you , you need to implement Instead of DML trigger.
    Example :
    CREATE TRIGGER IO_Trig_INS_Child ON ChildTable
    INSTEAD OF INSERT
    AS
    BEGIN
    SET NOCOUNT ON;
    IF NOT EXISTS( SELECT * FROM Inserted I where I.Workphone IS NOT NULL OR I.Cellphone IS NOT NULL OR I.EmailID IS NOT NULL)
    THROW; -- Refer http://msdn.microsoft.com/en-IN/library/ee677615.aspx for detail use of throw
    END
    Create storedprocedure InsertSp
    AS
    Begin Try 
    Begin Tran 
    Insert into parenttable values ( <<your values>>)
    --If you want to handle in sp , here you can check the column value and throw error befor inserting to child
    Insert into child table values (<<>>) 
    Commit
    END Try 
    Begin Catch 
    THROW 'Your message'
    End Catch 
    Sandip Pani http://SQLCommitted.com

  • How to create a Idoc  after a salesorder is created.(Different approaches.)

    Dear Experts,
    First of all I would like to thank SDN as continuously helping me to deliver  better  and faster.
    My requirement is to generate  a Custom idoc whenever a SalesOrder is created. with net value more then 1,00,000.
    Can u please help me by providing what are the different ways we can do this and which one is the best and easier one.
    If possible provide some sample code also.
    Thanks,
    jeevan

    Hai Thirumulan,
    I think the approaches u suggested going to help me out ..
    Can you pls go into details.
    thx,
    jeevan

  • How to create .sites file after the work is done?

    I've lost one or two of my sites regarding to this problem.
    I just know that I need .site files if you need to come back and modify it later.
    Any way to create domain.site files?

    to retieve file content from the databse i have done this.... but its not working . i m using mysql database... i m getting
    1)BLOB cannot be resolved to a type
    2)The method getBLOB(String) is undefined for the type ResultSet
    3)path cannot be resolved
    anyone pls help me...
    my jsp code is...
    <%
    try
    int returnValue = 0;
    Connection conn = null;
    Statement stmt = null;
    ResultSet rs = null;
    InputStream is = null;
    OutputStream os = null;
    BLOB blob = null;
    String text;
         text=request.getParameter("text");
         Class.forName("com.mysql.jdbc.Driver");
    conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/sushikha","root","root");
         final String query = "SELECT data,path FROM pro WHERE data LIKE = " + text;
         conn.setAutoCommit(false);
         stmt = conn.createStatement();
         rs = stmt.executeQuery(query);
         if(rs.next())
         blob = rs.getBLOB("data");
              is = blob.getBinaryStream();
              final String fileName = rs.getString("path");
              final Stri0ng filePath = path + fileName;
              os = new FileOutputStream(filePath);
              final int bufferSize = blob.getBufferSize();
              final byte[] buffer = new byte[bufferSize];
              int bytesRead = 0;
              while ((bytesRead = is.read(buffer)) != -1)
              os.write(buffer, 0, bytesRead);
    else
         returnValue = 1;
         catch(Exception e)
         out.println(e);
    %>
    thanx in advance..sush

  • How to create delivery order after SO was created and before in storage ?

    HI ALL:
        The title is my question ? Is there any one know how to set ?
    please,  thanks first.

    Hi ,
    I faced the same problem once..
    Msgno: VL367 - An item with no delivery quantity is not permitted. Item will be deleted.
    You can solve it by doing either of the following..
    1.Enter storage location for the item in Sale Order where you have stock..
    or
    2.find the storage location assigned in OVL3(Picking Location Determination). In case if Storage location has assigned, but stock is not maintained in storage location - then we will get this error.
    Try to change the storage location in this or in the sale order..
    I would suggest u to add stock for that particular storage location..
    Thanks,
    Venkatesh.S.P

  • How to create a label after hitting a button

    l = new JLabel();
    l.setSize(22, 22);
    l.setBackground(Color.blue);
    jContentPane.add(l, null);
    i tried this code in actionPerformed but nothing happens
    could anyone help me plz

    l = new JLabel();
    l.setSize(22, 22);
    l.setBackground(Color.blue);
    l.setOpaque(true); //<-- insert this line to see a blue label
    jContentPane.add(l, null);

  • Create Info objects after extracting ds from ecc

    Hi All,
    I have replicated ds from ecc to bi and executed the infopackage. Now the data is upto psa level. How to create info objects after loading data to psa level to load the info objects to data targets like infocubes and dso. I have done to sucessfully to a flat file.
    Thank you.

    Hi Sudhir,
    You can go into 2 directions: use as much as possible Business Content InfoObjects or use custom InfoObjects. A combination is also possible.
    Especially in conjunction with SAP ECC extractions the Business Content InfoObjects are a safe choice. However, please consider the advantages it can have to use custom InfoObjects.
    If you would like to go into the direction of custom InfoObjects, then I suggest reading the following blogs:
    Generating Data Warehouse InfoObjects - Part 1: Introduction;
    Generating Reporting InfoObjects based on Business Content - Part 1: Introduction.
    Best regards,
    Sander

  • How to create a new FTP folder for a child theme for Word Press?

    Hello, I am getting hung up on creating a new ftp folder in OS X 10.5.8 in order to set up a child theme. Once I am in the ftp file listing <Go - Connect to Server> I'm not sure how to create the folder after that.  I've tried right clicking (external mouse).  Newer Macs seem to have an Add Folder button at the top of the page. Does anyone know how to do this?

    Hi laundry,
    I tried that but it didn't work.  I'm thinking I need to move in a different direction than the child theme option.  Maybe I'll need to do this further down the road when my blog is more advanced.  The Command +Shift+ N shortcut should work in other windows though right?

  • How to create explosions?

    hey all!
    Just wondering if any of you know of a plug-in/tutorial on how to create explosions in After Effects CS3? And, are there any random, free or not free, plug-ins you recommend (this question doesn't have anything to do with explosions!)?
    Thanks for your help!!!
    Brad

    Explosions are typically created with particle generation systems, stock footage, or a combination of both.
    Trapcode Particular has preset explosions built into it, but it's not a cheap plugin:
    http://www.trapcode.com/products_particular.html
    The existing Cycore particle systems in AE, CC Particle Systems II and CC Particle World, are good places to start for free.
    You can buy stock footage of explosions from many sources. Artbeats is great but expensive.
    http://www.artbeats.com/collections/206
    Andrew Kramer has a great package called Action Movie Essentials which includes explosions, and its only 60 bucks, including tutorials:
    http://www.videocopilot.net/action.html
    Detonation Films sell stock footage of fire and explosions, but there are lots of freebies on their site. It's mostly DV footage, so not up to the standard of Artbeats, but its cheap and/or free, so who's complaining?
    http://www.detonationfilms.com

  • How to create and use a boot volume clone?

    Hello. My name is Cassiano and I'm NOT a system administrator. I'm an architect. I design and build houses, not systems. And the reason I'm telling you that is because I need your help.
    The short version of my problem is this: "How do I create a boot volume clone", but I think I need to tell you the whole story.
    Here at the office I work we have 18 iMacs and 1 Xserve running OS X Server 10.4.9.
    Although I'm an architect I'm responsible to keep the computers up and running.
    This is not because I want, but just because I'm the one here that knows a bit more about this stuff and although I'm not an expert, I know quite a lot about this stuff. I did pretty much everything here. Configured the network, firewall, installed the Xserve, etc, but of course that if something breaks we just take the computer to apple store and wait for it to be fixed
    The Xserve has 3 HDs inside. 1 at bay1 which is the boot and 2 others on bay2 and bay3. The HDs on bay2 and bay3 are working as one using SoftRAID and we use this volume to store all of our data. That is the reason we chose to mirror them using softRaid. If one fails, the other has everything and we just have to get a new one.
    Last week we decided to setup the Xserve to be our mail server as well, so I turned on the Mail Service and after a lot of reading I managed to configure it correctly. In fact we have our MX records pointing to a company that relays the email to our Xserve, so it is not really accessible from the outside world.
    But this Mail thing made me loose my sleep. The reason is: before that our Xserve was used only as a file repository. So if it would break or something all we have to do is take the HD out of it, send it to apple store and plug the HD on another computer. All of our files would be safe and everybody would be happy. Of course this is an over simplificated situation, but that is pretty much how it would go.
    But now everything is different. Every person here has the email account configured to the Xserve, which means that if it breaks or something goes wrong, no one will be able to send or receive emails. The new messages will not be lost, because the company that relays the emails to us will keep them there, but things will get chaotic here.
    When reading this document here: http://developer.apple.com/documentation/MacOSXServer/Conceptual/XServerProgrammingGuide/Articles/abpinstall.html I saw this section that said: "Cloning the Boot Volume"
    Where it says: The use of the boot volume clones is entirely to ensure the highest availability possible for your system volume, not your client data.
    So, finally, my question is. How do I implement this "boot volume clone"? If I buy a new HD and place it on bay4 will I be able to do that? How?
    After doing it if something goes wrong how do I use the "clone volume"?
    Thank you for your patience and any help is greatly appreciated.
    Best regards,
    Cassiano Forestier
    Specs of the Xserve
    Machine Name: Xserve
    Machine Model: Xserve1,1
    Processor Name: Dual-Core Intel Xeon
    Processor Speed: 2 GHz
    Number Of Processors: 2
    Total Number Of Cores: 4
    L2 Cache (per processor): 4 MB
    Memory: 1 GB
    Bus Speed: 1.33 GHz
    Boot ROM Version: XS11.0080.B00
    SMC Version: 1.11f5
    LOM Revision: 1.2.1

    Yes, your server is becoming central to your business universe. Mine, too.
    Boot from DVD, and use Disk Utility to create the clone. Another way of looking at this is as a photocopy or snapshot or block-by-block copy of the state of the disk at the moment the clone is made. You can then either boot from the clone (if needed; assuming the clone is on a bootable device), or boot from the DVD and copy the clone back to the original (or replacement) disk; this restores the disk state to that of the time the clone was made.
    Yes, you'll need a disk to clone to. Probably more than one, since you'll probably want to set up a rotating pool, should you need to go back to an older snapshot.
    You're undoubtedly also approaching a requirement for either an add-on storage array or storage shelf via one of your PCI-X or PCIe I/O expansion slots, or adding a FC SAN into an open PCI-X or PCIe slot and adding the external FC SAN Xserve RAID configuration that Apple sells.
    The external storage can be "just a bunch of disks (JBOD)" in an external disk shelf, or an external RAID via add-in eSATA or add-in SCSI controller, or via Fibre Channel for the Xserve RAID configuration for the FC SAN configuration, or (for lower speeds) FireWire or (lowest) USB.
    If your data is worth it and you want to deal centrally with Apple and your budget allows it (qv: "if your data is worth it"), Xserve RAID is the way to go. The external storage shelf is certainly a feasible approach -- but you'll likely end up dealing with a third-party for the configuration, set-up and third-party storage gear.
    If you're looking for things that can go wrong here, recognize that RAID only protects against drive failure. RAID does not protect against accidental nor malicious file deletions, fat-fingered operator commands, nor against application or system-level disk corruptions. RAID (only) seeks to protect against disk errors. This gets into tapes, or near-line disk copies, or other such media. External tape, or other such archival media, and particularly media that can be sent off-site on a regular basis.
    It's good that you're thinking about this stuff, too.

  • How to create a bootable clone?

    So, I'm returning after a while in Mac-land, and there's one thing I'm missing that the Mac got very right. There were several apps that would easily clone your system onto a backup disk and make it bootable. It was the best backup system I ever had. If my disk died, I just rebooted onto the other one, and when I got the replacement, I used basically the same process to do the restore.
    How can I accomplish this in Arch? The "dd the disk" method isn't going to work out to well, as I need support for disks of different sizes, partition layouts, and interfaces. Rsync seems promising, but there's a fair bit of work to do after the copy since things like FS UUIDs will be different.
    The way this works on Mac is basically like this:
    1. rsync the source to the destination, excluding a few things that are useless, as recommended by Apple.
    2. Make the clone bootable. This is easy on Mac as boot code is never written outside the root FS, and doesn't even need to be installed into the FS header - all that has to happen is that the inode number of the boot code is written to a specific spot in the HFS+ header.
    3. The Mac's firmware (either PPC OpenBoot or X86 EFI) will scan all attached disks for bootable filesystems and show a list for you to pick, when interrupted with the right key.
    4. The root FS is always the boot FS, which eliminates the need for configuring the root FS in the boot code on fstab. It just mounts whatever it booted from as root. This neatly eliminates the need to post-edit these files after a clone
    As I see it, the difficulty of automating this process in Linux really has a lot to do with the lameness of the PC BIOS.
    I don't want to roll my own cloning code. Backups are too important to trust it to the kind of dirty hack I'd come up with. What can I use?

    So, I feel I have to respond somehow to this, so as not to seem ungrateful for the nice responses, but none of these answer the question I actually have. I think the typical Arch-user's DIY attitude goes a bit too far, sometimes.
    I know how to copy the files over, how to change the UUIDs, how to install GRUB, and how to create the 3 magic device nodes (null, console, and zero, for future reference). Just about any of these suggestions would be fine for a one-time or once-in-a-while process, but I want something that's painless enough to use as a daily backup routine. There's also the problem that they don't handle well the case where I don't want to take over the entire backup disk, and especially don't handle odd cases such as GPT disk format, where you shouldn't install boot code into the partition table area. They also aren't designed for the case where the backup device is an external disk which isn't intended to be remounted internally when disaster strikes, or the case of laptops where you don't want to have to remove /dev/sda from your machine to test.
    Basically, it amazes me that apparently nobody has written software yet to automate what's probably a very common desire. Google didn't find anything of the sort, so I came here to ask actual human beings. (Yet another case where Google is not wrong )
    Where I'm at now is to rsync everything and create the 3 device nodes, and then stop. This gets me to the 90% mark, is simple enough to be foolproof, and makes restoring the same as backing up. If there's no professional-feeling way to do the rest, I'll stop there.
    None of this post is intended sarcastically, and please don't take offense at my laundry-list of complaints for the suggestions given. I think my posts could stand to be a little clearer if a paid sysadmin with 11 years of Linux background can gather responses that say things like "use cp" and "DONT USE THIS COMMAND UNLESS YOU KNOW WHAT YOU ARE DOING"

  • How to create check in batch automatically after automatic payment program

    Hello
    SAP Experts i am getting a  issue
    how to create check in batch automatically after automatic payment program ( t code is f110)
    Thanks & Regards
    Narendra.G

    Hi Narendra,
    Please note the process below for cheque Printing:-
    1. The pre requisite for Cheque printing is you have used program RFFOUS_c/or the Z version of this program in FBZP and that you have maintained the form name in the field Form name for Payment medium in FBZP.
    2. You have a pre printed stationary on which you want to print and the Program & the form has been modified to print as per this.
    3. In F110, you must have assigned the Variant name, which would specify the cheque lot no. and this should exactly match with the current cheque no. in the pre printed stationary.
    4. Now, after all this setting, when you run Payment run in F110, then also only the Payment documents are posted but the cheque no.s are not updated in the Payment document no. nor the PAYR table is updated. It is only when you run the Print out tab, that a spool is created in SP01 for cheque printing as per the Payment documents.
    5. Then in SP01, you can print the spool on your pre printed stationary.
    This is the complete process of printing cheques from F110. Hope this helps..
    Regards,
    SAPFICO

Maybe you are looking for

  • Query tuning - oracle 11g

    Hi all, Query executes for more 1.5 hours. fetches the data from a remote database. more than million records. any suggestions to tune the query? Explain Plan CREATE TABLE STATEMENT  ALL_ROWSCost: 3,777  Bytes: 1,161,660  Cardinality: 15,285         

  • HT3939 Hi! Special characters such as è, ê and À are not dislayed correctly when received on an iphone, they appear like ¨c,¸e and R, why?

    Special characters such as è and À are not displayed correctly on my iphone but are no problem in my Outlook. Emails are sent from a blackberry Z10 Thanks

  • Using USB storage devices very slow in SL

    I have two MAC's and use Entourage on both, in order to keep my Microsoft Data Base sync's I have it on a removable storage device which I move from MAc to Mac. Since updating to 10.6.1(SL) Entourage has slowed down to a snails pace and I can only as

  • Assign Company Code to Controlling Area

    Sap FICO Experts,                            I have error in <b>OX19</b> T_code. Here I had to assign the company code to Required controlling Area. But it exists Error, "Data in Company Code <b>SMSL</b> not Maintained"                            Kin

  • Pb installing lightroom 5

    hellos i have just recently subscribed to Photoshop/Lightroom CC and was running a Mac os 1.6.8. Lightroom would not install so i had to upgrade to a newer version of OS, and upgraded to Maverick. Still, i cannot install light room. This time the Ado