SRID  and  new feature - ScaleBar

Question #1
================================================
How does ScaleBar calculate its length in meters?
Where it takes SRID for this calculation?
Assuming we have two points
Point A:
latitude 37.538476361386145 degrees
longitude 55.66146534653465
Point B:
latitude 37.53901472772277
longitude 55.66146534653465
When i issue SQL query to Oracle Spatial:
select SDO_GEOM.SDO_LENGTH(MDSYS.SDO_GEOMETRY(2003,8192,NULL, MDSYS.SDO_ELEM_INFO_ARRAY(1,1003,1),MDSYS.SDO_ORDINATE_ARRAY(37.538476361386145,55.66146534653465,37.53901472772277,55.66146534653465 )),0.0005,'unit=M') from dual
It returns that there are about 33 meters between this points. When i looking on the map - it seems to be true.
But Scale bar on the same map request says that there are 60 meters between these two points!
Question #2
==============================================
In mapViewerConfig.xml we have an option
rendering allow_local_adjustment="true"
Previous version of MapViewer have been correctly transforming base image theme according their SRID.
New version of MapViewer seems to be render my image theme in rectangular projection and do not take into account that on this latitude: 1 degree of longitude twice smaller than 1 degree of latutude.
As a result i have output image doubled by horisontal axis. And I don`t know how to make MapViewer render my image correctly :(
Setting up rendering allow_local_adjustment="false" reveals absolutely no difference in output :(
Can someone help me with this issue? I have all my map improperly transformed by horisontal axis and it looks very terrible ....
May be first issue with Scale bar someway connected with second issue with incorrect horisontal transformation?

Well, Im summarizing my two questions:
1) Problems with Scale Bar length - it displays twice longer than distance obtained through SDO_GEOM.SDO_LENGTH function.
2) Problem with incorrect horizontal scaling of my map image in 11 version of MapViewer (rendering allow_local_adjustment="true")
and I will try to explain what I`m exactly doing concerning second question
Test Data:
1) I have all my spatial tables, and metadata views (user_sdo_geom._metadata) converted to SRID 8307 now. Rebuild all indexes.
2) I have EMPTY USER_SDO_MAPS and USER_SDO_THEMES tables , coz I`m usually using only dynamic themes.
GEO_RASTER table contains one square image (width=1064 and height=850 in pixels)
MBR = MDSYS.SDO_GEOMETRY(3,8307,NULL, MDSYS.SDO_ELEM_INFO_ARRAY(1,3,1), MDSYS.SDO_ORDINATE_ARRAY(37,5368,55.6597, 37.5408,55.6615))
==================================================================
TEST #1 ( MapViewer 10, allow_local_adjustment = true, dynamic image theme)
Server startup output
06/04/06 10:12:33 WARN [oracle.lbs.mapserver.core.MapperConfig] SDOVIS local adjustment on geodetic data: ON.
Adding only one image theme to map request without specifying “master” SRID
mv.deleteAllThemes();
mv.addImageTheme(
"devtest4030",
"image_theme_test",
"SELECT BASEMAP,GEO FROM geo_raster",
"BASEMAP","GEO","GIF", "8307",false);
mv.run();
<map_request
datasource="devtest4030"
width="463"
height="404"
bgcolor="#a6caf0"
antialiase="true"
format="JAVA_IMAGE_COMPRESSED">
<center size="0.0025">
<geoFeature>
<geometricProperty typeName="center">
<Point>
<coordinates>37.5383,55.6605</coordinates>
</Point>
</geometricProperty>
</geoFeature>
</center>
<themes>
<theme name="image_theme_test">
<jdbc_image_query
image_column="BASEMAP"
image_mbr_column="GEO"
image_format="GIF"
jdbc_srid="8307"
datasource="devtest4030"
asis="false">SELECT BASEMAP,GEO FROM geo_raster </jdbc_image_query>
</theme>
</themes>
</map_request>
Test result: Redering OK. I receive correct map image. No horizontal distortion.
==============================================================
TEST #2 (MapViewer 10. , allow_local_adjustment = FALSE, dynamic image theme)
Same as above but allow_local_adjustment = FALSE
Test result: I`m observing horizontal distortion of map image. Width of image nearly twice bigger than height.
==============================================================
TEST #3 (MapViewer 10, allow_local_adjustment = FALSE, dynamic image theme, master SRID)
Now in addition to TEST #2 I try to set up projected CS as was recommended by lqian.
mv.deleteAllThemes();
mv.setMapRequestSRID(32771);
mv.addImageTheme(
"devtest4030",
"image_theme_test",
"SELECT BASEMAP,GEO FROM geo_raster",
"BASEMAP","GEO","GIF", "8307",false);
mv.run();
I received error in server output:
06/04/06 10:34:38 INFO [oracle.sdovis.theme.itp] [ImageTheme] query: SELECT * FROM ( SELECT BASEMAP,GEO FROM geo_raster) WHERE MDSYS.SDO_FILTER(GEO, MDSYS.SDO_GEOMETRY(2003, 8307, NULL, MDSYS.SDO_ELEM_INFO_ARRAY(1, 1003, 3),MDSYS.SDO_ORDINATE_ARRAY(37.53599183168317,55.65925,37.54060816831683,55.66175)), 'querytype=WINDOW') = 'TRUE'
06/04/06 10:34:39 INFO [oracle.sdovis.DBMapMaker] **** time spent on loading features: 937ms.
06/04/06 10:34:40 INFO [oracle.sdovis.DBMapMaker] **** time spent on rendering: 219ms
06/04/06 10:35:55 INFO [oracle.sdovis.SRS] loadding SRS information from MDSYS.cs_srs (srid=32771).
06/04/06 10:35:55 WARN [oracle.sdovis.util.Util] Exception while transforming input MBR: java.sql.SQLException: ORA-13300: Single point transform error
ORA-06512: at "MDSYS.SDO_CS", line 23
ORA-06512: at "MDSYS.SDO_CS", line 43
06/04/06 10:35:55 ERROR [oracle.sdovis.theme.itp] Conversion of SRIDs returned null.
06/04/06 10:35:55 INFO [oracle.sdovis.DBMapMaker] **** time spent on loading features: 141ms.
Map Request:
<map_request
datasource="devtest4030"
srid="32771"
width="463"
height="404"
bgcolor="#a6caf0"
antialiase="true"
format="JAVA_IMAGE_COMPRESSED">
<center size="0.0025">
<geoFeature>
<geometricProperty typeName="center">
<Point>
<coordinates>37.5383,55.6605</coordinates>
</Point>
</geometricProperty>
</geoFeature>
</center>
<themes>
<theme name="image_theme_test">
<jdbc_image_query
image_column="BASEMAP"
image_mbr_column="GEO"
image_format="GIF"
jdbc_srid="8307"
datasource="devtest4030"
asis="false">SELECT BASEMAP,GEO FROM geo_raster</jdbc_image_query>
</theme>
</themes>
</map_request>
Test Result: Error during transformation to projected coordinate system
==================================================================
TEST#5 (MapViewer 10, predefined theme)
Now I`m adding one predefined image theme
<?xml version="1.0" standalone="yes"?>
<styling_rules theme_type="image" image_column="BASEMAP" image_format="GIF" image_resolution="2" image_unit="M">
<rule >
<features style=""> n = 2 </features>
</rule>
</styling_rules>
And trying to add it on my map
mv.deleteAllThemes();
mv.addPredefinedTheme("D2292C6");
mv.run();
Then I tried all Tests #1 - #4 with predefined theme. Results absolutely same as for dynamic theme.
==================================================================
TEST #6 (MapViewer 11)
Now I`m tried all above tests with MapViewer 11 version.
Tests Result:
1) When Im trying to set up projected CS (master SRID) – I receive similar error as in Test #3.
2) Without trying to set up master SRID I cannot receive not distorted image.
Generated image width twice bigger than height with any value of allow_local_adjustment
As I mentioned above the size of one degree of latitude two times bigger than size of one degree of longitude (at 55 degree North latitude).
May be this is the reason why MapViewer transform original map image stretching it by horisontal axis.
My main question is How I can receive correct map picture wich takes into account differencies in sizes of 1 degree latitude and longitude?

Similar Messages

  • Ask the Expert: Cisco Unified Contact Center Express (UCCX) Version 10.0 - Upgrade, Migration, and New Features Overview

                With Abhiram Kramadhati 
    Welcome to the Cisco Support Community Ask the Expert conversation. This is an opportunity to learn and ask questions about the upgrade, migration methods, and new features of the latest released Version 10.0 of Cisco Unified Contact Center Express (UCCX) with Cisco expert Abhiram Kramadhati.
    Abhiram will address the following on the latest release of Cisco UCCX Version 10.0:
    Installation
    Upgrade from previous versions - both Linux and Windows   
    Migration from MCS to Cisco UCS environment - Different methods and best practices
    New features - Overview and limitations
    This discussion will center on install and upgrade best practices, changes in hardware support, and migration methods from MCS to Cisco UCS. He can also briefly discuss the new features introduced in 10.0. The discussion focuses the latest versions, but queries about general Cisco UCCX topics can be addressed too if time allows.
    Abhiram Kramadhati is an engineer with the Contact Center Backbone group. He has been working with Cisco UCCX since he joined Cisco. During two years at Cisco, he has built his expertise around Cisco UCCX telephony applications, Java Telephony API (JTAPI) integration, Cisco UCCX system behavior, LDAP components, and Cisco UCCX as IP interactive voice response in Unified Contact Center Enterprise (UCCE) environments. He also works on other technologies, including Unified Communications Manager and UCCE. He has been involved in many technical escalations in the Asia Pacific region. Abhiram also holds a CCIE in voice (40065).
    For more details about this topic, refer to the recently published Tech-Talk Video and Blog.
    Remember to use the rating system to let Abhiram know if you have received an adequate response. 
    Abhiram might not be able to answer each question due to the volume expected during this event. Remember that you can continue the conversation in the Voice, Video, and Collaboration  community,  sub-community, Contact Center discussion forum shortly after the event. This event lasts through January 31, 2014. Visit this forum often to view responses to your questions and the questions of other community members.

    Hi Anurag,
    Thanks for your questions.
    1:Is there change in DB architecture as CUIC is the only option as compared to previous linux version UCCX ?
    I assume this is from the tables regarding historical data. The database schema essentially remains the same since UCCX 9.0 had CUIC too and we had a seperate DB Space for CUIC and we still continue with that. The traditional historical tables remain and the replication process remains the same too.
    2:Is there any version change for Linux OS used as VOS,
    The Linux version is Red Hat Linux 5. To be precise:
    [root@uccx10pub /]# cat etc/redhat-release
    Red Hat Enterprise Linux Server release 5.7 (Tikanga)
    3:Is there any API architecture change in UCCX 10 from previous releases ?
    I can answer this more of an overview. The only enhancement in the API side is the introduction of REST API step in the script editor. You can now make REST calls from the script and this ofcourse opens up a whole new world of possiblities.
    4:Since from UCCX 10 , we can only use either CAD or Finnesse at one  time, whats the impact of changing this after some time in production,  let say , i used CAD for 2 months and then i decided to move to Finesse,  whats the impact ? or is it a smooth change as switching CUIC and HRC  in previoius release ?
    For the scenario you mentioned, there is absolutely no problem. The point to note is that the Finesse services are activated/deactivated but the CAD desktop services are ALWAYS running. The only condition to keep in mind is that you can use ONLY ONE type of agent desktop at any time.  Also if Finesse is not used and CAD operations are used extensively, it is advisable to shutdown the Finesse service.
    5:Is 3rd Party UCS hardware supported by UCCX 10 instead of using Cisco manufactured UCS , can i use HP hardware for Virtualisation ?
    Yes, it can be used. This is something called as "Third party specs based specification". The most important things seen for compatibility are:
    Inter CPU Model
    It it is on thVMWare Hardware Compatibilty List
    You can get more information about this on the "Can I use this server?" section of UC Virtualized Hardware page:
    http://docwiki.cisco.com/wiki/UC_Virtualization_Supported_Hardware#.22Can_I_use_this_server.3F.22
    6:Is Host name change supported?
    Yes, the hostname change is supported. The prcocedure is documented in the UCCX 10.0 Administration Guide:
    http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/crs/express_10_0/configuration/guide/UCCX_BK_W1AF9DDD_00_uccx-admin-guide-10.0.pdf (Pg 168)
    Cheers,
    Abhiram Kramadhati

  • I just downloaded the new Firefox 4, rebooted, and viewed you videos re the new look and new features. Problem is, my toolbars look no different than before. The new icons you talk about do not appear on my screen. Please advise. Thank you.

    I just downloaded the new Firefox 4, rebooted, and viewed your videos re the new look and new features. Problem is, my toolbars look no different than before. The new icons you talk about do not appear on my screen. Please advise. Thank you.

    The Firefox icon is the default feature for Windows Vista and 7 only, it does not apply to Windows XP users.
    To have the Firefox icon instead of the Menu Bar:
    View > Toolbars and UNCHECK the Menu Bar.
    After that, click on the Firefox icon and you'll have the Menu Bar appear again.
    http://support.mozilla.com/en-US/kb/Menu%20bar%20is%20missing

  • Enhancement and new features available in AFS 6.0 in reference to AFS 5.0?

    Hi Experts,
    Please can you explain what are the Enhancement and new features available in AFS 6.0 in reference to AFS 5.0

    Hi Mithun,
    Following are the details you needed.
    Enhancement and new features available in AFS 6.0 wrt AFS 5.0
    AFS Interface
    AFS GTS Master Data Integration - IS-AFS-INT-GTS (New)
    As of SAP AFS 6.0, you can integrate the SAP Global Trade Services 7.1 (SAP GTS 7.1) master data to the AFS data.
    AFS Retail Integration (Change)
    As of SAP AFS 6.0, the integration of Apparel and Footwear Solution (AFS) with Retail has been
    Enhanced by the following functions:
    u2022     One SAP Retail Logical system is mapped to multiple Customers in SAP AFS system, which ensures that each Customer can be mapped to a different purchase organization.
    u2022     You can maintain the retail merchandise category in the AFS material master for each retail logical system.
    u2022     The variant numbers created in the retail for the article (material in AFS) have the number with the category and grid combination. A new BADI method is used to allow the user to change the variant numbering as required.
    u2022     The material type of the generic article created is the same as the AFS material. A new BADI method is used to set the material type of the article as required.
    Quality Management (IS-AFS-QM)
    Enabling QM for Goods Receipt (GR) Process for AFS (New)
    As of SAP AFS 6.0, you can activate the inspection type at material level and control the inspection lot creation at stock keeping unit (SKU) level during the goods receipt process.
    Additionally, during posting of quality inspection stocks, you can directly post stock of one SKU to unrestricted stock of another SKU.
    Basic Data (IS-AFS-BD)
    Commodity Codes at the SKU Level (New)
    As of SAP AFS 6.0, you can maintain commodity codes at the SKU level in the material master. A new relevancy Global Trade Services (GTS) is allotted to the characteristics attached to the grid and categories. If this new relevancy is set then the commodity codes can be assigned at the SKU level. You can also assign commodity codes of different countries other than the country in which the plant is located.
    The AFS material master IDoc and BAPI have been enhanced to handle commodity codes at the SKU level.
    Material Master Enhancements (New)
    As of SAP AFS 6.0, the following enhancements have been made in the material master:
    u2022     You can maintain commodity codes at the stock keeping unit (SKU) level.
    u2022     You can maintain the retail data merchandise category and characteristic profile at the material master level. This is used to create article in retail.
    u2022     You can maintain quality management (QM) inspection type at SKU level.
    u2022     You can enable Seasons for inventory management (IM).
    Materials Management (IS-AFS-MM)
    Seasonality Roundoff - Inventory Management-(New)
    As of SAP AFS 6.0, season functionality is extended to Inventory Management (IM). This enables you to gain an overview of material movements during each season. You can maintain stocks for different seasons separately. To enable this functionality, you have to activate the Season Active in IM indicator for a material in the material master. This indicator can be set only for materials created in AFS 6.0. If the season is maintained for an SKU in the material master, you can obtain season information for the SKUs in batches, in material movement documents and in stock tables.
    Also, as of AFS 6.0, you cannot set the Season Fixed indicator for new materials. However, for old materials (materials created in AFS 5.0 with Season Fixed indicator) the behavior remains the same.
    Stock Selection Available in Transaction MIGO (New)
    As of SAP AFS 6.0, the goods movement transaction MIGO has been enhanced with Stock Selection for AFS materials. Goods movement here implies only goods issued/transfer postings without document reference.
    Consumption of PIRs by TPO, MTO and PTO (New)
    As of SAP AFS 6.0, the Consume PIR Customizing indicator at sales and distribution (SD) item category level enables special orders like TPO (third-party order), MTO (make-to order) and PTO (purchase-to order) to consume normal planned independent requirements (PIRs).
    IS-AFS-MM-PUR Purchasing
    Purchasing BAPIs (Change)
    The interface of the purchase order (PO) BAPIs mentioned below have been enhanced with optional parameters to handle the AFS data.
    Purchase order BAPIs
    u2022      AFSPurchaseOrder.GetDetail1 (BAPI_PO_GETDETAIL1)
    u2022     AFSPurchaseOrder.Change (BAPI_PO_CHANGE)
    u2022     AFSPurchaseOrder.CreateFromData1 (BAPI_PO_CREATE1)
    Purchase Requisition BAPIs
    u2022     PurchaseRequisition.CreateFromData (BAPI_REQUISITION_CREATE)
    u2022     PurchaseRequisition.Change (BAPI_REQUISITION_CHANGE)
    u2022     PurchaseRequisition.Delete (BAPI_REQUISITION_DELETE)
    Contract BAPIs
    u2022     PurchasingContract.Change (BAPI_CONTRACT_CHANGE)
    u2022     PurchasingContract.Create (BAPI_CONTRACT_CREATE)
    u2022     PurchasingContract.GetDetail (BAPI_CONTRACT_GETDETAIL)
    Production planning and control IS-AFS- PP
      Manufacturing (IS-AFS-PP-MAN)
    BAPI for Bill of Material (BOM) Maintenance (New)
    As of SAP AFS 6.0, you use this BAPI (AFSMaterialBOM.AFSMatBomMaintain) to maintain a material BOM. You can also use this BAPI for the following functionalities:
    u2022     Creating a standard or AFS BOM
    u2022     Changing a standard or AFS BOM
    u2022     Updating a quantity distribution profile for AFS BOM components
    u2022     Maintaining SKU deviation quantities or zero quantities (if relevant) for AFS BOM components
    u2022     Maintaining categories (if relevant) for AFS BOM components
    Transaction for Grouping PO using Combined Order Number (New)
    BAPIs for AFS Planned Orders - Create, Change and Get Details (Change)
    BAPI for Production Orders - Create, Change and Get Details (Change)
    Production Planning (IS-AFS-PP-PPL)
    Consumption of PIRs by TPO, MTO and PTO (New)
    As of SAP AFS 6.0, the Consume PIR Customizing indicator at sales and distribution (SD) item category level enables special orders like TPO (third-party order), MTO (make-to order) and PTO (purchase-to order) to consume normal planned independent requirements (PIRs).
    Sales and Distribution (IS-AFS-SD)
    BADI for Contract Selection (New)
    As of SAP AFS 6.0, you can use this BADI to filter contracts for display when a sales order is created without giving reference to the contract, and when there are open contracts for the material. This functionality is also available for the sales order created by IDocs.
    BAPI for AFS Material Availability (New)
    you can use this BAPI method MaterialAFS.AFSAvailabilityCheck (/AFS/BAPI_MAT_AVAILABILITY) to determine the available quantity for an AFS material in a certain plant according to ATP (available-to-promise) logic.
    Consumption of PIRs by TPO, MTO and PTO (New)
    As of SAP AFS 6.0, the Consume PIR Customizing indicator at sales and distribution (SD) item category level enables special orders like TPO (third-party order), MTO (make-to order) and PTO(purchase-to order) to consume normal planned independent requirements (PIRs).
    Display of Allocated Quantities (New)
    As of SAP AFS 6.0, you can find the allocated quantity information of the contract in the Contract Reference Overview screen.
    BAdIs in Mass Document Change MDC (New)
    The following NEW Business Add-Ins (BAdIs) are provided:
    u2022     BAdI for adding custom selection fields in MDC (/AFS/MDC_SELECT_CUSTOM_FIELDS) -You use this BAdI to implement your business process-specific logic in selecting data in mass Document Change transaction (/AFS/MDC).
    u2022     BAdI for adding custom change fields in MDC (/AFS/MDC_CHANGE_CUSTOM_FIELDS) -You use this BAdI for implementing your business process-specific logic in changing custom fields data in transaction /AFS/MDC.
    u2022     BAdI for adding custom fields to the Adjust Update tab in MDC (/AFS/MDC_ADJ_UPD_CUSTOM_FIELDS) you use this BAdI to implement custom processes that are specific to your business scenario.
    Condition Table Display (Change)
    As of SAP AFS 6.0, in transaction J3A9 it is possible to display condition tables for value-added service(VAS) and multi-store order (MSO) condition types beyond the existing limit of 19 condition tables. The Conditions Info display in transactions J3A4 and J3AN can be viewed in an ALV list.
    AFS Sales and Distribution (SD) IDOCS
    As of SAP AFS 6.0, the function modules J_4A_IDOC_INPUT_ORDERS and J_4A_IDOC_INPUT_ORDCHG are not supported. The standard function module IDOC_INPUT_ORDERS are used instead J_4A_IDOC_INPUT_ORDERS and standard function module IDOC_INPUT_ORDCHG are used instead of J_4A_IDOC_INPUT_ORDCHG. There is no change in the IDOC type /AFS/ORDERS05 which is presently used to create/change sales orders. Accordingly, you must use inbound process code ORDE for message type ORDERS and inbound process code ORDC for message type ORDCHG.
    Supporting the Change of Single Characteristic (New)
    As of SAP AFS 6.0, you can use transaction /AFS/MDC, to select sales documents by specifying a single characteristic name and value range in the same ways as you select sales documents by specifying grid value.
    Partial Quantity Reductions in Sales Order (New)
    As of SAP AFS 6.0, you can find the quantity changes done for a schedule line from the sales order screen itself without navigating to the change logs. This is possible only when you reduce the quantity of a schedule line.
    Allocation Run (IS-AFS-ARUN)
    Seasonality Roundoff - Allocation Run (New)
    As of SAP AFS 6.0, season functionality is available in the allocation run (ARun) to ensure the season information is considered while creating assignments, and to cause deallocation as per the settings in the deallocation rule on change in season information in the future receipts, sales order or while performing goods receipt (GR). This functionality is available only with online ARun.
    BAPI for Individual Allocation and/or Deallocation
    As of SAP AFS 6.0, you can use the BAPI /AFS/BAPI_INDIVIDUAL_ARUN to handle allocation/deallocation of specified sales order quantities for single or multiple orders. This enables you to make:
    u2022     New allocations
    u2022     Allocations from a particular storage location/batch number
    u2022     Allocations for a quantity less than equal to the requirement quantity
    u2022     Deallocations for a quantity less than equal to the requirement quantity
    u2022     A total deallocation
    Hope it helps.
    Regards,
    Anirban Roy

  • Demonstrations and new features videos

    Hi,
    First thanks for this great SQL tools and the new 3.1 final version.
    I just tried to have a look to the demonstration and since these have been moved to youtube i can't have access to them. My employer block all traffic to youtube server.
    My questions:
    --Is it official that Oracle will publish all videos related to SQLDeveloper or others products on the youtube infrastructure? (or it is a momentary test)
    --Can we access these videos elsewhere  (or i have to check them from home)?
    --Is it possible for my IT to give access only to Oracle stuff on youtube site?
    Thanks again for the great work
    Hugo

    Hi,
    First thanks for this great SQL tools and the new 3.1 final version.
    I just tried to have a look to the demonstration and since these have been moved to youtube i can't have access to them. My employer block all traffic to youtube server.
    My questions:
    --Is it official that Oracle will publish all videos related to SQLDeveloper or others products on the youtube infrastructure? (or it is a momentary test)
    --Can we access these videos elsewhere  (or i have to check them from home)?
    --Is it possible for my IT to give access only to Oracle stuff on youtube site?
    Thanks again for the great work
    Hugo

  • What is new and updated features in SharePoint 2013 ? Looking example in details about all.

    Hi,
    Any help?
    Thanks
    srabon

    Hi,
    SharePoint Server 2013 includes a wide variety of improvements and new features. Such as:
    Support the tools designers use: Flexibility in Branding
    Offline and Sync of My Site 
    Search Engine Optimization & Analytics is in Search
    Content Search Web Part
    Optimized mobile browser experience
    Rich Workflows
    Development gets more familiar
    New App Model
    Shredded Storage
    Social Features: Activity feeds
    Reference the following article:
    SharePoint 2013 Top 10 New Features
    What’s
    new in Microsoft SharePoint Server 2013
    Also a good book 
    by  you can have a look:
    Exploring
    Microsoft SharePoint 2013: New Features & Functions  
    Best Regards,
    Lisa Chen
    Lisa Chen
    TechNet Community Support

  • Is there a roadmap for Edge Animate for new features and releases in the future?

    where can i found a roadmap for the next releases of Edge animate and new features?

    Hi tsiky64,
    I think you might need to check the screen shot attached: Tech specs | Adobe Reader XI
    To download other version of Reader you may visit : Acrobat-Reader Enterprise Toolkit Home
    Regards,
    Ajlan Huda.

  • What are the New features in OBPM in performance, integration & dev level

    Hi,
    Could someone help me
    I would like to know what are the new features in Oracle BPM that will improve the performance of appln,
    and new features in integration and development level.Thanks in advance.

    Hi,
    The information can be found in Release Content Documents (RCD) Published by Oracle.
    Please refer metalink note 404152.1 ... download "Customer Relationship Management Family RCD (zip, 3.2 MB)"
    You will find istore specific details in r12_mkt_sales_rcd.zip
    Thanks,
    Hrishi

  • HT201365 New update  & new features for Iphone  in iOS7

    I dont like the new update and new features at all.  How can i go back to the old feature?

    There is no supported way of downgrading to previous iOS versions. However you may Gogole alternative ways of doing it but know that you are on your own and if something goes wrong in the downgrade process your warranty may be voided and Apple will not offer any support for it.
    We cannot discuss how to downgrade here due to the Terms of service of these forums, but google should offer lots of hits for it currently.

  • Forms 11g New Features Presentation PPT

    Folks,
    I am searching for Jan Carlin's Forms 11g New Features presentation PPT.
    It seems that the Forms section on ias.us.oracle.com has broken links to the stcontent.
    Could you please send it or tell me where I can get it?
    Please send this response also directly to me.
    Thanks,
    Gustavo.

    Gustavo,
    Your reference to ias.us.oracle.com is an internal address and will not be accessible from outside of Oracle. Are you an Oracle employee and are looking for this content internally?
    Publicly available information about Forms 11 and new features can be found on the tech listing page for Forms:
    http://www.oracle.com/technetwork/developer-tools/forms/overview/index.html

  • ALSB 2.5 features and ALSB 2.6 features & differences and porting features

    ALSB 2.5 features and ALSB 2.6 features & differences and porting features?:8}

    Migration features for ALSB 2.6. and new features in 2.6 Please refer to the documentation:
    http://e-docs.bea.com/alsb/docs26/upgrade/
    http://e-docs/alsb/docs26/relnotes/relnotes.html#whatsnew
    Gregory Haardt
    ALSB Prg. Manager
    [email protected]

  • Ios 5 Update New Features says that iCal now has a week view for iPhone but after updating last weekend, I don't see any week view--just List, Day and Month..How do I get the week view?

    ios 5 Update New Features says that calendar now has a week view but after updating my iPhone 4 last weekend, I don't see any week view for iCal--just List, Day and Month as in the past. Is the weekly view available for iCal and if so, how do I access it?

    Rotate your phone to landscape.

  • New Features and Improvements for CS6

    IMPORTANT:
    By default, Photoshop comes with the Proofing Colors (Cmd/Ctrl+Y) activated and set to CMYK. Adobe must warn about that, because I was editing a large amount of pictures for work and I was doing it under that color profile/work space.
    LAYERS PANEL:
    Layer Adjustments:
    Solid Color: visual feedback in real time.
    Gradient: IDEM as above.
    Pattern: IDEM as above.
    Gradient Map: IDEM as above.
    Gradient Editor: IDEM as above.
    Opacity and Fill: IDEM as above.
    Curves and Levels: Ability to load alfa channels. This way, the adjustments made on the alfa channel won't be destructive.
    CHANNELS PANEL:
    Channel Luminosity Selection:
    Ability to add and subtract from the selection.
    Ability to designate an area to be selected.
    For point 1, by using the shortcut Cmd+Alt+[number] the luminosity of a channel is loaded as selection. With Cmd+Alt+Shift+[number], the selection grows. But there is no way to subtract from selection (unless by clicking with the mouse on the channel's thumbnail). I think that can be solved by using Cmd+Alt+Shift+[- or +] in order to subtract or add from selection.
    Point 2 maybe even more important than point 1, because it allows selecting a designated area by the user, instead of the default luminosity selection, which ranges from 50% of the mid tones to the highlights (or shadows, if the selection is inverted). The user should be allowed to select the starting and finishing points of the luminosity selection.
    I thought 2 ways for solving these issues (and making it more intuitive and faster):
    A) By using the Histogram Panel, by dragging and highlighting an area on it, that it should load the selected luminosity pixels as a selection, as shown in figure 1:
      figure 1
    So the result of doing that will be a selection based on the area of the histogram that have been highlighted.
    B) By creating a new Adjustment Layer:
    It can be based in the same structure of the HUE Adjustment Layer, like figure 2 shows:
    Figure 2
    Or it can be this way (much better). Figure 3:
    Figure 3
    The selection can also be controlled by using the Click and Drag as suggested in the figure 1, as shown in the figure 4:
    Figure 4
    The overlaid highlighting over the histogram can be functional or just a mere graphic representation of the Range and Fade Selector. The "Fading" areas should be also be draggable in order to increase smooth the selection. However, the smoothing can be much better done with the Refining Selection tool and it can be ignored from this new tool.
    In any of these cases, the adjustments should give real time feedback when growing or shrinking selection; we must see the selection going bigger or smaller and also, the highlighted area should be draggable as well.
    TOOLS PANEL:
    Brush: detect edges while painting on masks (for manual mask refining. It would work similar to the Replace Color Brush, but only for masks and alfa channels). It also needs a shortcut to set the opacity.
    Dodge & Burn: Protect Tones should be allowed when painting on masks or alfa channels (for manual mask refining). D&B can also use edge detection as well.
    FILTERS:
    Some of them, like the ones involving Blur or the High-Pass and the Unsharp Mask filter, should work in real time (these ones, at the least).
    It can also added a Particle Generator Filter.
    It would be really nice having the ability to create particles such as dust, fog, rain, snow, etc in a more realistic manner than just the scattering function from the Brush Palette, or by mixing different filters with different blends. The Particle Generator should have an slider to control the depth of field, so it will give a feeling of depth and also, a way to load masks, so that way, the particles can exists before the image and also, behind. It would be great for creating a nice feeling of depth (kind of a bokeh effect).
    I've been playing with After Effect few times, and the way to create shapes and forms from nothing is the way of easier than in Photoshop.
    TIME LINE:
    I think it's time give dynamism the filters applied to a movie clip, and also, dynamics to the fade effects, like it happens in After Effects by adding Bezier Curves.
    HISTOGRAM:
    It should be possible to zoom in into the histogram, for a more precise feedback and analysis of the image tonal values.
    ADDITIONAL FEATURES:
    The fade tool should work in real time.
    Loupe/Magnificator View:
    This is very useful when it comes to edit and image in detail, with a lot of zoom, like 3200%. Unfortunately, Photoshop doesn't provide a real time feedback in an additional window, such as the Window/Arrange/New Window For […].
    It would be really useful having a window showing the image at fit on the screen while working on the other window at 100% or 3200% of zoom, but in real time. This way, you can see if you're doing a good job on the pixels or, if you're overdoing it.
    It happens that, when working with big images at 100% of the image size (or more), the brain cannot figure out how is looking the whole image, so having a realtime feedback in the other window would help a lot for detailled work.
    And why not, ading the same real time structure descrived above but to the Navigator, for faster and lighter use of the hardware capabilities. Probably, adding a check box to the navigator that blocks it to a given zoom, so when zooming into the image in the navigator, the image shown in the window isn't magnified too.
    Give me a chance to show you some examples of what I have done by improvising particles and fog about 5 years ago:
    http://mart1980.deviantart.com/gallery/5027033#/d1m119x
    And what I did 7 years ago by manually, selecting different shades of gray and using just Levels for 8 hours (which coule be done faster and easier with another tool I thought, which I will post later):
    I cannot post examples of the other features I'm suggesting because there are not such new features yet (I would have to create an hipothetical enviroment, but I think, you can fiure it out in your mind).
    Unfortunately, I don't know programing, even though, I tried something with Filter Factory, achieving good results, but that pluging consumes too much resources and/or is bad designed/have not the right tools for certain things.
    Hope this post is enough worthy of the Adobe's attention.
    Thanks,
    س

    This is a poorly explained reason about why is so important having a loupe in Photoshop. I've not also, used the best example, but I will. This belongs to the ADDITIONAL FEATURES: Loupe/Magnificator View:. Also, I will try to make my english clrearer, but here it goes:

  • What is the significance of the new feature in discussion forum as Kudos and other things recently started?

    Hi,
    I just want to know about the significance of new features started in Forums as KUDOS.
    What to do with this and how it help someone in getting solution for his query.
    Thanks & Regards,
    Samriddh Sarbalhi
    Solved!
    Go to Solution.

    Take a look at these threads:
    http://forums.ni.com/ni/board/message?board.id=130&thread.id=5309
    http://forums.ni.com/ni/board/message?board.id=130&view=by_date_ascending&message.id=5492#M5492

  • New Features for UPK with PeopleTools 8.53 and PeopleSoft 9.2

    Hello,
    does anyone know, where I can find information about the effect or new features PeopleTools 8.53 and PeopleSoft 9.2 have especially for UPK 11.0.0?
    I've searched a lot, but couldn't find any information of new features or changed integration of UPK in PeopleSoft according to the Upgrade.
    Thanks for your help.

    Support for PeopleTools 8.53 and PeopleSoft 9.2 are planned for UPK 11.1 ESP 2.
    Best regards,
    Marc

Maybe you are looking for

  • "The Problem" is IPOD will not connect to windows

    I guess for those people that have not spent the last few days reading these posts I will add that "The Problem" that I am referring to in my previous post is the same one that everyone seems to be having. One of my IPODs was rendered absolutely usel

  • OEM Problem in Communicating with Listener

    Dear all, for some reason, my OEM is corrupted and when it's enabled, it messes up with the listener. I concluded the problem lies in OEM rather than in the listener since I can establish connection between SQLdeveloper and the server via the listene

  • Connect ibook to samsung T190

    Hello, I have connected my samsung T190 to ibook using firewire port. But it looks like that is not suifficient to drive current and I need to connect the female power cable to another desktop computer from where it gets the power. Can someone tell m

  • Getting PL/SQL:ORA-00933 when using CASE logic as a control structure

    Hello Everybody,I have created a PL/SQL block(Control Structure) to calculate bonus of employees based on salary of the employee,but I get errors like ORA-00933 and ORA-06550.Given below is the PL/SQL block which I tried to implement SQL> DECLARE 2 3

  • Coverting a 8 x 11 pdf to a 6 x 9 pdf for publishing

    I have a EPUB pdf which is 8 x 11. I need to convert it to 6 x 9 so I can use it to publish it on Amazon's CreateSpace and Kindle Demand Print. How do I do this?