Import WebSite and Business Data Connectivty Services together

Hi,
On my development environment (SharePoint 2013 server), I have a web site that contains a documenbt list. This document list is linked to some Business Data Connectivity Objects. (I have some external data columns plugged on my BDC objects).
Now, I need to import this web site and these BDC objects on another environment.
I need to do it with power shell commands, so I do like this :
$MetadataStore = Get-SPBusinessDataCatalogMetadataObject -BdcObjectType "Catalog" -ServiceContext http://localhost
Import-SPBusinessDataCatalogModel -Path "<path>\BDCmodel.bdcm" -Identity $MetadataStore
New-SPWeb http://localhost/MyWebSite -Template "STS#0"
Import-SPWeb -Identity http://localhost/MyWebSite -path MyWebSite.cmp -Confirm:$false -Force -ErrorVariable errors -UpdateVersions Overwrite
The two importations are OK but my document list does not find my BDC model. The link is broken.
Is there something special to do to manage and keep the link between my document list and my BDC objects ?
Thanks for your help.

Hi,
According to your post, my understanding is that you want to use PowerShell commands to import a site and BDC model into another environment.
I recommend that you can try to use the following PowerShell commands to check if it works.
param(
[string]$SiteUrl=$("http://localhost")
Write-Host "Getting Service Context at $SiteUrl..."
$svcContet = Get-SPSiteAdministration -Identity $SiteUrl
Write-Host "Getting Business Data Catalog Metadata Object..."
$catalog = Get-SPBusinessDataCatalogMetadataObject -BdcObjectType Catalog -ServiceContext $svcContet 
Write-Host "Importing BCS Modal..."
Import-SPBusinessDataCatalogModel -Identity $catalog -Path ".\RinkNetModel.xml" -force -ModelsIncluded -PropertiesIncluded -PermissionsIncluded -Verbose -ErrorAction Stop -ErrorVariable $err
Then, you can check if the model successfully loaded and if you can use the External Content Types that the model contain.
To display all BDC models in the metadata store, type on one line the following command:
Get-SPBusinessDataCatalogMetadataObject -BdcObjectType Mode -ServiceContext
http://SP01:12345 -Name "*" | select Name
To display all the external systems in the BDC metadata store, and to display the type of external system together with its entities (external content types), use the following command:
Get-SPBusinessDataCatalogMetadataObject -BdcObjectType LoBSystem -ServiceContext
http://SP01:12345 -Name "*" | select Name, SystemType, Entities
For more information, you can refer to:
http://habaneroconsulting.com/insights/importing-bcs--model-using-powershell#.VDy-2P6KCM8
http://dotnetfollower.com/wordpress/2012/05/sharepoint-deploying-a-bdc-model-via-powershell/
http://www.manula.com/manuals/lightning-tools/bcs-meta-man-for-windows/1/en/topic/importing-the-bdc-model-into-sharepoint
Thanks,
Yumi Fu
Forum Support
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
[email protected].

Similar Messages

  • Not able to configure BDC (Business Data connectivity )service in SharePoint 2012 Using Powershell Script

    HI
    Now there is an  issue while iam running powershell script for BDC service.
    Below is the script i am using to configure BDC service.
    Param(           
        [Parameter(Mandatory=$true,ValueFromPipeline=$true)]           
        [string]$ServiceName = $null,
        [Parameter(Mandatory=$true)]           
        [string]$ServiceProxyName = $null,
        [Parameter(Mandatory=$true)]           
        [string]$AppPoolAccount = $null,
        [Parameter(Mandatory=$true)]           
        [string]$AppPoolName = $null,
        [Parameter(Mandatory=$true)]           
        [string]$DatabaseServer = $null,
        [Parameter(Mandatory=$true)]           
        [string]$DatabaseName = $null
    # check to ensure Microsoft.SharePoint.PowerShell is loaded if not using the SharePoint Management Shell
    $snapin = Get-PSSnapin | Where-Object {$_.Name -eq 'Microsoft.SharePoint.Powershell'}
    if ($snapin -eq $null) {
        Write-Host "Loading SharePoint Powershell Snapin"
        Add-PSSnapin "Microsoft.SharePoint.Powershell"
    Write-Host "Successfully Sharepoint Powershell snapin Loaded"
    Write-Host "Started executing Powershell script for configuring Business Data Connectivity Service in sharepoint farm ..."
    Write-Host -ForegroundColor Yellow "Checking if Application Pool Accounts exists"
    $AppPoolAccount = Get-SPManagedAccount -Identity $AppPoolAccount -EA 0
    if($AppPoolAccount -eq $null)
    Write-Host "Please supply the password for the Service Account..."
    $AppPoolCred = Get-Credential $AppPoolAccount
    $AppPoolAccount = New-SPManagedAccount -Credential $AppPoolCred -EA 0
    Write-Host -ForegroundColor Yellow "Checking wether the Application Pool exists"
    $AppPool = Get-SPServiceApplicationPool -Identity $AppPoolName -ErrorAction SilentlyContinue
    if (!$AppPool)
    Write-Host -ForegroundColor Green "Creating Application Pool"
    $AppPool = New-SPServiceApplicationPool -Name $AppPoolName -Account $AppPoolAccount -Verbose
    Write-Host -ForegroundColor Yellow "Checking if BDC Service Application exists"
    $ServiceApplication = Get-SPServiceApplication -Name $ServiceName -ErrorAction SilentlyContinue
    if (!$ServiceApplication)
    Write-Host -ForegroundColor Green "Creating BDC Service Application"
    $ServiceApplication = New-SPBusinessDataCatalogServiceApplication –ApplicationPool $AppPool –DatabaseName $DatabaseName –DatabaseServer $DatabaseServer –Name $ServiceName
    Write-Host -ForegroundColor Yellow "Starting the BDC Service"
    #$ServiceInstance = Get-SPServiceInstance | Where-Object { $_.TypeName -like "BDC Service*" }
    #Start-SPServiceInstance $ServiceInstance
    Get-SPServiceInstance | where-object {$_.DisplayName -eq $ServiceName} | Start-SPServiceInstance > $null
    Write-Host -ForegroundColor Green "Done - BDC Service is up and running."
    Error i am getting ->
    Started executing Powershell script for configuring Business Data Connectivity S
    ervice in sharepoint farm ...
    Checking if Application Pool Accounts exists
    Checking wether the Application Pool exists
    Creating Application Pool
    VERBOSE: Leaving BeginProcessing Method of New-SPServiceApplicationPool.
    New-SPServiceApplicationPool : The trust relationship between the primary
    domain and the trusted domain failed.
    At C:\SP2013Service\BDC1.ps1:67 char:12
    + $AppPool = New-SPServiceApplicationPool -Name $AppPoolName -Account
    $AppPoolAcco ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~~~
        + CategoryInfo          : InvalidData: (Microsoft.Share...ApplicationPool:
       SPCmdletNewIisWebServiceApplicationPool) [New-SPServiceApplicationPool], S 
      ystemException
        + FullyQualifiedErrorId : Microsoft.SharePoint.PowerShell.SPCmdletNewIisWe
       bServiceApplicationPool
    VERBOSE: Leaving ProcessRecord Method of New-SPServiceApplicationPool.
    VERBOSE: Leaving EndProcessing Method of New-SPServiceApplicationPool.
    Checking if BDC Service Application exists
    Creating BDC Service Application
    New-SPBusinessDataCatalogServiceApplication : Cannot bind argument to
    parameter 'ApplicationPool' because it is null.
    At C:\SP2013Service\BDC1.ps1:75 char:84
    + ... pplicationPool $AppPool –DatabaseName $DatabaseName –DatabaseServer
    $DatabaseSer ...
    +                    ~~~~~~~~
        + CategoryInfo          : InvalidData: (:) [New-SPBusinessD...viceApplicat
       ion], ParameterBindingValidationException
        + FullyQualifiedErrorId : ParameterArgumentValidationErrorNullNotAllowed,M
       icrosoft.SharePoint.BusinessData.SharedService.SPNewBusinessDataCatalogSer 
      viceApplication

    hi guys,
    same script i have modified with parametes,in below script i have hard corded values for parameters,and it is executing without errors.
    Below is script executing without error->
    Add-PsSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
    #Settings
    $ServiceName = "BDC Service"
    $ServiceProxyName = "BDC Proxy"
    $AppPoolAccount = "DOMAIN\USERNAME"
    $AppPoolName = "BDC SP Ser App Pool"
    $DatabaseServer = "SPSQL"
    $DatabaseName = "SP2013 BDC"
    Write-Host -ForegroundColor Yellow "Checking if Application Pool Accounts exists"
    $AppPoolAccount = Get-SPManagedAccount -Identity $AppPoolAccount -EA 0
    if($AppPoolAccount -eq $null)
    Write-Host "Please supply the password for the Service Account..."
    $AppPoolCred = Get-Credential $AppPoolAccount
    $AppPoolAccount = New-SPManagedAccount -Credential $AppPoolCred -EA 0
    Write-Host -ForegroundColor Yellow "Checking wether the Application Pool exists"
    $AppPool = Get-SPServiceApplicationPool -Identity $AppPoolName -ErrorAction SilentlyContinue
    if (!$AppPool)
    Write-Host -ForegroundColor Green "Creating Application Pool"
    $AppPool = New-SPServiceApplicationPool -Name $AppPoolName -Account $AppPoolAccount -Verbose
    Write-Host -ForegroundColor Yellow "Checking if BDC Service Application exists"
    $ServiceApplication = Get-SPServiceApplication -Name $ServiceName -ErrorAction SilentlyContinue
    if (!$ServiceApplication)
    Write-Host -ForegroundColor Green "Creating BDC Service Application"
    $ServiceApplication = New-SPBusinessDataCatalogServiceApplication –ApplicationPool $AppPool –DatabaseName $DatabaseName –DatabaseServer $DatabaseServer –Name $ServiceName
    Write-Host -ForegroundColor Yellow "Starting the BDC Service"
    #$ServiceInstance = Get-SPServiceInstance | Where-Object { $_.TypeName -like "BDC Service*" }
    #Start-SPServiceInstance $ServiceInstance
    Get-SPServiceInstance | where-object {$_.DisplayName -eq $ServiceName} | Start-SPServiceInstance > $null
    Write-Host -ForegroundColor Green "Done - BDC Service is up and running."
    if any body want need more information please can u respond me to
    Email id:[email protected]

  • Error when click Manage in Business Data Connectivity Service Sharepoint 2013

    Dear all,
    In Sharepoint central administration, I click manage service applications. Then, I click New > Business Data Connectivity Service. After create new Business Data Connectivity Service, when I click Manage to manage this new Business Data Connectivity Service,
    there is error "Cannot complete this action as the Business Data Connectivity Shared Service is not responding. Please contact your administrator." In event viewer, there is error ""The BDC Service application is not accessible. The full
    exception text is : The HTTP request is unauthorized with client authentication scheme 'Negotiate'. The authentication header received from the server was 'NTLM'.
    I have tried to delete and create the BDC Service application, but it still did not work. I have tried to restart BDC Service and do iisreset, but it still did not work.
    Please help. Thank you.
    Best regards,
    Johanna

    Hi,
    According to your post, my understanding is that you get an issue about the Business Data Connectivity Service.
    To quickly and accurately find the issue, I recommend you can check the event log and ULS log to see if anything unexpected occurred.
    For SharePoint 2013, by default, ULS log is at
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS
    You can check the ULS log by the methods here:
    http://blogs.msdn.com/b/opal/archive/2009/12/22/uls-viewer-for-sharepoint-2010-troubleshooting.aspx
    http://msdn.microsoft.com/en-us/library/gg193966(v=office.14).aspx
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Import master and transaction data

    Hallo,
    I need the information, how I can import master and transaction data.
    I fellow the introductions from SAP.Help (see Link), but the Programm UPB_DATA_IMPORT
    is failed. (See point 3 in Link):
    http://help.sap.com/saphelp_nw04/helpdata/en/7a/6d313f8815d036e10000000a114084/frameset.htm
    If I want to try point 3. The error massage.
    “Program UPB_DATA_IMPORT does not exist Message no. DS017”
    will result.
    What I can do? Who can me say why I haven’t the Programm UPB_DATA_IMPORT?
    What is wrong?
    Please help me.I need Data to make a demo planning
    thanks

    Hi,
    There is a set of objects in business content (check under SAP DEMO in business content). You can activate some or all of these demo objects (for example demo cubes).
    There are programs which you can then execute to create the datafiles which can then be loaded to these demo cubes.
    " Start report RSO_BC_FILES_IN_BDS (Transaction SE 38), specify the required (Demo) InfoObject/InfoCube and choose the "Start BDN" button. The system will display all (generally one) CSV files which were supplied with the InfoObject/InfoCube. You can either export this CSV file into a local directory or you can write it directly onto the application server. For loading, proceed as described under section 1. " --- from OSS note 370397

  • I used firefox 3.6.14 on windows 7 x64 (firxfox x32). I found a problem when I develop my website and alert data or value via javascript , firefox hang (not response) every time. What's happend? How to solve is problem?

    I used firefox 3.6.14 on windows 7 x64 (firxfox x32). I found a problem when I develop my website and alert data or value via javascript , firefox hang (not response) every time. What's happend? How to solve is problem?
    Thank you for help
    Lohkaeo

    Oops - for some reason, this problem now seems to have gone away. May have had something to do with Flash. I'll keep my fingers crossed.

  • I have followed "Importing favorites and other data from Internet Explorer" but although I've worked through the dtages and it says it has worked, the expected internet explorer folder does not appear in bookmarks

    I have installed Firefox today, and like the look of and the speed. But I have an extensive set of foldersin my IE Favorites and remebered passwords I don't want to have to reimput.
    I have now tried twice folowing "Importing favorites and other data from Internet Explorer " which seemed to go smoothly, once with IE open and the other with it closed, and closed down my PC between each attempted installation. Any ideas?

    It usually works better if you export the Favorites in IE to an HTML file and import that file in the Firefox Bookmarks Manager.
    * Export the favorites in IE to an HTML file (bookmarks.html): File > Import and Export
    * Import the HTML file in Firefox: Bookmarks > Organize Bookmarks > Import & Backup > Import HTML: From File
    See also http://kb.mozillazine.org/Import_bookmarks ("Import from another browser" and "Import from file")

  • SLD Export / import Technical and Business systems

    Dear all,
    I am new to SLD administration.
    We have task to update the local SLD on the Production PI system PPI ( Target ) with the business systems ZEC, ZSC from the Production Master SLD on Production solution manager system
    PSM ( source ) using Export/Import on the necessary technical and business systems.
    Please confirm whether i am following correct steps :
    Go to SLD Administration on PPI target system
    ALL Instances
    Instances by Class
    Model
    ( which one of this option need to be selected , please let me know  ?? )
    Go to SLD Administration on PSM source system.
    select Export button ->
    Select business systems one by one and perform Export which will create .ZIP file
    at local machine.
    Go to SLD Administration on PPI target system
    select Import button ->
    Select Export ZIP file which created in previous steps from PSM and provide location from desktop
    Start Import button ( only if you get Continue import option )
    Please let me know if above procedure is correct for business systems
    if yes then  what need to be done for Technical system ??...do they require Export/import also ?
    If yes when i go to technical system option i get Export option disabled...but same way when i go to
    business systems option i get Export button enable and able to perform the export.
    Do i need to only Export / Import business systems ?
    Plese help me.
    Regards,
    RR

    Manoj,
    It seems entries are added manually .... should we remove and run Import for the same ...
    or just try to overwrite .... in case of overwrite option ( as we have open OSS message ) SAP has suggested through OSS message that If you end up with problems when trying to overwrite, then the PPI SLD is broken and will have to be re-built because someone made a manual change to it and got the GUIDs out of synch with the master.
    I do not understand if target system PPI SLD gets broken during overwriting operation as mentioned by SAP ... whats is the way / steps / procedure to Re-build SLD .
    In rebuilt - process do i need to Import ( Export -> Export lines -> ALL ) the export backup created before start of this activity ? please let me know SLD rebuilt steps and about Remove - reimport issue.
    Appreciate you time on this. thanks in advance.

  • MAXL Import Database (and export data?)

    I have an import database MAXL command that is working great (sql account and password substituted).  The rule file has a SQL connection to our ERP. 
    MAXL> import database PLANNING.DetView data connect as sql_account identified by "Password" using rules_file "'\\\oceanus-d13\\Oracle\\Middleware\\user_projects\\epmsystem3\\EssbaseServer\\essbaseserver1\\app\\PLANNING\\DetView\\NLIncur.rul'" on error write to "'G:\\DB_Process\\DetView_Process\\errors\\DetView_NLIncur_data_load.mxl.err'";
    We are going to run this on a nightly basis and our requirement is to have a historical record of what was "pulled" from our ERP (even if it didn't make it in to Hyperion).
    Here are the options that I've thought of:
    Have a separate SSIS package use the same SQL to dump the data out of the ERP database into a flat file.  The downside to this is that I'm using subvars from Essbase that don't exist in SQL.  So I'd have to write the SQL in a different way potentially causing discrepancies.
    A separate Data Export of what was loaded.  The downside here is that it doesn't have the errors that never made it in.
    I can't find another option in the import database command to spool the output of the SQL to a file. 
    Does anybody have thoughts on how to do this or are there other ways to achieve what I'm trying to do?
    Thanks-
    Cameron McClurg

    The SQL run via the load rule understands my subvars.  The load rule SQL looks like this:
    select...
    WHERE
      AND (('1' = '&IncSpanYr' --IF THE PERIODS SPAN YEARS
      AND (('12' = '&CurMoNm' --IN JUNE LOOK INTO NEXT YEAR PERIOD 1
      AND ((A.FISCAL_YEAR = '&CurYrNm' AND A.ACCOUNTING_PERIOD IN ('&PriMoNm', '&CurMoNm'))
    This turns into:
    WHERE
      AND (('1' = '1' --IF THE PERIODS SPAN YEARS
      AND (('12' = '12' --IN JUNE LOOK INTO NEXT YEAR PERIOD 1
      AND ((A.FISCAL_YEAR = '2014' AND A.ACCOUNTING_PERIOD IN ('2', '3'))
    My issue is getting a dump of all that data that the SQL is pulling.  I don't see a way to do that in the import database command.  A separate job on the SQL side (like SSIS) could pull the data, but can't access the subvars easily.  Does that make sense?  Or did I misunderstand your suggestion?
    Thanks-
    Cameron

  • Update Statement With Decode and Business Dates

    Hello everyone,
    I need to write a UPDATE statement using business date rule. In general, the due date is 30 days from the checkout date. If the due date falls on a Saturday or Sunday then the loan period is 32 days.
    I know that to test for a weekday, I'd need to use the to_char function in Oracle with the format of ‘D’. I did some research and found that to test which weekday November 12, 2007 falls on, I'd need to use the expression to_char(’12-NOV-2007’,’D’). This function returns a number between 1 and 7. 1 represents Sunday, 2 Monday, …,7 Saturday.
    What I really would need to do is write one UPDATE statement using an expression with the Decode function and the to_Char function:
    UPDATE book_trans SET due_dte = expression
    These are the transactions that will need to be updated:
    ISBN 0-07-225790-3 checked out on 15-NOV-2007 by employee 101(book_trans_id=1)
    ISBN 0-07-225790-3 checked out on 12-NOV-2007 by employee 151(book_trans_id=2)
    ISBN 0-201-69471-9 checked out on 14-NOV-2007 by employee 175(book_trans_id=3)
    ISBN 0-12-369379-9 checked out on 16-NOV-2007 by employee 201(book_trans_id=4)
    I manually calculated the due-dte and wrote update statement for each book_trans_id:
    UPDATE book_trans SET due_dte = '17-dec-07' WHERE book_trans_id = 1;
    UPDATE book_trans SET due_dte = '12-dec-07' WHERE book_trans_id = 2;
    UPDATE book_trans SET due_dte = '14-dec-07' WHERE book_trans_id = 3;
    UPDATE book_trans SET due_dte = '18-dec-07' WHERE book_trans_id = 4;
    As you can see, it's very cumbersome and I'd just like to know how to incorporate everything in one Update statement:
    UPDATE book_trans SET due_dte = expression
    so that if due date falls on Saturday or Sunday, the loan period is 32 days; weekday, loan period is 30 days.
    Any tips or help will be greatly appreciated. Thanks!

    Hi,
    882300 wrote:
    Hello everyone,
    I need to write a UPDATE statement using business date rule. In general, the due date is 30 days from the checkout date. If the due date falls on a Saturday or Sunday then the loan period is 32 days. That's equivalent to saying that the due date is normally 30 days after the checkout date, but if the checkout date falls on a Thursday or Friday, then the due date is 32 days after the checkout date. I used this equivalent in the statement below.
    I know that to test for a weekday, I'd need to use the to_char function in Oracle with the format of ‘D’. I did some research and found that to test which weekday November 12, 2007 falls on, I'd need to use the expression to_char(’12-NOV-2007’,’D’). This function returns a number between 1 and 7. 1 represents Sunday, 2 Monday, …,7 Saturday.That's just one way to find out the weekday, and it's error-prone because it depends on your NLS_TERRITORY setting. A more reliable way is to use 'DY' or 'DAY' as the 2nd argument to TO_CHAR. That depends on NLS_DATE_LANGUAGE, but you can explicitly set the language in the optional 3rd argument to TO_CHAR, which means your code will work the same no matter what the NLS settings happen to be. It's also easier to debug: you may have to think whether '1' means Sunday or Monday, but it's easy to remember that 'SUN' means Sunday.
    What I really would need to do is write one UPDATE statement using an expression with the Decode function and the to_Char function:
    UPDATE book_trans SET due_dte = expressionHere's one way:
    UPDATE  book_trans
    SET     due_dte = checkout_dte + CASE
                                      WHEN  TO_CHAR ( checkout_dte
                                             , 'fmDAY'
                                     , 'NLS_DATE_LANGUAGE=ENGLISH'
                                     ) IN ('THURSDAY', 'FRIDAY')
                             THEN  32
                             ELSE  30
                                  END
    WHERE   book_trans_id      IN (1, 2, 3, 4)
    ;This assumes that checkout date is a column in the same table.

  • Copying start and end dates from service request contract to tasks

    I am working on a logical apps program that is supposed to go to the service request screens and update the PLANNED_START_DATE and the PLANNED_END_DATE of a task for that service request on file JTF_TASKS_B with the start date and end date of the active contract associated with that service request and task. I think some of the contract information is available in OKS_PM_SCHEDULES_V, CS_SR_INCIDENTS_V, and CS_INCIDENTS. It may also be available in other files. I need to know of a contract file that can be used to link the contract to the corresponding task. I can't seem to find any files with task, contract number and service request all in one file.

    Glenda,
    You are right. All the three object you mentioned ( SR, Tasks and Contracts) are not referenced in a single file( or Table).
    You can use this relationship though to get this information.
    Tasks will be associated to a SR through source_ID and source_type. Source_ID will be the primary key, incident_id in CS_INCIDENTS_ALL_B table. This table incidentally also contains the contract_number and service_contract_id which gives the contract information.
    HTH,
    Gana

  • Importing Contacts and Calendar Data

    Hi there
    I use a 5G 80gb Ipod on my Windows Computer and various Ipod programs to try to import the Contacts and Calendar Data from Microsoft Outlook and then use the data contained on Ipod is there any way that I can do the same from BT Yahoo Mail, Email folders please as I don't use Microsoft Outlook. Many thanks for any information or help you can give me on this.
    Kind regards

    Note: An upcoming release of BlackBerry Link will support full two-way synchronization.
    please to way sync  now

  • How to import sms and mms data from 6600 to N73

    Hi to all, I'm trying to import all my old data on my nokia 6600, to my new N73 ME, fw rel V 3.0368.0.0.30, because I don't like the idea to lose all my sms and mms from the old phone. I encountered a lot of problems. First thing, the transfer apps only leaves to import via bluetooth and so on data like contacts and multimedia. So I tried to copy from dir mail of the mmc of Nokia 6600 to the dir mail2 under hidden folder Private on the mini sd of my new N73. What happens? In the first moment it seems all ok, because when I switch under sms to memory cards, the N73 read all the sms like they were on phone. But first of all, it doesn't see the mms, it see only the title, but when I open them it gives me error. This doesn't happens with sms, that are all ok. The problem is that when I turn off the phone, it doesn't turn on anymore, it hangs until I've to remove the mini SD. After many tries, I've understood that maybe the problem is with the file index in mail2 folder. Someone has any idea or have tried to import sms and mms from his old Nokia phone to the new N73 and so could help me? Thanks.

    have u actually tried to connect the 6600 with the latest PC suite to see what happens?
    if that fails, maybe have a look at the Oxygen Phone Manager software and see if they offer a free trial. i know i used to use OPM before nokia updated there PC suite to work with my 3230Message Edited by rich_enduro on 02-Jan-2007
    06:30 PM
    Nexu 5

  • Create PDF, Host on Website and Capture data

    I have been looking for a way to do the following:
    1. Create a new pdf (or form if a pdf isn't possible)
    2. Host/upload the pdf to our website (or html embed)
    3. Once the pdf or form is filled out on our website, I would like to receive the data the user filled out to me in a pdf form.
    I currently am operating from Mac version Acrobat XI 11.0.07
    From what I've see, this can be done, but the users data is emailed to me in just plain text format. Is there a way for me to receive for captured data in a pdf?
    Thank you!

    What happens when you navigate to the web page, then use File>Print and select the Adobe PDF printer?
    If that does not clear up the formatting issue then try printing to a normal printer. If the formatting is still of then, there's nothing you can do with Acrobat. It would be soething with your site (probably in the CSS).

  • Importing website and questions

    hello, i have the trial version and before i spend 400 bucks
    i would like to get some quick answers please.
    I curently have a website built and published and online.
    However i built it through Frontpage, just to get it online. I now
    want to spice it up and make it more appealing, hence me turning to
    dream weaver.
    Before i buy i was wondering,
    is there a way to import a website from the internet (my url)
    onto my dream weaver, so that i dont have to make a brand new page
    and i can just change backround and add features.. etc.. Also the
    website was made in front page so i wanted to know if that would be
    a problem.

    > is there a way to import a website from the internet (my
    url) onto my
    > dream
    > weaver, so that i dont have to make a brand new page and
    i can just change
    > backround and add features.. etc..
    Yes. DW will allow you to connect to the current site, and
    GET all the
    files into your local root folder for the site. But - adding
    features will
    only cheapen your site, not spice it up.
    > Also the website was made in front page so
    > i wanted to know if that would be a problem.
    Notwithstanding my above comment, if the host for the current
    site has
    disabled FTP access (many FP hosts do this), then you'll have
    to use the
    following procedure -
    Before doing anything else, take a couple of weeks to
    gothrough the DW
    tutorials, and also to study HTML and CSS. The more you know
    about those,
    the easier your transition will be. DW expects alot more from
    you than FP
    did, and as a result, you may find it much more frustrating
    to have the raw
    reality of web development staring you in the face rather
    than the wizards
    of FP.
    > Is there a way to convert a Frontpage site into a
    > Dreamweaver site
    1. I'd define a Dreamweaver site that points to a location on
    your hard
    drive for the local site's root, and to the current FP site
    on the web as
    the remote site
    2. I'd use Dreamweaver (if your host supports FTP
    connections) to download
    the remote site to the root of the site you just defined on
    the hard drive.
    This will pick up all the pages *after* webbot action so that
    shared borders
    and all are already present in the page HTML. This will also
    pick up all of
    the server scripting. Note - in the event that you are not
    able to connect
    using FTP since some FP hosts block that protocol, you will
    have to use a
    third party 'site copier' like Black Widow, QuadSucker, or
    WebCopier, (or
    even the DW extension called SiteAssist from WebAssist) to
    connect and
    download using http protocols. Doing it this way will *not*
    retrieve any of
    your server-script code, if any (unless you have used the
    WebAssist
    extension).
    3. I'd create a DW template for the pages, that captures the
    "shared
    border"
    effect you had in FP.
    4. I'd copy and paste content from each FP pages to a new
    template child
    page and then save the new child page with an easily
    identifiable
    nomenclature that is distinct from what was used on the FP
    site (since you
    are saving the new child pages into the same local site as
    the FP pages).
    5. When the basic site is completed, I'd upload the new DW
    pages to some
    staging area/webspace, and by using the browser, I'd verify
    that the site
    (as it now exists remotely) is complete.
    6. Then I'd create a *new* DW site in a new location on the
    hard drive, and
    connect to and download all the files from the staging site.
    7. You can now delete the original FP site from your local
    system if you
    want.
    You now have a complete site (minus any of the FP extension
    server-side
    code) that has no FP footprint.
    If you have used any FP server extension functions on the
    original FP site
    (form processing, guestbooks, tables of contents, etc.), you
    will have to
    recreate those functions in DW using 3rd party scripts, or
    scripts that you
    write yourself.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "rfranke727" <[email protected]> wrote in
    message
    news:[email protected]...
    > hello, i have the trial version and before i spend 400
    bucks i would like
    > to
    > get some quick answers please.
    > I curently have a website built and published and
    online. However i built
    > it
    > through Frontpage, just to get it online. I now want to
    spice it up and
    > make
    > it more appealing, hence me turning to dream weaver.
    >
    > Before i buy i was wondering,
    > is there a way to import a website from the internet (my
    url) onto my
    > dream
    > weaver, so that i dont have to make a brand new page and
    i can just change
    > backround and add features.. etc.. Also the website was
    made in front
    > page so
    > i wanted to know if that would be a problem.
    >

  • How do I reinstall Lightroom and safely import library and preview data from an older computer?

    Since buying a new MacBook Pro back in February 2014, I have had non-stop issues using Lightroom.  This is particularly frustrating considering I bought a new laptop specifically to improve my experience with Lightroom.  The experience thus far has been anything but.  The program freezes every time I try and 'right click' on an item, which means I have no way of reconnecting files or folders that are on external hard drives.  It also crashes regularly when I try and open the program.  I believe this may have something to do with how I moved files over from one computer to another.  I have a growing suspicion that my libraries are corrupt.
    It's now been 6 months, and I've uploaded quite a few new folders since then.  However, I am ready to give all the last 6 months work away and start with a 2013 backup to ensure Lightroom runs smoothly.  I've moved all current library information onto an external hard drive, and deleted the folder from my laptop.  I've also tried to delete and reinstall Lightroom, but the program immediately crashes when I try to start it up again.
    All this is to say I need some serious help getting Lightroom back up and running on my laptop, pulling in old data from my other laptop properly and bringing Lightroom back up to life on my new laptop.  Any assistance or hand holding would be immeasurably appreciated.

    It should work.  Make sure you are installing the same version.  If you continue to have a problem try contacting Adobe Support thru chat:
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

Maybe you are looking for

  • Synch Send Step from S/A Bridge

    Hello All, I have a s/a bridge in my BPM and I need to send sync messages  to another interface and get response, no problems ok? The s/a bridge works fine when there is no sync calls....but i not obtaining success when i try to call sync interface..

  • Help needed with buttons and hit areas

    I have a very simple need. To give a button a roll over behavior, which I have done, and to set up a hit area which I have also done. Why is it that the buttons work great with "enable simple buttons" in effect, but when i test movie, the hit areas d

  • Creating Alerts on adding sales quotation?

    Hi All, we want to create an alert when adding a sales quotation. Overview: Someone in a company adds an sales quotation. We have to send automatically an alert to the sales employee in the document. We worked on the transaction notification. Now it

  • Downloading Captivate 4

    I recently purchased Captivate 4 from the Education store, and I do appreciate Adobe's willingness to offer discounted pricing to this community. However, I had a real difficult time downloading the program. I'm using a Vista laptop with IE 8 and kep

  • Problem with BOM usage

    Hi, Due to client requirements, i have created a new BOM usage type "X". At OS21, i have set the default as "relevant to production". Defined order of priority in OS31, and assigned to plant parameters through OPPQ. In OS30, created new application &