Separate Distribution Monitor Export and Import Processes on Multiple Machines

Hi,
Would you kindly let me know whether it is possible (means officially supported way) to run Distribution Monitor Export and Import processes on different machines?
As per SAP note 0001595840 "Using DISTMON and MIGMON on source and target systems", it says as below.
> 1. DISTMON expects the export and import to be carried out on the same server
I think it means that export and import processes for the same tables must be run on the same machine, is it correct? If yes, Export on the machine A, and then Import those exported data on the other machine B is not the officially supported way... (However, I know it is technically possible.)
Kind regards,
Yutaka

Hi Yutaka,
Point no. 2 & 3 clarify the confusion. However let me explain it briefly:
Distribution Monitor is used basically in case of migration of large SAP systems (database). It provides the feature to increase parallelism of export and import, distributing the process across available systems.
You have to prepare the system for using DistMon. A common directory needs to be created as"commDir" and in case you use multiple systems for executing more number of processes of export and import then that "commDir" should be shared across all those systems.  And this is what the Point no.1 in KBA 1595840 mentions about. Distribution Monitor will run both the export and import process from the machine which is prepared for using DistMon and DistMon itself will control the other processes i.e. MigMon. No need to start separate MigMon.
For example: You are performing a migration of SAP system based on OS:AIX and DB:DB2 to  OS: HP-UX and DB: Oracle. You need to perform the export using DistMon and you are having 4 Windows servers which can be used for parallel export/import. Once you have prepared the system for DistMon which hosts the "commDir" you'll have to provide the information of involved host machines in the "distribution_monitor_cmd.properties" file. Now when DistMon is executed it will distribute the export and import process across the systems which were defined in "distribution_monitor_cmd.properties" file automatically.
Best regards,
SUJIT

Similar Messages

  • Is it possible to export and import jsf page and application module?

    Hi,
    I want to export a application module and then import it to another application,so deos jsf pages.If I can do this ,then my team could do the diffent work at the same time.one group response for data model then commit as application module,one group for page create and edit and so on .Who has any good idea?
    Thanks advance
    lixinzhu
    2007/09/19

    hi,frank
    thank you.
    You know a page include a .jspx file,a page definition file and depend faces-config.xml,faces-config.oxd_faces and other I don't know information,so if i only put the first two file into cvs,but how can i get other information in the last two file?When I get the first two file and needed information in the other file,how can i merge these into new project and let jdeveloper "reconize it"?Applicaion is more complex,it not only depend its self java class,xml and many entity object and view object,how to handle the "export" and "import" process?Just like oracle form,only a fmb is enough,database object only need to "put into database","export" and "import" are very simple,so i need jdeveloper to supply these "import" and "export" function.I'm not familar with cvs,does it can know object dependency like application module?if it can,how to let jdev "reconize" imported in object?
    lixinzhu
    2007/09/19

  • How to export and import Wirless 8021x network using networksetup

    Hello,
    *I am not able to export 8021x wireless networks using networksetup command.*
    *Cmd was like this -*
    *networksetup -export8021xProfiles <service name> <file path> yes*
    *can any body help me in doing this export and import process???*
    *Thanks in advance,*
    Vishal
    Message was edited by: vishal.wlan

    Read this 10.6: Add wireless networks from command line and pay attention to the hint's comments because some users have some cool tips.

  • Export and Import of mappings/process flows etc

    Hi,
    We have a single repository with multiple projects for DEV/UAT and PROD of the same logical project. This is a nightmare for controlling releases to PROD and in fact we have a corrupt repository as a result I suspect. I plan to split the repository into 3 separate databases so that we have a design repos for DEV/UAT and PROD. Controlling code migrations between these I plan to use the metadata export and subsequent import into UAT and then PROD once tested. I have used this successfully before on a project but am worried about inherent bugs with metadata export/imports (been bitten before with Oracle Portal). So can anyone advise what pitfalls there may be with this approach, and in particular if anyone has experienced loss of metadata between export and import. We have a complex warehouse with hundreds of mappings, process flows, sqlldr flatfile loads etc. I have experienced process flow imports that seem to lose their links to the mappings they encapsulate.
    Thanks for any comments,
    Brandon

    This should do the trick for you as it looks for "PARALLEL" therefore it only removes the APPEND PARALLEL Hint and leaves other Hints as is....
    #set current location
    set path "C:/TMP"
    # Project parameters
    set root "/MY_PROJECT"
    set one_Module "MY_MODULE"
    set object "MAPPINGS"
    set path "C:/TMP
    # OMBPLUS and tcl related parameters
    set action "remove_parallel"
    set datetime [clock format [clock seconds] -format %Y%m%d_%H%M%S]
    set timestamp [clock format [clock seconds] -format %Y%m%d-%H:%M:%S]
    set ext ".log"
    set sep "_"
    set ombplus "OMBplus"
    set omblogname $path/$one_Module$sep$object$sep$datetime$sep$ombplus$ext
    set OMBLOG $omblogname
    set logname $path/$one_Module$sep$object$sep$datetime$ext
    set log_file [open $logname w]
    set word "PARALLEL"
    set i 0
    #Connect to OWB Repository
    OMBCONNECT .... your connect tring
    #Ignores errors that occur in any command that is part of a script and moves to the next command in the script.
    set OMBCONTINUE_ON_ERROR ON
    OMBCC "'$root/$one_Module'";      
    #Searching Mappings for Parallel in source View operators
    puts "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Searching for Loading/Extraction Operators set at Parallel";
    puts "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Module: $one_Module, Object_type: Mapping";
    puts $log_file "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Searching for Loading/Extraction Operators set at Parallel";
    puts $log_file "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Module: $one_Module, Object_type: Mapping";
    foreach mapName [OMBLIST MAPPINGS] {
    foreach opName [OMBRETRIEVE MAPPING '$mapName' GET TABLE OPERATORS] {
    foreach prop1 [OMBRETRIEVE MAPPING '$mapName' OPERATOR '$opName' GET PROPERTIES (LOADING_HINT)] {
    if { [ regexp $word $prop1] == 1 } {
    incr i
    puts "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Mapping: $mapName, Loading Operator: $opName, Property: $prop1"
    puts $log_file "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Mapping: $mapName, Loading Operator: $opName, Property: $prop1"
    OMBALTER MAPPING '$mapName' MODIFY OPERATOR '$opName' SET PROPERTIES (LOADING_HINT) VALUES ('');
    OMBCOMMIT;
    foreach prop2 [OMBRETRIEVE MAPPING '$mapName' OPERATOR '$opName' GET PROPERTIES (EXTRACTION_HINT) ] {
    if {[regexp $word $prop2] == 1 } {
         incr i
    puts "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Mapping: $mapName, Extraction Operator: $opName, Property: $prop2"
    puts $log_file "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Mapping: $mapName, Extraction Operator: $opName, Property: $prop2"
    OMBALTER MAPPING '$mapName' MODIFY OPERATOR '$opName' SET PROPERTIES (EXTRACTION_HINT) VALUES ('');
    OMBCOMMIT;
    foreach opName [ OMBRETRIEVE MAPPING '$mapName' GET DIMENSION OPERATORS ] {
    foreach prop1 [OMBRETRIEVE MAPPING '$mapName' OPERATOR '$opName' GET PROPERTIES (LOADING_HINT) ] {
    if {[regexp $word $prop1] == 1 } {
         incr i
    puts "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Mapping: $mapName, Loading Operator: $opName, Property: $prop1"
    puts $log_file "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Mapping: $mapName, Loading Operator: $opName, Property: $prop1"
    OMBALTER MAPPING '$mapName' MODIFY OPERATOR '$opName' SET PROPERTIES (LOADING_HINT) VALUES ('');
    OMBCOMMIT;
    foreach prop2 [OMBRETRIEVE MAPPING '$mapName' OPERATOR '$opName' GET PROPERTIES (EXTRACTION_HINT) ] {
    if {[regexp $word $prop2] == 1 } {
         incr i
    puts "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Mapping: $mapName, Extraction Operator: $opName, Property: $prop2"
    puts $log_file "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Mapping: $mapName, Extraction Operator: $opName, Property: $prop2"
    OMBALTER MAPPING '$mapName' MODIFY OPERATOR '$opName' SET PROPERTIES (EXTRACTION_HINT) VALUES ('');
    OMBCOMMIT;
    foreach opName [ OMBRETRIEVE MAPPING '$mapName' GET CUBE OPERATORS ] {
    foreach prop1 [OMBRETRIEVE MAPPING '$mapName' OPERATOR '$opName' GET PROPERTIES (LOADING_HINT) ] {
    if {[regexp $word $prop1] == 1 } {
         incr i
    puts "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Mapping: $mapName, Loading Operator: $opName, Property: $prop1"
    puts $log_file "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Mapping: $mapName, Loading Operator: $opName, Property: $prop1"
    OMBALTER MAPPING '$mapName' MODIFY OPERATOR '$opName' SET PROPERTIES (LOADING_HINT) VALUES ('');
    OMBCOMMIT;
    foreach prop2 [OMBRETRIEVE MAPPING '$mapName' OPERATOR '$opName' GET PROPERTIES (EXTRACTION_HINT) ] {
    if {[regexp $word $prop2] == 1 } {
         incr i
    puts "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Mapping: $mapName, Extraction Operator: $opName, Property: $prop2"
    puts $log_file "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Mapping: $mapName, Extraction Operator: $opName, Property: $prop2"
    OMBALTER MAPPING '$mapName' MODIFY OPERATOR '$opName' SET PROPERTIES (EXTRACTION_HINT) VALUES ('');
    OMBCOMMIT;
    foreach opName [ OMBRETRIEVE MAPPING '$mapName' GET VIEW OPERATORS ] {
    foreach prop1 [OMBRETRIEVE MAPPING '$mapName' OPERATOR '$opName' GET PROPERTIES (LOADING_HINT) ] {
    if {[regexp $word $prop1] == 1 } {
         incr i
    puts "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Mapping: $mapName, Loading Operator: $opName, Property: $prop1"
    puts $log_file "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Mapping: $mapName, Loading Operator: $opName, Property: $prop1"
    OMBALTER MAPPING '$mapName' MODIFY OPERATOR '$opName' SET PROPERTIES (LOADING_HINT) VALUES ('');
    OMBCOMMIT;
    foreach prop2 [OMBRETRIEVE MAPPING '$mapName' OPERATOR '$opName' GET PROPERTIES (EXTRACTION_HINT) ] {
    if {[regexp $word $prop2] == 1 } {
         incr i
    puts "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Mapping: $mapName, Extraction Operator: $opName, Property: $prop2"
    puts $log_file "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Mapping: $mapName, Extraction Operator: $opName, Property: $prop2"
    OMBALTER MAPPING '$mapName' MODIFY OPERATOR '$opName' SET PROPERTIES (EXTRACTION_HINT) VALUES ('');
    OMBCOMMIT;
    if { $i == 0 } {
              puts "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Module: $one_Module, Object_type: Mapping";
              puts "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Not found any Loading/Extraction Operators set at Parallel";
              puts $log_file "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Module: $one_Module, Object_type: Mapping";
              puts $log_file "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Not found any Loading/Extraction Operators set at Parallel";
         } else {
              puts "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Module: $one_Module, Object_type: Mapping";
              puts "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Fixed $i Loading/Extraction Operators set at Parallel";
              puts $log_file "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Module: $one_Module, Object_type: Mapping";
              puts $log_file "[clock format [clock seconds] -format "%Y%m%d %H:%M:%S"] --> Fixed $i Loading/Extraction Operators set at Parallel";
    close $log_file;
    Enjoy!
    Michel

  • Is it possible to replace masters with versions without going through the process of exporting and importing?

    Is it possible to overwrite the master files with the versions without having to go through the entire process of exporting and importing back the images?
    Thnx in advance

    A small refinement if you shoot RAW. Remember, no RAW file can ever be edited or rewritten. Thus, in the old days, the flow was:
    RAW>TIFF/PSD and you ended up with two large files. (This is why some folks used to delete the RAW Masters.)
    With Aperture the flow is something like:
    RAW+Version(s) Only the Version is only 30 KB. (There is, of course, additional overhead of Thumbs and Previews, but, depending on your settings, this is only a fraction of the size of a TIFF or PSD.)
    You question goes right to the heart of the concept of a non-destructive workflow. With Aperture you always preserve your original Master file; the only things that are ever at risk are your edits (called Adjustments). Ironically, this is even more valuable if you shoot JPEG or TIFF as those files could be rewritten.)
    Aperture goes to great lengths to give you the best of both worlds; you always have the Master to revert to and your "edits" take up very little disk space. And you don't have to waste time trying to sync folders of RAW, TIFF, and JPEG. Similarly, you never have to worry about resizing images, changing color spaces, or any number of other things that get locked into an image file when you use a destructive workflow.
    Remember, Aperture will happily Export files in any format you may need. Export 'em, use 'em, delete 'em - your Masters are still safe in Aperture.
    DiploStrat

  • View and Edit properties pages are not woriking after export and import in sharepoint2013

    Hi,
    After performing Export and Import in SharePoint 2013 for a subsite, metadata is missing in document library. 404 error triggers on  clicking both View-properties of an item and /Forms/DisplayDocument.aspx.
    Please help me in this.
    Regards,
    Gurudatta

    While uploading, after browsing the document clicking on OK button giving below error.
    Nothing is generated in Event logs. Below are sharepoint logs.
    07/16/2014 17:32:08.44  w3wp.exe (0x5234)                        0x499C SharePoint Foundation        
     Logging Correlation Data       xmnv Medium   Name=Request (GET:http://siteurl/frmFile4/Forms/CreateDocument.aspx?Mode=Upload&CheckInComment=&ID=963&RootFolder=/QAPortal/PackingMaterial/frmFile4&Source=http://siteurl/frmFile4/Forms/AllItems.aspx?InitialTabId=Ribbon%252EDocument&VisibilityContext=WSSTabPersistence&RootFolder=%252FQAPortal%252FPackingMaterial%252FfrmFile4&IsDlg=1) 9e13a59c-dffb-b08d-acd9-c283e837f4a5
    07/16/2014 17:32:08.44  w3wp.exe (0x5234)                        0x499C SharePoint Foundation        
     Request Management             adc7u Medium   Mapping URI from 'http://siteurl/frmFile4/Forms/CreateDocument.aspx?Mode=Upload&CheckInComment=&ID=963&RootFolder=%2FQAPortal%2FPackingMaterial%2FfrmFile4&Source=http%3A%2F%2Fuslsp13%3A1111%2FQAPortal%2FPackingMaterial%2FfrmFile4%2FForms%2FAllItems%2Easpx%3FInitialTabId%3DRibbon%252EDocument%26VisibilityContext%3DWSSTabPersistence%26RootFolder%3D%252FQAPortal%252FPackingMaterial%252FfrmFile4&IsDlg=1'
    to 'http://siteurl/frmFile4/Forms/CreateDocument.aspx?Mode=Upload&CheckInComment=&ID=963&RootFolder=%2FQAPortal%2FPackingMaterial%2FfrmFile4&Source=http%3A%2F%2Fuslsp13%3A1111%2FQAPortal%2FPackingMaterial%2FfrmFile4%2FForms%2FAllItems%2Easpx%3FInitialTabId%3DRibbon%252EDocument%26VisibilityContext%3DWSSTabPersistence%26RootFolder%3D%2... 9e13a59c-dffb-b08d-acd9-c283e837f4a5
    07/16/2014 17:32:08.44* w3wp.exe (0x5234)                        0x499C SharePoint Foundation        
     Request Management             adc7u Medium   ...52FQAPortal%252FPackingMaterial%252FfrmFile4&IsDlg=1' 9e13a59c-dffb-b08d-acd9-c283e837f4a5
    07/16/2014 17:32:08.44  w3wp.exe (0x5234)                        0x1E7C SharePoint Foundation        
     Monitoring                     nasq Medium   Entering monitored scope (Request (GET:http://siteurl/frmFile4/Forms/CreateDocument.aspx?Mode=Upload&CheckInComment=&ID=963&RootFolder=%2FQAPortal%2FPackingMaterial%2FfrmFile4&Source=http%3A%2F%2Fuslsp13%3A1111%2FQAPortal%2FPackingMaterial%2FfrmFile4%2FForms%2FAllItems%2Easpx%3FInitialTabId%3DRibbon%252EDocument%26VisibilityContext%3DWSSTabPersistence%26RootFolder%3D%252FQAPortal%252FPackingMaterial%252FfrmFile4&IsDlg=1)).
    Parent No
    07/16/2014 17:32:08.44  w3wp.exe (0x5234)                        0x1E7C SharePoint Foundation        
     Logging Correlation Data       xmnv Medium   Name=Request (GET:http://siteurl/frmFile4/Forms/CreateDocument.aspx?Mode=Upload&CheckInComment=&ID=963&RootFolder=%2FQAPortal%2FPackingMaterial%2FfrmFile4&Source=http%3A%2F%2Fuslsp13%3A1111%2FQAPortal%2FPackingMaterial%2FfrmFile4%2FForms%2FAllItems%2Easpx%3FInitialTabId%3DRibbon%252EDocument%26VisibilityContext%3DWSSTabPersistence%26RootFolder%3D%252FQAPortal%252FPackingMaterial%252FfrmFile4&IsDlg=1) 9e13a59c-dffb-b08d-acd9-c283e837f4a5
    07/16/2014 17:32:08.46  w3wp.exe (0x5234)                        0x1E7C SharePoint Foundation        
     Authentication Authorization   agb9s Medium   Non-OAuth request. IsAuthenticated=True, UserIdentityName=0#.w|usl\hclspp, ClaimsCount=23 9e13a59c-dffb-b08d-acd9-c283e837f4a5
    07/16/2014 17:32:08.50  w3wp.exe (0x5234)                        0x1E7C SharePoint Foundation        
     Information Rights Management  5202 Information Information Rights Management (IRM): Requesting user email address is empty. 9e13a59c-dffb-b08d-acd9-c283e837f4a5
    07/16/2014 17:32:08.50  w3wp.exe (0x5234)                        0x1E7C SharePoint Foundation        
     Files                          ak8dj High     UserAgent not available, file operations may not be optimized.   
    at Microsoft.SharePoint.SPFileStreamManager.CreateCobaltStreamContainer(SPFileStreamStore spfs, ILockBytes ilb, Boolean copyOnFirstWrite, Boolean disposeIlb)     at Microsoft.SharePoint.SPFileStreamManager.SetInputLockBytes(SPFileInfo&
    fileInfo, SqlSession session, PrefetchResult prefetchResult)     at Microsoft.SharePoint.CoordinatedStreamBuffer.SPCoordinatedStreamBufferFactory.CreateFromDocumentRowset(Guid databaseId, SqlSession session, SPFileStreamManager spfstm,
    Object[] metadataRow, SPRowset contentRowset, SPDocumentBindRequest& dbreq, SPDocumentBindResults& dbres)     at Microsoft.SharePoint.SPSqlClient.GetDocumentContentRow(Int32 rowOrd, Object ospFileStmMgr, SPDocumentBindRequest&
    dbreq, SPDocumentBindResults& dbres... 9e13a59c-dffb-b08d-acd9-c283e837f4a5
    07/16/2014 17:32:08.50* w3wp.exe (0x5234)                        0x1E7C SharePoint Foundation        
     Files                          ak8dj High     ...)     at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFileAndMetaInfo(String
    bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Int32 iRequestVersion, Byte bMainFileRequest, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean&
    pbGhostedDocument, Boolean& pbDefaultToPersonal, Boolean& pbIsWebWelcomePage, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion, String& pbstrTimeLastModified, String& pbstrContent, UInt32& pdwPartCount, Object&
    pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String& pbstrRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocid, Byte& piLevel,
    UInt64& ppermMask, ... 9e13a59c-dffb-b08d-acd9-c283e837f4a5
    07/16/2014 17:32:08.50* w3wp.exe (0x5234)                        0x1E7C SharePoint Foundation        
     Files                          ak8dj High     ...Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies,
    Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder, Guid& pgDocScopeId)     at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte
    bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Int32 iRequestVersion, Byte bMainFileRequest, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument,
    Boolean& pbDefaultToPersonal, Boolean& pbIsWebWelcomePage, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion, String& pbstrTimeLastModified, String& pbstrContent, UInt32& pdwPartCount, Object& pvarMetaData, Object&
    pvarMultipleMeetingDoclibRootFolders, String& pbst... 9e13a59c-dffb-b08d-acd9-c283e837f4a5
    07/16/2014 17:32:08.50* w3wp.exe (0x5234)                        0x1E7C SharePoint Foundation        
     Files                          ak8dj High     ...rRedirectUrl, Boolean& pbObjectIsList, Guid&
    pgListId, UInt32& pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocid, Byte& piLevel, UInt64& ppermMask, Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies, Object& pvarBuildDependencies,
    String& pbstrFolderUrl, String& pbstrContentTypeOrder, Guid& pgDocScopeId)     at Microsoft.SharePoint.Library.SPRequest.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet, String
    bstrCurrentFolderUrl, Int32 iRequestVersion, Byte bMainFileRequest, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument, Boolean& pbDefaultToPersonal, Boolean&
    pbIsWebWelcomePage, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion,... 9e13a59c-dffb-b08d-acd9-c283e837f4a5
    07/16/2014 17:32:08.50* w3wp.exe (0x5234)                        0x1E7C SharePoint Foundation        
     Files                          ak8dj High     ... String& pbstrTimeLastModified, String& pbstrContent,
    UInt32& pdwPartCount, Object& pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String& pbstrRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied,
    Guid& pgDocid, Byte& piLevel, UInt64& ppermMask, Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies, Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder, Guid& pgDocScopeId)    
    at Microsoft.SharePoint.SPWeb.GetWebPartPageContent(Uri pageUrl, Int32 pageVersion, PageView requestedView, HttpContext context, Boolean forRender, Boolean includeHidden, Boolean mainFileRequest, Boolean fetchDependencyInformation, Boolean& ghostedPage,
    String& siteRoot, Guid& siteId, Int64& bytes, ... 9e13a59c-dffb-b08d-acd9-c283e837f4a5
    07/16/2014 17:32:08.50* w3wp.exe (0x5234)                        0x1E7C SharePoint Foundation        
     Files                          ak8dj High     ...Guid& docId, UInt32& docVersion, String&
    timeLastModified, Byte& level, Object& buildDependencySetData, UInt32& dependencyCount, Object& buildDependencies, SPWebPartCollectionInitialState& initialState, Object& oMultipleMeetingDoclibRootFolders, String& redirectUrl, Boolean&
    ObjectIsList, Guid& listId)     at Microsoft.SharePoint.ApplicationRuntime.SPRequestModuleData.FetchWebPartPageInformationForInit(HttpContext context, SPWeb spweb, Boolean mainFileRequest, String path, Boolean impersonate, Boolean&
    isAppWeb, Boolean& fGhostedPage, Guid& docId, UInt32& docVersion, String& timeLastModified, SPFileLevel& spLevel, String& masterPageUrl, String& customMasterPageUrl, String& webUrl, String& siteUrl, Guid& siteId, Object&
    buildDependencySetData, SPWebPartCollectionInitialState& initialState, ... 9e13a59c-dffb-b08d-acd9-c283e837f4a5
    07/16/2014 17:32:08.50* w3wp.exe (0x5234)                        0x1E7C SharePoint Foundation        
     Files                          ak8dj High     ...String& siteRoot, String& redirectUrl, Object&
    oMultipleMeetingDoclibRootFolders, Boolean& objectIsList, Guid& listId, Int64& bytes)     at Microsoft.SharePoint.ApplicationRuntime.SPRequestModuleData.GetFileForRequest(HttpContext context, SPWeb web, Boolean exclusion, String
    virtualPath)     at Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.InitContextWeb(HttpContext context, SPWeb web)     at Microsoft.SharePoint.WebControls.SPControl.SPWebEnsureSPControl(HttpContext context)    
    at Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.GetContextWeb(HttpContext context)     at Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.PostResolveRequestCacheHandler(Object oSender, EventArgs ea)    
    at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IEx... 9e13a59c-dffb-b08d-acd9-c283e837f4a5
    07/16/2014 17:32:08.50* w3wp.exe (0x5234)                        0x1E7C SharePoint Foundation        
     Files                          ak8dj High     ...ecutionStep.Execute()     at System.Web.HttpApplication.ExecuteStep(IExecutionStep
    step, Boolean& completedSynchronously)     at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error)     at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback
    cb)     at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr
    nativeRequestContext, IntPtr moduleData, Int32 flags)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)    
    at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompl... 9e13a59c-dffb-b08d-acd9-c283e837f4a5
    07/16/2014 17:32:08.50* w3wp.exe (0x5234)                        0x1E7C SharePoint Foundation        
     Files                          ak8dj High     ...etion(IntPtr pHandler, RequestNotificationStatus&
    notificationStatus)     at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr
    rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) 
     9e13a59c-dffb-b08d-acd9-c283e837f4a5
    07/16/2014 17:32:08.50  w3wp.exe (0x5234)                        0x1E7C SharePoint Foundation        
     Files                          aiv4w Medium   Spent 0 ms to bind 13297 byte file stream 9e13a59c-dffb-b08d-acd9-c283e837f4a5
    07/16/2014 17:32:08.52  mssearch.exe (0x1B6C)                    0x3F24 SharePoint Server Search       Crawler:Content
    Plugin         ajjig Medium   CSSFeeder::ReportPingSession: the session 86ba63af-ce5a-4c7c-a836-c70ee9961b91 has been pinged by PollCallbacks 
    07/16/2014 17:32:08.52  w3wp.exe (0x5234)                        0x1E7C SharePoint Foundation        
     Information Rights Management  ai4ko Medium   Information Rights Management (IRM): The IRM status of the document [] is: untried (-1), the return values is: 0x0. 9e13a59c-dffb-b08d-acd9-c283e837f4a5
    07/16/2014 17:32:08.52  w3wp.exe (0x5234)                        0x1E7C SharePoint Foundation        
     Files                          ahjkm Medium   Spent 0 ms to send 13297 byte file stream 9e13a59c-dffb-b08d-acd9-c283e837f4a5
    07/16/2014 17:32:08.52  w3wp.exe (0x5234)                        0x1E7C SharePoint Foundation        
     Logging Correlation Data       xmnv Medium   Site=/ 9e13a59c-dffb-b08d-acd9-c283e837f4a5
    07/16/2014 17:32:08.52  w3wp.exe (0x5234)                        0x1E7C SharePoint Foundation        
     Monitoring                     b4ly High     Leaving Monitored Scope (PostResolveRequestCacheHandler). Execution Time=66.9455 9e13a59c-dffb-b08d-acd9-c283e837f4a5
    07/16/2014 17:32:08.57  w3wp.exe (0x2CE0)                        0x45CC SharePoint Server            
     Logging Correlation Data       xmnv Medium   Name=Task: SessionManager.PerformOngoingRequestDepartures 6b6b4445-2b72-0002-9138-988147c881a0
    07/16/2014 17:32:08.58  w3wp.exe (0x5234)                        0x1E7C SharePoint Foundation        
     General                        g3ql High     [Forced due to logging gap, cached @ 07/16/2014 17:32:08.55, Original
    Level: Verbose] GetUriScheme(/QAPortal/PackingMaterial/frmFile4) 9e13a59c-dffb-b08d-acd9-c283e837f4a5
    07/16/2014 17:32:08.58  w3wp.exe (0x5234)                        0x1E7C SharePoint Foundation        
     Database                       8acb High     [Forced due to logging gap, Original Level: VerboseEx] Reverting to process
    identity 9e13a59c-dffb-b08d-acd9-c283e837f4a5
    07/16/2014 17:32:08.64  OWSTIMER.EXE (0x1ED4)                    0x5B18 SharePoint Foundation          Monitoring                   
     nasq Medium   Entering monitored scope

  • Client Export and Import (Speacially Import Procedures)

    Dear All,
    I have requirement to copy my production client's all data to Quality System's client.
    What procedure should I follow?
    If I am going to export and Import. I am not getting followings's Steps 2.3 to 2.6.
    1. Client Export:
         1.1 Run SCC8
         1.2. Select Profile for desired copy type (Usually All SAP_ALL or user master only SAP_USER. You will need direction from  
                 the requester as to the correct selection here. Use Profile -> Display Profile to display profile details.)
         1.3. Select target System (or group)
         1.4. De- Select u201CTest Runu201D (If selected)
         1.5. Run Export
                - Up to 3 requests are created, depending on the data selected and available:
                I. u201CSIDKO00353u2033 for transporting client-independent data, if you have selected this
                II. u201CSIDKT00353u2033 for transporting client-specific data
                III. u201CSIDKX00353u2033 for transporting client-specific texts, provided texts are available in this client
         1.6.Monitor TP logs for errors and export files for growth
    2. Client Import:
        2.1. Create client (scc4)
        2.2. Login to client (sap* u2013 pass)
        2.3. Manually add u201COu201D transport then u201CXu201D then u201CTu201D to TMS buffer
        2.4. Highlight #1 and use u201CRequest -> Importu201D to launch import tool
        2.5. Monitor u201CIu201D file in OS u201C/usr/sap/trans/tmpu201D dir for progress info
        2.6. After Import is complete perform u201Cpost processing stepsu201D from client tool (SCC7)           So if you have 3 transport requests and the data has been exported successfully then go for an import in quality system
    Please let me know how will I  Manually add u201COu201D transport then u201CXu201D then u201CTu201D to TMS buffer, Highlight #1 and use u201CRequest -> Importu201D to launch import tool, Monitor u201CIu201D file in OS u201C/usr/sap/trans/tmpu201D dir for progress info and After Import is complete perform u201Cpost processing stepsu201D from client tool (SCC7) .
    Thanks for sharing knowledge.
    With Warm Regards
    Dharmendra

    Once u login to new client,
    to Manually add u201COu201D transport then u201CXu201D then u201CTu201D to TMS buffer
    go to STMS----> select the system
    At top menu select
    Extras --> Other Requests --> Add(here give the above created transport requests, 1 @ each time)
    once u add those 3 trasnport requests u need to import them.
    Highlight #1 and use u201CRequest -> Importu201D
    for that from top menu select  Request -> Import(Ctrl + F11)
    coming to SCC7. its a tcode. execute the tcode and see.
    Regards,
    Ravi

  • Best way to export and import data from an iPhone app?

    How do people here prefer to export and import data from an iPhone app?
    For example, suppose your app creates or modifies a plist. It might be nice to provide that plist to the user for separate backup and later allow them to re-import it.
    How do people do that? Email the plist to an address? If so, how would one later get it back in?
    Is there a common way people do this kind of thing?
    Thanks,
    doug

    Or maybe the best approach for this is some sort of file synchronization feature? Is there a way of having files from the app's filesystem automatically get stored on the computer's filesystem when synchronizing and vice-versa?
    doug

  • Use of export and import in oo abap

    Hello experts,
    We are new to oo abap and using process controlled workflow for BRF.
    There are 3 methods which we are using. /SAPSRM/IF_EX_WF_RESP_RESOLVERGET_AREA_TO_ITEM_MAP, /SAPSRM/IF_WF_AREAGET_RESPONSIBLE_APPROVERS and /SAPSRM/IF_EX_WF_RESP_RESOLVER~GET_APPROVERS_BY_AREA_GUID.
    In a situation we want to use document_id which is created in item_map into get_responsible_approvers method.
    Therefore, we used export and import in these two methods like the following.
    zgc_mock_pdo_guid =  is_document-document_guid. "uncomment later
        export zgc_mock_pdo_guid from zgc_mock_pdo_guid to memory id 'Z_MOCK_PDO_GUID' . "uncomment later
    and
    import zgc_mock_pdo_guid  = zgc_mock_pdo_guid  from  memory id 'Z_MOCK_PDO_GUID' . "uncomment this later
                   CALL METHOD /SAPSRM/CL_WF_APV_FACADE=>RETRIEVE_PROCESS_HISTORY
                     EXPORTING
                       IV_DOCUMENT_GUID = zgc_mock_pdo_guid "ins_guid
                       IV_AGENT_ID      = lv_agent
                       IV_LANGUAGE      = sy-langu
                     IMPORTING
                       ES_PROCESS       = ls_process
    Now we are getting the results as per our requirements. But I want to know whether or not it is supposed to be used in oo abap context or not otherwise I will find another method to do so. Please advise/suggest about the same.
    Thank you.

    Hello Keshav, Suhas.
    Thank you vary much for your reply. I was definitely a great help to understand the concept.
    This ZGC_MOCK_PDO_GUID attribute was already made private. Instead of defining under public section I defined it under attributes tab.
    Thank you for your help though.
    Right now I am trying to explore another way to do so.
    I am trying to get factory instance for tack container using /SAPSRM/IF_CLL_TASKCON_FACTORY interface with method GET_INSTANCE from class /SAPSRM/CL_CH_WD_TASKCONT_FACT.
    Later I am trying to get task container from this interface. Then after I am interested to get SC GUID using GET_BO_GUID method.
    I have been trying to achieve this in following way. But somehow i am getting this GUID empty.
    data :
    temp_task_container_factory type REF TO /SAPSRM/IF_CLL_TASKCON_FACTORY,
    temp_instance type REF TO /SAPSRM/IF_PDO_BO_SC_ADV,
    ins_guid type BBP_GUID, "/SAPSRM/WF_DOCUMENT_GUID,
    ls_process_info TYPE /SAPSRM/S_PDO_WF_PROCESS_INFO,
    temp_handler TYPE REF TO /SAPSRM/IF_PDO_STATIC_META,
    temp_task_container type REF TO /SAPSRM/IF_CLL_TASK_CONTAINER,
    lo_task TYPE REF TO /SAPSRM/IF_CLL_TASKCON_FACTORY.
    CALL METHOD /SAPSRM/CL_CH_WD_TASKCONT_FACT=>GET_INSTANCE
    RECEIVING
    RO_TASK_CONTAINER_FACTORY = temp_task_container_factory "
    CALL METHOD TEMP_TASK_CONTAINER_FACTORY->GET_TASK_CONTAINER
    * EXPORTING
    * IV_TRANS_MODE =
    * IO_MESSAGE_HANDLER =
    * IV_BO_TYPE =
    RECEIVING
    RO_TASK_CONTAINER = temp_task_container
    CALL METHOD TEMP_TASK_CONTAINER->GET_BO_GUID
    RECEIVING
    RV_BO_GUID = ins_guid .
    TRY.
    CALL METHOD /SAPSRM/CL_PDO_FACTORY_SC_ADV=>GET_BUFFERED_INSTANCE
    EXPORTING
    IV_HEADER_GUID = ins_guid
    RECEIVING
    RO_INSTANCE = temp_instance
    ENDTRY.
    CALL METHOD ZCL_WF_APV_FACADE=>RETRIEVE_PROCESS_HISTORY
    EXPORTING
    IV_DOCUMENT_GUID = ins_guid " we are passing ins_guid instead of zGC_MOCK_PDO_GUID this should have area_guid now.
    IV_AGENT_ID = lv_agent
    IV_LANGUAGE = sy-langu
    IMPORTING
    ES_PROCESS = ls_process.
    But the ins_guid ( returned by RV_BO_GUID ) is empty ( The Bold fonted line of code)
    I want to know whether I am doing this instantiation correctly or not or do I have to create class and object here only ?
    Right now I am calling the class, getting get_instance and using its instance temp_task_container_factory i am calling interface /SAPSRM/IF_CLL_TASKCON_FACTORY. Is it correct way? PLease advise. Thank you once again.
    Edited by: abhijitkamatkar on Feb 7, 2012 1:38 PM

  • Client Export and Import

    Hi,
    I am having one doubt regarding Client export and import
    In my organization we are having three system landscape, but the Quality and Production server(In Process)
    Development box is ready to use, and we are having another sand server in different location for our consultant practice
    that system is not in our landscape and that is different location,i want to import that client in to my development server hear
    It is possible to export that data from that Client(scc8) copy that in my development server and Import(scc7) is possible..?
    if possible than what are the pre-requisites to do That Export and Import of client between two different systems,
    what is best procedure to do this Task.......!
    Regards'
    Mohammed.Khan

    >>once export is done successfully than can i copy those exported file in to my file server and then copy to my development >>system trans directory (cofiile,datafile) than can i import those files in my development server with *stms_import* command
    Yes, you have to
    >>than can i go for client import(scc7)
    Yes.
    >>***Configuring the TMS between that sand box and my development server***
    Not required but yes if the sandbox server is not in the landscape you have to create a Virtual System in sandbox and you have to configure the Transport, then only you would be able to create the export file
    Regards
    Subhash

  • Export and Import of APPS and Applsys Schemas in R12

    Hi ,
    Can you please let me know Export and Import of APPS and Applsys Schemas in R12 will cause any issue ?
    Thanks and Regards,
    Jagadeesha.

    Can you please let me know Export and Import of APPS and Applsys Schemas in R12 will cause any issue ?If you mean exporting/importing only those two schema between different instances then this is not supported (due to other schema dependencies) and the only supported way to export those two schema is by exporting/importing the complete database.
    Export/Import Process for Oracle E-Business Suite Release 12 using 10gR2 [ID 454616.1]
    Export/import process for R12 using 11gR1 or 11gR2 [ID 741818.1]
    Thanks,
    Hussein

  • Export and import of 3 Gb table

    Dear ,
    I have table with more than 3 million records, i need to export this table and import into a different database . can you please help me with the export and import options options so that i can speed up the process...
    for you information
    this table hase 3 Fk, 2 Indexs
    i would appreciate your help in this regard
    thanks

    One way to speed up the exp/imp process is to use DIRECT=Y option. Also increase the size of BUFFER parameter.
    While importing large amount of data it is better to drop relational constraints and indexes and recreate them after import.

  • Export and import of Apps EUL

    I have a Apps EUL and use an Apps user id to work in Discoverer Administrator. This is what the Oracle documentation says and it has been working fine.
    Now I want to export the EUL but when I start the process I get a message that the user does not have access to all the objects and that only the accessible objects will be exported. Shouldn't the Discoverer Manager/Administrator be able to do a full export?
    To get around this problem, I have now been advised to use a database user (the EUL owner) to do the export and import with. Is this the correct way? The Oracle documentation suggest that a database user should never administrate the Apps EUL. Are exporting and importing somehow exluded form this rule?
    Thanks!

    Hi Aparna!
    The Apps EUL was created using a database user. Since then, the EUL has been administered by a Apps user that is dedicated to EUL administration.
    The documentation actually recommend that you create the Apps EUL with a database user and from there on administer the Apps EUL with the Apps user SYSADMIN. My company policy doesn't allow me to use SYSADMIN so I have a "custom" Apps user that I use to do all EUL administration. If at all possible, you should try to use SYSADMIN.
    The guides and website don't really have a step by step guidance as far as I can remember, more explanatory. I would suggest an email to Michael Armstrong-Smith of the learndiscoverer website. He has helped me alot with this particular subject!

  • Export and Import of Application problem

    Hi,
    I had my application developed in Windows environment. First time i had full application export and import on Solaris box. The application was successfully installed on Solaris box and i could login into application. The login process was working but all of my queries/reports were not displaying any values. All i can see is number of rows retrieved for example 1-20 etc. I repeated the export/import 3-4 times but results were same.
    On Solaris box i opened one of the reports and started playing with it. Luckily on "Reports Attribute" tab i unchecked/checked the show column checkbox. The report started working. Likewise i did for other reports. Just to verify this i repeated the Export/import of application and unchecked/checked the show column and reports started working. I repeated it at least 3 times.
    Our application is going to expand everyday and on every import we cannot repeat this step for every report.
    Please let me know what steps are missing in Import or are they any manual Post-Import steps ?
    Regards
    Hamayun

    Hi Scott,
    Today i applied the patch and now its 1.6.1.02. After applying the patch i imported application once again.
    I was able to login into application. When i executed a report the system navigated to required tab but did not show any data. Then i performed following steps:
    1.Selected Edit page(xx).
    2.Selected region in the selected page.
    3.Select Report Attributes tab from region.
    4.In Report Column Attributes section the "Show" option was Checked for all the columns which i want to display.
    5. i unchecked only ONE COLUMN and CHECKED again the same column. This was done just to apply changes to report.
    6. Clicked on Apply Changes to save the changes.
    7. Executed the application and the report started working.
    8. Likewise i repeated step 5 for all reports in the application.
    I also tried another option.
    -navigated to Reports Attribute tab and made a change just to save the changes on tab. After saving the page the report started working.
    Your help is greatly appreciated.
    Regards,
    Hamayun

  • Export and Import of table

    Dears,
    I need to export two tables from PRD and import to QAS.
    Size of table is 1 GB and 3 GB.
    Please confirm:
    1--Do i need any downtime for export and import of table
    2- How much time will it take in this export process.
    Please suggest.
    Shivam

    I cannot tell you how much time it will take. are you still using Pentium 3 processors? are you on 4 quad-core CPU? are you on IDE disk? SATA disks? on a fast and big powerful SAN?
    This being said, I would say roughly 10 minutes. but as you understand, this is just a wild guess.
    for downtime, you did not tell us the table names. This being said, try to export on a low usage period.

Maybe you are looking for

  • How to retrieve data from a jsp page

    I have created a page with some text boxes, file, submit button. In my Ist jsp, i am dynamically add Text boxes and File (for Uploading). In the 2nd jsp, i am used Jakarata FileUpload API. I am able to retrieve all data and files except that value of

  • MIRO Reference PO with many goods receipt

    Dear guru , I enter an  incoming invoice for a purchase order. I have many goods receipt for this po , the system show all the goods receipt with their amount and quantity. If I must do a change to the value is hard to distribute the new value  for a

  • How do I Convert PDF file in browser to something else?

    Hi All   How can I convert a PDF file coming up in browser to something else so I can print it on my epson printer. I looked in other forums and found something I tried, where you downloaded a converter, and I converted in to Jpeg among some other op

  • How do I get a security tab in the firefox properties window?

    When I right click on the shortcut to firefox and scroll down to properties, I do not have a security tab.

  • I want Macbook on when I close display.

    I used to be able to have a choice of settings when I had my Sony Vaio. You had the option to select these actions when you closed the display, 1)Shut Down,,2)Sleep,,,,3)Stay On. This was cool , because I could have a program running and processing s