Documenting GTS Configuration

GTS Experts,
What is the best practice for documenting the configuration settings in GTS?  Are there system reports available to control and report  this, or is it expected that this information is kept manually in spreadsheets?
Also, what is best practice for system instance cutover, to ensure anyting not on a transport is put in the new system the same as the previous systm.  Is there a compare functionality to identify deltas between the instances that need to be addressed?
Thank you!

Hi,
as far as i know there is not such report which would download all customizing settings/views into the excel file. Actually, that would be a quite useful mass function.
For your second question, check transactions SCU0 and SCMP. Here you can compare settings between systems connected via RFC.
http://www.sap-img.com/bc005.htm
@Your RFC user would need S_TABU_RFC autorization.
BR,
Gabriel.

Similar Messages

  • GTS documentation and configuration

    Hi Experts
    I desperately need documents on GTS configuration and scenarios . If any one can help, it would be great.

    Hi
    SAP Global Trade Services (SAP GTS) automates global trade processes and enables you to manage large numbers of business partners, and high volumes of documents while also helping you to comply with changing legal regulations. It facilitates gloabl trade by providing you with the tools you require to respond to governments modernizing their systems and to customs authorities communicating electronically with businesses.
    SAP GTS also helps you to avoid costly delays in your import and export processes and allows you to respond quickly to global business opportunities while mitigating financial risks.
    http://help.sap.com/saphelp_gts30/helpdata/en/1d/8082ab7248f74ca09861d9713b9a52/content.htm
    http://www50.sap.com/useducation/download/GTS70SC.pdf
    Message was edited by:
            SHESAGIRI.G

  • A self documenting DSC Configuration wich contains all Resources

    One funny thing with PowerShell is allways: It can document himself.
    Inspired by Steven Murawskis video on Desired State Configuration (DSC) I have done a full Blowen full self documenting DSC Configuration:
    Not perfect but it works for the first shot...
    This code:
    $ConfigOut = @"
    Configuration Name {
    param(
    [String]`$Parameter1
    # One can evaluate expression
    # E.g.: `$AllNodes.Where("Role -eq Web").NodeName
    Node ('Node1','Node2','Node3') {
    $(
    Get-DscResource | ForEach {
    "`n`t`t# Call the '$($_.Name)' Resource the Provider`n"
    "`t`t$($_.Name) FriendlyName {`n`n"
    "`t`t`t# Possible Resource Options`n"
    $Ofs = "','"
    $_.Properties | ForEach {
    "`t`t`t$($_.Name) = '$($_.Values)' # Type:$($_.PropertyType) $(If($_.IsMandatory) {'is Mandatory!'})`n"
    $Ofs = ' '
    "`t`t}`n"
    } # end Node
    } # end Configuration
    $ConfigOut
    Produces this output on my Windows 8.1:
    Configuration Name {
    param(
    [String]$Parameter1
    # One can evaluate expression
    # E.g.: $AllNodes.Where("Role -eq Web").NodeName
    Node ('Node1','Node2','Node3') {
    # Call the 'File' Resource the Provider
    File FriendlyName {
    # Possible Resource Options
    DestinationPath = '' # Type:[string] is Mandatory!
    Attributes = 'Archive','Hidden','ReadOnly','System' # Type:[string[]]
    Checksum = 'CreatedDate','ModifiedDate','SHA-1','SHA-256','SHA-512' # Type:[string]
    Contents = '' # Type:[string]
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    Force = '' # Type:[bool]
    MatchSource = '' # Type:[bool]
    Recurse = '' # Type:[bool]
    SourcePath = '' # Type:[string]
    Type = 'Directory','File' # Type:[string]
    # Call the 'Archive' Resource the Provider
    Archive FriendlyName {
    # Possible Resource Options
    Destination = '' # Type:[string] is Mandatory!
    Path = '' # Type:[string] is Mandatory!
    Checksum = 'CreatedDate','ModifiedDate','SHA-1','SHA-256','SHA-512' # Type:[string]
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    Force = '' # Type:[bool]
    Validate = '' # Type:[bool]
    # Call the 'Environment' Resource the Provider
    Environment FriendlyName {
    # Possible Resource Options
    Name = '' # Type:[string] is Mandatory!
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    Path = '' # Type:[bool]
    Value = '' # Type:[string]
    # Call the 'Group' Resource the Provider
    Group FriendlyName {
    # Possible Resource Options
    GroupName = '' # Type:[string] is Mandatory!
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    Description = '' # Type:[string]
    Ensure = 'Absent','Present' # Type:[string]
    Members = '' # Type:[string[]]
    MembersToExclude = '' # Type:[string[]]
    MembersToInclude = '' # Type:[string[]]
    # Call the 'Log' Resource the Provider
    Log FriendlyName {
    # Possible Resource Options
    Message = '' # Type:[string] is Mandatory!
    DependsOn = '' # Type:[string[]]
    # Call the 'Package' Resource the Provider
    Package FriendlyName {
    # Possible Resource Options
    Name = '' # Type:[string] is Mandatory!
    Path = '' # Type:[string] is Mandatory!
    ProductId = '' # Type:[string] is Mandatory!
    Arguments = '' # Type:[string]
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    LogPath = '' # Type:[string]
    ReturnCode = '' # Type:[UInt32[]]
    # Call the 'Registry' Resource the Provider
    Registry FriendlyName {
    # Possible Resource Options
    Key = '' # Type:[string] is Mandatory!
    ValueName = '' # Type:[string] is Mandatory!
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    Force = '' # Type:[bool]
    Hex = '' # Type:[bool]
    ValueData = '' # Type:[string[]]
    ValueType = 'Binary','Dword','ExpandString','MultiString','Qword','String' # Type:[string]
    # Call the 'Script' Resource the Provider
    Script FriendlyName {
    # Possible Resource Options
    GetScript = '' # Type:[string] is Mandatory!
    SetScript = '' # Type:[string] is Mandatory!
    TestScript = '' # Type:[string] is Mandatory!
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    # Call the 'Service' Resource the Provider
    Service FriendlyName {
    # Possible Resource Options
    Name = '' # Type:[string] is Mandatory!
    BuiltInAccount = 'LocalService','LocalSystem','NetworkService' # Type:[string]
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    StartupType = 'Automatic','Disabled','Manual' # Type:[string]
    State = 'Running','Stopped' # Type:[string]
    # Call the 'User' Resource the Provider
    User FriendlyName {
    # Possible Resource Options
    UserName = '' # Type:[string] is Mandatory!
    DependsOn = '' # Type:[string[]]
    Description = '' # Type:[string]
    Disabled = '' # Type:[bool]
    Ensure = 'Absent','Present' # Type:[string]
    FullName = '' # Type:[string]
    Password = '' # Type:[PSCredential]
    PasswordChangeNotAllowed = '' # Type:[bool]
    PasswordChangeRequired = '' # Type:[bool]
    PasswordNeverExpires = '' # Type:[bool]
    # Call the 'WindowsFeature' Resource the Provider
    WindowsFeature FriendlyName {
    # Possible Resource Options
    Name = '' # Type:[string] is Mandatory!
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    IncludeAllSubFeature = '' # Type:[bool]
    LogPath = '' # Type:[string]
    Source = '' # Type:[string]
    # Call the 'WindowsProcess' Resource the Provider
    WindowsProcess FriendlyName {
    # Possible Resource Options
    Arguments = '' # Type:[string] is Mandatory!
    Path = '' # Type:[string] is Mandatory!
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    StandardErrorPath = '' # Type:[string]
    StandardInputPath = '' # Type:[string]
    StandardOutputPath = '' # Type:[string]
    WorkingDirectory = '' # Type:[string]
    } # end Node
    } # end Configuration
    Watch:
    Steven Murawskis and Joel Bennett: Video on Desired State Configuration (DSC)
    http://www.youtube.com/watch?v=EN8eJA9rpXw
    hope this helps....
    PowerShell Artikel, Buchtipps und kostenlose PowerShell Tutorials + E-Books
    auf der deutschsprachigen PowerShell Community
    Mein 21 Teiliger PowerShell Video Grundlehrgang
    Deutsche PowerShell Videos auf Youtube
    Folge mir auf:
    Twitter |
    Facebook |
    Google+

    One funny thing with PowerShell is allways: It can document himself.
    Inspired by Steven Murawskis video on Desired State Configuration (DSC) I have done a full Blowen full self documenting DSC Configuration:
    Not perfect but it works for the first shot...
    This code:
    $ConfigOut = @"
    Configuration Name {
    param(
    [String]`$Parameter1
    # One can evaluate expression
    # E.g.: `$AllNodes.Where("Role -eq Web").NodeName
    Node ('Node1','Node2','Node3') {
    $(
    Get-DscResource | ForEach {
    "`n`t`t# Call the '$($_.Name)' Resource the Provider`n"
    "`t`t$($_.Name) FriendlyName {`n`n"
    "`t`t`t# Possible Resource Options`n"
    $Ofs = "','"
    $_.Properties | ForEach {
    "`t`t`t$($_.Name) = '$($_.Values)' # Type:$($_.PropertyType) $(If($_.IsMandatory) {'is Mandatory!'})`n"
    $Ofs = ' '
    "`t`t}`n"
    } # end Node
    } # end Configuration
    $ConfigOut
    Produces this output on my Windows 8.1:
    Configuration Name {
    param(
    [String]$Parameter1
    # One can evaluate expression
    # E.g.: $AllNodes.Where("Role -eq Web").NodeName
    Node ('Node1','Node2','Node3') {
    # Call the 'File' Resource the Provider
    File FriendlyName {
    # Possible Resource Options
    DestinationPath = '' # Type:[string] is Mandatory!
    Attributes = 'Archive','Hidden','ReadOnly','System' # Type:[string[]]
    Checksum = 'CreatedDate','ModifiedDate','SHA-1','SHA-256','SHA-512' # Type:[string]
    Contents = '' # Type:[string]
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    Force = '' # Type:[bool]
    MatchSource = '' # Type:[bool]
    Recurse = '' # Type:[bool]
    SourcePath = '' # Type:[string]
    Type = 'Directory','File' # Type:[string]
    # Call the 'Archive' Resource the Provider
    Archive FriendlyName {
    # Possible Resource Options
    Destination = '' # Type:[string] is Mandatory!
    Path = '' # Type:[string] is Mandatory!
    Checksum = 'CreatedDate','ModifiedDate','SHA-1','SHA-256','SHA-512' # Type:[string]
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    Force = '' # Type:[bool]
    Validate = '' # Type:[bool]
    # Call the 'Environment' Resource the Provider
    Environment FriendlyName {
    # Possible Resource Options
    Name = '' # Type:[string] is Mandatory!
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    Path = '' # Type:[bool]
    Value = '' # Type:[string]
    # Call the 'Group' Resource the Provider
    Group FriendlyName {
    # Possible Resource Options
    GroupName = '' # Type:[string] is Mandatory!
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    Description = '' # Type:[string]
    Ensure = 'Absent','Present' # Type:[string]
    Members = '' # Type:[string[]]
    MembersToExclude = '' # Type:[string[]]
    MembersToInclude = '' # Type:[string[]]
    # Call the 'Log' Resource the Provider
    Log FriendlyName {
    # Possible Resource Options
    Message = '' # Type:[string] is Mandatory!
    DependsOn = '' # Type:[string[]]
    # Call the 'Package' Resource the Provider
    Package FriendlyName {
    # Possible Resource Options
    Name = '' # Type:[string] is Mandatory!
    Path = '' # Type:[string] is Mandatory!
    ProductId = '' # Type:[string] is Mandatory!
    Arguments = '' # Type:[string]
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    LogPath = '' # Type:[string]
    ReturnCode = '' # Type:[UInt32[]]
    # Call the 'Registry' Resource the Provider
    Registry FriendlyName {
    # Possible Resource Options
    Key = '' # Type:[string] is Mandatory!
    ValueName = '' # Type:[string] is Mandatory!
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    Force = '' # Type:[bool]
    Hex = '' # Type:[bool]
    ValueData = '' # Type:[string[]]
    ValueType = 'Binary','Dword','ExpandString','MultiString','Qword','String' # Type:[string]
    # Call the 'Script' Resource the Provider
    Script FriendlyName {
    # Possible Resource Options
    GetScript = '' # Type:[string] is Mandatory!
    SetScript = '' # Type:[string] is Mandatory!
    TestScript = '' # Type:[string] is Mandatory!
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    # Call the 'Service' Resource the Provider
    Service FriendlyName {
    # Possible Resource Options
    Name = '' # Type:[string] is Mandatory!
    BuiltInAccount = 'LocalService','LocalSystem','NetworkService' # Type:[string]
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    StartupType = 'Automatic','Disabled','Manual' # Type:[string]
    State = 'Running','Stopped' # Type:[string]
    # Call the 'User' Resource the Provider
    User FriendlyName {
    # Possible Resource Options
    UserName = '' # Type:[string] is Mandatory!
    DependsOn = '' # Type:[string[]]
    Description = '' # Type:[string]
    Disabled = '' # Type:[bool]
    Ensure = 'Absent','Present' # Type:[string]
    FullName = '' # Type:[string]
    Password = '' # Type:[PSCredential]
    PasswordChangeNotAllowed = '' # Type:[bool]
    PasswordChangeRequired = '' # Type:[bool]
    PasswordNeverExpires = '' # Type:[bool]
    # Call the 'WindowsFeature' Resource the Provider
    WindowsFeature FriendlyName {
    # Possible Resource Options
    Name = '' # Type:[string] is Mandatory!
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    IncludeAllSubFeature = '' # Type:[bool]
    LogPath = '' # Type:[string]
    Source = '' # Type:[string]
    # Call the 'WindowsProcess' Resource the Provider
    WindowsProcess FriendlyName {
    # Possible Resource Options
    Arguments = '' # Type:[string] is Mandatory!
    Path = '' # Type:[string] is Mandatory!
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    StandardErrorPath = '' # Type:[string]
    StandardInputPath = '' # Type:[string]
    StandardOutputPath = '' # Type:[string]
    WorkingDirectory = '' # Type:[string]
    } # end Node
    } # end Configuration
    Watch:
    Steven Murawskis and Joel Bennett: Video on Desired State Configuration (DSC)
    http://www.youtube.com/watch?v=EN8eJA9rpXw
    hope this helps....
    PowerShell Artikel, Buchtipps und kostenlose PowerShell Tutorials + E-Books
    auf der deutschsprachigen PowerShell Community
    Mein 21 Teiliger PowerShell Video Grundlehrgang
    Deutsche PowerShell Videos auf Youtube
    Folge mir auf:
    Twitter |
    Facebook |
    Google+

  • Documentation and configuration settings

    Hi Experts,
    Can any one provide documentation and configuration settings  for the following areas.
    Planning and budget,
    PC Industrial,
    Standard Cost Calculation,
    Production Variance Analysis
    Regards
    Balu

    HI Madhu
    I have sent you the Io & Pctr documents to ur mail id. Plz assign points if its helpful.
    Regards
    Rajaram

  • New documentation SRM configuration

    Hi,
    I have found a PDF called SRM40_CG_SSP.pdf but this is an old document, we are on ITS 7.00. Is there new documentation about the configuration of SRM?
    We need to upload attachments from SRM portal and we want to view/edit them in ECC but we cannot transfer them at all, we see the order but are not able to see the attachments. We've set all the settings found on SDN:
    SRM Side:
    Created implementation ZECA_DMS_CLASSIC for BADI BBP_CREATE_BE_RQ_NEW and implementation ZECA_DMS_EXT_CLASSIC for BADI BBP_CREATE_BE_PO_NEW with following code for method FILL_RQ_INTERFACE and method FILL_RQ_INTERFACE and method FILL_RQ_INTERFACE1:
    cs_ctrl_att-BE_DOC_TYPE = 'SRM'.
    cs_ctrl_att-BE_storage_cat = 'DMS_C1_ST'.
    cs_ctrl_att-TRANSFER_ACTIVE = 'X'.
    ECC Side:
    - Create new document type for SRM with T.code DC10. Following parameters need to be set for that
    a. Check Use KPro
    b. Enter 1 in the number assignment field
    c. Assign Internal number range as u201C02u201D
    d. Select Number Exit u201CMCDOKZNRu201D
    e. Version number increment u201C1u201D
    - Assign following Object links to the new created document type u201CSRMu201D.
    a. Type as u201CSRMu201D
    b. Object as u201CEBANu201D and u201CEKPOu201D respectively
    c. Object description as u201CPurchase req. itemu201D and u201CPurchase order itemu201D respectively
    d. Screen number u201C247u201D for EBAN and u201C248u201D for EKPO.
    And I've defined the workstation applications in transaction DC30:
    ACD     Autocad                       A2     X                             
    BVO     Objektpflege                  *     X     X
    BVV     Vertragspflege                  *     X     X
    GIF     GIF Anzeige                  A2     X
    LIM     Großbild                            X          *.jpg, *.gif
    MPP     MS Project          mpp          X          .mpp,.
    OHD     Dokument der Arbeitsmed.                  X     X
    PDF     Acrobat Reader          pdf          X          *.pdf
    PLT     HPGL Anzeige                       X
    SIM     Kleinbild                            X          *.jpg, *.gif
    SND     Ton                            X          *.wav
    TIF     TIFF Anzeige                       X     
    TXT     Textdateien          txt     *     X          *.txt
    WRD     Word                       A2     X     
    WWI     Winword 6.0s          doc     *     X          *.doc
    XLS     Microsoft EXCEL          xls     *     X          *.xls, .
    XML     XML               xml          X          *.xml
    I've not set any other customizing.
    What can I check or do next?
    regards,
    Wim

    Please learn from SAP Library (Link attached below)
    http://help.sap.com/erp2005_ehp_01/helpdata/en/2d/830e405c538f5ce10000000a155106/frameset.htm
    Regards,
    Rajesh Banka

  • Documentation for configuration wizard?

    Hi,
         Recently i installed NWDI stack 14 on a linux/oracle server. I have tried running the config wizard at least 3 times and have run into all kinds of problems. I could provide more specific information but i thought i would start out by asking if there is recommended documentation for the configuration wizard available and whether or not i need a patch for it. One of the OSS notes i came across made mention of such a patch.
         Otherwise, i think i am going to be hounding the Sap Marketplace Support folks ....
    Sincerely,
    Steven McElwee, Duke University
    PS- One problem i have identified is that the NWDI_CMSADM account needs to be created in the  external SLD server system with an uninitialized password and the appropriate role that allows writing to the SLD directory. Similarly, i have found that the 3 accounts created in the NWDI system (NWDI_ADM, NWDI_CMSADM and NWDI_DEV) are created with initial passwords which need to be changed before the configuration steps can work. This makes me think that the configuration wizard  might need to be patched.

    Okay, after deleting the entries created in the SLD server (CMSNDI server, NDI domain, example.org software product and component), i restored the NWDI system just prior to running the onfiguration wizard. It ran through all 95 of the 96 steps. In the 96th step (Import Software Component Archives), it ran for a hour or so and then gave a popup with the error: queue item is null. The Exception Class is com.sap.ctc.util.infra.ConfigLibException and the stack trace is:
    at com.sap.ctc.util.infra.BaseConfig.dispatchException(BaseConfig.java:223)
    at com.sap.ctc.util.di.services.CMSServices.importQueue(CMSServices.java:1333)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
    at java.lang.reflect.Method.invoke(Method.java:391)
    at com.sap.tc.lm.ctc.provider.javaServiceProvider.JavaMethodExecuter.invoke(JavaMethodExecuter.java:227)
    at com.sap.tc.lm.ctc.provider.javaServiceProvider.JavaServiceExecuter.executeService(JavaServiceExecuter.java:94)
    at com.sap.tc.lm.ctc.cul.broker.BrokerServiceExecuter.executeService(BrokerServiceExecuter.java:55)
    at com.sap.tc.lm.ctc.cul.serviceimpl.executor.CULServiceExecutor.executeService(CULServiceExecutor.java:52)
    at com.sap.tc.lm.ctc.cul.serviceimpl.process.InvokeServiceControllerDefault.execute(InvokeServiceControllerDefault.java:145)
    at com.sap.tc.lm.ctc.metamodel.process.controller.ProcessControllerImpl.execute(ProcessControllerImpl.java:206)
    at com.sap.tc.lm.ctc.metamodel.process.controller.ProcessControllerImpl.execute(ProcessControllerImpl.java:206)
    at com.sap.tc.lm.ctc.metamodel.process.controller.ProcessControllerImpl.execute(ProcessControllerImpl.java:206)
    at com.sap.tc.lm.ctc.metamodel.process.controller.ProcessControllerImpl.execute(ProcessControllerImpl.java:206)
    at com.sap.tc.lm.ctc.metamodel.process.controller.ProcessExecuter.run(ProcessExecuter.java:141)
    at java.lang.Thread.run(Thread.java:838)
    ... caused by java.lang.IllegalArgumentException : queue item is null
    at com.sap.cms.client.transport.TransportAPIWebService_DL2.translateSmallQueueItemExternal2Internal(TransportAPIWebService_DL2.java:1370)
    at com.sap.cms.client.transport.TransportAPIWebService_DL2.translateSmallQueueItemsExternal2Internal(TransportAPIWebService_DL2.java:1408)
    at com.sap.cms.client.transport.TransportAPIWebService_DL2.importQueueItems(TransportAPIWebService_DL2.java:1194)
    at com.sap.ctc.util.di.services.CMSServices.importQueue(CMSServices.java:1289)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
    at java.lang.reflect.Method.invoke(Method.java:391)
    at com.sap.tc.lm.ctc.provider.javaServiceProvider.JavaMethodExecuter.invoke(JavaMethodExecuter.java:227)
    at com.sap.tc.lm.ctc.provider.javaServiceProvider.JavaServiceExecuter.executeService(JavaServiceExecuter.java:94)
    at com.sap.tc.lm.ctc.cul.broker.BrokerServiceExecuter.executeService(BrokerServiceExecuter.java:55)
    at com.sap.tc.lm.ctc.cul.serviceimpl.executor.CULServiceExecutor.executeService(CULServiceExecutor.java:52)
    at com.sap.tc.lm.ctc.cul.serviceimpl.process.InvokeServiceControllerDefault.execute(InvokeServiceControllerDefault.java:145)
    at com.sap.tc.lm.ctc.metamodel.process.controller.ProcessControllerImpl.execute(ProcessControllerImpl.java:206)
    at com.sap.tc.lm.ctc.metamodel.process.controller.ProcessControllerImpl.execute(ProcessControllerImpl.java:206)
    at com.sap.tc.lm.ctc.metamodel.process.controller.ProcessControllerImpl.execute(ProcessControllerImpl.java:206)
    at com.sap.tc.lm.ctc.metamodel.process.controller.ProcessControllerImpl.execute(ProcessControllerImpl.java:206)
    at com.sap.tc.lm.ctc.metamodel.process.controller.ProcessExecuter.run(ProcessExecuter.java:141)
    at java.lang.Thread.run(Thread.java:838)
    Any ideas?
    Sincerely,
    Steven Mcelwee, Duke University

  • Documentation of Configuration Parameters

    Just upgrading to ASE 15.7 from 15.5 and looking at the the configuration parameters.
    Anyone have any good documents for these configuration parameters - the online documentation isn't very good.
    aggresive task stealing - aggressive task stealing sets the SAP ASE scheduler task stealing policy to aggressive.
    auto query tuning - not in the manual
    enable plan sharing - enable plan sharing enables or disables SAP ASE to use shared query plans.
    ( I can guess what it does - any reason not to enable it ?)
    enable plan sharing - enable plan sharing enables or disables SAP ASE to use shared query plans.
    enforce dump configuration - not in the manual
    engine local cache percent - not in the manual
    optimise dump for faster load - not in the manual
    streamlined dynamic SQL - streamlined dynamic SQL enables the statement cache to store dynamic SQL statements
    (I can guess what it does - any reason not to enable it?)

    Dump configuration is described in SAP Note 1588316
    Also have a look at procedure sp_config_dump in Sybooks ASE 16
    Unfortunately not much info what's actually enforced with parameter
    enforce dump configuration

  • SRM workflow documentation on configuration

    Dear SAP gurus,
    Can you please send me a document (config guide) with all the steps on configuring a SRM workflow?
    My email ID is [email protected]
    Full points will be rewarded.
    Thank you in advance.
    Best regards,
    Jean-Pierre

    Hi
    As promised, sent detailed documents on your e-mail id.. )
    Please confirm.. !!
    Regards
    - Atul

  • Where is the documentation on configuring an Infosite after it is created?

    I cannot seem to find anything that helps me configure my infosite once it is created. I want to put an image at the top each page, which I think is possible.  However, we do not seem to have any administrator dialog to configure it.

    Class literals were an addition to 1.1 which made it easier and more efficient to get information about classes.
    There is more information in the innerclasses guide:
    http://java.sun.com/products/jdk/1.1/docs/guide/innerclasses/spec/innerclasses.doc9.html
    This information is also available in the post1.0 tutorial. In summary, it states that class literals can get class information on object references, arrays and primatives. The invokation for object references is as efficient as a field reference and is equivalent to Class.forName. The class literal, however, doesn't raise a checked exception, just a runtime exception.
    There is also a tech tip for them:
    http://developer.java.sun.com/developer/TechTips/1997/tt1118.html#tip3
    HTH.

  • Documentation repository configuration

    Hi Experts,
    I am currently looking for configuring the document repository in SolMan. is there any document or implementation guide available for this?

    Hi
    https://websmp110.sap-ag.de/~sapdownload/011000358700002006042008E/HowTo_Impl_Bus_Proc.pdf
    for manual processes you can directly write the name in Structure tab and save it.
    then you can upload doc in proj doc...
    i hop prb is solved.
    Regards
    Prakhar

  • Need documentation on configuring e-tester 8.3 test manager w/ Access

    where can i find this?

    I too am using Access. I setup a new database file and I have added scripts to the project but any time i try and execute a script I get an "Error Logging into Database. Login Failure: Passwords do not match error."
    I have not set up any password on the access .mdb file and i am logging into the Manager as default/password.
    Any help would be appreciated.

  • Configuration of IM Address Field in Jabber for Windows 10.5

    Hey Guys,
    Quick Overview of my setup:
    Jabber for Windows 10.5
    CUCM 10.5
    IM and Presence 10.5
    Microsoft Active Directory on Windows Server 2012R2
    LDAP Integration via EDI with Directory URI Attribute set to "mail"
    Voice Services Domain is different from the Active Directory Domain
    I'm having problems getting the Jabber for Windows client to display the correct IM Address when looking up a user. The Cisco documentation for configuring this is a little mystifying, but I finally tracked down the the jabber-config.xml line "<UserAccountName>mail</UserAccountName>" under <Directory> but setting this causes some strange behaviour where the IM address becomes [email protected]@voiceservicesdomain.com.
    If you leave the field empty then the client resolves [email protected] Now I have set the Directory URI in CUCM to be the "mail" attribute, and I have synced this with the users but this is ignored by the Jabber Client. The IM and Presence server is set to use Directory URI as well.
    The only way I have managed to get the correct IM Address to display is to set another Active Directory Attribute field to "firstname.lastname", for example you set the "ipPhone" attribute in Active Directory.
    According to the Documentation this should work, but does anyone know why the client insists on using either [email protected] or when set to email it insists on suffixing "@voiceservicesdomain" to the IM Address?
    Interested to see who else is hitting this issue.
    Cheers,
    James

    Hi James,
    we have exact the same problem. Did you find a solution for the problem?
    Regards
    Frank

  • How to configure and use StartTLS on Windows AD server (2008 R2 or 2012) ?

    I would like to use port 389 with secure ldap using StartTLS, i.e ldap over TLS. I could not find documentation to configure and use ldap over tls using port 389 with the implementation of StartTLS command. Though I could find documentation on secure ldap
    on port 636. Please help.

    Hello,
    see about self-signed certificates in
    http://support.microsoft.com/kb/321051/en-us and how to enable them in AD.
    Please see if steps in
    https://kb.meraki.com/knowledge_base/certificate-requirements-for-tls will help you.
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://blogs.msmvps.com/MWeber
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    Twitter:  

  • Upgrade CF9 to CF11 w/IIS can't get to migration/configuration stage

    I finally go approval to do my upgrade not as a stand alone, side-by-side upgrade which was requiring me to do a major hack that wasn't working due to our funky coding and security twists we have implemented in the code.
    Unfortunately, when I do the upgrade/installation it installs, but I can't move on to the migration/configuration stage of the installation.  I can't see anything in the error logs.  Sometimes I'll get the 500.19 error message when I try to connect to the administrator myself, other times nothing.  When I get the HTTP Error 500.19 Internal Server Error it refers to the ApplicationHost.config or web.config file that contains malformed xml element.  When I look at the old web.config file it contains about 9 handlers that are using either jrun_iis6_wildcard.dll or jrun_iis6.dll.  I do have the IIS6 to IIS7 configuration selected in the new installation of CF11, but I can't move forward.  I want to just copy these 2 files from my CF9 installation, but I don't know where to put them.  I've even renamed the web.config file so that IIS would recreate it so it wouldn't be referring to the old CF9 web.config file and getting stuck there, which one error message once referred to these lines in the CF9 web.config file.  I understand that this question blurs the ColdFusion/IIS category boundaries.  I'm not sure where my error is lying, with IIS or CF11.  I want to just enter these handlers manually in IIS 7, but my boss seems to think we need to have wsconfig do that for us in case it is putting code elsewhere and we are missing configuration changes that really puts us in a spiral.  Thoughts/suggestions anyone?  I hope I was clear enough.
    Another thing is that we have our CFIDE folder for CF9 located in a different directory, for security purposes I'm guessing, yet I can't figure out how CF is recognizing that it should go there to run.  In CF Administrator it is referring to a different folder for CFIDE that doesn't exist.  I have only seen one referrence to the correct location, and that was in the registry when I was ensuring CF11 references were deleted. CF9 had it there. I guess I'm wondering if there is a setting somewhere that i need to change so CF11 will look in the correct location and then run and go forward with the migration/configuration part of the instalation.  I can't find it in any of my searches that look for that foldername in the files.
    I have inherited this project and there is very little documented regarding configuration changes that were done.
    Thanks in advance!!
    Jennifer

    OK, my installation is working, although I'm still trying to get the applications to work (permissions issues I think).  Since I kept having migration difficulties we created a CAR first with CF9.  We then ended up just doing a straight upgrade on our development server.  I performed the install with server configuration and selected Configure my webserver for ColdFusion 11, IIS.  When you launch the browser to connect to CF11 administrator if you get the 500 error message it may be because the SSL for the CFIDE>Administrator folder in IIS is selected.  Deselect it and that error messge should go away (if it is that that is).  We kept getting a 404.7 error message of deny file extension.  I was thinking it had to do with my cfm extensions because I was trying to open a cfm, but it wasn't the case.  The error message mentioned isapi.redirect.dlls.  I finally found an error message under my IIS FailedRequestLogs that mentioned something about Request Filtering.  Turns out .dll was not in the allowed list of my virtual Jakarta folder.  Once I added this and restarted IIS I was able to get into my CF Administrator 11 and installed the CAR file.
    Now I keep getting Unauthorized errors and need to figure that out. Permissions are looking like the cause of that.
    Things I learned (you may already know this):
    CF9 can have CFIDE placed wherever, but CF11 needs to keep it where it is installed.
    CF11 doesn't need IIS 6 Metabase Compatability installed, whereas CF9 did (at least ours did)
    We kept getting a duplicat MIME Type error message too for .air.  That was added at the server level and inherited at the website level.  I deleted it at the server level and added it at the website level.
    I hope this helps someone.

  • Configuring the Destination URL for the Adobe Document Services

    hi all,
    I am going through the documentation for "Configuring the Destination URL for the Adobe Document Services " at :
    http://help.sap.com/saphelp_nw2004s/helpdata/en/02/560f41ca73d349e10000000a1550b0/frameset.htm
    I am not able to understand 7th step
    <b>7.      Define the user name and password. To find out how to create the user name and password for the Adobe document services, see Creating a User for Basic Authentication in the document Adobe Document Services – Configuration Guide. You can find this guide in the SAP Service Marketplace under Quick Link /InstguidesNW04.</b>
    In our scenario
    <i>We are running NW04s SP11 on 2 machines
    1) <u>32-bit machine with ADS and credentials properly configured on Web AS for Java installation</u>
    <b>com.adobe  AdobeDocumentServices  null (710.20061024154505.342190)
    com.adobe  AdobeDocumentServicesEjbClientLibrary  null (705.20060407121920.289077)
    sap.com  SAP-JEE  7.00 SP11 (1000.7.00.11.0.20070201154700) 
    sap.com  SAP-JEECOR  7.00 SP11 (1000.7.00.11.0.20070201154700)
    com.adobe  DocumentServicesBinaries2  null (710.20060629085312.115621) 
    com.adobe  DocumentServicesConfiguration  null (710.20061024154505.342190) 
    com.adobe  DocumentServicesDestProtoService  null (710.20060821084105.325745) 
    com.adobe  DocumentServicesLibrary  null (710.20060629090137.115621) 
    com.adobe  DocumentServicesLicenseDatabase  null (705.20051005114147.242570) 
    com.adobe  DocumentServicesLicenseManager  null (710.20060929113452.336248) 
    com.adobe  DocumentServicesLicenseService  null (710.20060929113452.336248) 
    com.adobe  DocumentServicesLicenseSupportService  null (710.20060929113641.336248)
    </b>
    2) <u>64-bit machine with portal installation on Web AS for Java, with ESS and MSS</u>
    <b>sap.com/SAP-JEECOR  7.00 SP11 (1000.7.00.11.0.20070201154700)  20070308153304 
    sap.com/SAP-JEE  7.00 SP11 (1000.7.00.11.0.20070201154700)  20070308153213 
    sap.com  SAP_ESS  600 SP7 (1000.600.0.7.12.20070314050106)
    sap.com  SAP_MSS  600 SP7 (1000.600.0.7.4.20070321052655)
    sap.com  tc/wd/webdynpro  null (7.0009.20060804145649.0000) </b>
    </i>
    Why do we have to create a new user for the server which is consuming the web service? We already have an user "ADSUser" defined for the Web AS server which has ADS services deployed.
    I have opened this thread to solve the previous unanswered question I posted on SDN Empty area in place of Interactive form. .
    One more thing the adobe print forms of ESS [Total Compensation Statement and Salary Statement] are rendering properly, only the ones with Interactive ability or not.
    thanks,
    Sanketh

    Hello Sanketh,
    1. To access the NW04s configuration guide,
        - Go to https://service.sap.com/adobe
        - On the left frame (tree), under Adobe > Media Library > Documentation
        - On the right had pane you will find the link to the NW04s Configuration guide
    2. The link that you have mentioned below details the steps required to be carried out on the client machine that consumes the Adobe Document Services. In our case that is the j2ee engine on which your Web Dynpro application is running. It could be the same physical machine with two different j2ee instances hosting Web Dynpro and ADS or it could be two different physical machine or a single machine having a single instance of j2ee engine hosting both the Web Dynpro and the ADS.
    You do not have to create a separate username and a password on the consuming machine but you need to configure the Web Service client proxy to point to the ADS (maybe hosted on a different machine) with the username and the password created on the ADS server. As you have mentioned, you have already created such an user on the ADS (ADSUser). This user authentication on the client machine (consuming server - Web Dynpro) would be required at the runtime by the j2ee engine to authenticate itself with the ADS.
    Best Regards,
    Krish

Maybe you are looking for

  • Cannot load Runtime engine verion 7.0, only 8.0 and later versions are supported

    Hi, I am new to using third party labview drivers. I have a labview driver for Chroma 63600 loads that I want to use in TestStand 2012. However when I load the vi. I get an error 'cannot load Runtime engine verion 7.0, only 8.0 and later versions are

  • IWeb 08 making all photos dark!!!

    Has anyone else noticed this? I am a professional photographer, and I'm TRYING to make a living from how awesome my images look. Ever since I upgraded to iLife '08 I've had problems with the photos on all the pages looking horrible! When you click on

  • BPM Developers and Process Modelers

    Hi, I am currently looking for Metastorm Developers and Process Modelers. The projects are located in NJ and NY. I am having a hard time finding people with this experience and I am hoping that someone can point me in the right direction. Any guidanc

  • Producer Consumer (Semaphore?)

    I am trying to understand concurrency in Java and have tried to code a producer consumer example: package de.fasel; public class PackagingUnit {      private int numberOfUnits;      private static final int PACKAGE_SIZE = 50;      public PackagingUni

  • Adobe Reader 10 problem with opening pdf files

    Ever since I downloaded and installed Adobe Reader 10, I have been unable to open .pdf files from the Internet.  When I try to download them, I only the get the option of saving the file, not opening it.  Any help would be appreciated.  Thanks!