View/modify catalog is inactive

hello,
I added an asset hours ago, and since then the option "view/modify catalog is inactive" is still not accessible.
What am I missing?
-- Nick

Hi Nick,
is the same option "view/modify catalog" available on the other assets ?
If not you need first to initialize the Sol10 sw library, see attached screenshot
Otherwise you need to wait.
HTH
ciao
giorgio

Similar Messages

  • How to get the list of database Views modifying the DB tools list tables.vi

    Hi,
    I have a problem, I just started using LabVIEW and in particular the LabVIEW connectivity toolkit and I am lookig fgor suggestion regarding how to get the list of database Views modifying the DB tools list tables.vi...
    Thanks in advance,
    Michela

    Hi Michela,
    since the VI you want to modify is part of a Toolkit, I suggest you to copy the whole block diagram in a new VI and then save it in a new location.
    Place the DB List Tables.vi on a block diagram, double click on it and go to the tab "Window -> Show Block Diagram "
    Select "Edit -> Select All" to select the whole block diagram and select "Edit -> Copy"
    Open a new VI and select "Edit -> Paste"
    Save the new VI
    In this way you can modify everything you want without overwriting the Toolkits VIs.
    Hope this can help.
    Regards, 
    Andrea N.
    Systems Engineer ATE & RF - Mediterranean Region
    National Instruments Italy

  • Looking for option to view modified photos

    After years of owning a Mac and organizing all of my photos manually, I decided to break away from using Adobe Bridge and import everything into iPhoto. I think iPhoto is easy to use and doesn't get in my way except for two things:
    1. I'd like to be able to view all of the photos I've edited using iPhoto (i.e., I'd like to be able to have something like a View option that allows me to display Modified only). This would help me post photos to Flickr much easier so I know which ones I've edited (I edit all of the pictures I choose to upload in some way before uploading to Flickr).
    2. I'd like to be able to make multiple versions from an original and then have iPhoto index them.

    Captain
    Welcome to the Apple user discussion forums
    1. I'd like to be able to view all of the photos I've edited using iPhoto (i.e., I'd like to be able to have something like a View option that allows me to display Modified only). This would help me post photos to Flickr much easier so I know which ones I've edited (I edit all of the pictures I choose to upload in some way before uploading to Flickr).
    Are you wanting to see the current version of all photos or seeing only the photo that have been modified - in iPhoto you will alway see the current version of each photo and if you export it you will get the current version
    You can go to the pictures folder and right click (control click) on the iPhoto library and select the show package contacts option and look - do not move or change anything - in the modified folder to see which photos have been modified
    2. I'd like to be able to make multiple versions from an original and then have iPhoto index them.
    you can duplicate any photo as many times as you want and edit each one giving you different versions - what exactly do you want iPhoto to with these
    If you have suggestions for Apple these user boards are not the place to make them - use the provide iPhoto feedback command under the iPhoto menu
    LN

  • Table view modify

    Hai guys,
              I want to modify the table values in tableview.But my modify operation not working.Could u guys help me.
    Layout
    <htmlb:tableView id = "tv1"
    headerVisible = "true"
    footerVisible = "false"
    design = "ALTERNATING"
    visibleRowCount = "5"
    onRowSelection = "MyEventRowSelection"
    selectionMode = "LINEEDIT"
    table = "<%= itab %>" >
    </htmlb:tableView>
    <htmlb:button id = "button1"
    design = "emphasized"
    text = "Update"
    onClick = "myClickHandler"
    />
    oninput processing
    DATA: tv TYPE REF TO CL_HTMLB_TABLEVIEW,
    ind type i,
    wa type yprojects.
    DATA: event TYPE REF TO CL_HTMLB_EVENT.
    event = CL_HTMLB_MANAGER=>get_event( runtime->server->request ).
    IF event->name = 'button1' AND event->event_type = 'click'.
    DATA: button_event TYPE REF TO CL_HTMLB_EVENT_BUTTON.
    button_event ?= event.
    tv ?= CL_HTMLB_MANAGER=>GET_DATA(
    request = runtime->server->request
    name = 'tableView'
    id = 'tv2' ).
    IF tv IS NOT INITIAL.
    DATA: tv_data TYPE REF TO CL_HTMLB_EVENT_TABLEVIEW.
    tv_data = tv->data.
    ind = tv_data->selectedrowindex.
    IF ind IS NOT INITIAL.
    READ TABLE itab INDEX ind into wa.
    modify yprojects from wa .
    endif.
    ENDIF.
    ENDIF.

    Hi,
    The below code updates the internal table from the table view when ever the user changes the data in table view and presses update button. And the below code should be written in onInputprocesing event,
    DATA: TABLE_EVENT TYPE REF TO CL_HTMLB_EVENT_TABLEVIEW,
    TABLE TYPE REF TO CL_HTMLB_TABLEVIEW .
    TABLE ?= CL_HTMLB_MANAGER=>GET_DATA( REQUEST = REQUEST
    NAME = 'tableView'
    ID = 'tview' ).
    TABLE_EVENT ?= TABLE->DATA.
    DATA: EVT TYPE REF TO IF_HTMLB_DATA.
    EVT = CL_HTMLB_MANAGER=>GET_EVENT_EX( REQUEST ).
    IF EVT IS NOT INITIAL AND EVT->EVENT_NAME = 'button' AND
    EVT->EVENT_TYPE = 'click'.
    DATA: COLUMNNAME TYPE STRING .
    DATA: COLNO TYPE C.
    DATA: ROWNO TYPE C .
    DATA : CELL_VALUE TYPE STRING.
    DATA : VAR_TV TYPE STRING.
    VAR_TV = 'tview'.
    ROWNO = '1'.
    LOOP AT IT_TAB INTO WA_TAB.
    COLNO = '1' .
    DO 2 TIMES .
    CLEAR COLUMNNAME .
    CONCATENATE VAR_TV '_' ROWNO '_' COLNO INTO COLUMNNAME .
    CELL_VALUE = REQUEST->GET_FORM_FIELD( NAME = COLUMNNAME ).
    IF CELL_VALUE IS NOT INITIAL.
      WA_TAB6-NAME = CELL_VALUE.
      WA_TAB6-LASTNAME = WA_TAB-LASTNAME.
      MODIFY IT_TAB FROM WA_TAB6.
      CLEAR CELL_VALUE.
    ENDIF.
    COLNO = COLNO + 1.
    ENDDO .
    ROWNO = ROWNO + 1.
    ENDLOOP.
    ENDIF.
    Regards,
    Azaz Ali.

  • Table name and  BAPI to view/modify APO Resource capacity profile data

    Please advise the table where the data of APO resource capacity profile stores and BAPI which help to extract and modify the break duration and utlization rate for a resource.
    Steps to view APO resource capacity data
    1. Use transaction /SAPAPO/RES01 and enter as below
    Resource <Resource Name>
    Location XXXX
    Planning Version 000
    2. On the display screen, click button "Capacity Profile" to view the
    data of start, end, break duration and utilizaiton %.
    Appreciate your help!!

    Hi Kurt,
               You can use the below tables/views in which Resource and Capacity Profile related data is stored.
    Tables:
    /SAPAPO/RES_INTQ - Resource Capacity Intervals
    /SAPAPO/RES_INTV - Resource Capacity Intervals
    /SAPAPO/RESCAP - Capacity Profile: Resource Time Capacity
    /SAPAPO/RESDIM - Dimensions and Capacity of a Resource
    /SAPAPO/RESDOWN - Resource Downtime
    /SAPAPO/RESDOWNT - Resource Downtime
    /SAPAPO/RESKEY - Reset Key for Resource to UID
    Views:
    /SAPAPO/V_RESVER- Resource Capacity Variants
    /SAPAPO/VRESINTQ - Resource Interval of Available Capacity Quantity Model
    /SAPAPO/VRESINTR - Resource Interval of Available Capacity Rate Model
    BAPIs available to read:
    BAPI_RSSRVAPS_GETCAPAPRO - Read Resource Capacities Profile
    BAPI_RSSRVAPS_REQUESTCAPAPRO - Query: Selection of Capacities for Resource and Result Transfer
    BAPI_RSSRVAPS_GETLIST - Selection of Resources
    I hope this will help you to get the data which you want to read.
    Regards,
    Saurabh

  • Viewing modified photos in iPhoto

    Hello!
    So, I'm a new Mac user and one of the first things I did was to import some photos from my camera into iPhoto 08. I use Photoshop CS3 to make any modifications rather than iPhoto itself.
    Now that I've made several modifications, I notice that they won't show up in the iPhoto library. It's just showing originals! I did a little searching and found there were three different folders made: Data, Originals, and Modified. Why do I care to have an originals folder? If I want my original photograph, I would "Save as..." the modified photograph and that would be that.
    Two things, then:
    1. How do I make iPhoto display the most recent modifications in my photos? (I can view modifications by quicklooking or double clicking on the photo; they just aren't visible in the thumbnail)
    2. Do I need those extra folders? It seems like it would take up a lot of unnecessary space.
    Thanks!
    Message was edited by: fotojosho

    Welcome to the Apple Discussions. Here's how Photoshop should be used with iPhoto in editing photos:
    Using Photoshop (or Photoshop Elements) as Your Editor of Choice in iPhoto.
    1 - select Photoshop as your editor of choice in iPhoto's General Preference Section's under the "Edit photo:" menu.
    2 - double click on the thumbnail in iPhoto to open it in Photoshop. When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done.
    3 - however, if you get the navigation window that indicates that PS wants to save it as a PS formatted file. You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    NOTE: With Photoshop Elements 6 the Saving File preferences should be configured: "On First Save: Save Over Current File". Also I suggest the Maximize PSD File Compatabilty be set to Always.
    If you want to use both iPhoto's editing mode and PS without having to go back and forth to the Preference pane, once you've selected PS as your editor of choice, reset the Preferences back to "Open in main window". That will let you either edit in iPhoto (double click on the thumbnail) or in PS (Control-click on the thumbnail and seledt "Edit in external editor" in the Contextual menu). This way you get the best of both worlds
    2 - double click on the thumbnail in iPhoto to open it in Photoshop. When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done.
    3 - however, if you get the navigation window that indicates that PS wants to save it as a PS formatted file. You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    DO NOT delete, rename or move any file or folder from within the iPhoto Library in the Finder. That's committing the cardinal sin of iPhoto and will render your library unusable. iPhoto uses the nondestructive editing method and preserves the original files as a digital negative so you can always go back to it to start over with a new edit or crop to print. The Data folder contains the thumbnails used for the small views. .
    If you have saved those edited versions as .psd files (from jpg files) you can open the library package and do a Finder search for image files with .psd in the file name. Move them to the desktop and import as new files. Or delete them and reedit the photos the correct way. If you do the search method I'd make a backup copy of your library beforehand just in case the results are not what you wanted.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.≤br>
    Note: There now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • How to view/modify saved passwords

    It seems impossible to view or change individual saved passwords. The only way seems to delete all of them.
    Is there another way?

    Hello @Fffred,
    The only way you can modify or view passwords on android firefox is through a plugin.
    ''"There's no option for viewing saved passwords on your mobile you have to use add-ons like https://addons.mozilla.org/en-US/android/addon/mobile-password-manager/ if you wish to save your password and view it in the future."''
    [https://support.mozilla.org/no/questions/1008314 Answered by Riya here]
    I hope this helps.
    Jørgen Juel

  • Viewing modified google maps routes on iPhone

    I just discovered today that you can't see a map route you modified on the web via google maps using the Maps app on the iphone! What a bummer!
    I was hoping to use this to make bike routes for myself using google maps (you know how you can get directions on google maps on a computer, then you can drag parts of the route to different streets to modify the route), and then e-mail the route link to my iphone so I'd have the route via maps app.
    Instead, when I modify the route using google maps on a computer and send it via e-mail, the e-mail shows up in my iphone, I click the link, am taken to the Maps app, which re-calculates the route for driving. But the whole point is to view my custom route for biking! And there's no way to modify the route in Maps app (is there?).
    What's more, when I click the link to the google map in mail, it automatically takes me to the maps app. Is there any way I can make it take me to safari so I can see the map I modified? Since there's no copy/paste, seems I'd just have to memorize the lengthy url, which is ridiculous.
    Does anyone know of a good way to do this?

    I'm having the exact same issue. When I create a custom route on Google Maps (www.google.com/maps), point-to-point, and then force it to take me on back roads via the drag option it won't work, it won't even plot the course.
    Example:
    Home to point 1, point 1 to point 2, point 2 to point 3 and point 3 to home.
    It gives me an error saying, "End location not found"
    Really annoying! Fix it Apple.

  • Modify catalog Search UI in SRM-MDM

    Hi,
    I'm working with SRM 4.0 and SRM-MDM 2.0 and need to display more information in the search UI field "Price Information" , i want to add the Contract Description and the Supplier to this qualified table and to be able to see this information in the UI display.
    The business logic behind this request is: we have a several suppliers delivering the same product so we have several contracts for the same product and we need to enable the user to decide which contract is the source of supply.
    Regards,
    Raz
    Edited by: Raz Golan on Mar 23, 2009 7:43 AM

    Hi Raz,
    as the Java WebDynpro  code is not open source, you cannot modify the WebDynpro  itself.
    Also the price information is hard coded, only the specific fields are taking into account by transfer.
    Therefore I could only advice, to set up a new table for you, which can be displayed on the search UI, with the needed more information.
    Regards,
    Tamá

  • OBIEE view modifying  positionionting in workspace & modifying page control

    Where do we configure obiee views positioning and page control location aspects in obiee 10g? Please suggest..

    Hi hillchri,
    Something you can do to view the list of custom controls is open up the VI Hierarchy (View > View Hierarchy). This window will display a list of Type Defs referenced by your VI (I don't think custom controls will show up...). Other than this, I'm not sure if there is a way to get a list of references custom controls for a VI outside of the project environment.
    There's not a way to dynamically explicitly specify the path of a control to load on the front panel (other than doing it manually). The only work-around to this is to use Labview Scripting, which allows you to dynamically drop objects on the front panel and/or block diagram. 
    In your case, it does not seem like you will need to do this, though I am still a bit unclear on what you're trying to do. When you move the VI and custom controls in an LLB, everything should open up with no problems. Is your goal to dynamically determine which control will be loaded on the front panel of the VI? Sorry if I'm misunderstanding something...
    Misha

  • Unable to view, modify, or upload photos on many websites

    I am unable to view pictures on several websites and am unable to upload pictures to our website when editing the web page. Unable to see picture when uploaded by another user on same page.

    Many thanks to all of you who replied , Well I have never had this problem before with down or up loading mail via Pop 3 to my Google , GMX and O2 email accounts until towards the end of last month , First I notice I could not receive or send emails then I noticed I could not even conect to the internet .Yes I could connect to the router Which is a FORTH TOT Fiber link but that works fine . My desk is about 5 feet from the router were I also have my Lap Top which works fine also my Smart TV connects to the router and can down and up load mail  this is how I found out that the Black Berry was not work . I can connect to the Router with the Black Berry and connect to Google or Yahoo but the pop3 link just wont work . So I went to a few other places near my office and tried there WiFiand it was the same it was the same no pop3 forwarding so the problem is the network or the phone . So I reinstall new firmware this was 7.1.0 Bundle 2061and like you say reloading service books but its still the same .Which brings me to think is it the net work .I live in the south of Thailand and been down here since 95 but I think this may have to wait until I return to the UK next year . But its very strange . As for not being able to connect to O2 from thailand well its now working again as before I could only get access useing a VPN . Many Thanks again I wonder if I will have the same problem in Malaysia or Singapore . Cheers

  • ESS/XSS Web Dynpro SCA import in CMS to view/modify Web Dynpro Source Code

    I am having problems importing ESS/XSS Web Dynpro related SCA's into CMS.
    Following steps were followed
    1. Download following files from SAP service marketplace.
    BPERP4ESS0_0-10003146.sca
    ESS09_0-10002965.zip ( This file shows as SCA in the download page but download as with .zip)
    PCUIGP009_0-20000568.zip ( This file shows as SCA in the download page but download as with .zip)
    Question: Is this correct, did I get all I need? Do I need to download any more files?
    2. Deployed above files using SDM.
    3. Created a product in SLD and defined software component dependencies(SAP_BUILDT, SAP_JTECHS, SAP-JEE) I could define any of the above files(BPERP4ESS0_0-10003146, ESS09_0-10002965,PCUIGP009_0-20000568) as software dependencies as I could find in the software catlog.
    Question: Should this files show up in the software catlog? If yes what should I do?
    4. Created a track in CMS.
    5. Added software components for development defined in the SLD. Above files doesn't show up under sap.com to be added as development component. I already copied BPERP4ESS0_0-10003146.sca, ESS09_0-10002965.zip,PCUIGP009_0-20000568.zip to D:\usr\sap\JTrans\CMS\inbox.
    Question: How do I add this files to development components??
    5. All other required Software Components(SAP_BUILDT, SAP_JTECHS) were automatically added when I added the development component.
    What should I do so ESS09_0-10002965.zip,PCUIGP009_0-20000568 would show up under sap.com vendor component list??
    Any help on this is greatly appericated.
    Thanks!!

    Hi,
    Did you receive a response to this question? We are having the same problems whilst following some instructions we received from SAP's OSS titled the JDI cookbook for ESS.
    When defining a track in the CMS the software components SAP_ESS and SAP_MSS are not in the list for vendor sap.com. Yet we use the standard ESS and MSS portal content delivered by SAP.
    How do we get these components in the list so that we can select them?
    Thanks in advance.

  • View/Modify Funds Disbursement Data Extract

    In Oracle R12 payment format tied to the bank account dictates which data extract would be used and which XML template would be applied to the data. My question is how would I see the content of a data extract and I would I add more fields to the extract? I tried using XML Publisher responsibility but could not get answer to my 2 questions. I would really appreciate if someone could guide in the right direction. Thanks.

    Well, when you create a template in XML Publisher, you have to assign the Data Definition you want to use for this template. The Data Definition also sits in XML Publisher. Click on the Data Definitions tab in XML Publisher if you want to see the Data Definition.
    So the process, if you were creating something new, is this - 1) Create the Data Definition in XML Publisher. Have to create this first. 2. Then create the template and assign the proper data definition in that template.
    Does this make sense? Maybe you have an XML Publisher guru there you can talk to. Or you can download the XML Publisher Administration and Developer's Guide for R12, and study up on this that way. Pretty hard in a forum like this to give you detailed information on something like this.
    Hopefully this helps a bit.
    John Dickey
    Edited by: John Dickey, McCarthy on Mar 26, 2010 2:50 PM

  • View/modify Surround Sound Channels

    I am trying to figure out an efficient way to work with 5.1 Surround that already is in that format. For example, I'd like to be able to expand the audio and see all 6 channels, so I can work with them individually. Right now, the only option seems to be to convert the configuration to 6 mono channels, and then go to each channel and manually reassign it to the correct surround channel using the pan settings. This is a REAL pain. Plus, now the channels are broken up and have to always be dealt with separately.
    Why can't I expand the surround 5.1 channel configuration to see the actual channels? Am I missing something?
    Thanks!

    oddly enough I had the same issue a while ago, and someone at my house switched the audio language to spanish preferred and cnn didn't come out but every other station did.
    it may or may not be the same situation but give it a try
    menu > settings > audio > audio language.    english preferred   put a check mark there by highlighting it and hitting ok

  • Viewing/modifying Extra information Types from self service

    Hi, Is it possible to mody extra information types from Self Service and does anyone know where I can find setup documents?

    check this - http://oracleappssol.blogspot.co.uk/2012/08/creating-extra-information-types-as.html

Maybe you are looking for

  • IMac - Slow load and wifi problems

    I have lion installed on my macbook pro and on my iMac. My macbook pro works GREAT...no problems. My iMac - I am ready to toss out a window. Here are the problems: INCREDIBLY slow boot up time - 5-10 minutes from off - 5-8 minutes from sleep The hard

  • Satellite M50 - Blank screen after login on Win 8.1

    Satellite M50 running Win 8.1 After login, get blank screen mouse but nothing else. Can run Explorer.exe manually via Task manager to get going but some apps such as Acrobat and Windows Mail don't work. I've searched online and tried all sorts of the

  • Help me clean this audio, please.

    Hello everyone. I need advice from anyone who is willing to help. I have some video footage for which I'm trying to clean up the audio. I'm hoping to get rid of the noise and also EQ or anything else to get the audio sounding as good as possible. I a

  • Sales Return Process-Invoice(Credit Memo) with ref. to delivery

    Dear All, I am doing sales return process. Sales Order-RE Delivery-LR Invoice-RE, with ref. to sales order it is allowing me to create invoice. But,with ref. to delivery it is not allowing. It is giving "The document is not relevant for billing". I h

  • Smart folders versus Rules

    What is the difference between Preferences > Rules and a Smart Mailbox? Will they both work on incoming mail and mail in my Inboxes? Will they work on folder in On My Mac? If I Edit a Smart Mailbox does the mail that originally fit that description g