Skip to main content

Posts

WMS - Dest ID

English Version Em Oracle Retail os armazens ( e outras facilities ) tem um ID unico. Neste caso especifico WMS, o RIB vai mandar informacao especifica para esse armazem. Esse ID , tera que estar no RMS, ficheiro TAFRs , e no WMS. A query em baixo retorma essa informacao , na base de dados do WMS, esse ID. set lines 20 col description a30 col description form a30 set lines 200 select l.facility_id,description,dc_dest_id from transshipment_setup t, facility l where l.facility_id = t.facility_id; Obrigado pela leitura, espero que este post o tenha ajudado. Rogerio Referencias e Mais Info : https://docs.oracle.com/cd/E82085_01/1303/operations_guide/Chapter%207%20-%20Message%20and%20Routing%20(TAFR).htm https://docs.oracle.com/cd/E12456_01/rwms/pdf/141/html/impg/wms-integration.htm

WMS – Dest ID

Versao Portuguesa In Oracle Retail the warehouses ( and other facilities as stores ) have a unique identify. Specific to the WMS, RIB sends/redirects specific information using that ID . That information needs to be in : RMS, TAFRs file and WMS. The bellow query can be used to identify the WMS ID . set lines 20 col description a30 col description form a30 set lines 200 select l.facility_id,description,dc_dest_id from transshipment_setup t, facility l where l.facility_id = t.facility_id; Thank you for reading, hope this post was helpful. Rogerio Futher Reading : https://docs.oracle.com/cd/E82085_01/1303/operations_guide/Chapter%207%20-%20Message%20and%20Routing%20(TAFR).htm https://docs.oracle.com/cd/E12456_01/rwms/pdf/141/html/impg/wms-integration.htm

WLS - is my weblogic / domain cluster ?

Weblogic 11g $find $DOMAIN_HOME -name *.properties | xargs grep IS_CLUSTERED ./user_projects/domains/orwms_sit1/servers/WLS_FORMS/tmp/formsapp/11.1.1/install-plan.properties:IS_CLUSTERED=false ./user_projects/domains/orwms_sit2/servers/WLS_FORMS/tmp/formsapp/11.1.1/install-plan.properties:IS_CLUSTERED=false $find $DOMAIN_HOME -name *.properties | xargs grep IS_CLUSTERED ./user_projects/domains/orwms_0719/servers/WLS_FORMS1/tmp/formsapp/11.1.1/install-plan.properties:IS_CLUSTERED=true ./user_projects/domains/orwms_0718/servers/WLS_FORMS/tmp/formsapp/11.1.1/install-plan.properties:IS_CLUSTERED=true ./user_projects/domains/orwms_0720/servers/WLS_FORMS/tmp/formsapp/11.1.1/install-plan.properties:IS_CLUSTERED=true ./user_projects/domains/orwms_0739/servers/WLS_FORMS1/tmp/formsapp/11.1.1/install-plan.properties:IS_CLUSTERED=true Weblogic 12c # # Other way # grep -i cluster $DOMAIN_HOME/config/config.xml | sort -u </cluster> <cluster> <cluster-constraints-enabled>fal...

WLS - Start Weblogic

Weblogic 11g # # start weblogic # cd $WL_DOMAIN nohup ./startWebLogic.sh & # # start Node Manager # cd $WL_HOME/server/bin nohup ./startNodeManager.sh & Weblogic 12g # # auto login # mkdir -p $DOMAIN_HOME/servers/AdminServer/security echo "username=weblogic" > $DOMAIN_HOME/servers/AdminServer/security/boot.properties echo "password=Welcome0" >> $DOMAIN_HOME/servers/AdminServer/security/boot.properties # #start Node Manager # cd $DOMAIN_HOME/bin nohup ./startNodeManager.sh > ~/startNodeManager.nohup.out 2>&1 & # # start weblogic # cd $DOMAIN_HOME/bin nohup $DOMAIN_HOME/startWebLogic.sh > ~/startWebLogic.nohup.out 2>&1 & # # start MS # nohup $DOMAIN_HOME/bin/startManagedWebLogic.sh soa_server1 http://wls-server:7001 > ~/soa_server1.nohup.out 2>&1 & nohup $DOMAIN_HOME/bin/startManagedWebLogic.sh soa_server2 http://wls-server:7001 > ~/soa_server2.nohup.out 2>&1 & nohup $DOMAIN_HOME/bin/startManaged...