Branch transfer SAP site to legacy site

Hi All,
          I want to test the process of transfer of stocks between two distribution centers(sites).I am presenting doing the integration test. My company has the process of transferring stocks from one DC to another. Book  adjustment will happen to account for the same. To transfer stocks from a non SAP DC to a SAP DC it was decided to keep the sending site (non SAP) as a vendor and do a GR at the receiving site.
To test this entire cycle what are things that i have to do
Thanks in advance
Regards
Prabhu.

Dear Prabhu , good morning!
Let me see if I understood your question.
If you want to send material from Non SAP System but integrating with SAP System , you must construct interfaces like this.
1- Legacy system creates STO
2- Interface send to SAP STO to create SAP STO.
3- Goods Issue at Legacy system(With or Without batch information)
4- Interface creates delivery and process Goods Issue at SAP System.(With or Without batch information)
5- Goods receipt at Legacy
6- Interface send to SAP System information to process MB0A ..receiving this material.
With this your test will be completed without errors.
Was this ? I'm write in my understanding ?
Please let me know if is not it ok..
Best regards,
Carlos Moçatto

Similar Messages

  • What are the major process to transfer the data from legacy to sap system.

    What are the major process to transfer the data from legacy to sap system using BDC at Real Time only?

    hi,
    BATCH DATA COMMUNICATION
    main methods are:
    1. SESSION METHOD
    2. CALL TRANSACTION
    3. DIRECT INPUT
    Advantages offered by BATCH INPUT method:
    1. Can process large data volumes in batch.
    2. Can be planned and submitted in the background.
    3. No manual interaction is required when data is transferred.
    4. Data integrity is maintained as whatever data is transferred to the table is through transaction. Hence batch input data is submitted to all the checks and validations.
    To implement one of the supported data transfers, you must often write the program that exports the data from your non-SAP system. This program, known as a “data transfer” program must map the data from the external system into the data structure required by the SAP batch input program.
    The batch input program must build all of the input to execute the SAP transaction.
    Two main steps are required:
    • To build an internal table containing every screen and every field to be filled in during the execution of an SAP transaction.
    • To pass the table to SAP for processing.
    Prerequisite for Data Transfer Program
    Writing a Data Transfer Program involves following prerequisites:
    Analyzing data from local file
    Analyzing transaction
    Analyzing transaction involves following steps:
    • The transaction code, if you do not already know it.
    • Which fields require input i.e., mandatory.
    • Which fields can you allow to default to standard values.
    • The names, types, and lengths of the fields that are used by a transaction.
    • Screen number and Name of module pool program behind a particular transaction.
    To analyze a transaction::
    • Start the transaction by menu or by entering the transaction code in the command box.
    (You can determine the transaction name by choosing System – Status.)
    • Step through the transaction, entering the data will be required for processing your batch input data.
    • On each screen, note the program name and screen (dynpro) number.
    (dynpro = dyn + pro. Dyn = screen, pro = number)
    • Display these by choosing System – Status. The relevant fields are Program (dynpro) and Dynpro number. If pop-up windows occur during execution, you can get the program name and screen number by pressing F1 on any field or button on the screen.
    The technical info pop-up shows not only the field information but also the program and screen.
    • For each field, check box, and radio button on each screen, press F1 (help) and then choose Technical Info.
    Note the following information:
    - The field name for batch input, which you’ll find in its own box.
    - The length and data type of the field. You can display this information by double clicking on the Data Element field.
    • Find out the identification code for each function (button or menu) that you must execute to process the batch-input data (or to go to new screen).
    Place the cursor on the button or menu entry while holding down the left mouse button. Then press F1.
    In the pop-up window that follows, choose Technical info and note the code that is shown in the Function field.
    You can also run any function that is assigned to a function key by way of the function key number. To display the list of available function keys, click on the right mouse button. Note the key number that is assigned to the functions you want to run.
    Once you have program name, screen number, field name (screen field name), you can start writing.
    DATA TRANSFER program.
    Declaring internal table
    First Integral Table similar to structure like local file.
    Declaring internal table like BDCDATA
    The data from internal table is not transferred directly to database table, it has to go through transaction. You need to pass data to particular screen and to particular screen-field. Data is passed to transaction in particular format, hence there is a need for batch input structure.
    The batch input structure stores the data that is to be entered into SAP system and the actions that are necessary to process the data. The batch input structure is used by all of the batch input methods. You can use the same structure for all types of batch input, regardless of whether you are creating a session in the batch input queue or using CALL TRANSACTION.
    This structure is BDCDATA, which can contain the batch input data for only a single run of a transaction. The typical processing loop in a program is as follows:
    • Create a BDCDATA structure
    • Write the structure out to a session or process it with CALL TRANSACTION USING; and then
    • Create a BDCDATA structure for the next transaction that is to be processed.
    Within a BDCDATA structure, organize the data of screens in a transaction. Each screen that is processed in the course of a transaction must be identified with a BDCDATA record. This record uses the Program, Dynpro, and Dynbegin fields of the structure.
    The screen identifier record is followed by a separate BDCDATA record for each value, to be entered into a field. These records use the FNAM and FVAL fields of the BDCDATA structure. Values to be entered in a field can be any of the following:
    • Data that is entered into screen fields.
    • Function codes that are entered into the command field. Such function codes execute functions in a transaction, such as Save or Enter.
    The BDCDATA structure contains the following fields:
    • PROGRAM: Name of module pool program associated with the screen. Set this field only for the first record for the screen.
    • DYNPRO: Screen Number. Set this field only in the first record for the screen.
    • DYNBEGIN: Indicates the first record for the screen. Set this field to X, only for the first record for the screen. (Reset to ‘ ‘ (blank) for all other records.)
    • FNAM: Field Name. The FNAM field is not case-sensitive.
    • FVAL: Value for the field named in FNAM. The FVAL field is case-sensitive. Values assigned to this field are always padded on the right, if they are less than 132 characters. Values must be in character format.
    Transferring data from local file to internal table
    Data is uploaded to internal table by UPLOAD of WS_UPLOAD function.
    Population of BDCDATA
    For each record of internal table, you need to populate Internal table, which is similar to BDCDATA structure.
    All these five initial steps are necessary for any type of BDC interface.
    DATA TRANSFER program can call SESSION METHOD or CALL TRANSACTION. The initial steps for both the methods are same.
    First step for both the methods is to upload the data to internal table. From Internal Table, the data is transferred to database table by two ways i.e., Session method and Call transaction.
    SESSION METHOD
    About Session method
    In this method you transfer data from internal table to database table through sessions.
    In this method, an ABAP/4 program reads the external data that is to be entered in the SAP System and stores the data in session. A session stores the actions that are required to enter your data using normal SAP transaction i.e., Data is transferred to session which in turn transfers data to database table.
    Session is intermediate step between internal table and database table. Data along with its action is stored in session i.e., data for screen fields, to which screen it is passed, the program name behind it, and how the next screen is processed.
    When the program has finished generating the session, you can run the session to execute the SAP transactions in it. You can either explicitly start and monitor a session or have the session run in the background processing system.
    Unless session is processed, the data is not transferred to database table.
    BDC_OPEN_GROUP
    You create the session through program by BDC_OPEN_GROUP function.
    Parameters to this function are:
    • User Name: User name
    • Group: Name of the session
    • Lock Date: The date on which you want to process the session.
    • Keep: This parameter is passed as ‘X’ when you want to retain session after
    processing it or ‘ ‘ to delete it after processing.
    BDC_INSERT
    This function creates the session & data is transferred to Session.
    Parameters to this function are:
    • Tcode: Transaction Name
    • Dynprotab: BDC Data
    BDC_CLOSE_GROUP
    This function closes the BDC Group. No Parameters.
    Some additional information for session processing
    When the session is generated using the KEEP option within the BDC_OPEN_GROUP, the system always keeps the sessions in the queue, whether it has been processed successfully or not.
    However, if the session is processed, you have to delete it manually. When session processing is completed successfully while KEEP option was not set, it will be removed automatically from the session queue. Log is not removed for that session.
    If the batch-input session is terminated with errors, then it appears in the list of INCORRECT session and it can be processed again. To correct incorrect session, you can analyze the session. The Analysis function allows to determine which screen and value has produced the error. If you find small errors in data, you can correct them interactively, otherwise you need to modify batch input program, which has generated the session or many times even the data file.
    CALL TRANSACTION
    About CALL TRANSACTION
    A technique similar to SESSION method, while batch input is a two-step procedure, Call Transaction does both steps online, one after the other. In this method, you call a transaction from your program by
    Call transaction <tcode> using <BDCTAB>
    Mode <A/N/E>
    Update <S/A>
    Messages into <MSGTAB>.
    Parameter – 1 is transaction code.
    Parameter – 2 is name of BDCTAB table.
    Parameter – 3 here you are specifying mode in which you execute transaction
    A is all screen mode. All the screen of transaction are displayed.
    N is no screen mode. No screen is displayed when you execute the transaction.
    E is error screen. Only those screens are displayed wherein you have error record.
    Parameter – 4 here you are specifying update type by which database table is updated.
    S is for Synchronous update in which if you change data of one table then all the related Tables gets updated. And sy-subrc is returned i.e., sy-subrc is returned for once and all.
    A is for Asynchronous update. When you change data of one table, the sy-subrc is returned. And then updating of other affected tables takes place. So if system fails to update other tables, still sy-subrc returned is 0 (i.e., when first table gets updated).
    Parameter – 5 when you update database table, operation is either successful or unsuccessful or operation is successful with some warning. These messages are stored in internal table, which you specify along with MESSAGE statement. This internal table should be declared like BDCMSGCOLL, a structure available in ABAP/4. It contains the following fields:
    1. Tcode: Transaction code
    2. Dyname: Batch point module name
    3. Dynumb: Batch input Dyn number
    4. Msgtyp: Batch input message type (A/E/W/I/S)
    5. Msgspra: Batch input Lang, id of message
    6. Msgid: Message id
    7. MsgvN: Message variables (N = 1 - 4)
    For each entry, which is updated in database, table message is available in BDCMSGCOLL. As BDCMSGCOLL is structure, you need to declare a internal table which can contain multiple records (unlike structure).
    Steps for CALL TRANSACTION method
    1. Internal table for the data (structure similar to your local file)
    2. BDCTAB like BDCDATA
    3. UPLOAD or WS_UPLOAD function to upload the data from local file to itab. (Considering file is local file)
    4. Loop at itab.
    Populate BDCTAB table.
    Call transaction <tcode> using <BDCTAB>
    Mode <A/N/E>
    Update <S/A>.
    Refresh BDCTAB.
    Endloop.
    (To populate BDCTAB, You need to transfer each and every field)
    The major differences between Session method and Call transaction are as follows:
    SESSION METHOD CALL TRANSACTION
    1. Data is not updated in database table unless Session is processed. Immediate updation in database table.
    2. No sy-subrc is returned. Sy-subrc is returned.
    3. Error log is created for error records. Errors need to be handled explicitly
    4. Updation in database table is always synchronous Updation in database table can be synchronous Or Asynchronous.
    Error Handling in CALL TRANSACTION
    When Session Method updates the records in database table, error records are stored in the log file. In Call transaction there is no such log file available and error record is lost unless handled. Usually you need to give report of all the error records i.e., records which are not inserted or updated in the database table. This can be done by the following method:
    Steps for the error handling in CALL TRANSACTION
    1. Internal table for the data (structure similar to your local file)
    2. BDCTAB like BDCDATA
    3. Internal table BDCMSG like BDCMSGCOLL
    4. Internal table similar to Ist internal table
    (Third and fourth steps are for error handling)
    5. UPLOAD or WS_UPLOAD function to upload the data from the local file to itab. (Considering file is local file)
    6. Loop at itab.
    Populate BDCTAB table.
    Call transaction <tr.code> using <Bdctab>
    Mode <A/N/E>
    Update <S/A>
    Messages <BDCMSG>.
    Perform check.
    Refresh BDCTAB.
    Endloop.
    7 Form check.
    IF sy-subrc <> 0. (Call transaction returns the sy-subrc if updating is not successful).
    Call function Format_message.
    (This function is called to store the message given by system and to display it along with record)
    Append itab2.
    Display the record and message.
    DIRECT INPUT
    About Direct Input
    In contrast to batch input, this technique does not create sessions, but stores the data directly. It does not simulate the online transaction. To enter the data into the corresponding database tables directly, the system calls a number of function modules that execute any necessary checks. In case of errors, the direct input technique provides a restart mechanism. However, to be able to activate the restart mechanism, direct input programs must be executed in the background only. Direct input checks the data thoroughly and then updates the database directly.
    You can start a Direct Input program in two ways;
    Start the program directly
    This is the quickest way to see if the program works with your flat file. This option is possible with all direct input programs. If the program ends abnormally, you will not have any logs telling you what has or has not been posted. To minimize the chance of this happening, always use the check file option for the first run with your flat file. This allows you to detect format errors before transfer.
    Starting the program via the DI administration transaction
    This transaction restarts the processing, if the data transfer program aborts. Since DI document are immediately posted into the SAP D/B, the restart option prevents the duplicate document posting that occurs during a program restart (i.e., without adjusting your flat file).
    Direct input is usually done for standard data like material master, FI accounting document, SD sales order and Classification for which SAP has provided standard programs.
    First time you work with the Direct Input administration program, you will need to do some preparation before you can transfer data:
    - Create variant
    - Define job
    - Start job
    - Restart job
    Common batch input errors
    - The batch input BDCDATA structure tries to assign values to fields which do not exist in the current transaction screen.
    - The screen in the BDCDATA structure does not match the right sequence, or an intermediate screen is missing.
    - On exceptional occasions, the logic flow of batch input session does not exactly match that of manual online processing. Testing the sessions online can discover by this.
    - The BDCDATA structure contains fields, which are longer than the actual definition.
    - Authorization problems.
    RECORDING A BATCH INPUT
    A B recording allows you to record a R/3 transaction and generate a program that contains all screens and field information in the required BDC-DATA format.
    You can either use SHDB transaction for recording or
    SYSTEM ? SERVICES ? BATCH INPUT ? EDIT
    And from here click recording.
    Enter name for the recording.
    (Dates are optional)
    Click recording.
    Enter transaction code.
    Enter.
    Click Save button.
    You finally come to a screen where, you have all the information for each screen including BDC_OKCODE.
    • Click Get Transaction.
    • Return to BI.
    • Click overview.
    • Position the cursor on the just recorded entry and click generate program.
    • Enter program name.
    • Click enter
    The program is generated for the particular transaction.
    BACKGROUND PROCESSING
    Need for Background processing
    When a large volume of data is involved, usually all batch inputs are done in background.
    The R/3 system includes functions that allow users to work non-interactively or offline. The background processing systems handle these functions.
    Non-interactively means that instead of executing the ABAP/4 programs and waiting for an answer, user can submit those programs for execution at a more convenient planned time.
    There are several reasons to submit programs for background execution.
    • The maximum time allowed for online execution should not exceed 300 seconds. User gets TIMEOUT error and an aborted transaction, if time for execution exceeds 300 seconds. To avoid these types of error, you can submit jobs for background processing.
    • You can use the system while your program is executing.
    This does not mean that interactive or online work is not useful. Both type of processing have their own purposes. Online work is the most common one entering business data, displaying information, printing small reports, managing the system and so on. Background jobs are mainly used for the following tasks; to process large amount of data, to execute periodic jobs without human intervention, to run program at a more convenient, planned time other than during normal working hours i.e., Nights or weekends.
    The transaction for background processing is SM36.
    Or
    Tools ? Administration ? Jobs ? Define jobs
    Or
    System ? services ? Jobs
    Components of the background jobs
    A job in Background processing is a series of steps that can be scheduled and step is a program for background processing.
    • Job name. Define the name of assigned to the job. It identifies the job. You can specify up to 32 characters for the name.
    • Job class. Indicates the type of background processing priority assigned to the job.
    The job class determines the priority of a job. The background system admits three types of job classes: A B & C, which correspond to job priority.
    • Job steps. Parameters to be passed for this screen are as follows:
    Program name.
    Variant if it is report program
    Start criteria for the job: Option available for this are as follows:
    Immediate - allows you to start a job immediately.
    Date/Time - allows you to start a job at a specific name.
    After job - you can start a job after a particular job.
    After event - allows you to start a job after a particular event.
    At operation mode - allows you to start a job when the system switches to a particular operation mode.
    Defining Background jobs
    It is two step process: Firstly, you define the job and then release it.
    When users define a job and save it, they are actually scheduling the report i.e., specifying the job components, the steps, the start time.
    When users schedule program for background processing, they are instructing the system to execute an ABAP/4 report or an external program in the background. Scheduled jobs are not executed until they are released. When jobs are released, they are sent for execution to the background processing system at the specified start time. Both scheduling and releasing of jobs require authorizations.
    HANDLING OF POP UP SCREEN IN BDC
    Many times in transaction pop up screen appears and for this screen you don’t pass any record but some indication to system telling it to proceed further. For example: The following screen
    To handle such screen, system has provided a variable called BDC_CURSOR. You pass this variable to BDCDATA and process the screen.
    Usually such screen appears in many transactions, in this case you are just passing information, that YES you want to save the information, that means YES should be clicked. So you are transferring this information to BDCDATA i.e., field name of YES which is usually SPOT_OPTION. Instead of BDC_OKCODE, you are passing BDC_CURSOR.
    BDC_CURSOR is also used to place cursor on particular field.
    A simple transaction where you are entering customer number on first screen and on next screen data is displayed for the particular customer number. Field, which we are changing here, are name and city. When you click on save, the changed record gets saved.
    Prerequisite to write this BDC interface as indicated earlier is:
    1. To find screen number
    2. To find screen field names, type of the field and length of the field.
    3. To find BDC_OKCODE for each screen
    4. Create flat file.
    generally  Batch Input usually are used to transfer large amount of data. For example you are implementing a new SAP project, and of course you will need some data transfer from legacy system to SAP system.
    CALL TRANSACTION is used especially for integration actions between two SAP systems or between different modules. Users sometimes wish to do something like that click a button or an item then SAP would inserts or changes data automatically. Here CALL TRANSACTION should be considered.
    2. Transfer data for multiple transactions usually the Batch Input method is used.
    check these sites for step by step process:
    For BDC:
    http://myweb.dal.ca/hchinni/sap/bdc_home.htm
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/bdc&
    http://www.sap-img.com/abap/learning-bdc-programming.htm
    http://www.sapdevelopment.co.uk/bdc/bdchome.htm
    http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/69/c250684ba111d189750000e8322d00/frameset.htm
    http://www.sapbrain.com/TUTORIALS/TECHNICAL/BDC_tutorial.html
    Check these link:
    http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm
    http://www.sap-img.com/abap/question-about-bdc-program.htm
    http://www.itcserver.com/blog/2006/06/30/batch-input-vs-call-transaction/
    http://www.planetsap.com/bdc_main_page.htm
    call Transaction or session method ?
    null

  • How do you validate transfer of data from legacy to SAP (Tcode: SQVI)?

    Hello PP members:
    I would like to know how to validate transfer of data from legacy to SAP
    A friend of mine was telling it has to do with <u>SAP quick viewer(SQVI)</u> but could not able to much leads on it
    I would be thankful if can provide insights into the subject
    Thanks for your time,
    Suren R

    Suren,
    Yes, you could create queries in SAP with SQVI and get the data in SAP. But you need to be aware of all the relevant tables in SAP.
    For information for creating queries use link:
    http://help.sap.com/saphelp_47x200/helpdata/en/05/2b1df9209411d6b1d500508b6b8b11/frameset.htm
    For getting the relevant tables the easiest way is :
    1) Goto Se16.
    2) Choose F4,
    3) Click on SAP applications and drill down to the relevanttable.
    Hope this is useful. If yes reward poins and close this thread.
    Regards
    Ram

  • Can I transfer a web commerce site to another site I have?

    I have a web commerce site that never went live, I prepaid for one year. I understand no refund, can I transfer this to another trail site and make that site web commerce?

    Click here and request assistance.
    (63766)

  • How can we Transfer The Assets From Legacy to SAP

    Hi Experts,
    how can we transfer the assets from legacy system to sap when business in production ,what is the procedure for transfer the assets.
    Regards,
    Harish

    Hello Harish,
    Please kindly refer to SAP Libray for more information about
    intercompany transfer.
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/4f/71e18a448011d189f00000
    e81ddfac/frameset.htm
    -> Asset Accounting (FI-AA)
    ->Other transaction during Life of an Asset
      ->Intracompany and intercompany Asset Transfer
       ->Intercompany Asset Transfer(Between company codes)
    Please also refer to following notes and SAP library for further.
    information.
    310346 ABT1 Defining transfer variant gross
    327088 Definition of the delivered transfer variants
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/17/1d3c3934f18443e1000000
    0a114084/frameset.htm
    -> Asset Accounting (FI-AA)
    ->Other transaction during Life of an Asset
      ->Intracompany and intercompany Asset Transfer
       ->Intercompany Asset Transfer(Between company codes)
        ->Automatic Intracompany Asset Transfer
         ->Transfer Variant
    I hope this helps,
    regards
    Ray

  • Connection Between SAP GTS and Legacy systems

    Hi GTS Experts,
    Could you please let me know how to connect between SAP GTS and Legacy systems.
    This is for transfer of Customers, Vendors,Materials(Products in GTS),Transaction Data.
    Could you please provide any documentation on this and is it PI team will do or functional guy.
    One more question:
    Customer created a sales order with sold to and ship to(both contains same address) in legacy system.
    Then it will be sent to SPL screening in GTS.
    Now he will change ship to address and this should not be passed to SPL screening-- how to do this.
    Regards,
    Murali

    Hi Murali,
    Apart from what Dave mentioned as above, although there is no such document available apart from SAP Standard content document but its something that is very standard to other modules as well.
    Actually, you need to have a middle ware like SAP PI or any non SAP Product between SAP and Non SAP Legacy system. Also, mapping should be defined well in advance in this. Then it will also involve the EDI at the SAP GTS system end and Web skills( or applicale connection skills) at the Legacy system end to ensure appropriate mapping and interchange of realistic data.
    Here, I would like to know if your legacy system had already some SAP system connected to it?.
    Regards,
    Aman

  • Issue with Internet facing site and Intranet sites

    Hello All,
    I have migrated the SP2013 environment using database attach method for our intranet site. We also working on the
    SP2013 Internet facing site using the same content database as Internet site.
    When I extended the web application for Internet facing site, zone to
    Internet and these are the URLs: The Intranet website URL is
    https://intranet.contoso.com/SitePages/home.aspx (Root Site) and
    SP2013 Internet facing site http://contoso.com (not a root site and publishing site template)
    However, I found on the http://contoso.com users can still access the
    http://contoso.com/SitePages/home with same content as Intranet.
    After done some Google search, bloggers mentioned to have move  https://intranet.contoso.com/SitePages/home.aspx to another site collection so that Internet facing site can exist root site.
    Can 2 we have to two root sites in same web application? I need the content database to be same so that managers can check
    Internet facing site and after signing into SP2013, redirects to
    Internet site.  
    Which is the best option to achieve this with same content database.   
    Please advice.
    Regards,
    Aroh 
    Aroh Shukla

    Business Requirement:
    Content Managers want to control internal Internet site (https://intranet.contoso.com) (with default zone, port 443, Root site) and also want to have SP2013 Internet site (with Internet zone
    http://www.contoso.com (not a root site and publishing site template)), Anonymous access at Web Application level. I configured the site architecture
    to have intranet zone as default zone and extended Web Application for Internet facing site with Anonymous site. This the current site architecture
    Because content managers do not want to duplicate public site (Internet facing site) with will be shared with some lists that are stored in intranet site.
    For e.g. a sub site named “News and Events” will be shared with Public site as well as Internet users. Therefore, if a manger wants to update a list in the public site, it should reflect in intranet site as well. Thus, managers
    don’t want to have separate database but same content database.
    Problem:
    I have extended web application to have different Internet zone, the site URL looks this: http://www.contoso.com/sites/public with publishing template and Anonymous access. Managers want to have public site URL to be just
    http://www.contoso.com and not   http://www.contoso.com/SitePages/Home.aspx. As I am using path based site collection for extending site collection, I am
    getting this URL http://www.contoso.com/SitePages/Home.aspx
    We also tried host named site collection, but it does not provide anonymous access and keep on asking for user credentials.
    Q1: We want to have Intranet and Public site with same content database as per business requirements, Shall I following link       http://sharepoint.stackexchange.com/questions/81172/moving-content-db-for-a-site-collection-to-another-db-server?
    Q2: Because I am constrained that I don’t want to have separate web application, (I know, its not regular requirement), how could achieve this requirements?
    Q3: Do have to completely re-design web site architecture, with
    www.contoso.com as main web application, then copy Intranet site collection and move this to
    www.contoso.com/intranet using
    Move-SPSite command 
    Any kind of pointer and help will be highly appreciated as I am struggling for 2 weeks to solve this.
    Regards,
    Aroh  
    Aroh Shukla

  • Applying theme to all sites in a site collection SharePoint Foundation 2010

    I am working in SharePoint Foundation 2010 and want to apply a theme found in my top level site to all the remaining sites in the site collection.  I found the following bit of code on-line and put it in a script:
    function Apply-SPTheme([string]$SiteUrl, [string]$webName, [string]$themeName)
     $site = new-object Microsoft.SharePoint.SPSite($SiteUrl)
     $web = $Site.OpenWeb($webName)
     $theme = [Microsoft.SharePoint.Utilities.ThmxTheme]::Open($site,"_catatlogs/theme/" + $themeName + ".thmx")
     $theme.ApplyTo($web,$false)
     $web.Update()
     $web.Dispose()
     $site.Dispose()
    Apply-SPTheme "https://sitename" "" "themeName"
    I call the function in the last line and the web site where I obtained the code indicated that this would put the theme in all other sites.  When I run the script I get the follwing message:
    You cannot call a method on a null-valued expression. At C:\applyTheme.ps1(the script file):6 char:16
    $theme.ApplyTo <<<< <$web,$false>
    +CategoryInfo: InvalidOperation: (ApplyTo:String) [], RuntimeException
    +FullyQualifiedErrorId:InvokeMethodOnNull
    I'm a novice programmer and particularly novice on Powershell. I'm not sure I understand what the problem is or how to fix it.
    I'd appreciate any help.

    I highly recommend going back to the SharePoint 2010 site and going through all of the fundamentals.  If yo allocate an hour a day you should be caught up in two weeks.  This will save you hundreds of hours of fishing for solutions.
    SharePoint is far too complex to be "guessed" at.  You will never guess at its structure. Going through the basics from the ground up will burn the structure of its design into you head.  You will then be able to find answers quickly because you
    will know the documentation and how to ask the questions.
    If you are only a basic Admin then your company should allow the vendor to either do the configurations or pay for you to be trained or compensate you to use your personal time for training.  It would be a win for them.
    There are many very good books on SharePoint and PowerShell.  They are only good if you already have the basics of both.  One that I acquired recently is quite good at you level of involvement as it is a cookbook of solutions in PowerShell for
    normal configuration and administration items that goes beyond what is available on the web site or in the basic training.
    http://www.wrox.com/WileyCDA/WroxTitle/productCd-0470533331.html
    I actually have the 2013 version but you should stick to the 2010 version until you are up to speed.  I bought 2013 as a catch up.  Read it over two long dinners of
    Sushi and Sake.
    The books run the gamut of SP from planning to admin.  They are not technical manuals and not developer books.  They are written for general administration,  You will read through quickly and then refer back to chapters as needed.  As
    your SP site evolves the book will help you evolve with it.
    Start by becoming extremely familiar with all of the resources on the SharePoint 2010 product site.  Post future requests that are SharePoint related to the SP forums.  They are very good with PowerShell at this time (three versions but they seem
    to have caught up) - They know the product better than most here and are closer to the MS MVPs on SharePoint.  If there is a pure PowerShell issue then the people in this forum can very helpful,
    Here are all of the SharePoint forums:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/home?filter=alltypes&sort=lastpostdesc&brandIgnore=true
    ¯\_(ツ)_/¯

  • Is it possible to show a 'My Activity' web part on a SharePoint site if 'My Sites' is not available?

    Is it possible to show a 'My Activity' web part on a SharePoint site if 'My Sites' is not available?
    For example, say there's a SharePoint installation dedicated to particular (custom) SharePoint site. The users go to the site to carry out their tasks. There's no 'My Site' set up in this installation (and for other reasons I'm told it's not an option).
    Is it possible to show a web part here that shows the user's recent activity? The built-in web part for this fails with the error 'Invalid URI: The URI is empty', and the details of it appear to say it's looking for the user's My Site to find out what to show:
    SPMicrofeedContext.SetMySiteHostForContext failed System.UriFormatException: Invalid URI: The URI is empty.     at System.Uri.CreateThis(String uri, Boolean dontEscape, UriKind uriKind)     at Microsoft.Office.Server.Microfeed.SPMicrofeedContext.SetMySiteHostForContext()
    So, while I'd be happy to write a web part (or app part) to display the information instead of using the default part, I'm not sure SharePoint is even storing the activity in a way I can access.
    Some pages like the following: http://sharepointmystery.com/2012/07/22/activity-feeds-in-sharepoint-2013/ make me think it won't be possible - it says: 'The major change from 2010 is that all the [activity] content is stored in the user’s personal site, not
    in a common database.'
    Are activity feeds dependent on 'My Sites' or is there a way to access the information when 'My Sites' is not present in the deployment? I can't find a definitive answer in Microsoft's documentation.

    To clarify, do you have the User Profile Service (including MySite Host) up and running on this environment? That's subtley different to the full MySite experience which is clearly not applicable...
    Interesting question - thanks for that. Until now I didn't realise there was a difference.
    The User Profile Service is up and running, but no MySite Host is set. (I don't believe MySite will be available anywhere here. I guess that means there's no valid MySite Host for me to use.)
    Many thanks,
        Geoff

  • HT1918 I am trying to update my billing information and it sent me to this site. This site is not telling me what to do.

    I am trying to update my billing information and it sent me to this site. This site is not telling me what to do.

    on ios device go to settings - itunes app stores - click on your apple id - select view apple id- and then enter password. - your billing info is in the account window. 
    on computer open itunes - go to itunes store - either sign in - or click apple id - view apple id - enter password - billing info under account window

  • Safari (3.0.4) on Mac OS 10.4.11 has started quitting when viewing news and weather sites - not all sites, not the same sites every time.

    Safari (3.0.4) on Mac OS 10.4.11 has started quitting when viewing news and weather sites - not all sites, not the same sites every day. Help?

    Hi Gary...
    I see you are running v10.4.11 and you have updated Safari but make certain all the system software is up to date by clicking your Apple menu / Software Update.
    If everything is up to date, try resetting Safari from the menu bar.
    Select the top 7 buttons, click Reset.
    Restart your Mac. Launch Safari. Try several of the sites you mentioned.
    has started quitting
    If resetting didn't help, post a crash report.
    If Safari has just crashed, press the Report button on the CrashReporter dialog box to view the crash  information.
    Copy/paste the entire contents of the Crash Reporter window into your reply. If the crash report dialog does not appear or the crash is hard to reproduce, crash logs can be retrieved from the ~/Library/Logs/CrashReporter> folder.

  • How to show rss from other sites on my site?

    how to show rss from other sites on my site?
    i'd like to have a window on my site that shows rss from
    another site
    (their content in a window on my site)
    thanks
    lenny

    What version of DW do you have. The later versions have RSS
    script generators (I believe) for consuming feeds. Otherwise, you
    can use 3rd party sites to generate the code, or you can use a
    server side scripting language to consume the feeds.

  • How to add all site activity to site Newsfeed

    Hi,
    After extensive search and research (and a number of dead ends) I am coming up empty handed on any info re: how to expand the functionality of Newsfeed within Sharepoint.
    My goal is to create a Newsfeed that includes more activity than just what a user has explicitly followed.  Optimally, I would like to have a site Newsfeed that includes entries for all activity on the site.  Users could then directly access the
    item that was added, edited, or commented on to view all the details and add their own contributions.  This would look very similar to a Basecamp style project feed that includes all ongoing information on the project.
    Eventually I would like users to be able to sort the activity by activity type (e.g. view all document related activity, or all activity pertaining to a particular list) but a master feed would be a great place to start.
    This blog post is the closest I've found to what I'd like to do, but the author did not finish the series.
    http://styledpoint.com/blog/sharepoint-2013-and-the-missing-web-activity-stream-part-01/
    Does anyone here either a) know how to modify a site Newsfeed to operate in this way or b) know of any tutorials describing how?
    All help is greatly appreciated.
    Brock

    Hi Brock,
    According to your description, my understanding is that you want to show the latest updates or activities regarding your SharePoint site.
    I recommend to download the Site Activity Stream web part to achieve this goal.
    Site Activity Stream provides a comprehensive overview of all the latest updates regarding your SharePoint Sites and the sites you are following. For this reason you get an instant update on all important changes you are involved in.
    More information are provided in the links below:
    http://www.queport.com/site-activity-stream/
    http://office.microsoft.com/en-us/store/site-activity-stream-WA104141088.aspx
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Is it possible to publish one site to mac site and another site to a school

    I have an "About me" page which I wish students to have access to - but I don't want them to have access to the rest of my site - can I publish either just the "about me" page to a different school server or can I create a new site with just an about me page and publish that site to my school server and my personal site to mac site?

    Yes.
    The easiest way is to use separate domain.sites2 files. There are several sites that offer instructions for doing this. One is Apnewbie's Site Separation help page.
    kabing

  • .Mac "Start Site" not the top site in iWeb site organizer

    My first iWeb site I created is for my family stuff. Mildly personal.
    My next one will be more friends/work.
    But, when I test out the iweb help entry that says the top site in the site organizer is/will be the start site, it does not hold true when I publish them.
    The help says:
    Your start site is the one that opens when you type this URL (address) into a browser (don't type the brackets):
    http://web.mac.com/[YourMemberName]
    To change your start site:
    Drag the site you want to be the start site so that it appears first in the site organizer.
    But, after I publish, the start site is still the old start site. Is this a timing/web cache issue? Or, bug? Or, how can one fix this?

    It could be a cache issue, but I think this is less likely. Never hurts to emtpy your browser cache though. I have seen one other person who's sites are stuck like this. Couldn't tell you why. She is stuck using the long URLs to specify each site. Maybe this is a bug in iWeb. I don't know.
    But here are some things you could try...switch the order of your sites again in the Site Organizer, publish, switch them back and republish. Or you might try a "Publish ALL to .Mac".
    The object here is to get iWeb to generate new index.html files that redirect to your choice of a start page. For a little background, if you look in your iDisk inside the Web folder. There is a folder called Sites. Inside Sites, there is a folder called iWeb. Inside the iWeb folder you will see the first of two redirection index.html files. This first one is what allows the short URL to work...
    http://web.mac.com/yourname/
    Now if you open up the site folder inside the iWeb folder, you will see another index.html file among all the other files there. This is the second index.html file that redirects to the same start page as the first. This allows the "long" URL to be used...
    http://web.mac.com/yourname/iWeb/sitefolder/
    I have seen situations where either one of these index.html files have not been generated or altered to reflect changes in the Site Organizer...usually the outer index.html file inside the iWeb folder. So anything that you can do to make iWeb publish new files should work....changing the order of your sites, erasing the files from your iDisk and republishing, changing the names of your sites, doing a Publish ALL. Try these things and see if your problem isn't resolved...
    If you have found any of this information to be useful to you, please take the time to provide me with feedback by marking my reply as "solved" or "helpful" using those little buttons that you see in the title bar of this reply. I'd really appreciate it!

Maybe you are looking for

  • CUPC Over VPN

    We resolved a VPN issue that was preventing us to be able to log in to CUPC over VPN. I am now able to log in, I can see my buddy list and their status, however the CUPC status in the bottom of the window is listed as "Offline (No Network)". Server H

  • HP LaserJet Pro M1536 just copy and scan lines

    HP LaserJet Pro M1536 just copy and scan lines Hi, I have a problem with the multifunction suddenly. When I make a photocopy or when I scan to PC, both the ADF glass, leaving only the lines without any image of the sheet that I'm scanning. If mold fr

  • USB ports failing to mount an external hard drive, recognize a printer.

    Hello, I have a Mac Mini running 10.5.8. Suddenly the usb ports do not mount external hardrives (I have 2) and also do not recognize an Hp printer. If I plug the keyboard an the mouse, they are recognize and useful. Firewire mounts one of my firewire

  • Report not being written to network storage

    Hello again everybody, My application provides the user with "on demand" report displays, which, after much mucking around are now working reliably (again).  The last thing the application does is create a set of CSV files and write a set of reports

  • PPOME problem

    hi we are facing one issue related to PPOME when we create and save the  new position in  PPOME the data saved successfully. Then all the employees names disappear even if  we search the employee names,we cannot see the name of the employee while we