Not able to see General Documentation in Implementation Project

Hi All,
I've created one Template Project and one Implementation Project. Now I've added some documents to Template Project - General Documentation Tab. Ideally this newly added documents should be appeared in Implementation Project - General Tab. But in my case I am not able to see this newly added documents. Is there any reason behind this? What should I do to make them visible in Implementation Proj - General Documentation tab?
Another question is, If a document from Project Documentation tab is deleted by pressing 'Delete Row' button (not actual 'Delete' button), how can I retrieve that document? How can I see the list of all deleted documents?
Thanks in advance!
Shaun
Edited by: shaun99 on Feb 16, 2012 4:28 PM

Hi Shaun,
For the implementation project, please read the session  "USING THE TEMPLATES" in the wiki page for template projects, where it explains how to update your project with the changes made in the template project.
-http://wiki.sdn.sap.com/wiki/x/gRkMDg
regarding the download, I'm not aware of any easy way to do mass download of the documents. Maybe in SI80 you could do such thing but I believe you would only be able to filter by the folder where the documents are phisically stored and as you're using a template project, all the documents are stored in the folder SOLAR00, shared along with solutions and etc..
more info about this in the wiki page for documents in solar01 and solar02:
-http://wiki.sdn.sap.com/wiki/x/rBoMDg
Kind regards, Fabricius

Similar Messages

  • Not able to see the documented goods movement

    Hi ,
    The Problem is I cannot see the documents against the same combination of the order type and Plant for Ceratin period but can see the documented goods movements against the same orders for some other period.

    Hi,
    Check in OPL8, whether the Documented Goods Movemets is maintained or not.
    This in the Second Tab page: Implementation.
    Revert for further discussion..
    Regards,
    Siva

  • Not able to see scope Compensate

    HI  ,
    i am using Bpel 1.1
    I have created two Services one is Flight Booking Service,another is Hotel booking Service,i have implemented compensation.  i have raised exception thorough the "Throw", i used catch all to hold the this exception.in that catch i have i used Compensate  , to roll back the booked services,
    but in the Compensate i am not able to see the scopes of the  Airline,HotelScopes.
    Below is my Travlmgmt.bpel  in whihc i have used the two services:
    <?xml version = "1.0" encoding = "UTF-8" ?>
    <!--
      Oracle JDeveloper BPEL Designer
      Created: Mon Jul 01 19:19:20 IST 2013
      Author:  rthippireddy
      Type: BPEL 1.1 Process
      Purpose: Synchronous BPEL Process
    -->
    <process name="TravlMgmt"
             targetNamespace="http://xmlns.oracle.com/AirLine_Booking/TravelPlan/TravlMgmt"
             xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
             xmlns:client="http://xmlns.oracle.com/AirLine_Booking/TravelPlan/TravlMgmt"
             xmlns:ora="http://schemas.oracle.com/xpath/extension"
             xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
             xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
             xmlns:ns1="http://xmlns.oracle.com/AirLine_Booking/Hotel/HotelBooking"
             xmlns:ns2="http://xmlns.oracle.com/AirLine_Booking/Project1/AirlineBooking"
             xmlns:bpel2="http://docs.oasis-open.org/wsbpel/2.0/process/executable">
      <!--
            PARTNERLINKS                                                   
            List of services participating in this BPEL process            
        -->
      <partnerLinks>
        <!--
          The 'client' role represents the requester of this service. It is
          used for callback. The location and correlation information associated
          with the client role are automatically set using WS-Addressing.
        -->
        <partnerLink name="travlmgmt_client" partnerLinkType="client:TravlMgmt"
                     myRole="TravlMgmtProvider"/>
        <partnerLink name="Hotel_Service" partnerLinkType="ns1:HotelBooking"
                     partnerRole="HotelBookingProvider"/>
        <partnerLink name="Flight_service" partnerLinkType="ns2:AirlineBooking"
                     partnerRole="AirlineBookingProvider"/>
      </partnerLinks>
      <!--
          VARIABLES                                                     
          List of messages and XML documents used within this BPEL process
      -->
      <variables>
        <!-- Reference to the message passed as input during initiation -->
        <variable name="inputVariable"
                  messageType="client:TravlMgmtRequestMessage"/>
        <!-- Reference to the message that will be returned to the requester-->
        <variable name="outputVariable"
                  messageType="client:TravlMgmtResponseMessage"/>
        <variable name="Invoke_AirLine_Book_InputVariable"
                  messageType="ns2:AirlineBookingRequestMessage"/>
        <variable name="Invoke_AirLine_Book_OutputVariable"
                  messageType="ns2:AirlineBookingResponseMessage"/>
        <variable name="Invoke_Hotel_HotelBook_InputVariable"
                  messageType="ns1:HotelBookingRequestMessage"/>
        <variable name="Invoke_Hotel_HotelBook_OutputVariable"
                  messageType="ns1:HotelBookingResponseMessage"/>
        <variable name="Invoke_Flight_Cancel_Cancel_InputVariable"
                  messageType="ns2:AirlineCancelRequestMessage"/>
        <variable name="Invoke_Flight_Cancel_Cancel_OutputVariable"
                  messageType="ns2:AirlineCancelResponseMessage"/>
        <variable name="Invoke_Hotel_Cancel_HotelCancel_InputVariable"
                  messageType="ns1:HotelCancelRequestMessage"/>
        <variable name="Invoke_Hotel_Cancel_HotelCancel_OutputVariable"
                  messageType="ns1:HotelCancelResponseMessage"/>
        <variable messageType="bpelx:RuntimeFaultMessage" name="FaultVar"/>
        <variable messageType="bpelx:RuntimeFaultMessage" name="FaultVar_1"/>
      </variables>
      <faultHandlers>
        <catchAll>
          <sequence name="Sequence6">
            <compensate name="Compensate1"  />
            <compensate name="Compensate2" />
          </sequence>
        </catchAll>
      </faultHandlers>
      <!--
         ORCHESTRATION LOGIC                                            
         Set of activities coordinating the flow of messages across the 
         services integrated within this business process               
      -->
      <sequence name="main">
        <!-- Receive input from requestor. (Note: This maps to operation defined in TravlMgmt.wsdl) -->
        <receive name="receiveInput" partnerLink="travlmgmt_client"
                 portType="client:TravlMgmt" operation="process"
                 variable="inputVariable" createInstance="yes"/>
        <flow name="Flow_of_Hotel_Flight">
          <sequence name="Sequence">
            <scope name="Scope_Airline" variableAccessSerializable="yes">
              <bpelx:annotation>
                <bpelx:general>
                  <bpelx:property name="userLabel">AirLineScope</bpelx:property>
                </bpelx:general>
              </bpelx:annotation>
              <compensationHandler>
                <sequence name="Sequence4">
                  <assign name="Assign_Airline_Cancel">
                    <copy>
                      <from variable="Invoke_AirLine_Book_OutputVariable"
                            part="payload" query="/ns2:BookingResponse/ns2:PNR"/>
                      <to variable="Invoke_Flight_Cancel_Cancel_InputVariable"
                          part="payload" query="/ns2:CancelRequest/ns2:PNR"/>
                    </copy>
                  </assign>
                  <invoke name="Invoke_Flight_Cancel"
                          inputVariable="Invoke_Flight_Cancel_Cancel_InputVariable"
                          outputVariable="Invoke_Flight_Cancel_Cancel_OutputVariable"
                          partnerLink="Flight_service" portType="ns2:AirlineBooking"
                          operation="Cancel" bpelx:invokeAsDetail="no"/>
                  <assign name="Assign2">
                    <copy>
                      <from variable="Invoke_Flight_Cancel_Cancel_OutputVariable"
                            part="payload" query="/ns2:CancelResponse/ns2:Status"/>
                      <to variable="outputVariable" part="payload"
                          query="/client:processResponse/client:Status"/>
                    </copy>
                  </assign>
                </sequence>
              </compensationHandler>
              <sequence name="Sequence2">
                <assign name="Assign_AirLine">
                  <copy>
                    <from variable="inputVariable" part="payload"
                          query="/client:process/client:FlightNumber"/>
                    <to variable="Invoke_AirLine_Book_InputVariable" part="payload"
                        query="/ns2:BookingRequest/ns2:FlightNum"/>
                  </copy>
                  <copy>
                    <from variable="inputVariable" part="payload"
                          query="/client:process/client:CustomerName"/>
                    <to variable="Invoke_AirLine_Book_InputVariable" part="payload"
                        query="/ns2:BookingRequest/ns2:Name"/>
                  </copy>
                </assign>
                <invoke name="Invoke_AirLine"
                        inputVariable="Invoke_AirLine_Book_InputVariable"
                        outputVariable="Invoke_AirLine_Book_OutputVariable"
                        partnerLink="Flight_service" portType="ns2:AirlineBooking"
                        operation="Book" bpelx:invokeAsDetail="no"/>
                <assign name="Assign1">
                  <copy>
                    <from variable="Invoke_AirLine_Book_OutputVariable"
                          part="payload" query="/ns2:BookingResponse/ns2:Status"/>
                    <to variable="outputVariable" part="payload"
                        query="/client:processResponse/client:Status"/>
                  </copy>
                </assign>
              </sequence>
            </scope>
          </sequence>
          <sequence name="Sequence1">
            <scope name="Scope_Hotel" variableAccessSerializable="yes">
              <bpelx:annotation>
                <bpelx:general>
                  <bpelx:property name="userLabel">HotelScope</bpelx:property>
                </bpelx:general>
              </bpelx:annotation>
              <compensationHandler>
                <sequence name="Sequence5">
                  <assign name="Assign_Hotel_Cancel">
                    <copy>
                      <from variable="Invoke_Hotel_HotelBook_OutputVariable"
                            part="payload"
                            query="/ns1:processResponse/ns1:ConformationCode"/>
                      <to variable="Invoke_Hotel_Cancel_HotelCancel_InputVariable"
                          part="payload"
                          query="/ns1:CancelRequest/ns1:ConfirmationCode"/>
                    </copy>
                  </assign>
                  <invoke name="Invoke_Hotel_Cancel"
                          inputVariable="Invoke_Hotel_Cancel_HotelCancel_InputVariable"
                          outputVariable="Invoke_Hotel_Cancel_HotelCancel_OutputVariable"
                          partnerLink="Hotel_Service" portType="ns1:HotelBooking"
                          operation="HotelCancel" bpelx:invokeAsDetail="no"/>
                  <assign name="Assign4">
                    <copy>
                      <from variable="Invoke_Hotel_Cancel_HotelCancel_OutputVariable"
                            part="payload" query="/ns1:CancelResponse/ns1:Status"/>
                      <to variable="outputVariable" part="payload"
                          query="/client:processResponse/client:Status"/>
                    </copy>
                  </assign>
                </sequence>
              </compensationHandler>
              <sequence name="Sequence3">
                <assign name="Assign_Hotel">
                  <copy>
                    <from variable="inputVariable" part="payload"
                          query="/client:process/client:HotelName"/>
                    <to variable="Invoke_Hotel_HotelBook_InputVariable"
                        part="payload" query="/ns1:BookingRequest/ns1:HotelName"/>
                  </copy>
                  <copy>
                    <from variable="inputVariable" part="payload"
                          query="/client:process/client:CustomerName"/>
                    <to variable="Invoke_Hotel_HotelBook_InputVariable"
                        part="payload" query="/ns1:BookingRequest/ns1:PersonName"/>
                  </copy>
                </assign>
                <invoke name="Invoke_Hotel"
                        inputVariable="Invoke_Hotel_HotelBook_InputVariable"
                        outputVariable="Invoke_Hotel_HotelBook_OutputVariable"
                        partnerLink="Hotel_Service" portType="ns1:HotelBooking"
                        operation="HotelBook" bpelx:invokeAsDetail="no"/>
                <assign name="Assign3">
                  <copy>
                    <from variable="Invoke_Hotel_HotelBook_OutputVariable"
                          part="payload" query="/ns1:processResponse/ns1:Status"/>
                    <to variable="outputVariable" part="payload"
                        query="/client:processResponse/client:Status"/>
                  </copy>
                </assign>
              </sequence>
            </scope>
          </sequence>
        </flow>
        <throw name="Throw1" faultName="bpelx:remoteFault"
               faultVariable="FaultVar_1"/>
        <!-- Generate reply to synchronous request -->
        <reply name="replyOutput" partnerLink="travlmgmt_client"
               portType="client:TravlMgmt" operation="process"
               variable="outputVariable"/>
      </sequence>
    </process>

    by manually specifying the scope name in the compensation activity it is solved

  • Not able to see hierarchial org structure by clicking on Expand this branch

    Dear experts,
    I am currently using the Online data extraction via sap for Nakisa Integration with SAP Landscape.
    I have completed the configuration of Nakisa with the help of configuration guide and administrator guide - After completing administrator steps the org chart is visible - When i navigate to the org structure i can see the org unit under the org structure root that i configured as an administrator in the general settings section.
    When i click the + sign ie on expand this branch i am not able to see all teh org units under the displayed branch.
    Can you please guide me regarding how one can view the org structure below the selected branch when i click on expand this branch section.
    Manager Personnel Id is not maintained for this org unit - Should the user clicking on the expand this branch be the manager of the org unit to see the org structure.
    Regards
    HKishan

    Dear Luke,
    I am not able to see that navigation icons within an org chart box - The org unit that is displayed on clicking the orgchart does have branches in SAP but i am not able to see these navigation icons that lead me to these branches.
    Is there any specific step that needs to be done to see these branches.
    By the way what is the log file you are refering to is it the "PresentationResources.xml " or is it any other log file.
    Regards
    Hkishan

  • Not able to see the result in particular column of BPC report

    Dear All,
    I have problem in one of the BPC report where I am not able to see the result into one column but rest of the users are able to see the result for same column in same report without any issues.
    Generally, I used this report frequently but having such problem from last few days. Excel has created any logs which I need to clear? Please advice.
    Request your help to resolve such problem please.
    If you need any information, please let me know.
    Thank You
    Kind Regards
    Anukul

    Hello Anukul,
    In the report what type of data you are trying to check in that column. can you please brief about report.
    And also please check the excel cell format (right click and check it is a numeric or character), which may help to resolve this issue.
    Regards,
    Rajesh.K

  • ITunes musical library located on a WD 2TB, ext. drv. Computer destroyed by virus; ED survived. Bought new laptop, connected ED. Not able to see library. ED shows as 'G:' 95% full. How can I reconnect my old library to new laptop?

    I had my iTunes musical library on an ext. drv. WD 2TB, ‘MY BOOK ESSENTIAL'. Three weeks ago, my computer was infected by a virus that fried it. It did not affect the external drive. I bought a new computer: a laptop, Dell XPS, Intel Core i7-2630QM CPU, Windows 7 Home Premium. I have been able to connect the WD external drive; however, I am not able to see the musical library in my iTunes or Explorer. ‘My Computer’ shows the external drive as ‘G:’ 95% full. It reads, 32.1 GB free of 1.36 TB. When I click on the drive to see its contents, it shows nothing. The library in iTunes also shows nothing. Can anyone help, please? How can I reconnect my old musical library to my new laptop and iTunes? Many thanks.

    Hmm, viruses don't generally "fry" drives. They can make bootable operating systems not bootable, hide data, and corrupt executable files. Software can potentially wipe all the data from the drive but it shouldn't be able to physically damage the drive. Bah! What's done is done.
    As to unhiding your files assuming they are just hidden....
    Hit Start > Run, type in CMD and press enter. Type the following at the prompt and then press enter:
    attrib -h -s -r g:\*.* /d /s
    This tells windows to clear the hidden, read-only, and system flags from all files on the drive, assuming of course your profile has the power to "see" the files and change them.
    If that doesn't work then you may need to take ownership of the drive first. The drive may have security settings that make it "belong" to an account on your old system. Right-click on the drive in Windows Explorer and click Properties. Click the Security tab, the Advanced button, the Owner tab, then the Edit tab. Make yourself the owner, then you can make any other changes to the security settings you want to back on the Permissions tab. (If you can't change the owner log out and log back in as Administrator). For iTunes your account (or everyone) and SYSTEM need full access to all files. Any changes you make should be applied to "This folder, subfolders and files", should be inheritable and you should also replace the permissions on all child objects.
    tt2

  • How can I prevent firefox from displaying an overall black page after I request a topic search in the google/firefox search box? Not able to see results

    I loaded Mozilla v31 on my PC laptop which uses Windows XP operating system with all current updates. When I click on my internet icon, it leads me to the Mozilla page with a Google search bar. Once I type a topic in and click for the search to begin, the Firefox page turns all black and I am not able to see any results or action being taken. I click on the back arrow and enter a new topic, and click on search button, it repeats the same behavior and the Firefox page turns black. Essentially Mozilla Firefox is not a usable browser unless I can fix it. Help!

    When this happens, has the address bar changed to a google.com address or is it still blank?
    Some graphical glitches are caused by an incompatibility between Firefox and your graphics card drivers. The standard workaround for bypassing this is to disable Firefox from using hardware acceleration. You can make that change here:
    "3-bar" menu button (or Tools menu) > Options > Advanced
    On the "General" mini-tab, uncheck the box for "Use hardware acceleration when available"
    That will take effect the next time you exit Firefox and start it up again.
    More generally:
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    "3-bar" menu button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * (menu bar) Tools > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?

  • Users not able to see remote users on the node network

    Users that belong to one node are not able to see users in another calendar
    server node. Both calendar servers are pointing to the same directory server.
    Some errors that occur in the log files:
    DEXOTEK ERRCODE Ox13608 -> SchedBaseOpen: Section name too long
    DEXOTEK ERRCODE Ox13608 -> OpenConnection: SchedBaseOpenOnHost
    And when uninode -cws nodeID is run, it does not report being able to see all
    the users and resources on the remote nodes.
    uninode: connected to hostname.net.xxx.com, node 10000
    directory of items: 10 (USERS = 10/RESOURCES = 0)
    CONNECTION EX AV Q-SIZE IN-PROCESS IMPORT-DIR
    (10000)->xxxxxx.xxx.com(10001) 2 2 0 0 370 (U=370/R=0)
    Here is the nodes.ini file:
    + H=xxxxxxx.xxx.com/N=10000
    + H=xxxx.xxx.com/N=10001
    all=2
    There is a reported bug, that 16 chars is max on domain names for the nodes.ini
    file, which means that you need to change that file and use:
         a) an alias that can be resolved on the network with either DNS or local
         host files
         b) use the IP address.
    As documented in the release notes, here is the procedure on how to modify the
    hostname when it is too long. Or how to modify the hostname for any reason.
    Fix for long host names problem
    If the fully qualified domain name for your network exceeds 16 characters, it
    will be necessary to shorten the host name of all the servers in the Calendar
    Server network . These instructions must be carefully followed to avoid causing
    problems with the network. Ensure that the procedure is applied to ALL nodes in
    the Calendar network.
    1) The following procedure should be carried out on each server in the
    Calendar network:
    a) Bring the Calendar services down.
    % unistop -y
    b) Run the unidbfix command in export mode.
    % unidbfix -export -n node-id
    This will create a remotenode.ini file for each node on the server. The file is
    located in the node's perm directory.
    Example:
    If you have two nodes on the server ROCK, node 1(in N1) and node (in N2), the
    files are:
    /users/unison/db/nodes/N1/perm/remotenode.ini
    /users/unison/db/nodes/N2/perm/remotenode.ini
    The remotenode.ini file will look something like this:
    [1]
    RN_NUMCONNECT = 2
    RN_SURNAME = "unison"
    RN_GIVENNAME = "unison"
    RN_ORGUNIT1 = "uni2"
    RN_ORGUNIT2 = "openmail"
    RN_ORGANIZATION = "ABC Corp"
    RN_ACCESSMETHOD = 2
    RN_SERVICENAME = "unieng"
    RN_HOSTNAME = "rock"
    [2]
    RN_NUMCONNECT = 2
    RN_SURNAME = "unison"
    RN_GIVENNAME = "unison"
    RN_ORGUNIT1 = "uni4"
    RN_ORGUNIT2 = "openmail"
    RN_ORGANIZATION = "ABC Corp"
    RN_ACCESSMETHOD = 2
    RN_SERVICENAME = "unieng"
    RN_HOSTNAME = "rock"
    2) Once you have run unidbfix in export mode on all the servers, proceed as
    follows:
    a) Compare the remotenode.ini files and verify that the entries are the
    same. In each file, you will note that an entry for the local node is not
    included.
    b) Edit one of the files (on any of the servers). This file will be
    referred to as the master file. Add the appropriate entries for the
    local node (copy the section from one of the other files). Modify the
    RN_HOSTNAME in each of the sections of the master file to shorten the
    name.
    c) Copy the master file in the perm directories of each node on all the
    servers.
    3) Once the master file is in the perm directory of all the nodes, proceed as
    follows on each server:
    a) Run the unidbfix command in the -import mode.
    % unidbfix -import -n node-id
    b) Edit the nodes.ini file on the hub server and make the same changes to
    the host names. You do not need to apply the changes.
    c) Edit the [UTL] section of the /users/unison/misc/unison.ini file and
    change the host name.
    d) Start up the services.
    % unistart
    4) After all the changes have been made, run the uninode -cws all and
    uninode -snc all commands and verify that the results are accurate.

    See this:
    http://docs.info.apple.com/article.html?path=Mac/10.6/en/8203.html
    You should then see your pcs listed in Finder's sidebar under the shared section.
    Regards

  • ODBC connection not able to see all schemas

    Hi everyone,
    We have noticed an unusual problem that just recently started. In our database, I have created a read-only user - only has the ability to connect to the database, and SELECT ANY TABLE. Then we have some applications (Crystal Reports and Lotus Notes Agents) that use this user to query data. The applications use an ODBC connection, and when we initially set this up, everything worked beautifully.
    However, suddenly we have noticed that the ODBC connection is not able to see all of the schemas in the database. We have tested and confirmed this - using either 9.02 ODBC or 10.01, this happens with both of them. I created a couple new ODBC connections, one for each version, then I try to create a new Crystal Report, using this ODBC connection - when I connect using the read-only user, it connects just fine, but when it shows me all of the schemas available, I am only seeing about half of them (and of course not seeing the one that I really need to see).
    However, when I use Microsoft Access, and try to import some External Data, and I use the same ODBC connections, then I AM seeing all of the schemas.
    Has anyone ever seen anything like this? Any ideas on what I can do to troubleshoot?
    Thanks,
    Brad

    I'm trying to get this issue figured out. Can you
    tell me what you mean when you ask me to log in
    directly as the same user using ODBC and query
    ALL_TABLES - how would I do that?Using whatever Oracle database account you use in Crystal, log in to the database using SQL*Plus (or your favorite GUI like SQL Developer) and run a query like
    SELECT owner, table_name
      FROM all_tablesDoes that query show all the tables you expect, or are you missing some?
    Also, you mention a parameter in the ODBC API that
    controls which schemas are returned - is there any
    way to see that value?An ODBC trace might show the value, I don't recall if the actual value is written out in the trace. Different front-end tools often have a place that allows you to filter out certain schemas, which is generally done by passing in a parameter to this ODBC API call. I don't know enough about your tools, though, to know where this might be.
    Are there any other ODBC drivers I could try?There are plenty of third party ODBC drivers out there, but I would tend to be suprised if the ODBC driver was at fault here. You could also try patching the ODBC driver and/or Oracle client to the most recent patchsets.
    Justin

  • Not able to see the Service Desk Message in "Solution_Manager"

    Hi Gurus,
    Can anyone help me solving my problem,
    We are using Solution Manager 4.0, and want to implement service desk for our systems. I have configured the solution manager service desk and we are able to rise the message from satellite system to solution manager, but i am not able to see those messages in "solution_manager" transaction under service desk in solman, but those messages are reflecting in transaction code "dnotifwl" under "No Processer assigned" option of Personal selection>Notifications Tab.
    Pease guide me to resolve the problem.
    Thanks,
    Krishna.J

    Hi Nico Effenberger ,
    Thanks for ur reply,
    1.have not copied slfn to zslf but modified the entries of slf1 and using directly. When i try to copy either it is copying only the entries or saying Entry zslf does not exists in DNOC_TYPE_NOTIF.
    2. I am having full authorisation sap_all, and sap_new for my system
    3. yes i have created a slfn based on this slf1 messages.
    It will be very helpfull if you could send me any doc related to solman service desk configuration you have done.
    thanks & regards
    Krishna Joish

  • Not able to see the content of opened files (.jpg or .psd) in Photoshop CS6

    I recently downloaded Adobe Design and Web Premium CS6.  I am not able to see the content of any of the file I open (.psd or .jpg).  I do see the file has been opened as the file name appears on the open file tabs, I also see the preview of the file in the Navigator Window and list of layers in the layers window.  I am relatively new to this so might be missing on some option that needs to be turned on or something. 
    I am using Window 7 Professional, Service Pack 1, with 8GB RAM.
    Any suggesstion/help is greatly appreciated.

    This is going to be the weak point:
    Intel(R) HD Graphics card
    While the Intel HD chip is fine for general computer work, it is weak for programs, like Photoshop and Adobe Premiere. The driver support is usually very bad, as well. If Lenovo does not have updated drivers, that work better, about the only choice that one has with a laptop is to turn OFF graphics accleration, and wait for a new driver. That will probably be very slow in coming.
    Good luck,
    Hunt
    PS - Noel's link will list what you are missing.

  • Cisco 877w - Apple devices not able to see wired apple TV

    Hello All,
    Can anyone point me to a doc or forum discussion on how to setup the wireless interface to forward multicast packets?  Basically I cant get the ipads etc.. to see the AppleTV to control it.  I connected an AP and it works fine so its got to be something with the way the router handles the packets from teh integrated wireless interface.  I've been searching the forum for about 1hr and haven't founf anything other than a breif mention of broadcast forwarding and multicast setup.
    Has anyone got anything more complrehensive I can read?
    Thanks
    David

    Hello David,
    Thank you for contacting the Sales Acceleration Center (SAC) regarding your recent inquiry, Case Number
    Case Description:
    Cisco 877w - Apple devices not able to see wired apple TV
    Case Solution:
    The Bonjour service uses multicast to advertise your Home Sharing enabled device to the local network. In my case the Cisco 877W I was using had a Layer 3 enabled BVI (Bridged Virtual Interface) to which the Wireless Dot11Radio interface was not fowarding multicast packets properly.
    First of all, obtain the Multicast groups your wireless adapter is configured for (on Windows open a command prompt and run the below command):
    The result will give you an output as per below, we are interested in the multicast address directly after the 224.0.0.252 address 239.255.255.250:
    Then we need to enable multicast routing on the router, connect to your router and enter config terminal mode:
    Next we will configure IGMP v3 and add the relevant Wireless interface on your router to the correct multicast address group:
    Next perform the same config your BVI interface:
    Once complete save your changes and confirm both interfaces have been added to the multicast groups using the command sh ip igmp group:
    You now need to reload your router and restart iTunes and then attempt to connect to Home Sharing from your Apple TV.
    Other commands that I used to troubleshoot with were:
    debug ip mpacket - Multicast Packet Debugging
    debug ip mroute - Debug Multicast Routing
    sh ip mroute - Show IP Multicast Routes
    By default the Cisco implementation of a Dot11Radio interface and a BVI interface don't appear to forward multicast packets between each other. Seems odd to me as they're both in the same L2 bridging group..anyway.
    I am going to close the case for this specific inquiry on my side. If you need moere information Please feel free to reach out to me or any member of the SAC team if we can be of any further assistance or if you have any other related questions in the future. We strive to provide you with excellent service. We value your input and look forward to serving you moving forward.

  • I am not able to see the Personal Hotspot in my iPad mini

    I am not able to see the Personal Hotspot in my iPad mini. I have a 3G account and I can´t share it because I can´t find the option Celullar into Settings --> General. Do you have any clue??
    Thanks!
    Pablo

    Hello!! thanks for your answer!!!
    I called them and they told me that my plan hasn´t any limitation... If I use this nanosim card on my iPhone I can see that option enabled... :-S
    Thanks!
    Pablo

  • Not able to see rollback segment in oracle 10g

    hi all
    I created rollback segment by using command
    CREATE ROLLBACK SEGMENT rs1 TABLESPACE rbs_ts
    and made it online but not able to see
    segment name by using
    select * from dba_rollback_segs
    Please help me
    Ragards
    Edited by: 174313 on Dec 1, 2008 3:19 PM

    You can start with the following links in 10g documentation.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14220/mgmt_db.htm#sthref2230
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14220/logical.htm#CHDGJJEJ
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14220/logical.htm#CNCPT305

  • I am not able to see the photos under iphoto on my apple TV 2nd generation

    I am not able to see the photos under iphoto on my apple TV 2nd generation. I am using the same apple ID on both my mac and Apple TV. I ahve two apple iDs. It is a bit confusing.

    Follow the instructions in this Apple support article. Although the article refers to using photos with the screen saver it is also how you share photos with Apple TV in general.
    Apple TV (2nd generation): How to use your photos with your Apple TV screensaver

Maybe you are looking for

  • Xsl question

    Dear xsl gurus! My very limited knowledge of xsl doesn't allow me to come up with better solution.Can you please suggest something looking better. My xml document has very simple structure with 3 subnodes of the same level: <DOC> <a>...</a> <b>...</b

  • Output Type determination in Delivery

    I have maintained the Output conditions for the Shipping point in VV21.  But during delivery, the out put type is not getting determined.  I have done the same for other plants and it works well. Can anyone suggest what I should be looking at? Regard

  • Circular Dependencies Question

    I want to see if anybody has some good ideas on how to solve this. I have about 20,000 slocs in one main package and about 5 sub-packages. All of the dialogs in the system originally set the parent component to null(i.e JOptionPane.showConfirmDialog(

  • Does anyone here use Autohotkey? It helped me....Maybe you?

    Ive been using Autohotkey for over a year now, and I have to say it has decreased my worktime significantly. And it might help speed up your work as well. Disclaimer: Autohotkey is a FREE scripting program. I dont own it or make money off of it. I ha

  • Regarding policy map

    HI Team, If we use the folowing comands for QOS, what is the effect of    service-policy NIC-QOS-OUT, as i have studied service policy will be applied under physical interfaces. Here policy map has been defined and again it is referred under Parent-Q