Presentation server is pointing to test instead of Dev

Hi,
I have dev and test environments. Unfortunately my dev presentation server is pointing to test when i started and stop servers from putty. I did some changes on rpd and restart all servers like weblogic,nodemanages,manages servers .Unfortunately i presentation server is pointing to test environment.How to revert it back to Dev environment. Please share across your inputs .
Regards,
Sree

I found a solution...
In main.cf I've change the line
mailbox_transport =
with
mailbox_transport = dovecot
I also found a second similar line which I removed.

Similar Messages

  • FM for presentation server

    Hi Experts,
    I need a FM which return all the file names in a specified directory of presentation server. I also need FM which will provide F4 help on presentation server to search  directories.
    Regards,
    Jeetu

    Function module name      Function module description
    DOWNLOAD      Store Internal Table with Dialog as File on the Presentation Server
    WS_DOWNLOAD      Save Internal Table as File on the Presentation Server
    UPLOAD      Load Data from the Presentation Server into an Internal Table / Dialog
    WS_UPLOAD      Load File from the Presentation Server into Internal Table
    WS_FILENAME_GET      Call file Selector
    WS_EXECUTE      Execute an External Program on the Presentation Server
    WS_MSG      Issue the Presentation Server style message
    WS_EXCEL      
    WS_QUERY      Execute query function on the Presentation Server
    Reward points if useful..............
    Regards
    Minal

  • How to bring the data from application server to presentation server

    hi,
    i have one problem,i have written the program which will open the files in the application server when we run the program in the background(sm37),the same data from application server i want to bring into presentation server in the format of (.csv),how to bring the data from application to presentation server can any body help me on this  topic.folowing is the code .
    *& Report  ZPFA_HIER_LOAD
    REPORT  ZFPA_HIER_LOAD.
    *---- Declaration of Oracle connectioN
    DATA con_name LIKE dbcon-con_name VALUE 'COMSHARE'.
    DATA: MFL1(9),MFL2(5),MFL3(9),MFL4(2),MFL5(8) TYPE c.
    DATA : mfilename type string.
    data: begin of matab1 occurs 0,
          MFL1(9) TYPE C,
          MFL2(5) TYPE C,
          MFL3(9) TYPE C,
          MFL4(2) TYPE C,
          MFL5(8) TYPE C  ,
         end of matab1 .
    data: setid(8) type c.
    data: begin of source occurs 0,
          setid(8) type c,
          end of source.
    *PARAMETERS : p_pfile LIKE filename-FILEEXTERN.
    *PARAMETERS : m_bsenty(8). " type c obligatory.
    *mfilename = P_PFILE.
    EXEC SQL.
      SET CONNECTION :con_name
    ENDEXEC.
    EXEC SQL.
      CONNECT TO :con_name
    ENDEXEC.
    EXEC SQL PERFORMING get_source.
      SELECT set_id FROM UNIT_SET INTO
      :setid
      ORDER BY SET_ID
    ENDEXEC.
    start-of-selection.
    LOOP AT SOURCE.
      REFRESH matab1. CLEAR matab1.
      EXEC SQL PERFORMING evaluate.
    SELECT TO_CHAR(MEM_ID),TRIM(TO_CHAR(MEM_PID)) FROM UNIT_TREE INTO :MFL1,
    :MFL5
    where set_id = :SOURCE-SETID ORDER BY MEM_ID
      ENDEXEC.
      if SOURCE-SETID = '80000000'.
       mfilename = '/tmp/aesorg'.
      elseif SOURCE-SETID = '80000006'.
       mfilename = '/tmp/Consolidation_Manager'.
      elseif SOURCE-SETID = '80000010'.
       mfilename = '/tmp/10org'.
      elseif SOURCE-SETID = '80000012'.
       mfilename = '/tmp/20org'.
      elseif SOURCE-SETID = '80000018'.
       mfilename = '/tmp/30org'.
      elseif SOURCE-SETID = '80000025'.
       mfilename = '/tmp/40org'.
      Endif.
      mfilename = '/usr/test.dat'.
    ************************This was i tried***********************
      open dataset mfilename for output in text mode encoding default." IN
    *TEXT MODE ENCODING DEFAULT.
    if sy-subrc <> 0.
    exit.
    endif.
    close dataset mfilename.
    CALL FUNCTION 'GUI_DOWNLOAD'
       EXPORTING
         FILENAME         = MFILENAME
         FILETYPE         = 'ASC'
       TABLES
         data_tab         = matab1
       EXCEPTIONS
         file_write_error = 1
         invalid_type     = 2
         no_authority     = 3
         unknown_error    = 4
         OTHERS           = 10.
    loop at matab1 .
    transfer matab1 to mfilename.
    endloop.
      clear matab1.
    ENDLOOP.
    loop at matab1 .
    transfer matab1 to mfilename.
    endloop.
    close dataset mfilename.
         MFL5 = '0'.
       CLEAR MFL5.
    FORM evaluate.
      if MFL5 = -1.
        MFL5 = ''.
      ENDIF.
      concatenate MFL1 ','   into MFL1.
      concatenate MFL1 ','   into MFL3.
      matab1-MFL1 = MFL1.
      matab1-MFL2 = 'ZBUE,'.
      matab1-MFL3 = MFL3.
      matab1-MFL4 = ' ,'.
      matab1-MFL5 = MFL5.
      append matab1 .
      CLEAR MFL1.
      CLEAR MFL2.
      CLEAR MFL3.
      CLEAR MFL4.
      CLEAR MFL5.
    ENDFORM.
                     "evaluate
    *&      Form  GET_SOURCE
          text
    FORM GET_SOURCE.
      source-setid = setid.
      append source.
      clear source.
    ENDFORM.                    "GET_SOURCE

    Hi Rammohan,
    You cannot use OPEN DATASET to transfer data from application server to presentation server.
    You can do the following :
    <b>Do 1st point in BACKGROUND</b>
    1. Read the data file from application server into an internal table using OPEN DATASET
    <b>Do 2nd point in Foreground</b>
    2. Once you get the data into an internal table, then use FM GUI_DOWNLOAD to download it on presentation server
    You cannot use the above 2 point together in Background because its not possible. Hence you need program it partially in background and partially in foreground.
    Best regards,
    Prashant

  • Downloading file from application server to presentation server

    Hi,
          We have a requirment to download file from application server to presentation server.  The problem is while down loading, some of the filds showing some junk values. Instead of that junk values we have some Russian texts there.  These Russian texts only coming as junk all other data is correct.  The file in the appplication server is in .dbf format. We are downloading using WS_DOWNLOAD. file type is BIN and code page we didn't specified.
    Thanks in Advance
    Jijeesh.P.G
    Message was edited by: Jijeesh.P.G
            Jijeesh P G

    hi jijeesh,
       Welcome to SDN.
    u can use to download file from application server to presentation server using the t/c CG3Y. in that it will ask the source file path and the target file path.
    if u want to find the source file path in the application server, u can use the transaction AL11 to find that one.
    Regards....
    Arun.
    Reward points if useful.

  • Generating tab delimited file on presentation server

    Hi All,
    I have to generate a tab delimited file on presentation server. The file shouldn't have '#' as separator. Instead it should be separated by TAB (when you press TAB button, some spaces will come naa... like that) ' '. Please advice me how to do this...
    Thanks in Advance,
    Regards,
    Phani

    Hi,
    Check this example..
    DATA: BEGIN OF itab OCCURS 0,
    matnr TYPE matnr,
    werks TYPE werks_d,
    END OF itab.
    itab-matnr = 'ABC'.
    itab-werks = 'ASDF'.
    APPEND itab.
    itab-matnr = 'EFG'.
    itab-werks = 'DHIS'.
    APPEND itab.
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    filename = 'C:\test.txt'
    write_field_separator = 'X'
    TABLES
    data_tab = itab
    EXCEPTIONS
    file_write_error = 1
    no_batch = 2
    gui_refuse_filetransfer = 3
    invalid_type = 4
    no_authority = 5
    unknown_error = 6
    header_not_allowed = 7
    separator_not_allowed = 8
    filesize_not_allowed = 9
    header_too_long = 10
    dp_error_create = 11
    dp_error_send = 12
    dp_error_write = 13
    unknown_dp_error = 14
    access_denied = 15
    dp_out_of_memory = 16
    disk_full = 17
    dp_timeout = 18
    file_not_found = 19
    dataprovider_exception = 20
    control_flush_error = 21
    OTHERS = 22.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
    MESSAGE s208(00) WITH 'File downloaded'.
    ENDIF.
    Thanks,
    Naren

  • Fusion Order Demo errors  server-setup-seed-deploy-test

    Hello everyone....I am new to SOA and new to this site as well. This is my first post. Facing a lot of hurdles deploying the FOD.
    I am stuck with errors at this point server-setup-seed-deploy-test. Can anyone of you be kind enough to guide me. Thank you.
    Buildfile: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\bin\build.xml
    [echo] Ant: Apache Ant version 1.7.1 compiled on June 27 2008 Java: 1.6
    [echo] Using mds-type : db
    [input] skipping input as property server.password has already been set.
    init:
    [echo] SOA Suite 11g version:
    [java]
    [java] *****************************************************************************
    [java] Oracle SOA Server version 11.1.1.6.0
    [java] Build: 0
    [java] Build time: Wed Dec 14 13:55:57 PST 2011
    [java] Build type: release
    [java] Source tag: PCBPEL_11.1.1.6.0_GENERIC_111214.0600.1553
    [java]
    [echo] soa infra mgmt home: F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    server-setup-seed-deploy-test:
    [echo] Setting up mds store, deploying shared artifacts,
    seeding jms info, deploying to server, and running tests
    [echo] Ant: Apache Ant version 1.7.1 compiled on June 27 2008 Java: 1.6
    [echo] Using mds-type : db
    [input] skipping input as property server.password has already been set.
    init:
    [echo] SOA Suite 11g version:
    [java]
    [java] *****************************************************************************
    [java] Oracle SOA Server version 11.1.1.6.0
    [java] Build: 0
    [java] Build time: Wed Dec 14 13:55:57 PST 2011
    [java] Build type: release
    [java] Source tag: PCBPEL_11.1.1.6.0_GENERIC_111214.0600.1553
    [java]
    [echo] soa infra mgmt home: F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    createMDSConnections:
    [echo] Ant: Apache Ant version 1.7.1 compiled on June 27 2008 Java: 1.6
    [echo] Using mds-type : db
    [input] skipping input as property server.password has already been set.
    createMDSConnectionForDB:
    [echo] Creating ../.adf/META-INF/adf-config.xml for database backed MDS
    [input] skipping input as property mds.db.password has already been set.
    [copy] Copying 1 file to F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\.adf\META-INF
    [echo] Using jdbc:oracle:thin:@localhost:1521:xe for db-based backing, with user dev_mds
    [echo] Ant: Apache Ant version 1.7.1 compiled on June 27 2008 Java: 1.6
    [echo] Using mds-type : db
    [input] skipping input as property server.password has already been set.
    createMDSConnectionForFileStore:
    [echo] Ant: Apache Ant version 1.7.1 compiled on June 27 2008 Java: 1.6
    [echo] Using mds-type : db
    [input] skipping input as property server.password has already been set.
    createMDSConnectionForServerFileStore:
    importCommonServiceArtifactsIntoMds:
    [java] Starting local filesystem import into mds ..
    [java] 26-May-2012 00:53:46 oracle.mds
    [java] NOTIFICATION: PManager instance is created without multitenancy support as JVM flag "oracle.multitenant.enabled" is not set to enable multitenancy support.
    [java] Got target mds-instance: mstore-usage_1 from F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\bin\..\.adf\META-INF\adf-config.xml
    [java] Creating mds connection to ./soa-seed/apps
    [java] --> F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\bin\.\soa-seed
    [java] 26-May-2012 00:53:46 oracle.mds
    [java] NOTIFICATION: PManager instance is created without multitenancy support as JVM flag "oracle.multitenant.enabled" is not set to enable multitenancy support.
    [java] Local item: /apps/FusionOrderDemoShared/services/partnersupplier/Warehouse.xsd
    [java] Local item: /apps/FusionOrderDemoShared/services/orderbooking/OrderBookingProcessor.wsdl
    [java] Local item: /apps/FusionOrderDemoShared/services/creditAuthorization/CreditAuthorizationService.wsdl
    [java] Local item: /apps/FusionOrderDemoShared/services/oracle/fodemo/storefront/store/service/common/serviceinterface/StoreFrontService.xsd
    [java] Local item: /apps/FusionOrderDemoShared/policy/fault-bindings.xml
    [java] Local item: /apps/FusionOrderDemoShared/services/oracle/fodemo/storefront/store/queries/common/CustomerInfoVOSDO.xsd
    [java] Local item: /apps/FusionOrderDemoShared/services/partnersupplier/PartnerSupplierComposite.wsdl
    [java] Local item: /apps/FusionOrderDemoShared/policy/fault-policies.xml
    [java] Local item: /apps/FusionOrderDemoShared/services/oracle/fodemo/storefront/store/service/common/serviceinterface/StoreFrontService.wsdl
    [java] Local item: /apps/FusionOrderDemoShared/services/oracle/fodemo/storefront/store/queries/common/OrderInfoVOSDO.xsd
    [java] Local item: /apps/FusionOrderDemoShared/services/orderbooking/OrderProcessor.xsd
    [java] Local item: /apps/FusionOrderDemoShared/services/creditAuthorization/creditauthorization.xsd
    [java] Local item: /apps/FusionOrderDemoShared/services/oracle/fodemo/storefront/entities/events/OrderEO.xsd
    [java] Local item: /apps/FusionOrderDemoShared/services/oracle/fodemo/storefront/entities/events/OrderEO.edl
    [java] Local item: /apps/FusionOrderDemoShared/services/oracle/fodemo/storefront/store/queries/common/OrderItemsInfoVOSDO.xsd
    [java] Now transferring ..
    [java] 26-May-2012 00:53:46 oracle.mds
    [java] NOTIFICATION: import operation started.
    [java] 26-May-2012 00:53:46 oracle.mds
    [java] NOTIFICATION: import is completed. Total number of documents successfully processed : 15, total number of documents failed : 0.
    [java] Transferred size = 15
    [java] Transferred - /apps/FusionOrderDemoShared/policy/fault-bindings.xml
    [java] Transferred - /apps/FusionOrderDemoShared/policy/fault-policies.xml
    [java] Transferred - /apps/FusionOrderDemoShared/services/partnersupplier/Warehouse.xsd
    [java] Transferred - /apps/FusionOrderDemoShared/services/orderbooking/OrderProcessor.xsd
    [java] Transferred - /apps/FusionOrderDemoShared/services/orderbooking/OrderBookingProcessor.wsdl
    [java] Transferred - /apps/FusionOrderDemoShared/services/creditAuthorization/creditauthorization.xsd
    [java] Transferred - /apps/FusionOrderDemoShared/services/partnersupplier/PartnerSupplierComposite.wsdl
    [java] Transferred - /apps/FusionOrderDemoShared/services/creditAuthorization/CreditAuthorizationService.wsdl
    [java] Transferred - /apps/FusionOrderDemoShared/services/oracle/fodemo/storefront/entities/events/OrderEO.xsd
    [java] Transferred - /apps/FusionOrderDemoShared/services/oracle/fodemo/storefront/entities/events/OrderEO.edl
    [java] Transferred - /apps/FusionOrderDemoShared/services/oracle/fodemo/storefront/store/queries/common/OrderInfoVOSDO.xsd
    [java] Transferred - /apps/FusionOrderDemoShared/services/oracle/fodemo/storefront/store/queries/common/CustomerInfoVOSDO.xsd
    [java] Transferred - /apps/FusionOrderDemoShared/services/oracle/fodemo/storefront/store/queries/common/OrderItemsInfoVOSDO.xsd
    [java] Transferred - /apps/FusionOrderDemoShared/services/oracle/fodemo/storefront/store/service/common/serviceinterface/StoreFrontService.xsd
    [java] Transferred - /apps/FusionOrderDemoShared/services/oracle/fodemo/storefront/store/service/common/serviceinterface/StoreFrontService.wsdl
    [echo] Ant: Apache Ant version 1.7.1 compiled on June 27 2008 Java: 1.6
    [echo] Using mds-type : db
    [input] skipping input as property server.password has already been set.
    createSOAPartitionIfNotExist:
    [echo] oracle.home = F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    listPartitions:
    [input] skipping input as property platform has already been set.
    [input] skipping input as property host has already been set.
    [input] skipping input as property port has already been set.
    [input] skipping input as property user has already been set.
    [secure-input] skipping secure-input as property password has already been set.
    [echo] oracle.home = F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    folderMgrTask:
    [java] calling FolderManager.initConnection(), m_platform= weblogic, m_host=localhost, m_port=7001, m_user=weblogic
    [java] Connecting to: service:jmx:t3://localhost:7001/jndi/weblogic.management.mbeanservers.runtime
    [java] connection initiated
    [java] folderMBean=oracle.soa.config:name=soa-infra,j2eeType=FolderLifecycleConfig,Application=soa-infra
    [java] Following 2 partitions are currently available on the platform:
    [java]
    [java] 1. default
    [java] 2. soaFusionOrderDemo
    [java]
    [echo] Creating partition soaFusionOrderDemo? ${createPartition}
    [echo] Ant: Apache Ant version 1.7.1 compiled on June 27 2008 Java: 1.6
    [echo] Using mds-type : db
    [input] skipping input as property server.password has already been set.
    doCreatePartition:
    [delete] Deleting: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\bin\partitionList.dat
    [echo] Ant: Apache Ant version 1.7.1 compiled on June 27 2008 Java: 1.6
    [echo] Using mds-type : db
    [input] skipping input as property server.password has already been set.
    init:
    [echo] SOA Suite 11g version:
    [java]
    [java] *****************************************************************************
    [java] Oracle SOA Server version 11.1.1.6.0
    [java] Build: 0
    [java] Build time: Wed Dec 14 13:55:57 PST 2011
    [java] Build type: release
    [java] Source tag: PCBPEL_11.1.1.6.0_GENERIC_111214.0600.1553
    [java]
    [echo] soa infra mgmt home: F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    compile-build-all:
    [echo] Building and compiling SOA Fusion Order Demo ..
    clean:
    [echo] Cleanup of OrderApprovalHumanTask
    [delete] Deleting: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderApprovalHumanTask\deploy\OrderApprovalHumanTask.war
    [delete] Deleting: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderApprovalHumanTask\deploy\OrderApprovalHumanTask.ear
    init:
    compile:
    [javac] Compiling 6 source files to F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderApprovalHumanTask\public_html\WEB-INF\classes
    copy:
    [copy] Copying 191 files to F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderApprovalHumanTask\public_html\WEB-INF\classes
    create-ear:
    [copy] Copying 4 files to F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderApprovalHumanTask\public_html\WEB-INF\lib
    [war] Building war: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderApprovalHumanTask\deploy\OrderApprovalHumanTask.war
    [delete] Deleting directory F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderApprovalHumanTask\public_html\WEB-INF\lib
    setupDeploymentEnvironment:
    [echo] Step1: copy template ./templates/connections.xml.seed to ../../.adf/META-INF/connections.xml
    [copy] Copying 1 file to F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\.adf\META-INF
    [echo] Step2: setup descriptor, soa-only? false, modifying ../../.adf/META-INF/connections.xml
    [echo] replacing ws-endpoint with localhost:7001/StoreFrontServiceHooks/StoreFrontService
    [echo] replacing ws-binding with {www.globalcompany.example.com}StoreFrontServiceSoapHttp
    [mkdir] Created dir: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderApprovalHumanTask\deploy\adf\META-INF
    [copy] Copying 2 files to F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderApprovalHumanTask\deploy\adf\META-INF
    [echo] Creating custom adf config for customization of connections.xml - datasource: jdbc/mds/MDS_LocalTxDataSource
    [mkdir] Created dir: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderApprovalHumanTask\deploy\lib
    [copy] Copying 1 file to F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderApprovalHumanTask\deploy\lib
    [ear] Building ear: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderApprovalHumanTask\deploy\OrderApprovalHumanTask.ear
    [delete] Deleting directory F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderApprovalHumanTask\deploy\adf
    [delete] Deleting directory F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderApprovalHumanTask\deploy\lib
    create-deployable-composite:
    [echo] oracle.home = F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    clean:
    [echo] deleting F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderBookingComposite\bin/..//deploy/sca_OrderBookingComposite_rev1.0.jar
    [delete] Deleting: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderBookingComposite\deploy\sca_OrderBookingComposite_rev1.0.jar
    init:
    scac-validate:
    [echo] Running scac-validate in F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderBookingComposite\bin/..//composite.xml
    [echo] oracle.home = F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    scac:
    [scac] Validating composite "F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderBookingComposite\bin/..//composite.xml"
    [scac] F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderBookingComposite\bin/..//composite.xml:170: warning: Failed to Find Binding "CreditCardAuthorizationService":"{http://www.globalcompany.example.com/ns/CreditAuthorizationService}CreditAuthorizationPort" in WSDL Manager
    [scac] F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderBookingComposite\bin/..//composite.xml:163: warning: Failed to Find Binding "PartnerSupplierService":"{http://www.partnersupplier.example.com/ns/warehouse}ExternalPartnerSupplier_pt" in WSDL Manager
    [scac] F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderBookingComposite\bin/..//composite.xml:180: warning: Failed to Find Binding "StoreFrontService":"{www.globalcompany.example.com}StoreFrontServiceSoapHttpPort" in WSDL Manager
    [scac] OrderProcessor.bpel:223: warning: <from> value type "{http://www.w3.org/2001/XMLSchema}long" is not compatible with <to> value type "{http://www.w3.org/2001/XMLSchema}string"
    [scac] OrderProcessor.bpel:310: warning: <from> value type "{http://www.w3.org/2001/XMLSchema}decimal" is not compatible with <to> value type "{http://www.w3.org/2001/XMLSchema}string"
    [scac] OrderProcessor.bpel:310: warning: <from> value type "{http://www.w3.org/2001/XMLSchema}integer" is not compatible with <to> value type "{http://www.w3.org/2001/XMLSchema}string"
    [scac] OrderProcessor.bpel:390: warning: <from> value type "{http://www.w3.org/2001/XMLSchema}decimal" is not compatible with <to> value type "{http://www.w3.org/2001/XMLSchema}double"
    [scac] OrderProcessor.bpel:390: warning: <from> value type "{http://www.w3.org/2001/XMLSchema}string" is not compatible with <to> value type "{http://www.w3.org/2001/XMLSchema}boolean"
    [scac] OrderProcessor.bpel:429: warning: <from> value type "{http://www.w3.org/2001/XMLSchema}boolean" is not compatible with <to> value type "{http://www.w3.org/2001/XMLSchema}string"
    [scac] OrderProcessor.bpel:571: warning: <from> value type "{http://www.w3.org/2001/XMLSchema}integer" is not compatible with <to> value type "{http://www.w3.org/2001/XMLSchema}string"
    [scac] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    [scac] >> modified xmlbean locale class in use
    [scac] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    package:
    [echo] oracle.home = F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    compile-source:
    [mkdir] Created dir: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderBookingComposite\dist
    [copy] Copying 142 files to F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderBookingComposite\dist
    [copy] Warning: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderBookingComposite\src not found.
    [copy] Warning: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderBookingComposite\SCA-INF\src not found.
    [copy] Copying 6 files to F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderBookingComposite\dist\SCA-INF\classes
    [jar] Building jar: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderBookingComposite\deploy\sca_OrderBookingComposite_rev1.0.jar
    [delete] Deleting directory F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderBookingComposite\dist
    setupDeploymentEnvironment:
    [copy] Copying 1 file to F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderBookingComposite\bin
    [echo] Setting up deployment plan, modifying orderbooking_deployment_plan.xml
    [echo] Replacing ws-endpoint with localhost:7001/StoreFrontServiceHooks/StoreFrontService
    [echo] Replacing soa server and wls server information
    [echo] -SOA: localhost 7001
    [echo] Replacing file adapter endpoint with /tmp
    [echo] Disabling global bam sensors? false
    [echo] Amending jndi destination for jms topic jms/DemoSupplierTopicUdd
    [echo] Replacing soa partition name with soaFusionOrderDemo
    [echo] Replacing values for bam connection in connections.xml
    [echo] Bam server host: localhost
    [echo] Bam server host: 9001
    [echo] Bam server user: weblogic
    [echo] Spring lib path: F:\Oracle\Middleware\Jdeveloper\jdeveloper\/../oracle_common/modules/org.springframework_2.5.jar
    compile-classes:
    create-deployable-composite:
    [echo] oracle.home = F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    clean:
    [echo] deleting F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\PartnerSupplierComposite\bin/..//deploy/sca_PartnerSupplierComposite_rev1.0.jar
    [delete] Deleting: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\PartnerSupplierComposite\deploy\sca_PartnerSupplierComposite_rev1.0.jar
    init:
    scac-validate:
    [echo] Running scac-validate in F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\PartnerSupplierComposite\bin/..//composite.xml
    [echo] oracle.home = F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    scac:
    [scac] Validating composite "F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\PartnerSupplierComposite\bin/..//composite.xml"
    [scac] PartnerSupplierMediator.mplan: warning: Case "ExternalPartnerSupplier.externalpartnersupplier_client.process" doesnt have any payload transformation Please make sure source and target message part name are same and of same type. Otherwise, target reference may fail to execute with error message like "Input sourcelike Null" or "Part not found"
    [scac] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    [scac] >> modified xmlbean locale class in use
    [scac] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    package:
    [echo] oracle.home = F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    compile-source:
    [echo] deleting .class files of F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\PartnerSupplierComposite\bin/..//SCA-INF/classes
    [javac] Compiling 18 source files to F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\PartnerSupplierComposite\SCA-INF\classes
    [javac] Note: Some input files use unchecked or unsafe operations.
    [javac] Note: Recompile with -Xlint:unchecked for details.
    [mkdir] Created dir: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\PartnerSupplierComposite\dist
    [copy] Copying 68 files to F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\PartnerSupplierComposite\dist
    [copy] Warning: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\PartnerSupplierComposite\SCA-INF\src not found.
    [copy] Copying 6 files to F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\PartnerSupplierComposite\dist\SCA-INF\classes
    [jar] Building jar: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\PartnerSupplierComposite\deploy\sca_PartnerSupplierComposite_rev1.0.jar
    [delete] Deleting directory F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\PartnerSupplierComposite\dist
    [echo] Spring lib path: F:\Oracle\Middleware\Jdeveloper\jdeveloper\/../oracle_common/modules/org.springframework_2.5.jar
    setupDeploymentEnvironment:
    [copy] Copying 1 file to F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\PartnerSupplierComposite\bin
    [echo] Setting up deployment plan, modifying PartnerSupplierComposite_cfgplan.xml
    [echo] Replacing ejb-name with WebLogicFusionOrderDemo-ExternalLegacyPartnerSupplierJScaEjb
    [echo] Replacing file adapter endpoint with /tmp/quote
    create-deployable-composite:
    [echo] oracle.home = F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    clean:
    [echo] deleting F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderSDOComposite\bin/..//deploy/sca_OrderSDOComposite_rev1.0.jar
    [delete] Deleting: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderSDOComposite\deploy\sca_OrderSDOComposite_rev1.0.jar
    init:
    scac-validate:
    [echo] Running scac-validate in F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderSDOComposite\bin/..//composite.xml
    [echo] oracle.home = F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    scac:
    [scac] Validating composite "F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderSDOComposite\bin/..//composite.xml"
    [scac] CustomerAndOrderService.bpel:254: warning: <from> value type "{http://www.w3.org/2001/XMLSchema}anySimpleType" is not compatible with <to> value type "{http://www.w3.org/2001/XMLSchema}integer"
    [scac] CustomerAndOrderService.bpel:359: warning: <from> value type "{http://www.w3.org/2001/XMLSchema}integer" is not compatible with <to> value type "{http://www.w3.org/2001/XMLSchema}long"
    [scac] CustomerAndOrderService.bpel:493: warning: <from> value type "{http://www.w3.org/2001/XMLSchema}integer" is not compatible with <to> value type "{http://www.w3.org/2001/XMLSchema}long"
    package:
    [echo] oracle.home = F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    compile-source:
    [mkdir] Created dir: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderSDOComposite\dist
    [copy] Copying 12 files to F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderSDOComposite\dist
    [copy] Warning: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderSDOComposite\src not found.
    [copy] Warning: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderSDOComposite\SCA-INF\src not found.
    [copy] Copying 6 files to F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderSDOComposite\dist\SCA-INF\classes
    [jar] Building jar: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderSDOComposite\deploy\sca_OrderSDOComposite_rev1.0.jar
    [delete] Deleting directory F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderSDOComposite\dist

    continued........................
    create-deployable-composite:
    [echo] oracle.home = F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    clean:
    [echo] deleting F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\B2BX12OrderGateway\bin/..//deploy/sca_B2BX12OrderGateway_rev1.0.jar
    [delete] Deleting: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\B2BX12OrderGateway\deploy\sca_B2BX12OrderGateway_rev1.0.jar
    init:
    scac-validate:
    [echo] Running scac-validate in F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\B2BX12OrderGateway\bin/..//composite.xml
    [echo] oracle.home = F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    scac:
    [scac] Validating composite "F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\B2BX12OrderGateway\bin/..//composite.xml"
    [scac] F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\B2BX12OrderGateway\bin/..//composite.xml:48: warning: Failed to Find Binding "StoreFrontService":"{www.globalcompany.example.com}StoreFrontServiceSoapHttpPort" in WSDL Manager
    [scac] F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\B2BX12OrderGateway\bin/..//composite.xml:59: warning: Failed to Find Binding "OrderBookingService":"{http://www.globalcompany.example.com/ns/OrderBookingService}OrderProcessor_pt" in WSDL Manager
    [scac] B2BOrderProcessingEngine.componentType: warning: property "bpel.config.use.events" may not be understood by BPEL component B2BOrderProcessingEngine - it will likely be ignored.
    [scac] B2BOrderProcessingEngine.bpel:188: warning: <from> value type "{http://www.w3.org/2001/XMLSchema}integer" is not compatible with <to> value type "{http://www.w3.org/2001/XMLSchema}string"
    package:
    [echo] oracle.home = F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    compile-source:
    [mkdir] Created dir: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\B2BX12OrderGateway\dist
    [copy] Copying 25 files to F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\B2BX12OrderGateway\dist
    [copy] Warning: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\B2BX12OrderGateway\src not found.
    [copy] Warning: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\B2BX12OrderGateway\SCA-INF\src not found.
    [copy] Copying 6 files to F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\B2BX12OrderGateway\dist\SCA-INF\classes
    [jar] Building jar: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\B2BX12OrderGateway\deploy\sca_B2BX12OrderGateway_rev1.0.jar
    [delete] Deleting directory F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\B2BX12OrderGateway\dist
    setupDeploymentEnvironment:
    [copy] Copying 1 file to F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\B2BX12OrderGateway\bin
    [echo] Setting up deployment plan, modifying B2BX12OrderGateway_deployment_plan.xml
    [echo] Replacing ws-endpoint with localhost:7001/StoreFrontServiceHooks/StoreFrontService
    [echo] Replacing soa server and wls server information
    [echo] -SOA: localhost 7001
    [echo] Replacing communication style, eventbased? true
    [echo] Replacing soa partition name with soaFusionOrderDemo
    [echo] Wls home: F:\Oracle\Middleware\Jdeveloper\jdeveloper\/../wlserver_10.3
    [echo] Oracle home: F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    init:
    compile:
    create-war:
    [echo] Deploying jsca shared lib? true
    [echo] Wls home: F:\Oracle\Middleware\Jdeveloper\jdeveloper\/../wlserver_10.3
    [echo] Oracle home: F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    create-ear:
    [echo] global: true > ejb: ${use.ejb} jsca: true
    [echo] Deploying jsca shared lib? true
    [echo] Wls home: F:\Oracle\Middleware\Jdeveloper\jdeveloper\/../wlserver_10.3
    [echo] Oracle home: F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    clean:
    [echo] Cleaning up external partner supplier ejb project ../classes/../deploy
    [delete] Deleting: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\ExternalLegacyPartnerSupplierEjb\deploy\ExternalPartnerSupplierEjb.ear
    [echo] Deploying jsca shared lib? true
    [echo] Wls home: F:\Oracle\Middleware\Jdeveloper\jdeveloper\/../wlserver_10.3
    [echo] Oracle home: F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    init:
    copy:
    [copy] Copying 5 files to F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\ExternalLegacyPartnerSupplierEjb\classes
    compile:
    [javac] Compiling 6 source files to F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\ExternalLegacyPartnerSupplierEjb\classes
    [javac] Note: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\ExternalLegacyPartnerSupplierEjb\src\com\otn\sample\fod\soa\externalps\test\EpsSessionEJBClient.java uses unchecked or unsafe operations.
    [javac] Note: Recompile with -Xlint:unchecked for details.
    create-ejb-ear:
    [echo] Deploying jsca shared lib? true
    [echo] Wls home: F:\Oracle\Middleware\Jdeveloper\jdeveloper\/../wlserver_10.3
    [echo] Oracle home: F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    init:
    copy:
    compile:
    create-jsca-ear:
    [mkdir] Created dir: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\ExternalLegacyPartnerSupplierEjb\deploy\APP-INF\lib
    [copy] Copying 1 file to F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\ExternalLegacyPartnerSupplierEjb\deploy\APP-INF\lib
    [echo] ../classes/meta-inf/
    [jar] Building jar: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\ExternalLegacyPartnerSupplierEjb\deploy\APP-INF\lib\ExternalPartnerSupplierScaModule.jar
    [jar] Building MANIFEST-only jar: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\ExternalLegacyPartnerSupplierEjb\deploy\empty.jar
    [ear] Building ear: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\ExternalLegacyPartnerSupplierEjb\deploy\ExternalPartnerSupplierEjb.ear
    compile-deploy-all:
    [echo] Deploying SOA Fusion Order Demo ..
    [echo] Deploying jsca shared lib? true
    [echo] Wls home: F:\Oracle\Middleware\Jdeveloper\jdeveloper\/../wlserver_10.3
    [echo] Oracle home: F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    deploy-application:
    [echo] Deploying jsca shared lib? true
    [echo] Wls home: F:\Oracle\Middleware\Jdeveloper\jdeveloper\/../wlserver_10.3
    [echo] Oracle home: F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    deploy-jsca-library:
    [wldeploy] weblogic.Deployer -remote -noexit -name weblogic-sca -source F:\Oracle\Middleware\wlserver_10.3\common\deployable-libraries\weblogic-sca-1.1.war -targets AdminServer -adminurl t3://localhost:7001 -user weblogic -password ******** -deploy -library
    [wldeploy] weblogic.Deployer invoked with options: -remote -noexit -name weblogic-sca -source F:\Oracle\Middleware\wlserver_10.3\common\deployable-libraries\weblogic-sca-1.1.war -targets AdminServer -adminurl t3://localhost:7001 -user weblogic -deploy -library
    [wldeploy] <26-May-2012 00:54:30 o'clock BST> <Info> <J2EE Deployment SPI> <BEA-260121> <Initiating deploy operation for application, weblogic-sca [archive: F:\Oracle\Middleware\wlserver_10.3\common\deployable-libraries\weblogic-sca-1.1.war], to AdminServer .>
    [wldeploy] weblogic.Deployer -remote -upload -noexit -name ExternalPartnerSupplierEjb -source F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\ExternalLegacyPartnerSupplierEjb\deploy\ExternalPartnerSupplierEjb.ear -targets AdminServer -adminurl t3://localhost:7001 -user weblogic -password ******** -deploy
    [wldeploy] weblogic.Deployer invoked with options: -remote -upload -noexit -name ExternalPartnerSupplierEjb -source F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\ExternalLegacyPartnerSupplierEjb\deploy\ExternalPartnerSupplierEjb.ear -targets AdminServer -adminurl t3://localhost:7001 -user weblogic -deploy
    [wldeploy] <26-May-2012 00:54:32 o'clock BST> <Info> <J2EE Deployment SPI> <BEA-260121> <Initiating deploy operation for application, ExternalPartnerSupplierEjb [archive: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\ExternalLegacyPartnerSupplierEjb\deploy\ExternalPartnerSupplierEjb.ear], to AdminServer .>
    [wldeploy] Task 24 initiated: [Deployer:149026]deploy application ExternalPartnerSupplierEjb on AdminServer.
    [wldeploy] Task 24 completed: [Deployer:149026]deploy application ExternalPartnerSupplierEjb on AdminServer.
    [wldeploy] Target state: deploy completed on Server AdminServer
    [wldeploy]
    deploy-composite:
    attachplan:
    [input] skipping input as property scac.sar has already been set.
    [input] skipping input as property scac.plan has already been set.
    [attachplan] attachPlan: Started for Composite SAR file = ../OrderBookingComposite/deploy/sca_OrderBookingComposite_rev1.0.jar using deploy plan = F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderBookingComposite\bin/orderbooking_deployment_plan.xml
    [attachplan] Load deployment plan file F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderBookingComposite\bin/orderbooking_deployment_plan.xml
    [attachplan] Done Load deployment plan file F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderBookingComposite\bin/orderbooking_deployment_plan.xml
    [attachplan] Unpacking the Composite SAR to tmp folder F:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\soaear_14030.tmp
    [attachplan] Copy new plan file orderbooking_deployment_plan.xml to F:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\soaear_14030.tmp\soaconfigplan.xml
    [attachplan] Repacking F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\bin\..\OrderBookingComposite\deploy\sca_OrderBookingComposite_rev1.0.jar file soaconfigplan.xml
    [attachplan] Deleting tmp composite sar folder ...F:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\soaear_14030.tmp
    [attachplan] Attach plan successful
    [echo] Deploying to http://localhost:7001/soa-infra/deployer
    [echo] oracle.home = F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    deploy:
    [input] skipping input as property serverURL has already been set.
    [input] skipping input as property sarLocation has already been set.
    [input] skipping input as property password has already been set.
    [deployComposite] setting user/password..., user=weblogic
    [deployComposite] Processing sar=../OrderBookingComposite/deploy/sca_OrderBookingComposite_rev1.0.jar
    [deployComposite] Adding sar file - F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\bin\..\OrderBookingComposite\deploy\sca_OrderBookingComposite_rev1.0.jar
    [deployComposite] INFO: Creating HTTP connection to host:localhost, port:7001
    [deployComposite] INFO: Received HTTP response from the server, response code=200
    [deployComposite] ---->Deploying composite success.
    [delete] Deleting: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderBookingComposite\bin\deployResult.dat
    createBAMConfig:
    [copy] Copying 15 files to F:\Oracle\Middleware\Jdeveloper\jdeveloper\bam\dataObjects
    seedBAMServerObjects:
    [java] Oracle BAM Command Utility [Build 16732, BAM Repository Version 2025] Copyright © 2002, 2011, Oracle and/or its affiliates. All rights reserved.
    [java] Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/codec/binary/Base64
    [java]      at oracle.bam.common.cryptography.Cryptor.decrypt(Cryptor.java:102)
    [java]      at oracle.bam.icommand.ConsoleController.readConfigPassword(ConsoleController.java:308)
    [java]      at oracle.bam.icommand.ConsoleController.resolvePassword(ConsoleController.java:263)
    [java]      at oracle.bam.middleware.icommandengine.Controller.go(Controller.java:214)
    [java]      at oracle.bam.middleware.icommandengine.Controller.go(Controller.java:186)
    [java]      at oracle.bam.icommand.ConsoleController.go(ConsoleController.java:183)
    [java]      at oracle.bam.icommand.Application.main(Application.java:56)
    [java] Caused by: java.lang.ClassNotFoundException: org.apache.commons.codec.binary.Base64
    [java]      at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    [java]      at java.security.AccessController.doPrivileged(Native Method)
    [java]      at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    [java]      at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
    [java]      at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    [java]      at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
    [java]      ... 7 more
    [java] Java Result: 1
    seedBAMAdapterResources:
    [echo] Seeding bam adapter connection factory for fusion order demo (F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderBookingComposite\bin)
    [copy] Copying 1 file to F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderBookingComposite\bin
    [copy] Copying 1 file to F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderBookingComposite\bin
    [java]
    [java] Initializing WebLogic Scripting Tool (WLST) ...
    [java]
    [java] Welcome to WebLogic Server Administration Scripting Shell
    [java]
    [java] Type help() for help on available commands
    [java]
    [java] Starting modification of BAM resource adapter connection factory ..
    [java] Connecting to t3://localhost:7001 with userid weblogic ...
    [java] Successfully connected to Admin Server 'AdminServer' that belongs to domain 'dev_domain'.
    [java]
    [java] Warning: An insecure protocol was used to connect to the
    [java] server. To ensure on-the-wire security, the SSL port or
    [java] Admin port should be used instead.
    [java]
    [java] Configuring OracleBamAdapter - amending connection factory info for eis/bam/rmi and eis/bam/soap
    [java] Redeploying application OracleBamAdapter ...
    [java] <26-May-2012 00:54:57 o'clock BST> <Info> <J2EE Deployment SPI> <BEA-260121> <Initiating redeploy operation for application, OracleBamAdapter [archive: null], to AdminServer .>
    [java] .....................Completed the redeployment of Application with status completed
    [java] Current Status of your Deployment:
    [java] Deployment command type: redeploy
    [java] Deployment State : completed
    [java] Deployment Message : no message
    [java] <26-May-2012 00:56:00 o'clock BST> <Warning> <JNDI> <BEA-050001> <WLContext.close() was called in a different thread than the one in which it was created.>
    [delete] Deleting: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderBookingComposite\bin\createBamResourceAdapterCF.py
    [delete] Deleting: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderBookingComposite\bin\BamAdapterDeploymentPlan_1337990090265.xml
    [echo] Spring lib path: F:\Oracle\Middleware\Jdeveloper\jdeveloper\/../oracle_common/modules/org.springframework_2.5.jar
    deploy-composite:
    attachplan:
    [input] skipping input as property scac.sar has already been set.
    [input] skipping input as property scac.plan has already been set.
    [attachplan] attachPlan: Started for Composite SAR file = ../PartnerSupplierComposite/deploy/sca_PartnerSupplierComposite_rev1.0.jar using deploy plan = F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\PartnerSupplierComposite\bin/PartnerSupplierComposite_cfgplan.xml
    [attachplan] Load deployment plan file F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\PartnerSupplierComposite\bin/PartnerSupplierComposite_cfgplan.xml
    [attachplan] Done Load deployment plan file F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\PartnerSupplierComposite\bin/PartnerSupplierComposite_cfgplan.xml
    [attachplan] Unpacking the Composite SAR to tmp folder F:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\soaear_31767.tmp
    [attachplan] Copy new plan file PartnerSupplierComposite_cfgplan.xml to F:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\soaear_31767.tmp\soaconfigplan.xml
    [attachplan] Repacking F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\bin\..\PartnerSupplierComposite\deploy\sca_PartnerSupplierComposite_rev1.0.jar file soaconfigplan.xml
    [attachplan] Deleting tmp composite sar folder ...F:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\soaear_31767.tmp
    [attachplan] Attach plan successful
    [echo] Deploying to http://localhost:7001/soa-infra/deployer
    [echo] oracle.home = F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    deploy:
    [input] skipping input as property serverURL has already been set.
    [input] skipping input as property sarLocation has already been set.
    [input] skipping input as property password has already been set.
    [deployComposite] setting user/password..., user=weblogic
    [deployComposite] Processing sar=../PartnerSupplierComposite/deploy/sca_PartnerSupplierComposite_rev1.0.jar
    [deployComposite] Adding sar file - F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\bin\..\PartnerSupplierComposite\deploy\sca_PartnerSupplierComposite_rev1.0.jar
    [deployComposite] INFO: Creating HTTP connection to host:localhost, port:7001
    [deployComposite] INFO: Received HTTP response from the server, response code=200
    [deployComposite] ---->Deploying composite success.
    [delete] Deleting: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\PartnerSupplierComposite\bin\deployResult.dat
    deploy-composite:
    [echo] Deploying to http://localhost:7001/soa-infra/deployer
    [echo] oracle.home = F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    deploy:
    [input] skipping input as property serverURL has already been set.
    [input] skipping input as property sarLocation has already been set.
    [input] skipping input as property password has already been set.
    [deployComposite] setting user/password..., user=weblogic
    [deployComposite] Processing sar=../OrderSDOComposite/deploy/sca_OrderSDOComposite_rev1.0.jar
    [deployComposite] Adding sar file - F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\bin\..\OrderSDOComposite\deploy\sca_OrderSDOComposite_rev1.0.jar
    [deployComposite] INFO: Creating HTTP connection to host:localhost, port:7001
    [deployComposite] INFO: Received HTTP response from the server, response code=200
    [deployComposite] ---->Deploying composite success.
    [delete] Deleting: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\OrderSDOComposite\bin\deployResult.dat
    deploy-composite:
    attachplan:
    [input] skipping input as property scac.sar has already been set.
    [input] skipping input as property scac.plan has already been set.
    [attachplan] attachPlan: Started for Composite SAR file = ../B2BX12OrderGateway/deploy/sca_B2BX12OrderGateway_rev1.0.jar using deploy plan = F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\B2BX12OrderGateway\bin/B2BX12OrderGateway_deployment_plan.xml
    [attachplan] Load deployment plan file F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\B2BX12OrderGateway\bin/B2BX12OrderGateway_deployment_plan.xml
    [attachplan] Done Load deployment plan file F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\B2BX12OrderGateway\bin/B2BX12OrderGateway_deployment_plan.xml
    [attachplan] Unpacking the Composite SAR to tmp folder F:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\soaear_42498.tmp
    [attachplan] Copy new plan file B2BX12OrderGateway_deployment_plan.xml to F:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\soaear_42498.tmp\soaconfigplan.xml
    [attachplan] Repacking F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\bin\..\B2BX12OrderGateway\deploy\sca_B2BX12OrderGateway_rev1.0.jar file soaconfigplan.xml
    [attachplan] Deleting tmp composite sar folder ...F:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\soaear_42498.tmp
    [attachplan] Attach plan successful
    [echo] Deploying to http://localhost:7001/soa-infra/deployer
    [echo] oracle.home = F:\Oracle\Middleware\Jdeveloper\jdeveloper\
    deploy:
    [input] skipping input as property serverURL has already been set.
    [input] skipping input as property sarLocation has already been set.
    [input] skipping input as property password has already been set.
    [deployComposite] setting user/password..., user=weblogic
    [deployComposite] Processing sar=../B2BX12OrderGateway/deploy/sca_B2BX12OrderGateway_rev1.0.jar
    [deployComposite] Adding sar file - F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\bin\..\B2BX12OrderGateway\deploy\sca_B2BX12OrderGateway_rev1.0.jar
    [deployComposite] INFO: Creating HTTP connection to host:localhost, port:7001
    [deployComposite] INFO: Received HTTP response from the server, response code=200
    [deployComposite] ---->Deploying composite success.
    [delete] Deleting: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\B2BX12OrderGateway\bin\deployResult.dat
    importAndDeployB2BTradingAgreements:
    [echo] Importing and deploying b2b trading partner agreements
    [java] Commandline arguments 2: [import, ../config/OOW08_X12_10.zip]
    [java] Import with overwrite=false
    [java] *** Import operation completed successfully ***
    [java] Time elapsed:7703ms
    [java] Commandline arguments 1: [deploy]
    [java] *** Deployment operation completed successfully ***
    [java] Time elapsed:1500ms
    [java] Commandline arguments 1: [restartb2b]
    [java] Time elapsed:1094ms
    [delete] Deleting: F:\stageFMW\DEMO_DOWNLOAD_HOME\11.1.1.6\CompositeServices\B2BX12OrderGateway\bin\jndi.properties
    [echo] Wls home: F:\Oracle\Middleware\Jdeveloper\jdeveloper\/../wlserver_10.3
    [echo] Oracle home: F:\Oracle\Middleware\Jdeveloper\jdeveloper\

  • Presentation server date modification

    hi friends..
    i want to change the presentation server date for test case..
    can you guide me how to change ? where can i change ?
    for eg if sy-datum is 1.07.2008 i want this date 30.05.2008 for testing

    Hi deva,
    it is not suggestible to change the date of the presentation server.it is better to take temporary date variable and apply the changes on sy-datum  value and store the resultant date  value in it and use in your program.
    if it useful, reward points.
    Thank you,
    Prasad G.V.K

  • Extentrix Unleashes the Power of Citrix Presentation Server

    Extentrix Web Services 2.0 – Application Edition Enhances Access to Citrix Published Applications.
    RAK, UAE. -- 10/10/2007 -- -- Extentrix Systems, FZE a leading software development company specializing in infrastructure solutions for Microsoft Terminal Services and Citrix application delivery products, announced the release of the Extentrix Web Services 2.0 – Application Edition.
    Extentrix Web Services 2.0 – Application Edition provides an extensive set of web services APIs that allows developers to integrate Citrix published applications into their products and portals. It enables users to access the Citrix application delivery platform by invoking open standard web services APIs.
    It works closely with Extentrix Web Services 1.0 -Management Edition which gives developers unlimited power to manage Citrix Presentation Servers Farms through standard protocols.
    Extentrix Web Services 2.0 – Application Edition fully supports the latest Citrix Web Interface 4.6 protocol, packaged with Citrix Presentation Server 4.5 and Web Interface 4.6 and supports all features added in Feature Pack 1 (FP1) for Windows Server 2003.
    Extentrix Web Services APIs communicate directly with the Citrix XML service which enables it to deliver enhanced performance over the previous version. The APIs provide similar functionality as those provided by Citrix Web Interface, but allow for greater integration with ISV and custom applications.
    “Building on the fundamental open Web services standards, Extentrix has developed a great product that unlocks Citrix Application Delivery platform” said Matt Lull, Director of Global SAP Alliance. “Citrix is working Extentrix to utilize this great technology by developing new ways for SAP customers to access Citrix Published applications”
    “Extentrix has come up with innovative ways to unleash the power of Citrix Presentation Server and Extentrix Web Services 2.0 – Application Edition is the fruit of our extensive effort” said Alaaeddin Jallad, Extentrix President and Founder “We are very encouraged by the success of our first release of Extentrix Web Services, which lead us to work on a more advanced version to fully implement the latest Citrix Web Interface 4.6 protocol”
    “Building on open Web services standards, Extentrix has developed a fascinating product that extends Citrix’s Application Delivery platform” said Matt Lull, Director, Global SAP Alliance. “Citrix is working with Extentrix to demonstrate how SAP customers can seamlessly integrate their legacy applications with their NetWeaver Portal and composite applications”
    Additionally Extentrix’s Widget 2.0 with Citrix Presentation Server supports the new released Web Services for easier access to applications and is available for download at http://www.extentrix.com/CPAW.
    A whitepaper outlining how to modify the Web Interface 4.6 to use Extentrix web services can be found at resources’ page.
    Extentrix Web Services 2.0 – Application Edition for Citrix Presentation Server provides the following features:
    ● Enhanced Performance
    Performance is enhanced by connecting directly to Citrix XML service rather than using intermediate hubs like PNAgent site.
    ● Extra APIs
    Provide an enhanced list of APIs which grant functionality on par with Citrix Web Interface 4.6. New APIs include capabilities that help developers validate users’ credentials, get customizable information about published applications, launch them and more.
    ● Enhanced Error Handling Mechanism
    Say goodbye for unknown error exceptions. Errors returned back from the server are fully reported detailing the reasons. Implementing an effective error handling strategy ensures solving many issues like errors do no go undetected; applications do not terminate abruptly without warning or explanation, application stability is restored after an error, etc...
    ● Platform Independent and Simple to Integrate
    Since it is based on open standard protocols; it is simple to integrate it with any application written on any programming language, running on any platform.
    ● Simple Management Console
    Comes with an easy to manage Microsoft MMC snap-in console which helps users create new web services, edit existing ones, and browse & manage their web services. It functions as one management tool that is provided for both Extentrix Web Services Application and Management editions; it simplifies management mechanisms and enhances administration of Extentrix Products.
    A White Paper about Extentrix Web Services 2.0 – Application Edition is available on the product’s page.
    Extentrix Web Services 2.0 – Application Edition is available for download at Extentrix Site. Extentrix also provides developers with a test drive as well as examples to help them experience the power of Extentrix Web Services 2.0 – Application Edition.
    Extentrix has created a forum for the newly released Web services on its site; Extentrix Forum to encourage customers to share their experiences and problems for better support. Extentrix support will monitor the forum and answer developers’ issues.
    About Extentrix
    Founded in 2006, Extentrix Systems is a leading software development company specializing in virtualization and developing software solutions for Microsoft and Citrix platforms. Established by former software engineers at Citrix, Extentrix have developed access solutions that simplify and speed users’ access to Microsoft Terminal Services and Citrix Application Delivery platforms.
    Extentrix Systems is privately held with company headquarters in RAK, UAE. For more information, please visit the company’s Web site at www.extentrix.com or call +971-4-211-5490.
    Citrix® and Citrix Presentation Server™ Client are trademarks of Citrix Systems, Inc. and/or one or more of its subsidiaries, and may be registered in the U.S. Patent and Trademark Office and in other countries.

    Hi Nicholas (is it?)
    I'm afraid I never completed the testing, a long story but the client thought allowing Citrix access over the Internet to non corporate machines was too unsecure.
    I'm curious though as to why your set up does work even if it is for a short time.
    I'm enabled Smart tunneling and this did provide the correct IP address of the Citrix Farm head, instead of the ASA acting as a proxy, you might want to try that
    Sorry I couldn't help more
    Cheers Tony

  • Upload a set of files from presentation server to app server.

    Hello,
    I need an urgent help.
    I know how to use GUI_UPLOAD fm for simple file uploading.
    However, my requirement is that in my report program(on selection screen) I give the source directory(presentation server) and the target directory
    (application server). The report has to get all the files from the presentation server (from this source directory) and has to upload each file to the application server in the target directory.
    Could anyone please help me in this?
    It would be very helpful if anyone can put the code / standard example if there is any mechanism in ABAP to get the set of files from the presentation server, given the directory name.
    THanks a lot for your help,
    Best Regards,
    Pramod S.

    HI Pramod,
      After you get the data into the internal table, you need to pass the internal table, record by record into the application server.
    data: wa_file type string.
    data: tab_file like table of wa_file,
    pcount type i.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>DIRECTORY_LIST_FILES
    exporting
    DIRECTORY = 'C:\test'
    FILTER = '.'
    FILES_ONLY = 'X'
    DIRECTORIES_ONLY
    changing
    FILE_TABLE = tab_file
    count = pcount.
    loop at tab_file into wa_file.
    clear it_data.
    refresh it_data.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>GUI_UPLOAD
    exporting
    FILENAME = wa_file
    changing
    data_tab = it_data.
    open dataset <filename> for output in text mode encoding default.
    if sy-subrc = 0.
    loop at it_data.
    transfer it_data to <filename>.
    endloop.
    close dataset.
    endif.
    endloop.
    Thanks,
    Ravi Kanth

  • Download  350MB of data from Application Server to Presentation server

    i want to Download  350MB(Around 2.5Million record of Table BSEG) of data from Application Server to Presentation server..
    i have tried with the transaction CG3Y and program using open dataset,read dataset,close dataset,ws_download...but went in vain,,,ended with TIMEOUT ERROR..will OPEN DATASET 'path' FOR OUTPUT FILTER 'Compress'  be helpful
    ..please help me ..its urgent..

    you can do the FTP with Unix commands..
    initially connect to the application server  by using command
    FTP <app server ip>,then it willl ask for username and password... after successful connection you  can use the following commnads to transfer file
    lcd <destination path name>(set the dest path)
    cd <source path>(set the sorce path),
    get <filename to be transfererd>( do the transfer)....
    You can do same with ABAP code also, for this you need to use some function modules like..
    FTP_CONNECT ( to establish the connection)
    FTP_COMMAND ( to execute the commands like cd, lcd get,put)
    finally FTP_DISCONNECT to close the open connection...
    for further details refer standard program RSFTP002,RSFTP003....
       reward points if helpful...

  • Urgent: loading a pdf file  to presentation server at the end of the day

    hi
    I got a requirement like smartform will be converted into pdf file and it will loaded into application server, at the End of the day all the pdf files which are generated on that day will be loaded to in file at presentation server ,
    so please help me out regarding
    Thanks in advance
    regards
    krishna

    Hi Chris,
    this problems are in fact new to me, but I'm just starting on a new workplace where they have these issues since forever.
    I'm hoping that new point of view may find a solution to it ;-)
    I'll try to watch the traffic - it could be related to the particular network we have. Will ask and post some more info tomorrow.
    Thank you!
    /best
    /j

  • Read XML file from presentation server

    Hi All,
    I want read XML file from presentation server currently i am using GUI_UPLOAD fm . but it is reading some junk data.
    DATA : BEGIN OF upl OCCURS 0,
              f(255) TYPE c,
           END OF upl.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename = D:\XX.XML'
          filetype = 'BIN'
        TABLES
          data_tab = upl.
    is there any other alternative.
    Thanks
    Swarup,

    Hi Swarup,
    Use method IMPORT_FROM_FILE of class CL_XML_DOCUMENT.
    A sample code snippet :-
    PARAMETERS: p_filnam TYPE localfile OBLIGATORY
    DEFAULT 'C:\Documents and Settings\ssaha\Desktop\test.xml'.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_filnam.
    DATA: l_v_fieldname TYPE dynfnam.
    l_v_fieldname = p_filnam.
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
    program_name = syst-cprog
    dynpro_number = syst-dynnr
    field_name = l_v_fieldname
    IMPORTING
    file_name = p_filnam.
    START-OF-SELECTION.
    TYPES:
    BEGIN OF ty_tab,
    name TYPE string,
    value TYPE string,
    END OF ty_tab.
    DATA:
    lcl_xml_doc TYPE REF TO cl_xml_document,
    v_subrc TYPE sysubrc,
    v_node TYPE REF TO if_ixml_node,
    v_child_node TYPE REF TO if_ixml_node,
    v_root TYPE REF TO if_ixml_node,
    v_iterator TYPE REF TO if_ixml_node_iterator,
    v_nodemap TYPE REF TO if_ixml_named_node_map,
    v_count TYPE i,
    v_index TYPE i,
    v_attr TYPE REF TO if_ixml_node,
    v_name TYPE string,
    v_prefix TYPE string,
    v_value TYPE string,
    v_char TYPE char2.
    DATA:
    itab TYPE STANDARD TABLE OF ty_tab,
    wa TYPE ty_tab.
    CREATE OBJECT lcl_xml_doc.
    CALL METHOD lcl_xml_doc->import_from_file
    EXPORTING
    filename = p_filnam
    RECEIVING
    retcode = v_subrc.
    CHECK v_subrc = 0.
    v_node = lcl_xml_doc->m_document.
    CHECK NOT v_node IS INITIAL.
    v_iterator = v_node->create_iterator( ).
    v_node = v_iterator->get_next( ).
    WHILE NOT v_node IS INITIAL.
    CASE v_node->get_type( ).
    WHEN if_ixml_node=>co_node_element.
    v_name = v_node->get_name( ).
    v_nodemap = v_node->get_attributes( ).
    IF NOT v_nodemap IS INITIAL
    * attributes
    v_count = v_nodemap->get_length( ).
    DO v_count TIMES.
    v_index = sy-index - 1.
    v_attr = v_nodemap->get_item( v_index ).
    v_name = v_attr->get_name( ).
    v_prefix = v_attr->get_namespace_prefix( ).
    v_value = v_attr->get_value( ).
    ENDDO.
    ENDIF.
    WHEN if_ixml_node=>co_node_text OR
    if_ixml_node=>co_node_cdata_section.
    * text node
    v_value = v_node->get_value( ).
    MOVE v_value TO v_char.
    IF v_char <> cl_abap_char_utilities=>cr_lf.
    wa-name = v_name.
    wa-value = v_value.
    APPEND wa TO itab.
    CLEAR wa.
    ENDIF.
    ENDCASE.
    * advance to next node
    v_node = v_iterator->get_next( ).
    ENDWHILE.
    LOOP AT itab INTO wa.
    ENDLOOP.
    Regards
    Abhii

  • How to validate a Particular Directory or file path in Presentation server.

    Hi SAP gurus,
    I am having a requirement where I want to download a file into the Presentation server.
    The file path to download will be provided in a parameter.
    What I want to do is to throw a message to the user if He/She provides a wrong Directory or File path.
    For example :
    Say the user is providing the file download path as " E:\test.txt", but there is no "E" drive or such directory in the presentation. So in this case I should be able to check the wrong Directory provided by the user and throw some message to the user saying there is no such Directory present. Please give a proper directory or similar messages.
    I have found a FM: PFL_CHECK_DIRECTORY but i am not able to use it properly.
    So do you have any FM or any method and its explanation to fulfill my requirement .

    Do it this way:
    tables:
      spfli.
    parameters:
      p_file type rlgrap-filename          " File name
                       obligatory.
    Data:
      t_final_data like table of spfli.
    at selection-screen on value-request for p_file.
    call function 'F4_FILENAME'
       exporting
         program_name        = syst-cprog
         dynpro_number       = syst-dynnr
         field_name          = ' '
       importing
         file_name           = p_file.
    at selection-screen.
      data:
        lw_file  type string.              " File Path
      lw_file = p_file.
    select * from spfli into table t_final_data.
    CALL FUNCTION 'GUI_DOWNLOAD'
       EXPORTING
         filename                        = lw_file
       tables
         data_tab                        = t_final_data.
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
      if sy-subrc <> 0.
        message 'File not found' type 'E'.
      endif.
    With luck,
    Pritam.

  • File download from application server to presentation server

    Hi,
         We have requirment to upload a file to application server in .dbf format and then download it to presentation server.  while downloading the file to presentation server some of the fields  getting junk values.  we are downloading file to excel sheet.  some of the fields values are Russian texts.  Those fields only getting junk values, all other fields are getting correct values.
    Please advice.
    Regards,
    chandra.

    hi
    sample code below should help you......
    <u>Download to presentation server</u>
    This program can be used to download files from Application server to presentaion server.
    1)Maximum length of each field is considered to be 40 characters.
    2)Maximum length of the field can be changed by specifying the length in selection screen parameter
    3)First line of the Application server file should contain the description of each field.
    4)Each field should be delimited by #.
    *& Report ZDOWNLOADFILE *
    REPORT ZDOWNLOADFILE
    MESSAGE-ID B1 .
    INCLUDES *
    INCLUDE ZDOWNLOADFILE_TOP.
    INCLUDE ZDOWNLOADFILE_FORM.
    EVENT-AT SELECTION-SCREEN *
    AT SELECTION-SCREEN ON pa_appl.
    PERFORM check_file_exists USING pa_appl.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR pa_appl.
    PERFORM f4_dxfilename USING pa_appl.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR pa_pres.
    PERFORM f4_filename USING pa_pres.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR pa_del.
    PERFORM f4_dxfilename USING pa_del.
    EVENT INITIALIZATION *
    INITIALIZATION.
    PERFORM initialization.
    EVENT START-OF-SELECTION *
    START-OF-SELECTION.
    PERFORM determine_fields. "Determine number of columns
    PERFORM build_itab. "Create internal table based on number
    "of columns
    PERFORM build_header. "To prepare header for the file
    PERFORM download_data. "Download data to presentation server
    PERFORM delete_files. "Delete files from application server
    *& Include ZDOWNLOADFILE_TOP *
    TYPES: BEGIN OF ty_header,
    text(100) TYPE c,
    END OF ty_header.
    DATA: c_fnh_mask type dxfields-filemask value '.',
    search_dir type dxfields-longpath value '/sapglobal/users'.
    CLASS cl_abap_char_utilities DEFINITION LOAD.
    Internal tables *
    DATA: gt_header TYPE STANDARD TABLE OF ty_header,
    gt_fieldcat TYPE lvc_t_fcat.
    Work areas *
    DATA: gs_header TYPE ty_header,
    gs_fieldcat TYPE lvc_s_fcat.
    DATA: wa_filename TYPE string.
    DATA: wa_count(2) TYPE N,
    wa_start(3) TYPE N,
    wa_end(3) TYPE N,
    wa_len(3) TYPE N.
    DATA: wa_data(12000) TYPE c,
    wa_off TYPE I,
    itab_appl TYPE REF TO DATA,
    itab_line TYPE REF TO DATA,
    col(2) TYPE c.
    DATA: wa_field(30) TYPE c.
    DATA: lv_index TYPE sy-tabix.
    DATA: gs_adrp type adrp,
    gs_usr02 type usr02,
    gs_usr21 type usr21,
    gs_char50(50).
    CONSTANTS: co_slash(1) value '/'.
    FIELD-SYMBOLS: <itab> TYPE STANDARD TABLE,
    <wa>,
    <fs_line>,
    <wa_line>.
    SELECTION SCREEN *
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE text-f01.
    PARAMETERS: pa_appl LIKE rlgrap-filename OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK B1.
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE text-f02.
    PARAMETERS: pa_pres LIKE rlgrap-filename OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK B2.
    SELECTION-SCREEN BEGIN OF BLOCK B3 WITH FRAME TITLE text-f03.
    PARAMETERS: pa_del LIKE rlgrap-filename .
    PARAMETERS: pa_deld AS CHECKBOX.
    SELECTION-SCREEN END OF BLOCK B3.
    SELECTION-SCREEN BEGIN OF BLOCK B4 WITH FRAME TITLE text-f04.
    PARAMETERS: pa_len(3) TYPE c.
    SELECTION-SCREEN END OF BLOCK B4.
    *& Include ZDOWNLOADFILE_FORM *
    *& Form f4_dxfilename
    text
    -->P_pa_appl text
    form f4_dxfilename using p_file.
    DATA: wa_file LIKE dxfields-longpath.
    CLEAR: wa_file.
    call function 'F4_DXFILENAME_TOPRECURSION'
    exporting
    i_location_flag = 'A'
    i_server = ' '
    i_path = search_dir
    filemask = c_fnh_mask
    fileoperation = 'R'
    importing
    o_path = wa_file
    exceptions
    rfc_error = 1
    error_with_gui = 2
    others = 3
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    else.
    p_file = wa_file.
    endif.
    endform. " f4_dxfilename
    *& Form f4_filename
    text
    -->P_pa_pres text
    form f4_filename using p_data.
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
    PROGRAM_NAME = SYST-CPROG
    DYNPRO_NUMBER = SYST-DYNNR
    IMPORTING
    FILE_NAME = p_data
    endform. " f4_filename
    *& Form check_file_exists
    text
    -->P_pa_appl text
    form check_file_exists using p_file.
    DATA: wa_file LIKE rlgrap-filename.
    wa_file = p_file.
    OPEN DATASET wa_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    IF sy-subrc = 8.
    MESSAGE E714
    WITH text-m01 p_file text-m02.
    ELSE.
    CLOSE DATASET p_file.
    ENDIF.
    endform. " check_file_exists
    *& Form build_header
    text
    --> p1 text
    <-- p2 text
    form build_header .
    *Select user details
    clear gs_usr21-persnumber.
    select single persnumber
    into (gs_usr21-persnumber)
    from usr21
    where bname = sy-uname.
    concatenate sy-uname
    co_slash
    gs_adrp-name_text(36)
    co_slash
    into gs_char50.
    condense gs_char50.
    clear gs_usr02-class.
    select single class
    into (gs_usr02-class)
    from usr02
    where bname = sy-uname.
    concatenate gs_char50
    gs_usr02-class
    into gs_char50.
    condense gs_char50.
    Write report technical name
    write 'Name: ' TO gs_header+0(10).
    gs_header+11(*) = sy-repid.
    APPEND gs_header TO gt_header.
    CLEAR: gs_header.
    Write user data
    write 'User: ' TO gs_header+0(10).
    gs_header+11(*) = gs_char50.
    CONCATENATE gs_header gs_char50 INTO
    gs_header SEPARATED BY SPACE.
    APPEND gs_header TO gt_header.
    CLEAR: gs_header.
    Write System data
    write 'System: ' TO gs_header+0(10).
    write: sy-sysid to gs_header+11(3).
    write: co_slash to gs_header+14(1).
    write: sy-mandt to gs_header+15(3).
    APPEND gs_header TO gt_header.
    CLEAR: gs_header.
    Write System date and time
    write 'System: ' TO gs_header+0(10).
    write sy-datum to gs_header+11(10).
    write sy-uzeit to gs_header+22(8).
    APPEND gs_header TO gt_header.
    CLEAR: gs_header.
    Write Local date and time
    write 'Local: ' TO gs_header+0(10).
    write sy-datlo to gs_header+11(10).
    write sy-timlo to gs_header+22(8).
    APPEND gs_header TO gt_header.
    CLEAR: gs_header.
    APPEND gs_header TO gt_header.
    endform. " build_header
    *& Form determine_fields
    text
    --> p1 text
    <-- p2 text
    form determine_fields .
    DATA: wa_data(600) TYPE c.
    CLEAR: wa_count,wa_start,wa_end,wa_data.
    wa_start = 0.
    wa_end = 1.
    OPEN DATASET pa_appl FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    READ DATASET pa_appl INTO wa_data.
    wa_len = STRLEN( wa_data ).
    DO wa_len TIMES.
    IF wa_data+wa_start(wa_end) EQ
    cl_abap_char_utilities=>horizontal_tab.
    wa_count = wa_count + 1.
    ENDIF.
    wa_start = wa_start + 1.
    ENDDO.
    CLOSE DATASET pa_appl.
    wa_count = wa_count + 1.
    endform. " determine_fields
    *& Form build_itab
    text
    --> p1 text
    <-- p2 text
    form build_itab .
    DATA: wa_len(4) TYPE c.
    CLEAR: wa_len.
    IF pa_len IS INITIAL.
    wa_len = 40.
    ELSE.
    wa_len = pa_len.
    ENDIF.
    col = 1.
    DO wa_count TIMES.
    CONCATENATE 'FIELD' col INTO wa_field.
    gs_fieldcat-fieldname = wa_field.
    gs_fieldcat-outputlen = wa_len.
    gs_fieldcat-datatype = 'CHAR'.
    gs_fieldcat-col_pos = col.
    col = col + 1.
    APPEND gs_fieldcat TO gt_fieldcat.
    CLEAR: wa_field.
    ENDDO.
    *Create the internal table dynamically based on the file structure,
    *this table will be used to download data through GUI_DOWNLOAD fm
    CALL METHOD cl_alv_table_create=>create_dynamic_table
    EXPORTING
    it_fieldcatalog = gt_fieldcat
    IMPORTING
    EP_TABLE = itab_appl
    *Assign the pointer to the field symbol
    ASSIGN itab_appl->* TO <itab>.
    CREATE DATA itab_line LIKE LINE OF <itab>.
    *Create a work area for the dynamic internal table
    ASSIGN itab_line->* TO <wa_line>.
    col = 1.
    OPEN DATASET pa_appl FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    DO.
    READ DATASET pa_appl INTO wa_data.
    IF sy-subrc <> 0.
    CLOSE DATASET pa_appl.
    RETURN.
    ELSE.
    wa_start = 0.
    lv_index = 1.
    DO wa_count TIMES.
    ASSIGN COMPONENT lv_index OF STRUCTURE <wa_line> TO <fs_line>.
    FIND cl_abap_char_utilities=>horizontal_tab
    IN wa_data+wa_start(*) MATCH OFFSET wa_off.
    IF sy-subrc = 0.
    IF wa_off NE 0.
    <fs_line> = wa_data+wa_start(wa_off).
    ENDIF.
    wa_start = wa_start + wa_off + 1.
    lv_index = lv_index + 1.
    ELSE.
    <fs_line> = wa_data+wa_start(*).
    ENDIF.
    ENDDO.
    APPEND <wa_line> TO <itab>.
    CLEAR: <wa_line>,<fs_line>.
    ENDIF.
    ENDDO.
    endform. " build_itab
    *& Form download_data
    text
    --> p1 text
    <-- p2 text
    form download_data .
    clear: wa_filename.
    wa_filename = pa_pres.
    call function 'GUI_DOWNLOAD'
    exporting
    filename = wa_filename
    filetype = 'DAT'
    tables
    data_tab = gt_header
    exceptions
    access_denied = 15
    call function 'GUI_DOWNLOAD'
    exporting
    filename = wa_filename
    filetype = 'DAT'
    append = 'X'
    tables
    data_tab = <itab>
    exceptions
    access_denied = 15
    endform. " download_data
    *& Form initialization
    text
    --> p1 text
    <-- p2 text
    form initialization .
    REFRESH: gt_header,gt_fieldcat,gt_header.
    endform. " initialization
    *& Form delete_files
    text
    --> p1 text
    <-- p2 text
    form delete_files .
    IF pa_deld EQ 'X'.
    DELETE DATASET pa_appl.
    ENDIF.
    IF pa_del IS NOT INITIAL.
    DELETE DATASET pa_del.
    ENDIF.
    endform. " delete_files
    <b>reward points if helpful.</b>
    thanks
    vijay

  • Can we do a fresh install of TES 6.2.1 on a new server, but point to an database currently used by the older version (v5.3.x)

    The current database is 2.5 gb, but it is already on SQL Server 2008, and doesn’t need to be upgraded.
    In reading the documentation, it looks like the installer can install a fresh copy, which I’m assuming creates the requisite tables in the database.  It can also update an existing install, along with updating the database table structure.  What we weren’t sure of was if it could do a fresh install on a new server, but point to an database currently used by the older version of tidal.  It does say ‘The database modifications are performed when the master is first started after the installation.’ in the upgrade section of 6.2.1 Quickstart Page 6-5.  Hopefully that works regardless of if it was an upgrade or a fresh install.

    We worked with one of their partners gssinfotech to create a custom runbook for "upgrade in place"
    I think you might have to go to SQL2012 with 6.2.1 (there's a ton of benefits like always on that make BCP/DR with Tidal very smooth.) We've been Tidal 6 /SQL2012 for a while now so I forget. we're about 80% done with our 5.3.1 conversion
    We restore our 5.3.1 admiral database to a sandbox SQL2012 server, run some cleanup script (if not upgrade in place, don't forget to set queue to zero and disable all jobs)
    We installed a tidal Master then run every major rev and point to that database. (6.0,6.1,6.2,6.2 sp1)
    The database gets upgraded during the process (we have some trouble with our "older" 531 so we do the same thing each time)
    We then can use transporter to transport "legacy" 531 jobs to our pristine Tidal 6.2.1 (non-prod ) environment so we can take advantage of mapping files, etc. to switch things as needed
    This gives a lot of flexibility to moving things in when one piece or job set at a time.. we use it to move job frameworks into nonprod Tidal 6 so that developers and other groups can review / asses / rewrite / test /  their jobs on tidal 6.
    Marc

Maybe you are looking for