Create external mx record with GoDaddy

I Just replaced my GoDaddy hosted website with Business Catalyst site created in Muse. I launched the site and transferred my domain to BC. Website looks and works great, except my GoDaddy hosted email no longer works. I read that I need to create an external xm record to be able to use the GoDaddy email account, but your instructions on your help section are not clear.
FOr example, instructions say to go to the site domain list and create new mx record using external email server. But it doesn'to say what to enter in the 'web server' block
ANd what's worse - my website URL does not work now. Www.videoaldeco.com. What's going on?

After much tinkering I tried a test with a new table and web
page. Dreamweaver added the insert code as before-the same code
that would cause the error. I tried the test and it worked. No
error?
The only difference I could think of was that the origional
table was created on a local SQL server and then I used Generate
SQL Script to get the create table statment, which I then ran in
Query Analyzer on GoDaddy's SQL server.
I then deleted the table and created it through GoDaddy's
user interface and now it works. I'm not sure what the difference
is, but at least it's working.
Thanks.

Similar Messages

  • Is there a way for the Yosemite maps app to add address to an existing contact (in contacts app) instead of creating new contact record with blank name (not useful)?

    I was using the maps app in yosemite to look up an address, once I was able to verify the address, I wanted to add that address to an existing contact record in the contacts app.  When I clicked on the option to add address to contacts, it unfortunately creates a new record with the address in it, however, the rest of the contact is blank. 
    My question is: is there a way to prompt the user (me), to select whether they want to create a new contact or add it to an existing contact?
    Thanks in advance for your help!
    Regards,
    Peter

    I was using the maps app in yosemite to look up an address, once I was able to verify the address, I wanted to add that address to an existing contact record in the contacts app.  When I clicked on the option to add address to contacts, it unfortunately creates a new record with the address in it, however, the rest of the contact is blank. 
    My question is: is there a way to prompt the user (me), to select whether they want to create a new contact or add it to an existing contact?
    Thanks in advance for your help!
    Regards,
    Peter

  • Create customer master record with reference to existing division

    how to create customer master record with reference to existing division?

    what type of reports sd consultant configure in implementation project?and in supporting project?

  • JDeveloper 10g Creating a new record with trigger sequence primary key

    Hi there, I'm sorry to post this incredibly simple question and I'm sure that someone must have answered this on this forum before but the searching of this site is incredible slow and painful and after 30 mins I can't find help.
    I am using a struts Data Action to create a new record in the database and then being forwarded to an edit page where I can enter the new details. Then when the details are entered I am clicking an update button and returning to a browse screen where I can either commit the change to the database or rollback. Sounds pretty simple but I am really struggling with trying to get the trigger of the number sequence to work properly.
    Ideally I would like to click the create new record button and then the primary key/triggered sequence number is already displayed on the empty form...
    ... but if this is too tricky or not possible then I would like the user to either not enter any value in the key field (which currently causes error - JBO-27014: Attribute PoNo in PO_SYS_MODULE.PoSystemView1 is required) OR the user enters a number and the trigger overwrites this number with the next in the sequence.
    I can enter a new record if I look in the manager console and see the next number in the sequence and then create the record using this number and then click commit twice, as the first time I get the error: JBO-25019: Entity row of key oracle.jbo.Key[154 ] not found in PoSystem. Or if I enter a value 5 times greater than the next in the sequence I have to click the commit button 5 extra times to get the sequence to match the input.
    I hope that this lengthy explanation fills you in on my problem, there must be a simple solution to this and I will be VERY grateful to anyone who can help me.
    Many thanks
    Ben Sayers (clearly a newbie)

    Hi,
    ADF Business Components handles this for you - unless yo prefer doing this manually. In the Entity Object, set the PK attribute's type to DBSequence. Then create a database sequence and use a database trigger to add the sequence value on insert
    Frank

  • Create customer master record with reference

    Hello guys,
    I'm trying to create a customer master record with reference using XD01 (existing in the referent company code only) but no data are copied at the general level of the customer (not only the address data but also these contained in KNA1). Is there something I can do in order to get the referent data?
    Thanks

    Only data that does not refer directly to the customer/vendor is copied from the reference account to the new account, that is,no address information, and so on.

  • Create OD Kerberos record with Windows .local domain

    I am in the process of setting up my open directory master that will be working in a golden triangle with our existing windows domain. Our windows FQDN ends with .local and all dns is running on this domain.
    I am unable to create a kerberos record for the open directory because of the .local domain. The xserver thinks the FQDN is a Bonjour name and will not create the record.
    If anyone has an Idea on how to work around this problem I would apreciate your help.
    Thank you

    OD uses AD kerberos

  • Create Material Master Record with Text

    Hi, I am looking to create material Master Data via ABAP.  I currently have some code that creates the Master Data Characteristic value I want, but I need the text as well.  Can someone tell me what I need to do to add the text for the Master Data Characteristic value?
    Here's what I have using CL_RSDMD_UPDATE_MASTER_DATA=>UPDATE_ATTRIBUTES_STATIC
    TYPE-POOLS: RS, RSSM.
      DATA: T_ZFREETEXT   LIKE STANDARD TABLE OF ZFREETEXT.
      DATA: T_INFO        TYPE RSSM_S_MINFO.
      DATA: RETURN_STATUS TYPE RSARR_T_IDOCSTATE.
      DATA: RETURN_SUBRC  LIKE SY-SUBRC.
      DATA: MSG TYPE RS_T_MSG.
      DATA: L_R_ACTIVATE_MASTER_DATA TYPE REF TO CL_RSDMD_ACTIVATE_MASTER_DATA.
      INSERT ZFREETEXT INTO TABLE T_ZFREETEXT.
      CALL METHOD CL_RSDMD_UPDATE_MASTER_DATA=>UPDATE_ATTRIBUTES_STATIC
        EXPORTING
          I_IOBJNM        = '0MATERIAL'     " Technical name of InfoObject
          I_CHAVL_ENQUEUE = RS_C_FALSE
          I_T_DATA        = T_ZFREETEXT
          I_S_MINFO       = T_INFO
          I_MONITORING    = RS_C_FALSE
        CHANGING
          C_T_IDOCSTATE   = RETURN_STATUS.
      IF SY-SUBRC <> 0.
        RETURN_SUBRC = 'Error happened'.
      ELSE.
        RETURN_MSG = 'Process Completed Successfully'.
        CREATE OBJECT L_R_ACTIVATE_MASTER_DATA
          EXPORTING
            I_IOBJNM            = '0MATERIAL'
            I_P_Q_HAVE_TO_EXIST = RS_C_FALSE.
        IF SY-SUBRC = 0.
          L_R_ACTIVATE_MASTER_DATA->ACTIVATE(
          IMPORTING
          E_SUBRC = RETURN_SUBRC
          CHANGING
          C_T_MSG = MSG ).
        ENDIF.
      ENDIF.

    Dear Kenneth,
    do you need to add master data during load of transaction data in planning scenario? If yes, you can do this with a planning function of type exit in the INIT function module.
    I think you've to use the table ETO_CHAS (table for char. combinations) and all kind of char. combinations has to be transfered.
    data:
    l_s_chas type /1SEM/_YS_CHAS_"YOURCLIENT"YOURPLANNINGAREA",
    l_r_co_area type range of /bi0/oico_area,
    l_s_costcenter type /bi0/pcostcenter.
    field-symbols:
    <f_coar> type /bi0/oico_area,
    <f_cctr> type /bi0/oicostcenter.
    select * from /bi0/pcostcenter into l_s_costcenter
                 where co_area IN l_r_co_area
                 and objvers = 'A'.
    <f_coar> = l_s_costcenter-co_area.
    <f_cctr> = l_s_costcenter-costcenter.
    INSERT l_s_chas INTO TABLE eto_chas.
    endselect.
    Regards, Clemens

  • Error when creating a employee record with Bapi BAPI_HRMASTER_SAVE_REPL_MUL

    Hi All,
    I am trying to create employee record using BAPI 'BAPI_HRMASTER_SAVE_REPL_MULT',
    I am getting bellow error messages from BAPI.
    Object 01,P,00026746 does not exist: infotype 0006 cannot be created
    Object 01,P,00026746 does not exist: infotype 0017 cannot be created
    Object 01,P,00026746 does not exist: infotype 0105 cannot be created
    Does this require any prior configuration?
    Please advice.

    hi,
    try to execute in foreground then you wil come to know where the error is.
    thanks,
    vasu.

  • Can't create a new account with Godaddy

    My incoming is Mail.mydomain.org
    My outgoing is smptout.secureserver.net
    I set my Name and Password but mail just sits and hangs. does nothing.
    Anyone have this problem and could you help?
    Thanks
    Phil

    I had to shorten my GoDaddy password to 12 characters in length (originally it was 18) in order for Mail to accept it. I don't know if that'll work for you.
    iMac G5 2.1 GHz, 1.5 GB RAM   Mac OS X (10.4.9)  

  • New info record with same details as archive one.

    Hi Experts,
    Due to some issue we want to archieve some standard info record which are created on vendor / material group / plant  basis.My query is does system allows to create new info record with same vendor / material group / plant combination after archiving earlier record which is on same basis.
    Thnaks & Regards
    Vinay

    Hi Jurgen,
    Thanks for reply.
    Our issue is while creating work order(IW31) having external services upon entering info record number in some cases in same client rate is picked up from info record condition but some times from last purchase order based on info update.
    We have checked following points.
    1.In all the cases work order type  is same.
    2.Info record are of standard type with same condition.info record are for vendor & material group combination.
    3.Checked after changing rate in info record and in purchase order but similar issue exists
    4.Compare vendor master also.
    5.Their are no contract /sch.agreement for vendors.
    Our requirement is to have rate from info record in all the cases in work order.So have two options.
    1.Archiving info record-But will need setting in SPRO and also need to create same record again with same combination.Also as their are recent purchase order against those info record not sure whether system will allow or not.Can you please tell what are prerequiste for archiving info record.
    or
    2.To remove only purchase order number updated in EINE table in those info record where this issue is occuring.We have checked in development system and after removing purchase order number in EINE table it picks up rate from info record.
    So thought of checking before removing order ref.from EINE table.
    Thanks
    Vinay

  • Error while creating physical inventory document with zero count

    Hi,
    I am trying to create a physical inventory document for a material that has zero stock and that is not batch managed but I am geting an error as below.
    "Item 001: No batches that can be included in phys. inv. exist.(Message no. M7701)"
    This error occurs only for one or two materials.
    I am able to create the physical inventory document for other materials which is also zero stock and there is no batch managed for the same.
    Can anyone pls advice.
    Regards,
    Ramya

    hi
    if your material is split valuated, but not batch managed, then the split valuation type is shown in field batch number. And...it is a batch then.
    To be able to do a zero count you have to have a batch record whose batch number is the valuation type.
    If you never had stock in the storage location you want count, then you have to
    1. extend the material to this storage location with MMSC
    2. create the batch record with MSC1N for this storage location.

  • Purchase info record with same values

    Hi,
    I want to create purchase info records with the same material vendor purchasing org. plant ,how can it be done.
    This is required because it is possible for the same vendor to deliver material for the same plant and purchasing organisation.Is there a workaround or any reason for this.
    Regards

    In SAP , this is not possible to have 2 different inforecords for the combinaiton of MaterialVendorPur orgPlantinfo record type
    could you please explain more regarding the requirement ....
    Regards
    Mani

  • Overwriting a record with part of same primary key

    Hello Everyone,
    Could anyone please give a suggestion about how to overwrite the record with part of same primary key?
    I have  5 key fields.
    A1
    A2
    A3
    A4
    A5
    I have to overwrite the record if A5 changes with same A1 A2 A3 A4.
    I cannot take off A5 as part of primary key. If I use modify or insert, its creating a new record with the new A5. But I am still having the old record in the table (with old A5), which I don't want it to be there.
    Thank you,
    Rushi

    hi,
    That's right.
    u have to delete record from database table .....
    then u can add a new record...
    use delete <database_table> from table <internal_table>

  • Is there any FM/BAPI to create Device Information Record

    HI all,
    Is there any FM/BAPI to create Device Information Record.
    with regards,
    Sumanth.

    Hi,
    I want to install device info record. For this I have found FM "ISU_S_WORKLIST_INSTALL". But I am not able to use it properly. Could you please tell me how to use this FM.
    Regards,
    Vijay

  • Error in sharepoint external list while creating record with same id (this id is primary key)

    Hi,
    I have created one external content type in sharepoint designer to insert/update/delete table data.
    This table contains Primary key constraint.
    Then I have added this external content type to Sharepoint out of box List.
    Insert/Update/Delete is working fine. But when I am trying to insert record with the same id which is already exist in table, page crashed and its giving me following error:
    “Violation of PRIMARY KEY constraint 'PK_tbl_Accounts'. Cannot insert duplicate key in object 'dbo.tbl_Accounts'.
    The duplicate key value is (1). The statement has been terminated.”
    So I want to handle this exception. Can we show any popup message to hide this error?
    Thanks & Regards
    Rajni

    Avoid entering of primary from form  if possible.
    if not try to customize the new form with infopath and place your custom logic there.
    http://lightningtools.com/uncategorized/modifying-external-list-forms-with-infopath-2010/
    http://salnikan.wordpress.com/2011/07/26/prevention-of-duplicate-entries-based-on-two-or-more-columns-in-a-sharepoint-list/
    Bala

Maybe you are looking for

  • How do I change the start up screen statement?

    How do I change the phrase for the start up (sign in) screen? I put one there on a previous system and it carried over, so I know its in my user files somewhere?

  • Data Mismatch in the final output

    Hi, I am using the eclipse version downloaded from here http://www.businessobjects.com/campaigns/forms/downloads/crystal/eclipse/datasave.asp In the final output, data seems to be corrupted. Example Column A 3500 9852 7533 Sum 35.4 The sum value refl

  • Photoshop and Mountain Lion

    I have Adobe Photoshop 5.5 and I'm trying to install it on my Mac running OS 10.8 Mountain Lion.  I get a message saying that the installer can't launch because the classic environment is no longer supported. Any suggestions?

  • DBCA in silent mode gives "template does not exist" error

    We successfully created a database using the DBCA in silent mode like this: dbca -silent -responseFile dbca.rspThen, attempting to create a second database on the same machine with a slightly different response file, we get the following error: dbca

  • I successfully add a cookie, but cannot read the cookie in another jsp page

    Putting cookie******************************* page1.jsp <%Cookie adam = new Cookie("adam", "adam"); adam.setMaxAge(3600*365); response.addCookie(adam); %> Reading cookie********************************* page2.jsp <%String userid = ""; Cookie[] cookie