Is there a Maps or GeoTagging module in CS6 like that of Lightroom 4

Is there a Maps or GeoTagging module in CS6 like that of Lightroom 4

No, sorry, there isn't a feature like that in Photoshop or Bridge CS6, you can manually add location data to the image metadata using File > File Info however.
That will at least give an image metadata others could see.
You might also have a look at this blog entry giving some ideas to allow this sort of feature:
http://blogs.adobe.com/cssdk/2010/05/geolocation_inside_the_creative_suite.html

Similar Messages

  • How to lock transaction using function module or something like that

    Hi, all
    I'd like to know the way to lock transacitons using function module or something like that.
    I know this would be possible if calling transaciton SM01, but I want to know other ways like calling function module  (BAPI ) or method.
    Thank you for your cooperation In advance.
    Regards,
    Hideki Kozai

    Hi,
           Try the following FM
    BRF_NETWORK_GRAPHICS           BRF: Network Graphics for BRF Objects
    BRF_INITIALIZE_GRAPHICS_NGR    BRF: Initialize Network Graphics
    BRF_NETWORK_GRAPHICS_NGR       BRF: Network Graphics: Start
    BUSG                           SAP Business Graphics
    GRAPH_2D                       Calling up the 2D business graphics
    GRAPH_2D_MENUE                 DO NOT USE (use 'GRAPH_2D' and 'GRAPH_BUSG_MENU_SET')
    GRAPH_3D                       Calling up the 3D presentation graphics
    GRAPH_BUSG_COLOR_SET           Definition of color pallets for business graphics
    GRAPH_BUSG_MENU_SET            Pushbutton menu (tool bar) for all BUSG modules
    GRAPH_MATRIX                   Calling up SAP Business Graphics (2D, 3D and 4D)
    GRAPH_MATRIX_2D                Calling up the 2D graphics (user-friendly version)
    GRAPH_MATRIX_3D                Structure of 3D graphics (user-friendly version)
    GRAPH_MATRIX_4D                Calling up a 3D graphic (4th dimension stacked representation)
    Regards,

  • Usually there is a upgrade path for current users of the software at a reduced price. I dont see anything like that for Lightroom 6. Will I have to pay full price just to upgrade to the new LR6 standalone version???

    Usually there is a upgrade path for current users of the software at a reduced price. I dont see anything like that for Lightroom 6. Will I have to pay full price just to upgrade to the new LR6 standalone version???

    The standalone upgrade is 79 US Dollars.
    Go to Products, select Lightroom 6, click on Buy, select Upgrade instead of Full

  • Is there any BAPI or function module  to delete entries from a table (VBAK)

    Hi Everybody,
    this is my first thread in SDN...
    my problem follows...
    A report is be created that selects all sales orders created by e-Sales that are more than 20 minutes old and still have a delivery block:
    tables:
    VBAK     sales document: header data
    selection fields:
    VBAK-LIFSK      &#8800;     <BLANK>
    VBAK-ERNAM     =     userID used by e-Sales / IVE
              (EP-BATCH / EAI-BATCH)
    VBAK-ERDAT      <=     Current system Date
    VBAK-ERZET     <=     Current system Time - 20 minutes
    These orders should be deleted from SAP system.
    This report should be scheduled to run regularly every 10 minutes.
    my doubt : is ther any BAPI or Function module to delete entries from a standard table...if no what is the way to delete the enteries from a std table...
    best replies will be rewarded....
    regards
    Reddy

    Hi Vasanth ,
    thanks for your reply.
    i tried in the same manner what u mentioned.
    but how to pass only one parameter to the functionmodule..
    here in this case we have to pass only update flag as 'D'..
    i did the same it giving dump..
    An exception occurred that is explained in detail below.                          
    The exception, which is assigned to class 'CX_SY_DYN_CALL_ILLEGAL_TYPE', was      
      not caught and                                                                   
    therefore caused a runtime error.                                                 
    The reason for the exception is:                                                  
    The call to the function module "BAPI_SALESORDER_CHANGE" is incorrect:                                                                               
    In the function module interface, you can specify only                            
    fields of a specific type and length under "ORDER_HEADER_INX".                    
    Although the currently specified field                                            
    "INT_ORDER_HEADER_INX" is the correct type, its length is incorrect.              
    my pgm :
    *& Report  YNEW_ORDER_DELETION
    REPORT  ynew_order_deletion.
    TABLES:vbak.
    PARAMETERS:
         p_lifsk LIKE vbak-lifsk DEFAULT '02'.
    SELECT-OPTIONS:
       s_lifsk FOR vbak-lifsk DEFAULT '10',
        s_ernam FOR vbak-ernam,
        s_erdat FOR vbak-erdat,"DEFAULT sy-datum.
        s_erzet FOR sy-uzeit.
    *PARAMETERS:
    p_erzet LIKE sy-uzeit.
       s_erdat like vbak-erdat,
       s_erzet like vbak-erzet.
    DATA:
       BEGIN OF int_final OCCURS 0,
            w_vbeln TYPE vbak-vbeln,
       END OF int_final.
    DATA:
      int_return LIKE bapiret2 OCCURS 0 WITH HEADER LINE.
    DATA: int_order_header_inx LIKE bapisditmx OCCURS 0 WITH HEADER LINE.
    DATA:
      wf_time TYPE sy-uzeit.
    INITIALIZATION.
      s_ernam-low = 'KULKARMA'.
      s_ernam-sign = 'I'.
      s_ernam-option = 'EQ'.
      APPEND s_ernam.
    s_ernam-low = 'EAI-BATCH'.
    s_ernam-sign = 'I'.
    s_ernam-option = 'EQ'.
    APPEND s_ernam.
    wf_time = sy-uzeit - 1200.
    p_erzet = sy-uzeit - 1200.
    p_erzet-low = wf_time.
    APPEND s_erzet.
      int_order_header_inx-updateflag = 'D'.
      APPEND int_order_header_inx.
    START-OF-SELECTION.
      SELECT vbeln FROM vbak
                       INTO TABLE int_final
                       WHERE lifsk EQ p_lifsk
                         AND ernam IN s_ernam
                         AND erdat IN s_erdat
                         AND erzet IN s_erzet.
      IF sy-subrc = 0.
        LOOP AT int_final.
          CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
            EXPORTING
              salesdocument         = int_final-w_vbeln
      ORDER_HEADER_IN             =
        order_header_inx            = int_order_header_inx
      SIMULATION                  =
      BEHAVE_WHEN_ERROR           = ' '
      INT_NUMBER_ASSIGNMENT       = ' '
      LOGIC_SWITCH                =
      NO_STATUS_BUF_INIT          = ' '
            TABLES
              return                      = int_return
      ORDER_ITEM_IN               =
      ORDER_ITEM_INX              =
      PARTNERS                    =
      PARTNERCHANGES              =
      PARTNERADDRESSES            =
      ORDER_CFGS_REF              =
      ORDER_CFGS_INST             =
      ORDER_CFGS_PART_OF          =
      ORDER_CFGS_VALUE            =
      ORDER_CFGS_BLOB             =
      ORDER_CFGS_VK               =
      ORDER_CFGS_REFINST          =
      SCHEDULE_LINES              =
      SCHEDULE_LINESX             =
      ORDER_TEXT                  =
      ORDER_KEYS                  =
      CONDITIONS_IN               =
      CONDITIONS_INX              =
      EXTENSIONIN                 =
        ENDLOOP.
        LOOP AT int_return.
          WRITE:/ int_return-type,
                  int_return-id,
                  int_return-number,
                  int_return-message.
        ENDLOOP.
      ENDIF.
    please help me ..its a very urgent issue to be solved...
    am waiting for ur reply...
    regards
    gangareddy

  • Hi. I am trying to use Bridge to make web galleries. There used to be something on PS for that but now I cant find it in PS so I was advised to use Bridge.  However, there is something called Output Module (AOM) that is missing from my Bridge.  I download

    Hi. I am trying to use Bridge to make web galleries. There used to be something on PS for that but now I cant find it in PS so I was advised to use Bridge.  However, there is something called Output Module (AOM) that is missing from my Bridge.  I downloaded this.  The instructions say :Copy the Adobe Output Module folder (not the AOM_Package_[OS] folder) into the Bridge CC Extensions folder in the appropriate location: 
    Windows: C:\Program Files\Common Files\Adobe\Bridge CC Extensions
    Mac OS: /Library/Application Support/Adobe/Bridge CC Extensions.  However there is noplace on my Macbook Air running Yosemetie that has this /Library/Applications SUpport/Bridge CC Extensions. Can anyone advise?

    That file could be set as a Launch Agent or Daemon in your ~/Library or /Library, You could try to look for it or Safeboot your computer and then empty the trash. Safebooting disables Launch Agents/Daemon and Third Party Kernal extensions. Here's the article to Safeboot OS X: What is Safe Boot, Safe Mode? - Apple Support

  • Any free downloads are there XSLT mapping tool

    Hi all ,
    any free down loads are there XSLT mapping  tool , i need to enchance the mapping which is already done in XSLT mapping there they have done look ups also using java codinh , i do have just XSLT file in import arichive , so please help me in it
    thanking you
    sridhar

    Hi ;
    Refer this
    XSLT mapping
    /people/prasadbabu.nemalikanti3/blog/2006/03/30/xpath-functions-in-xslt-mapping
    Mudit

  • Is there a BAPI or Function module can create a Customer Master record?

    Hi experts,
    In SE37, Is there a BAPI or Function module can create a Customer Master record?
    Regards

    BAPI_CUSTOMER_CREATEFROMDATA1
    also see this thread.
    Re: Create customer record  in SAP via BAPI
    кu03B1ятu03B9к

  • Debugging Tips for Mapping and Validation modules

    Hi,
    I am new to CRM, anybody can send the dubuging tips for  Mapping and Validation modules and the list of tables which I have to check before loading.
    (Intilal load & delta load)
    Regards
    KHM

    KHM,
    The first thing you need to make sure is that all queues are deregistered on both systems.  Check the settings in SMQR and SMQS on your systems.  The next step is that your middleware connection user must be a dialog user in order to debug the middleware properly.
    If you have those two steps done, then for an initial load you can actually go into to the queues and debug the entries from each queue.  For a delta load you will need to put a break point in the transaction before the middleware trigger, and then turn on update debugging(if you want to go through the full process).
    The only other key is looking up the correct function modules for the adapter objects to determine what is being called.  Once you know these and have done the steps above you can in general debug.
    Validate the information above in your system and then let me know where you are getting stopped in your debug process.  We can then try to figure out why the debugger is not being called.
    Good luck,
    Stephen

  • Is there support for the Statechart Module 1.0.1 for MacOS X?

    I need to use the Statechart Toolkit but I can't seem to find if there is support for it on the MacOS platform. Can someone tell me a definitive yes or no on this???
    Just as a sidebar: it's very disconcerting to see the lack of support for MacOS. Yes, I know Windoze is ubiquitous, but there are some of us who use a Mac in our daily work and this "half-support" is getting to be problematic. Either FULLY support the platform or don't! Sorry...rant over.
    Thanks for your assistance!
    Michael

    The predecessor to the Statechart Module was the State Diagram Toolkit. Its not as powerful as the Statechart Module, but it appears that it is(or was) available for the Mac and PC. You might contact your sales rep and ask if the State Diagram Toolkit is available for Mac users...
    Now is the right time to use %^<%Y-%m-%dT%H:%M:%S%3uZ>T
    If you don't hate time zones, you're not a real programmer.
    "You are what you don't automate"
    Inplaceness is synonymous with insidiousness

  • I ve heard there is part of HR module needed to be installed

    Hello
    I never dealth with HR. I am pure technical person. I ve heard there is part of HR module needed to be installed and I have to react very quicly.
    Can you help me please

    Hi,
    There is a HR module in SAP.Which will give all the employees data in the organization.Suppose this module is necessary you can install.
    Regards
    Suman Kumar

  • TS4006 Is there google maps data available for Chad, Africa ? I am trying to see where a relative is who works for an Non profit organization there, i have the privacy agreement to do so. In case they are kidnapped there, i would like to know the last pos

    Is there google maps data available for Chad, Africa ? I am trying to see where a relative is who works for an Non profit organization there, i have the privacy agreement to do so. In case they are kidnapped there, i would like to know the last position. I am getting an error that google maps is not available so i asusme there is no map data. Wout it be at least for such cases be possible to get longitude and latitude instead of nothing ?
    Thanks for ideas / suggestions

    Oh no... NOT THE 99-PAGER!!! Anything but THAT!!!

  • Is there a way to "force-mount" an external drive that doesn't show up on it's own when plugged in with firewire?

    Hi, is there a way to "force-mount" an external drive that doesn't show up on the desktop? I have a new Hitachi SATA III 2 TB Ultrastar that won't show up like all the other drives when plugged in. So I can't partition, repair, format etc with Disk Utility, Disk Drill, Tech Tools etc. How do I make it visible?
    I use the FW 400 to 800 adapter and a FW hub.
    Thanks,
    W.

    ok, I did find the log in Diskutil of what happened, I just can't figure out why it happened and how to start over:
    2014-04-20 13:42:08 -0400: Disk Utility started.
    2014-04-20 13:44:30 -0400: Preparing to erase : “Terra 8”
    2014-04-20 13:44:30 -0400:           Partition Scheme: GUID Partition Table
    2014-04-20 13:44:30 -0400:           1 volume will be created
    2014-04-20 13:44:30 -0400:                     Name                    : “Terra 8”
    2014-04-20 13:44:30 -0400:                     Size                    : 2 TB
    2014-04-20 13:44:30 -0400:                     File system          : Mac OS Extended (Journaled)
    2014-04-20 13:44:30 -0400: Unmounting disk
    2014-04-20 13:45:00 -0400: Creating the partition map
    2014-04-20 13:45:01 -0400: Waiting for the disks to reappear
    2014-04-20 13:45:01 -0400: Formatting disk2s2 as Mac OS Extended (Journaled) with name Terra 8
    2014-04-20 13:45:26 -0400: Initialized /dev/rdisk2s2 as a 2 TB case-insensitive HFS Plus volume with a 155648k journal
    2014-04-20 13:45:26 -0400: Mounting disk
    2014-04-20 13:45:29 -0400: Erase complete.
    2014-04-20 13:45:29 -0400:
    - That was it, gone.....

  • Is there a way to make the NAS200 act like a drive in my computer

    Not sure if this has been discussed here yet.
    I have a NAS200 connected to my router and I can access through my web browser no problem.
    I was wondering if there's a way to make it act like a drive that's in my computer. i.e give it a drive letter and have it show up in the "my computer" area.
    I am running win 8 pro desktop hard wired to the router with the nas200 connected. Is there a way to "mount" the nas200 as drive on the computer.
    Thanks,
    Bob
    Solved!
    Go to Solution.

    Yes, you just need to map the drive on your computer. You need to make sure first that the network drive is detected in the network. You can click on the following link to know how to map the drive:
    How to create a shortcut to map a network drive

  • Is there a way to obtain a thumbnail from a video in Lightroom?

    Is there a way to obtain a thumbnail from a video in Lightroom? i.e. a small jpeg file.

    I just remembered that there is an undocumented module LrPhotoPictureView:
    http://forums.adobe.com/message/4140432#4140432
    In a quick test, it shows a thumbnail for .mov files in the catalog:
    Shows a 400 x 400 thumbnail for the selected file.
    local Require = require 'Require'.path ("../common")
    local Debug = require 'Debug'.init ()
    require 'strict'
    local LrApplication = import 'LrApplication'
    local LrDialogs = import 'LrDialogs'
    local LrFunctionContext = import 'LrFunctionContext'
    local LrPhotoPictureView = import 'LrPhotoPictureView'
    local LrView = import 'LrView'
    local showErrors = Debug.showErrors
    local function main (context)
        local f = LrView.osFactory()
        local catalog = LrApplication.activeCatalog ()
        local photo = catalog:getTargetPhoto ()
        if #photo == nil then
            LrDialogs.message ("No photo selected")
            return
            end
        local pictureView = LrPhotoPictureView.makePhotoPictureView ({
              width = 400, height = 400, photo = catalog:getTargetPhoto ()})
        local result = LrDialogs.presentModalDialog {
            title = "Thumbnail test", contents = f:column {
                f:static_text {title = photo:getFormattedMetadata ("fileName")},
                pictureView}}
        end
    LrFunctionContext.postAsyncTaskWithContext ("test",
        showErrors (function (context) main (context) end))

  • Function module or any BAPI that lets park the document in the transaction

    Function module or any BAPI that lets park the document in the transaction FBV1.
    I need to park the invoice by providing some test value in FBV1. I want to know is there any function module or BAPI that is used to park the doucument in transaction FBV1

    hi,
    Use the BAPI BAPI_INCOMINGINVOICE_PARK to park the Document
    Regards
    Sudheer

Maybe you are looking for

  • Whats the easiest way to share iTunes library between two accounts

    Hi all I have my account in leopard that has my entire music collection. I have just created a new account for my wife and would like her to have access to my library, having said that, I like my play lists and it would be ideal for her to have her o

  • Itunes sync items can not be syned

    Just tried to update and sync iphone and it says "133 can not be synced - see itunes for more information

  • External users cannot connect to RDS Farm (Azure).

    Hi Experts, I hope someone is able to help me with this. I have search high and low, but have not found a solution. Here we go: I have setup a RDS Farm in Microsoft Azur, consisting of the following servers: KRPDC01 (Domain Controler / Active Directo

  • More overstuffed mailbox issues.

    My co-workers and I have recently experienced overstuffed mailbox issues and I have been using this forum to figure out what to do. We had been getting "Not downloaded from server" info, and sure enough the mailboxed in question are as large as 1.7 G

  • DOUBT IN HR REPORTING

    HI GUYS, there is a doubt in reporting of hr. actually we have to print the data from 4 tables, 1. VIQMEL 2. VIQMMA 3. AFRU 4. PA0001 VIQMEL CONTAINS THE FIELD QMNUM ERDAT BUKRS AUFNR VIQMMA CONTAINS THE FIELDS QMNUM MNGRP MNCOD AFRU CONTAINS THE FIE