Weblink issues for copying opportunity and lead records

I am trying to create weblink fields for copying Opportunity and Lead records. I am basically successful for Opportunities except that I can not get picklist or link values (such as the associated account) to copy over.
I am having no success at all for the the lead copying field. My code is as follows:
https://secure-ausomxbha.crmondemand.com/OnDemand/user/LeadsNewPageDefault?OMTGT=LeadCreateEditForm&OMTHD=LeadEditNav&OMRET0=LeadsDetailPage%3focTitle%3dPA%2bCasinos%26OMTGT%3dLeadDetailForm%26OMTHD%3dLeadDetailNav%26ocEdit%3dY%26OCTYPE%3dOther%26ocTitleField%3dFull%2bName%26LeadDetailForm.Id%3dABHA-5SVNQI&LeadCreateEditForm.Id=ABHA-5SVNQI&OCTYPE=Other&LeadCreateEditForm.First Name=%%%First_Name%%%&LeadCreateEditForm.Last Name=%%%Last_Name%%%.
Any thoughts?
Thanks.

Hi,
To my knowledge there is no written documentation available. But this is the way i do it. Go to the lead edit page. Right click in your IE and choose view source. Search for that particular field say "First Name" or "Last Name". As part of the HTML code displaying the field (<input> html tag), you can find the exact field name to be used.
The example in my case is below says the field name is LeadCreateEditForm.First Name
"First Name*</span></td><td class="fv" style="padding-left:6px;height:2px;vertical-align:middle"><input name="LeadCreateEditForm.First Name" size="20" maxlength="50" tabindex="4" type="text" value="Doug" class="inputControl" id="LeadCreateEditForm.First Name" />"
Hope this helps !!!
-- Venky CRMIT

Similar Messages

  • Issue with recursive join and filter records

    I am having an issue with recursive join and filtering records for the following rules. The table, sample records, test script and rules are as below
    drop table PC_COVKEY_PD;
    create table PC_COVKEY_PD (
    PC_COVKEY varchar(50),
    COVERAGE_NUMBER varchar(3),
    SEQUENCE_ALPHA  varchar(3),
    TRANSACTION_TYPE varchar(3),
    COV_CHG_EFF_DATE date,
    TIMESTAMP_ENTERED timestamp
    delete from PC_COVKEY_PD;
    commit;
    Insert into PC_COVKEY_PD values ('10020335P8017MT0010012','001','001','02',to_date('01/FEB/2010','DD/MON/RRRR'),to_timestamp('02/JAN/2010 01:55:59.990216 AM','DD/MON/RRRR HH12:MI:SS.FF6 AM'));
    Insert into PC_COVKEY_PD values ('10020335P8017MT0050012','005','001','02',to_date('01/FEB/2010','DD/MON/RRRR'),to_timestamp('02/JAN/2010 01:56:00.268099 AM','DD/MON/RRRR HH12:MI:SS.FF6 AM'));
    Insert into PC_COVKEY_PD values ('10020335P8017MT0010032','001','003','03',to_date('14/JAN/2011','DD/MON/RRRR'),to_timestamp('14/JAN/2011 04:25:19.018217 PM','DD/MON/RRRR HH12:MI:SS.FF6 AM'));
    Insert into PC_COVKEY_PD values ('10020335P8017MT0010042','001','004','03',to_date('21/JAN/2011','DD/MON/RRRR'),to_timestamp('21/JAN/2011 04:00:31.719444 PM','DD/MON/RRRR HH12:MI:SS.FF6 AM'));
    Insert into PC_COVKEY_PD values ('10020335P8017MT0050022','005','002','03',to_date('21/JAN/2011','DD/MON/RRRR'),to_timestamp('21/JAN/2011 04:02:48.953594 PM','DD/MON/RRRR HH12:MI:SS.FF6 AM'));
    commit;
    --select * from PC_COVKEY_PD order by COV_CHG_EFF_DATE,TIMESTAMP_ENTERED;
    PC_COVKEY          COVERAGE_NUMBER     SEQUENCE_ALPHA     TRANSACTION_TYPE     COV_CHG_EFF_DATE     TIMESTAMP_ENTERED
    10020335P8017MT0010012          001     001                  02                          01/FEB/2010            02/JAN/2010 01:55:59.990216 AM
    10020335P8017MT0050012          005     001                  02                      01/FEB/2010            02/JAN/2010 01:56:00.268099 AM
    10020335P8017MT0010032          001     003                  03                      14/JAN/2011            14/JAN/2011 04:25:19.018217 PM
    10020335P8017MT0010042          001     004                  03                      21/JAN/2011            21/JAN/2011 04:00:31.719444 PM
    10020335P8017MT0050022          005     002                  03                      21/JAN/2011             21/JAN/2011 04:02:48.953594 PM
    */Rule;
    Every PC_COVKEY, query should recursively join and generate set of records depending on latest SEQUENCE_ALPHA for the coverage number at that point of time. For ex,
    for 10020335P8017MT0010042 (4 row) should generate 2 records
    1. 10020335P8017MT0010042001004 (PC_COVKEY || COVERAGE_NUMBER || latest SEQUENCE_ALPHA--004 for cover 001), SEQUENCE_ALPHA 001 for cover 001 is not the latest for 10020335P8017MT0010042.
    2. 10020335P8017MT0010042005001 (coverage number 005, and latest sequence alpha-001 for cover 005).
    SEQUENCE_ALPHA 002 for cover 005 is not the latest for 10020335P8017MT0010042 as it happened later stage.
    for 10020335P8017MT0050022 (5 row) should generate 2 records as
    1. 10020335P8017MT0050022001004 (PC_COVKEY || COVERAGE_NUMBER || latest SEQUENCE_ALPHA--004 for cover 001),
    2. 10020335P8017MT0010042005002 (coverage number 005, and latest sequence alpha-002 for cover 005)
    WITH SNAPSHOT_CVR_CTP as (
    SELECT pcd1.PC_COVKEY,
           pcd1.PC_COVKEY||pcd2.COVERAGE_NUMBER||pcd2.SEQUENCE_ALPHA as cov_key,
           pcd2.COVERAGE_NUMBER,
           pcd2.SEQUENCE_ALPHA,
           pcd2.COVERAGE_NUMBER||pcd2.SEQUENCE_ALPHA as CVRSEQ,
           max(pcd2.COVERAGE_NUMBER||pcd2.SEQUENCE_ALPHA) over (partition by pcd1.PC_COVKEY, pcd1.COVERAGE_NUMBER
           order by pcd2.COV_CHG_EFF_DATE, pcd2.TIMESTAMP_ENTERED) as MaxSeq,
           pcd2.COV_CHG_EFF_DATE,     
           pcd2.TIMESTAMP_ENTERED
    FROM
    PC_COVKEY_PD pcd1,
    PC_COVKEY_PD pcd2
    select * from SNAPSHOT_CVR_CTP SC
    WHERE sc.PC_COVKEY = '10020335P8017MT0010042'  -- 4 row
    --AND  COVERAGE_NUMBER||SC.MAXSEQ = COVERAGE_NUMBER||SEQUENCE_ALPHA
    ORDER BY TIMESTAMP_ENTERED
    PC_COVKEY     COV_KEY     COVERAGE_NUMBER     SEQUENCE_ALPHA     CVRSEQ          MAXSEQ     COV_CHG_EFF_DATE     TIMESTAMP_ENTERED
    10020335P8017MT0010042     10020335P8017MT0010042001001     001     001     001001     001001     01/FEB/2010     02/JAN/2010 01:55:59.990216 AM
    10020335P8017MT0010042     10020335P8017MT0010042005001     005     001     005001     005001     01/FEB/2010     02/JAN/2010 01:56:00.268099 AM
    10020335P8017MT0010042     10020335P8017MT0010042001003     001     003     001003     005001     14/JAN/2011     14/JAN/2011 04:25:19.018217 PM
    10020335P8017MT0010042     10020335P8017MT0010042001004     001     004     001004     005001     21/JAN/2011     21/JAN/2011 04:00:31.719444 PM
    10020335P8017MT0010042     10020335P8017MT0010042005002     005     002     005002     005002     21/JAN/2011     21/JAN/2011 04:02:48.953594 PM
    I am trying to filter row using MAXSEQ but at the moment MAXSEQ values are not coming as expected. I expect following value for COV_KEY combination
    COV_KEY                                         MAXSEQ
    10020335P8017MT0010042001001     001004
    10020335P8017MT0010042005001     005001 -- match
    10020335P8017MT0010042001003     001004
    10020335P8017MT0010042001004     001004 -- match
    10020335P8017MT0010042005002     005001Would appreciate if anyone can get MAxSEQ as expected.

    Something like..
    with dist_cov_numbers as
      select distinct coverage_number cov_number
      from PC_COVKEY_PD
    all_data as
      select pcd.*,d.cov_number new_coverage_number,
             max(decode(coverage_number,d.cov_number,sequence_alpha))
                  over( partition by d.cov_number
                        order by COV_CHG_EFF_DATE,TIMESTAMP_ENTERED
                                  ) max_seq
      from PC_COVKEY_PD pcd,dist_cov_numbers d
    select pc_covkey,pc_covkey||new_coverage_number||max_seq new_key,
           pc_covkey||coverage_number||sequence_alpha actual_key
    from all_data
    order by COV_CHG_EFF_DATE, TIMESTAMP_ENTERED;
    PC_COVKEY                   NEW_KEY                           ACTUAL_KEY                     
    10020335P8017MT0010012      10020335P8017MT0010012001001      10020335P8017MT0010012001001     
    10020335P8017MT0010012      10020335P8017MT0010012005         10020335P8017MT0010012001001     
    10020335P8017MT0050012      10020335P8017MT0050012001001      10020335P8017MT0050012005001     
    10020335P8017MT0050012      10020335P8017MT0050012005001      10020335P8017MT0050012005001     
    10020335P8017MT0010032      10020335P8017MT0010032001003      10020335P8017MT0010032001003     
    10020335P8017MT0010032      10020335P8017MT0010032005001      10020335P8017MT0010032001003     
    10020335P8017MT0010042      10020335P8017MT0010042005001      10020335P8017MT0010042001004     
    10020335P8017MT0010042      10020335P8017MT0010042001004      10020335P8017MT0010042001004     
    10020335P8017MT0050022      10020335P8017MT0050022005002      10020335P8017MT0050022005002     
    10020335P8017MT0050022      10020335P8017MT0050022001004      10020335P8017MT0050022005002 
    10 rows selected Edited by: jeneesh on Nov 22, 2012 10:54 AM

  • Relation between activity , opportunity and lead

    Hello
    Could you please tell me relationship between activity, opportunity and lead?
    How I can create opportunity based on activity? I didnt find where its possible
    Thanks

    Activities are different from opportunity & lead. Opportunity & lead are two different stages of sales cycle. While activity is the medium through which any kind of customer interaction happenes.
    Functionally, lead is start of prospecting. For example, a call center executive take a list of customers & call them up. She asks them if customer might be interested in the product. Out of 10 calls, 6 might say yes. So, these 6 leads are created in the system. Corresponding to these leads, call center executive can create 6 activities where she can assign 3 sales executives (2 leads each) these activities so that they can visit two customers each in a day.
    Now a sales exec goes to these 6 customers & finds that 2 will definitely not buy. But 4 might buy. So, 4 corresponding opportunities can be created in the system.
    Correspongind activities can be creatd where sales exec will again visit customer & try to initiate a sales cycle (quotation, negotiation, confirm order, deliver, billing).
    To create opportunity based on activity: Go to any activity. You should find a button to create "A followup transaction". Using this button you can create any type of sales document, including opportunity.
    Hope this helps.
    Regards,
    Kaushal

  • HT1296 I was using the iCloud for my iPod and had recorded an important Voice Memo on the device. Before I was able to store it on my computer, the device stopped working. I have the data on the Cloud, how can I get that back to my iMac?

    I was using the iCloud for my iPod and had recorded several irreplaceable Voice Memos. It went up to the Cloud, but I wasn't too savvy with the Cloud at that point, so it wasn't syncronizing to my home computer. So, the thing is that the iPod died and the backup is in the Cloud and I would like to load the backup to my iMac to recover my data. How can I do that? Thanks

    The new device I got to replace the iTouch is a iPad and I don't see the playlist I created with previous voice memos on it at all. Is there any way to access them on the iPad? If I erase the iPad and restore it with the old back up will the Voice Memos come along and get in to my home computer or will I be out of luck?

  • I need code for copy ,cut and paste

    please help me to find acode for copy,cut and paste .
    from file to another.

    Try playing with this;-
    java.awt.Toolkit.getDefaultToolkit().getSystemClipboard()

  • Creative in the dock over driver issues for older cards and upsetting consumers please read!

    To Who this may concern at TOP LEVEL AT Creative's Board It's come to my attention to a very serious issue From Creative,and the story starts from here.
    I have just required the Audigy 2 ZS Sound Card so looking to install the latest drivers from CREATIVE'S UK WEBSITE. So I look into the date which is 9/4/200 on Creative's website. However I did abit more investigating into the issues from other consumer's from passed half soaked drivers that Creative are supposed to put right with their half asleep development team(what a joke!!).
    AS I did more research? on this issue on the forums and hardware websites, it came across to my attention on a Brazilian I. T. Expert called Daniel Kawakami (surprisesurprise and I don't suppose Creative know anything about him other than trying to kick him the balls for his work to help others with their sound cards very good PR work Creative well done!!!!).So armed with all this information and believe me I have gone into alot of reading in the forums about the issues,and yes Creative Board Of Directors you are entitled to your Copy Rights,for now !!!
    So I find out more about this super hero Daniel Kawakami? to Creative's miss givings to put right the Drivers for Consumers let down by Creative, I came across one of the driver updates for the Audigy 2 ZS Sound Card done by Daniel Kawakami, and Bingo most consumer's now have a working drivers by him.
    So for all the hard work and precious time this Daniel Kawakami has done for Creative Consumers(including me) YOU SELFISH CREATIVE BOARD OF DIRECTOR'S go and kick him the face, so I will say this to you what about his rights as a creative product consumer? ,his driver copy rights and on top that his right to put things right that your team cannot put right in the first place. This is the EXACT PEOPLE WE NEED IN THIS HIGHLY COMPLICATED IT INDUSTRY, so what do you do you try and do, you bin him.
    So Creative I am going to ask some questions and I EXPECT YOU TO ANSWER THEM with me as a CONSUMER OF YOUR PRODUCTS(customer is King not you!!)
    1. The drivers you realised on the 9th April 200 are working drivers for the Audigy 2 zs for windows 7 ultimate.
    2. So how can you convince me that they are working?
    3. At the moment I can only trust Daniel Kawakami's? working drivers, since he has had over whelming praise for his work.What makes me think I can trust you with your drivers.
    4. Your Drivers came out on the 9/4/200, Daniel Kawakami's Drivers came out on 9/4/200 its too close a call,since your development Team are too lazy to put things right, how can you convince me that you did not copy his Drivers into your download Driver website(I would not be surprised if you did, as it would certainly be a cost cutting exercise ,and taking away his copy rights for all the work he has done for nothing!!!)
    5. Are you going to treat customer and consumers better service and support? in the Future,and that includes me,and 3rd party developers like Daniel Kawakami .
    The concussion to all of this, there are lessons to be learned by you Creative for your mis givings and the treatment of customers passed and present and especially the appalling treatment of Daniel Kawakami ,this guy deserves far better for his talent. I Have one message for the President Of Creative ,don't you EVER think you can scare me as a customer and also as Registered? disabled deaf person ,and for that reason I have far more powers you will ever have. For what I have read I am so angry and dismayed when someone like Daniel Kawakami is only trying help others ,but to be treated in this way.
    It is only right for me to post this ,because You Creative have hurt? alot people and that includes me. I look forward to the comments and p.m.(if I get any) And Daniel Kawakami? I hope you do read this and all the best for the future ,keep doing what you do ,and once again Creative you should be holding your heads in Shame.
    Regards Jonoace U.k.

    !!! Creative jamais vai responder.
    At seria justo se Creative viesse a publico falar de sua incapacidade e que at onde as placas Audigy funcionariam em Vista e ?7.
    Mas por?incompet?ncia, pois nem suas novas placas funcionam direito, se era para vender est? mal.
    Problemas de memoria superior a 4 gb e tantos outros que Creative no tem respostas;
    Drivers de Daniel e Pax so alternativas, mas que tambm tem muitas limitaes.
    Sinceramente acho que esta na hora de Creative vir a publico fazer um relato srio, e descrever claramente as limitaes de sua placas colocando um ponto final emexpectativas frustraes eeng dos.
    Chega a ser vergonhoso que placas onboard como realtek funcionem melhor que placas Creative;
    Realmente, antes era um sonho e orgulho possuir um produto CREATIVE, tornou-se um pesadelo e uma vergonha.
    Mas enfim o que fazer, apenas esperar um momento de honestidade por parte de Creative.
    Flavio Kern - Audigy 2 ZS
    Creative will never respond. So it would be fair if Creative would publish his inability to speak and that even where the plates Audigy would work in Vista and 7. But by incompetence, since neither her new adapter works right, if it was to sell is poorly. Problems of memory above 4 gb, and so many others that Creative does not have answers; Daniel and Pax Drivers are alternati'ves, but which also has many limitations. I honestly think this time Creative come publico do a serious story, and describe clearly the limitations of your cards by putting an end-point on expectations, frustrations and forgeries. It is shameful that onboard realtek cards like that boards Creative work better; Actually, before it was a dream and pride have a CREATIVE product, became a nightmare and a shame. But anyway what to do, just wait a moment of honesty from Creative.
    Flavio Kern-Audigy 2 ZS

  • Update TIN numbers for BP Customer and Vendor Records

    Hi experts
    Needed to update the TIN numbers for existing vendors and customers in SAP B1,please let me know the  templates and necessary field to update the same
    Regards
    Srinivasan

    Hi Bishal
    Taxpayer Identification Number (TIN) and Employer Identification Number (EIN) are defined as a nine-digit number that the IRS assigns to organizations. The IRS uses the number to identify taxpayers who are required to file various business tax returns. TIN/EIN are used by employers, sole proprietors, corporations, partnerships, nonprofit associations, trusts, estates of decedents, government agencies, certain individuals, and other business entities.
    there is a option to enter TIN numbers for BP master records---> accounting -
    > Select Radio Button ---> TIN numbers i want to update these numbers through DTW
    Regards
    Srini

  • Need help for create A and MX records (home server)

    What should I put in the DNS (A record, MX) to be able to receive email from my provider Godaddy and send emails directly from my server without passing through Godaddy.
     The server is "home server" and it is not always access (open).
     Incoming Mail: from Godaddy
     Outgoing Mail: form my server

    Hi,
    Based on my knowledge, the default receive connectors are automatically created when the Exchange server is installed. Then the internal and outbound mails can delivered properly through Exchange server. After we create send connector and add public MX record
    and A record on the public DNS server, the inbound mails can be delivered. And we can set the send connector with MX record, then the inbound mails are directly delivered by Exchange server.
    If you have any question, please feel free to let me know.
    Thanks,
    Angela Shi
    TechNet Community Support

  • Best HD for sft instr. and audio recording

    hello everyone,
    having big problem with both Lacie and WD hard drives, i'd like to know what is safe and fast (FW800), for audio transfer. Even when the CPU load meter is low I get system overload messages and broken audio
    I assume it is the hard drive that is not fast enough. Am i wrong?
    with best regards.

    Are Glyph drives using the Oxford 911/922 chips now?
    I hope so.
    I had them a few years back. A GT-308 rack.
    The chipset they were using destroyed every drive in
    the rack.
    Really? (he asked, incredulous)
    Wow, sorry to hear about that. I'm positive that Glyph's been using the 911 chips for at least the past 2 - 3 years if not longer. And prior to that I hadn't had any problem with their drives. Expensive, but worth it for the warranty and the tech support alone. Blew the bridge twice (doh!) in one of my older drives (a Project 30) and they replaced it both times with 24 hr turnaround.
    Best,
    -=iS=-

  • Filters, copy, delete and unique records

    I use a lot the Unique records filter in Excel, anyone knows if it's available on Numbers???,
    Additionally, when I filter a list and I try to copy the filtered results, I copy the whole table again, and when I delete filtered rows, Numbers delete all the non-show rows that are between the filtered ones. How can I avoid it?

    Hi..
    Ex: U have ITAB1 - Email is one of the field
    1. SORT ITAB1BY EMAIL.
    2. DECLARE WF_EMAIL TYPE EMAIL.
    LOOP AT ITAB1.
      AT FIRST.
    WF_EMAIL = ITAB1-EMAIL.
      ENDAT.
    IF NOT WF_EMAIL = ITAB1-EMAIL.
      APPEND ITAB3.  " passing unique entry
       WF_EMAIL = ITAB1-EMAIL.
    ENDIF.
    * pass the values to ITAB2 and APPEND for duplicate all records
    ENDLOOP.
    Hope this Helps,
    Nag
    Edited by: Naga Mohan Kummara on Dec 14, 2009 11:46 AM

  • Issue for Form 16 and tax Computation on Salary to Employees

    Dear All
    Can Anybody suggest a way out for the following -
    We have to issue form 16 as per Indian income tax laws to employees. is there any method for computation of tax on salary or any development is required for the same. As per the Indian income Tax law a computation sheet is to be issued to an emmployee wherein his actaul salary earned ( say for two months) plus his estimated salary for remaining 10 months is to be given and employee in turn returns back the form duly signed in. how this computation sheet works in SAP ?
    Pl guide.
    Regards
    Rakesh Choudhary

    Hi Rakesh,
    this computation happens inside INTAX payroll function for India Payroll. ya its true that there is no standard SAP report to do this. But u can all the annual computation wage type in the RT (/4** wage types).
    If u want a seperate report to this then u can go for some Z development. But u dnt need to write the whole computation logic inside that. Instead of this u can use /4** wage types for the same.
    Regards,
    Praveen
    Edited by: Praveen Kr Tiwari on Apr 11, 2009 3:30 PM

  • Lockbox issue for discount amount and incorrect reference

    Hi All,
    While doing Lockbox processing through FLB2, for certain payment advices discount was not recorded and it was posted directly by the system in price difference(maintained in Reason Code). Also, system did not prompted an error message for the invoice paid with incorrect reference and not even processing to On Account.
    In total of discount amount and invoice amount paid with incorrect reference posted to GL Account maintained in one of the Reason codes automatically. 
    Where could be the error in configuration point of view to check, please advice with your expertise.
    Thanks,
    Likhit

    hi ,
    can you pl help me in sending the lockbox config and test file & testing process as my client needs lockbox set up?
    i would be thankful to you if could help me inthis regard.
    mail: [email protected]
    regds,
    raman

  • BO 4.0 Issues for installing BOE and Explorer

    Hi Experts,
    I have installed BO 4.0 on OS Win 2008 R2 with defalut installation. I checked CMC and LaunchPad which worked well. Then I installed BO Explorer 4.0 with selected All on the same server. BO Explorer is able to lgon on , however CMC and BI Launchpad
    are logged on with HTTP 500 error. The following is part of CMC error message:
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    java.lang.RuntimeException: java.lang.RuntimeException: javax.servlet.ServletException: java.lang.NoClassDefFoundError: com/businessobjects/sdk/plugin/desktop/infospace/internal/InfoSpaceMigrationFactory$SubInfoSpaceMigrationFactory
         com.businessobjects.http.servlet.internal.BundlePathAwareServiceHandler.serviceHelper(BundlePathAwareServiceHandler.java:254)
         com.businessobjects.http.servlet.internal.BundlePathAwareServiceHandler.service(BundlePathAwareServiceHandler.java:197)
         com.businessobjects.http.servlet.internal.ProxyServlet.service(ProxyServlet.java:248)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
         org.eclipse.equinox.servletbridge.BridgeServlet.service(BridgeServlet.java:174)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
         com.businessobjects.pinger.TimeoutManagerFilter.doFilter(TimeoutManagerFilter.java:159)
    root cause
    java.lang.RuntimeException: javax.servlet.ServletException: java.lang.NoClassDefFoundError: com/businessobjects/sdk/plugin/desktop/infospace/internal/InfoSpaceMigrationFactory$SubInfoSpaceMigrationFactory
    Thanks for your help.
    Chris

    Hi Denis,
    Before I created this message, I tried BOE XI 4.0 SP1 with Explorer 4.0 (i did not find SP1 for Explorer 4.0). The issue is the same as before. The following information is server information:
    OS: Windows 2008 R2 (64 bit)
    DB: MS SQL 2008 R2
    Web Application: Tomcat 6.0.24
    CPU: 16  (2.4GHZ)
    RAM: 12GB
    HardDisk: 700 G
    No other applications are installed except MS Office.
    Thanks for your reply. Any other clue?
    Chris

  • Diagnosing an ASM space issue for a primary and a standby database instance with external redundancy.

    I've received an alert from Enterprise manager saying "Disk Group DATA_SID requires rebalance because at least one disk
    is low on space". My colleague who I would go to with this question is unavailable, so this is a learning opportunity
    for me. So far google and Oracle documentation have provided lots of information, but nothing that answers my questions.
    I've run the following query on both the primary and standby databases ASM instances:
    select name, disk_number, sector_size,os_mb, total_mb, free_mb, redundancy from v$asm_disk;
    On the primary I get 4810M Free space and 18431M Total Space
    on the standby I get 1248M Free space and 18431M Total Space -- this is the one that complained via OEM
    When I run the following query in the database instance:
    select sum(bytes)/1024/1024 MB from dba_segments;
    I get 3736.75M as a result.
    My questions are:
    1. Will OEM's suggestion to rebalance the disk actually help in this situation since the instance is set up with external redundancy?
    2. If I've got 18G of space and only 3.7G of data, why is OEM complaining?
    3. How can I reclaim what I presume is allocated but unused space in my problem disk group?
    4. How can I determine what extra data the standby has that the primary doesn't since both have the same total space allocation, but different amounts of free space?

    Thank you for the reply. That link is very good.
    We are an 11.1 version of our database. Linus is OEL 5.6.
    So, looking at the portion of the link that refers to 'Add Standby database and Instances to the OCR' - If we use SRVCTL to give the STANDBY the role of ‘physical_standby’ and the start option of ‘mount’, what effect will that have if the STANDBY becomes our PRIMARY?
    Would these database settings need to be modified manually with SRVCTL each time?
    We understand why the instance is not starting when the node is rebooted, we are looking for a best practice of how this is implemented.
    Thank you.

  • Is there a shortcut for copy properties and if not can one be coded as a commanded?

    The stuff I am working on requires repeated use of the same movement for the same animation, but I wanted to keep it all one motion since I think it would be kinda silly to make a motion for each time it does that specific movement. Unless thats a stand way of doing it I really just wanted to copy the properties of a key frame and paste them somewhere else, but without a shortcut this becomes very time consumming. If anyone has a better recommendation please let me know. I'm new to motion tweening so forgive me ignorance.

    you're using the program incorrectly.
    you can create abitrarily complex motion tweens and save those a number of ways.  the easiest is using the motion presets panel.
    http://www.adobe.com/devnet/flash/learning_guide/animation/part10.html

Maybe you are looking for

  • Not possible to reverse the document in financial accounting

    Not possible to reverse the document in financial accounting Message no. F5673 Diagnosis Document '5000082' in company code '1000' should be reversed.  However, this document was not posted in the Financial Accounting module, VBRK is, rather, of type

  • How do I sync Pages docs between my Macbook and a PC?

    I want to sync Pages documents between my Macbook and a PC, for when I don't have the Macbook with me. I created a Pages file and saved it to iCloud, but it doesn't appear in the iCloud Pages web interface, even though other docs created in the web i

  • Duplicate entries in RoboHelp HTML v10 (Redux)

    I've done some searching through the forums and there have already been a variety of posts related to duplicate search results in a .chm when generated with RH. I've followed the instructions from other posts, so far I have: 1) Created a copy of the

  • SAP XI 7.0

    Hai All, Any One Have SAP XI 7.0 Tutorial,Guide,PDF,PPT please send me path as early as possible. Thanks With Regards Navin Khedikar

  • 808 Pureview - Playing mkv files larger that 2GB

    I have found that mkv video files I have which are larger than 2GB will not play on my new 808. They play absolutely fine on the N8. I have tried with both Fat32 and exFat file systems on my 64GB microSD. Anything smaller than 2GB is fine. Anyone els