Query on tech settings?

Hi Friends
In MM-Xi-SUS scenario, do we need to define logical systems,RFC destination, backend systems, def Port for all three systems in all three systems. Do we need to loginto their own server and client and perform these settings
Regards
Micheal

Hi,
It's completely depend on type (i.e adapter type) of scenario you are trying to build
If you are building RFC type then yes it's require RFC and other aspects that you mentioned.
Irrespective of your scenario, you need to maintain both Technical & Business system details in SLD of all your systems.
Regards
Sekhar

Similar Messages

  • Decimals in query on General Settings

    Hi experts,
    I set the decimal places in General settings as follows;
         Amounts = 0
         Decimals in Query = 2
    And currncies settings is as follows;
         EUR : Decimals = 2 Digits
    Then for example, Invoice can be input as 10.35 EUR. But if I check the JDT1 by query , the amount shows 10.
    It seems that the option for Decilas in query doesn't work. Is that a bug already known??
    Also I can't get 10.35 on PLD of Journal entry. The fiels is Debit amount (FC) and Credit amount (FC), they are also shown as 10.I think this is same reason that JDT1 doesn't show 10.35.
    I know if I set the decimal places of amounts=2, query shows 10.35. But Local ccy and System ccy have no decimal, so I don't want to set amount =2.   Version is 9.0 PL07.
    Please advise.
    Thanks and regards,
    Kaori

    Hi,
    Tested in 8.82 version:
    For example, create sales order with quantity of 1 and unit price 10.35
    Condition 1:
    Set all decimal places to zero and only set decimal place for query = 2
    Run below query:
    select t0.quantity , t0.unitprice from RDR1 t0.
    Result:
    T0.quantity         T0.unitprice
      1                              10
    Condition 2 :
    Set all decimal places to zero and only set decimal place for query= 2
    Run below query to multiply quantity with price
    select t0.quantity * t0.unitprice from RDR1 t0.
    Result:
    T0.quantity         T0.unitprice
      1                              10.35
    So decimal place in query will affect when do perform calculation through query.
    Condition 3:
    Set Price decimal places to 2 and only set decimal place for query= 0
    Run below query:
    select t0.quantity , t0.unitprice from RDR1 t0.
    Result:
    T0.quantity         T0.unitprice
      1                              10.35
    Final conclusions:
    1. When you perform calculation in query (condition 2), the decimal place in query will take effect, regardless of decimal place in all other field
    2. When you retrieve data directly from field (condition 3), the decimal place in query will not take effect. But decimal place set for price will take effect.
    3. In your case, your query directly retrieve the data from JDT1 table. So that decimal in query (2 place) no effect on query result. Query result shows 10 because, the decimal for price field 0.
    4. To get correct result (10.35), you have to set two decimal places for price field.
    5. Please ignore the SAP note.
    Hope it will be helpful.
    Thanks & Regards,
    Nagarajan

  • Query Governer Configuration Settings-URGENT

    Hi
    When I run my report,sometimes I get an error 'Not all rows have been retrieved.Data may be inaccurate'.
    Then i found out reason could be because of Query Governer settings (Tools->Options->Query Governer Tab)where i have checked option Limit retrieve data to 10 rows.
    My problem is
    1) I dont see an option to uncheck any of three features(i.Warn me if predicted query time exceeds.(ii) Prevent queries from running longer than (iii) Limit retrieve data to ) in Query Governer because all of them are disabled.
    2)If I try to increse the value from Limiting retrieve data to 10 rows to say 15 rows,I get an error 'This value cannot be set higher thn the limit specified by your Discoverer Manager'.
    Please advice me.How can i configure these settings.
    Thanks

    Well, there are default settings, but they can be overridden at the user level. Do Tools > Privileges in Administration, pick a user, and you will see a Query Governor tab there as well. In Discoverer Plus, under options, there is also a Query Governor tab there, so as a Business Plus user, I can change those values there as well. Can be as simple or as complex as you want it to be.
    John Dickey

  • Query Edit Security Settings

    I have a system in which some users are frequently creating and editing queries in BW production.  These queries were mostly transported from BWD --> BWP.
    They seem to have the ability to copy and query and then edit and save those changes BUT when they then try to make further changes to the new query they are told that they dont have security authorization.  It also seems that they are unable to delete queries even if they created them.
    Any ideas on what rights I need to give them or what transport settings I need to make?

    Hi Will,
    If your production system is closed for development (in SCC4), you should first allow the creation of queries. You do that in the transport connection, with the button 'object changeability'. Set ELEM (query element) to 'everything changeable'.
    Then you have to make shure that the key-users that should be able to make the copy of the query's have a role with the right authorizations.
    They need to have object S_RS_COMP with the sub-items:
    ACTVT: 01, 02, 03, 06, 16
    RSINFOAREA: authorized info-arease (or *)
    RSINFOCUBE: authorized infoCubes (or *)
    RSZCOMPID: SU_*  (in your case)
    RSZCOMPTP: REP
    Based on your system setting, it could also be that you need the autorization objects S_TRANSPRT, S_CTS_ADMI
    and S_DATASEt. You can check that by performaing an authorization trace in trx. ST01.
    Good luck!
    Daniel

  • Query Builder session settings as a solve to ORA-01843 (not a valid month)

    Hi All! I'm novice at Oracle and RDBMS, so sorry for a dummy question.
    I'm trying to make some queries to a tutorial database (10g XE) with Query Builder of Application Express 2.1000039.
    I'm requesting columns with id, date of order and status of order; in a column of ordering date as a "where" condition I've wrote:
    >= to_date('23-JUN-2006', 'DD-MON-RRRR') and got an error "ORA-01843: not a valid month".
    Then I've edited row filtering condition:
    >= to_date('23-JUN-2006', 'DD-MON-RRRR', 'NLS_DATE_LANGUAGE = american') and 've got a correct query result, BUT resulting table date format is DD-MM-RR.
    So, here is a couple of questions:
    1. Can I change a session settings (e.g. alter session set NLS_DATE_FORMAT = 'DD-MON-RRRR') such way, to use it in Query Builder, before building an application itself and not to write 'NLS_DATE_LANGUAGE = american' every time I'm inserting data to a date datatype field?
    2. I wonder why resulting table date format is 'DD-MM-RRRR'. How can I get a data exactly in a date format 'DD-MON-RRRR', how I'm specifying in a query?
    My operating system is Windows 7 Home Basic, NLS_DATE_FORMAT is DD-MON-YYYY in 2 cases in register and respectively in environment variable.
    SQL*Plus displays all mentionted query tables correctly, corresponding to an 'ALTER SESSION ..... SETTINGS'.
    Hope to your help, guys. Thanks for answers!

    Hi,
    you can run the following query so you will see the session parameter values, and any differences with database and instance values :
    SELECT
      a1.parameter as "Parameter",
      a1.value as "Database value",
      a2.value as "Instance value",
      a3.value as "Session value"
    FROM
      nls_database_parameters a1
      LEFT JOIN nls_instance_parameters a2 ON a1.parameter = a2.parameter
      LEFT JOIN nls_session_parameters a3 ON a1.parameter = a3.parameter
    ORDER BY
      a1.parameter ASC;What are the values for NLS_DATE_LANGUAGE and NLS_DATE_FORMAT ?
    1. Can I change a session settings such way, to use it in Query Builder, before building an application itself and not to write 'NLS_DATE_LANGUAGE = american' every time I'm inserting data to a date datatype field?In the application, It depends on the Application Primary Language and Application Date Format you have set in the application globalization attributes. But you can also alter the session every time the APEX engine connects to the database, by entering some PL/SQL code in the Initialization PL/SQL Code attribute of the application (Application Builder -> Application -> Edit Security Attributes) :
    BEGIN
       EXECUTE IMMEDIATE 'ALTER SESSION SET NLS_DATE_LANGUAGE = ''AMERICAN'' ';
    END;In all cases application level settings will only affect the application, not SQL Commands and Query Builder. I think you have to alter session manually each time for these two last tools :/

  • Query on technical settings!

    Hi experts,
    Need your valid support and information!
    In our company we are using 4.7 with ECC 6.0, we have sand box access. Now for our training purpose we would like to have portal to get practice on E-recrutiment, training and event management  travel mgmt etc... so how we can get the portal for sandbox to learn new technologies...Like Dev portal is there any system settings needs to be taken care for sandbox also. whats are the requirements, Please provide some inputs....
    Thanks,
    Shiv...

    HI
    Xi is not require to communicate between SCE and TREX.  You need to confirm the stand setting in for this while you config the CCM.  if you want then use F1 and help while config the same.  and comming to CCM and SUS no XI require.   Beucase CCM, SUS these all are business scenarios of SRM.  We gnerally config them through RFC betweeb SRN CCM, SRM and SSU.
    Do write to me if you have any queies on this
    Regards
    Satish

  • Query about Tech specs for purchasing new Macbook Pro

    HI,
    I have an 13-inch, Late 2011 Macbook Pro and all the details are as follows:
    Processor  2.4 GHz Intel Core i5
    Memory  4 GB 1333 MHz DDR3
    Graphics  Intel HD Graphics 3000 384 MB
    Serial Number  C02HLMQRDV13
    Software  OS X 10.9.4 (13E28)
    I wanted to purchase 13-inch MacBook Pro with Retina display with the following specifications:
    2.6GHz Dual-core Intel Core i5, Turbo Boost up to 3.1GHz
    16GB 1600MHz DDR3L SDRAM
    256GB PCIe-based Flash Storage
    Intel Iris Graphics
    But, I have following some very simple(and silly?) queries:
    1. Does my current Macbook Pro have only one core and the new one is dual-core i.e. two cores? Right?
    2. Memory in my current Macbook is 4 GB DDR3, but the new one says '16GB 1600MHz DDR3L SDRAM'. I believe SDRAM is pretty old. Is it that this SDRAM is based on DDR3 technology?
    3. Should I go for 8 GB or 16 GB? I usually have iTunes, 20-25 tabs on Safari, Terminal, Xcode/ Matlab, Microsoft Word/Powerpoint running in parallel on my Macbook. Would 8 GB RAM be enough for coming 3 years?
    4. How much useful is the jump in processor, say 2.6GHz to 2.8GHz?
    Thanks.

    Thanks for your quick response. I had a few follow up questions and it'd be great if you could answer them too:
    Your 2011 model has dual cores.
    So, essentially the only difference in processor from my current Macbook to new would be 2.4GHz to 2.6GHz, as both models have dual-cores.
    The only real difference in RAM between the two is that the Retina model comes with the RAM soldered onto the logic board, making it unable to be upgraded - oh and the new model ships with 1600MHz RAM rather than the 1333MHz shipped in the 2011 model.
    So, both the models - my current and the new one that I plan to buy - have RAM based on DDR3 technology. The difference is in the jump from 4GB to 16GB and 1333MHz to 1600MHz.
    8GB would probably be sufficient in the next couple of years; however, were I you, I would go ahead and order 16GB since you can never go back and put more RAM in as you could on the 2011 model.
    Yes, if the RAM comes soldered, I'd rather buy the 16GB version. Thanks for sharing that.
    Pretty significant - the actual speed doesn't tell the whole story. The new model also ships with a newer, faster, ore energy efficient processor.
    When you say that the new model ships with a newer, faster, energy efficient processor, which new model are your referring to?
    Also, Apple has Flash drives and not SSDs. How much is there a difference between the two? Is one better than the other?

  • Querying user settings

    Hi,
    After quite a bit of experience developing ASP gadgets for version 4.5, we've recently moved to Plumtree version 5 and .Net.
    One thing we would like to be able to do is provide a web service for use by other applications (outside the portal) which could request the retrieval of a specific User setting for a given user.
    I've seen some examples of similar challenges, but still a bit bewildered how to go about this (on the Plumtree side of things, the actual process of building our own web service is fine).
    The web service will be built with .Net & WSE, on a server with the Plumtree EDK installed. I've checked and our Plumtree installation also has the PTAPI QueryInterfaceAPI web service available.
    Should I use a PRC session, and impersonate the user I need to get the settings for, or will setting up a session as an admin user be sufficient to query the User settings object for another user?
    Any help offered would be gratefully received.
    Thanks,
    Charles

    Sorry - I'm a doofus. I didn't read your post completely.
    You're right - if you want to attach to this service w/o going through Plumtree/BEA first to obtain a login ID you'd need to impersonate a user (I'd suggest a secured admin account where the credentials are encrypted).
    Try this... (server API)
    In your web.config
    <appSettings> <add key="UserID" value="administrator" /> <add key="UserPassword" value="" /></appSettings>
    Encrypt these or do something to protect them.
    Read: How to use the ASP.NET utility to encrypt credentials and session state connection strings
    http://support.microsoft.com/default.aspx?scid=kb;en-us;329290
    Code Sample for Password Reset (Similar thing)
    '//create an admin connection Dim ptAdminSession As IPTSession = New Session 'PortalObjectsFactory.CreateSession ptAdminSession.Connect("administrator", "", Nothing) '//reference web.config values instead
    Dim sNewPassword As String = ""
    '//start user impersonation Dim ptUserSessionTemp As IPTSession = ptAdminSession.ImpersonateUser(iUserID)
    '//get the user's email address Dim sEmail As String = "" sEmail = ptUserSessionTemp.GetUserInfo.GetEmail
    If sEmail.Length > 0 Then '//open the user for editing Dim oUser As IPTUser = ptAdminSession.GetUsers().Open(iUserID, True)
    '//reset the password oUser.SetPassword(sNewPassword)
    '//mungle with server context - don't ask why we do this after we have a handle on the object - I don't know '//there's likely a very good reason for it, I'm sure Dim mySC As IPTServerContext = oUser.GetInterfaces("IPTServerContext") mySC.Store() mySC.UnlockObject()
    '//send email
    Else '//throw an exception here - return "no email address"
    End If

  • Error at report designer while opening the query

    Hi
    in report designer i am trying to open query
    i am getting error like
    error while loading query meta data
    check the query and portal settings
    i am getting this error only this report only
    Diagnosis
    An error occurred in the BI components on the SAP J2EE Engine.
    System Response
    Procedure
    Contact your system administrator to have the error analyzed in detail.
    Procedure for System Administration
    Start the Visual Administrator, log on to the SAP J2EE Engine and choose "<J2EE_SID>" ->"Server" -> "Services" -> "Log Viewer".
    The file "defaultTrace.trc" includes detailed information about the error that occurred. In Windows, you can find this file in the Log Viewer under "Cluster <computer name>" -> "Server <server number>" -> "<drive>:\usr\sap\<SID>\JC<INSTANCE>\j2ee\cluster\server<NUMBER>\log". ". In Unix, the file is located under "/usr/sap/<SID>/JC<INSTANCE>/j2ee/cluster/server<NUMBER>/log".
    If the file does not include enough detail about the error, you can increase the log level to obtain more information. To do this, choose "<J2EE_SID>" -> "Server" -> "Services" -> "Log Configurator". On the "Locations" tab page, choose "com" -> "sap" -> "ip" -> "bi" -> "webapplications". Using the selection list on the right side of the screen, you can increase the log level, whereby "DEBUG" represents the log level with the most information. You can save your settings by choosing the "Save" icon. The change to the log level is active immediately. Once you have successfully analyzed the error, you should set the log level back to its default value using the appropriate pushbutton; continuous writing to the log file negatively affects the overall performance of the system.

    Hi Suneel,
    If you are using any JAVA based applications or objects in the Report designer this error is thrown.
    It's better to install Java engine to correct this error.
    You must contact Basis people in order to solve this issue.
    With Regards,
    Ravi Kanth

  • Error while creating query component

    Hi,
    I working in a production environment where I have 2 application servers, 2 query servers and 2 crawling servers. I have created the search service application on the application server with the default topology then I modified the topology to add the crawl
    components on the crawl servers successfully.
    Now I have an issue creating new or modifying the current query components. Every time i try the create new query component I receive the below issue. The query server is having the services "SharePoint Server Search" and "Search Query and
    Site Settings Service" running and other services are stopped. 
    So, does anyone knows why this issue happens and how to fix it
    Errors were encountered during the configuration of the Search Service Application. Microsoft.Office.Server.Search.Administration.SearchConfigWizard+SearchConfigWizardException: Topology provisioning failed due to an error.Topology activation was aborted
    because of System.ArgumentException: File to copy \\RUH-NDC-KBP-A01\b941e2c4-c227-40d6-9f40-20d25e59b39e-query-0\b941e2c4-c227-40d6-9f40-20d25e59b39e-query-0\Projects\AnchorProject\Indexer\CiFiles\02030001.bsd does not exist on RUH-NDC-KBP-Q01. at Microsoft.Office.Server.Search.Administration.CopyFilesJob.Initialize()
    at Microsoft.Office.Server.Search.Administration.CopyFilesJob..ctor(SPService owningService, SPServer serverToRunOn, String name, Guid searchApplicationId, String[] sourcePaths, String[] destinationPaths) at Microsoft.Office.Server.Search.Administration.SearchApi.RequestFileCopy(String
    fileCopyName, String serverNameToRunOn, Guid searchAppId, String[] sourcePaths, String[] destinationPaths) at Microsoft.Office.Server.Search.Administration.QueryComponent.RequestRepartitionIndexesFiles(QueryComponent component) at Microsoft.Office.Server.Search.Administration.QueryComponent.CopyRepartitionIndexes(QueryComponent
    component) at Microsoft.Office.Server.Search.Administration.QueryComponent.ExecuteCurrentStage(). To retry the activation, run the cmdlet Set-SPEnterpriseSearchQueryTopology -Active. If the error persists, restart the activation by calling the CancelActivate()
    method on the query topology object, and then calling Set-SPEnterpriseSearchQueryTopology -Active. at Microsoft.Office.Server.Search.Administration.SearchConfigWizard.WaitForTopologyTimerJobToFinish() at Microsoft.Office.Server.Search.Administration.SearchConfigWizard.UpdateSearchApp()
    at Microsoft.Office.Server.Search.Administration.SearchConfigWizard.ProvisionSearchServiceApplication() at Microsoft.Office.Server.Search.Administration.SearchConfigurationJobDefinition.ExecuteTimerJob()
    2/13/2014 5:04:35 PM 
    Regards,
    Ehab
    Ehab

    Are you creating the new topology using Central Administration or PowerShell?
    It looks like there is an issue synchronizing the search configuration files in the share.
    Jason Warren
    @jaspnwarren
    jasonwarren.ca
    habaneroconsulting.com/Insights

  • Cache settings in BI7. Data still not displayed correctly in RSRT

    Good day
    Please assist? I did scan SDN for a similar problem and did check the CACHE settings in RSRT etc.
    My problem is: If I check the data in the DSO, then the updated information that was loaded yesterday is displayed. When I run the query, it does not display the last loaded information. I have run the query in RSRT and the updated information does not display either. I have changed the cache properties of this query to different settings already, and running the query from RSRT, with no success.
    I also checked the query itself (design) It is not restricted to anything. User selects 0CALMONTH as variable only. I have logged out and in again after each Cache setting, no success of displaying the updated DSO information.
    Can anyone please tell me why the query does not pick up the latest information from the DSO?
    Thanks in advance.
    Cj

    Hi Cj,
    Is the last request marked as Ready for Reporting? This needs to be the case before the latest data comes up in the query.
    Hope this helps!
    Regards,
    Saurabh

  • Transport of BI Query/ web items

    Hi Gurus,
    I would like to know that when we create a Query, or Report how to transfer it from Development system to Quatity and then Production.
    Could you provide me any document with steps.
    Thanks,
    Venkatesh

    Hi,
    If you want to transport BEX queries then, after creation of the query (Saving with a Tech name) in the query designer automatically a pop-up will be displayed for transport connection.
    Else we can do by another process:
    Go to RSA1-> Transport connection -> Object types->Query elements->Query->Select objects->Find the query with Tech name->tranfer to Rt. side panel->select transport/Package. Collect the query in request. If you want to transport the web templates based on that query select grouping as In data flow afterwards.
    Hope this helps...
    Rgs,
    Ravikanth

  • Find query name based on workbook id and vice versa

    Hi,
      I need to developed a progarm in which user can enter Query name ( tech name ) and  it should display all workbooks releated to it  and vice versa .
    Is there any tables which stores this relationship.?
    Wating for response.
    Thx in advance .
    Regards
    Nilesh

    hi Nilesh,
    Table RSRWORKBOOK WORKBOOKID, GENUNIID is the query ID;
    goto RSRREPDIR for detail query properties
    (query belongs, in bex analyzer, right click cell 'properties', tab 'information' - query id)
    Queries in Work Book
    determine the workbooks
    table with list of work books
    hope this helps.

  • How to query Cell level Security in 11g AW

    Are there any views/tables that we might be able to use to query the Security settings in 11g AW?
    In AWM 11g we have the ability to grant users/groups security at a cell level, with this functionality there is no need for us to maintain the PERMIT_WRITE program to manage Write access to users. I could not find any document that states how we can manage/view the security outside the AWM tool.

    For Oracle 11.1, there is a dba-level view called
    DBA_XDS_INSTANCE_SETS which provides the data security definitions
    for both rdbms table-based and olap dimension/cube-based data security
    documents. The actual definition of data security is stored in the XML DB
    repository under the XDB schema.
    SQL> desc dba_xds_instance_sets
    Name Type
    SCHEMA_NAME VARCHAR2(30)
    OBJECT_NAME VARCHAR2(30)
    INSTANCE_SET VARCHAR2(30)
    DESCRIPTION VARCHAR2(4000)
    STATIC VARCHAR2(5)
    EVAL_RULE VARCHAR2(4000)
    ACLIDS SYS.XMLTYPE
    There is no way to actually manage the data security documents outside of
    AWM for 11.1 in terms of creating/editting/deleting the data security documents
    at least none that is documented.
    Here is an example of what the DBA_XDS_INSTANCE_SETS view returns:
    SQL> select * from dba_xds_instance_sets;
    SCHEMA_NAME OBJECT_NAME INSTANCE_SET
    DESCRIPTION
    STATI
    EVAL_RULE
    ACLIDS
    GLOBAL TIME DEFAULT_POLICY
    false
    1 = 1
    <aclids xmlns="http://xmlns.oracle.com/xs">
    <aclid>4C96964E68CC309FE040578C550414E2</aclid>
    </aclids>
    GLOBAL TIME policy1
    false
    GLOBAL."TIME".DIM_KEY IN ('186', '176', '133', '134', '135', '177', '136', '137', '138')
    <aclids xmlns="http://xmlns.oracle.com/xs">
    <aclid>4C96964E68CF309FE040578C550414E2</aclid>
    </aclids>
    Have you created data security in AWM on dimensions/cubes in 11.1?
    Any feedback about your experiences with AWM around data security would
    be welcome.

  • Number of times a Query is Run

    Hi Experts,
    I would like to find out:
    1. what are the query names that are on my infocube(s) have been used most?
    2. how many times each of these queires have run?
    3. who are the users who ran these queries?
    4. When was the last time each of these queries has run?
    I am trying to looking up in RSDDSTAT, but i am not able to find "no. of times" each query has run

    Here are the steps,
    1.Goto ST03N
    2.Select user mode as “Expert”
    3.From Functions list (upper left pane) select “BW System Load” and under month selection, select your time duration
    4.From the analysis view (down left pane) from the “Reporting” expand “Query Runtimes” and double click “BEx Queries”.
    5.Output is shown in right pane.
    6.Select aggregation level as query.
    7.Double click on the query name
    8.A window popup with every run of the query.
    9.To find out, how many times it has run, click on “Display Graphics” button. It will show with no of runs as X-axis
    OR
    if you are working with BW 3.5 you can look in table RSDDSTAT in BI 7.0 it is RSDDSTAT_OLAP.
    Make a selction on the infocube and the OLAP Statistic Object which is the query ID/tech name and execute. Then you should see how often the query was executed, by whom and which date/time.
    Hope it helps..

Maybe you are looking for

  • Issue in PPT Report......

    Hi every one... <% response.setContentType("application/vnd.ms-powerpoint"); response.setHeader("Content-disposition","attachment;filename=re[port.ppt"); %> by aboue code i can open jsp page in PowerPoint... but the problem is all text is coming in s

  • APEND the file depending upon the source field length

    Dear ALL, Scenario is IDOC to FILE(using File Content Conversion in receiver side) *Requirement:* Payment Id is the field from IDOC. 1st time data for the field length is 6 digit that always end with '0' that is 6th character or 6th position '0'(this

  • Error while installing nwds 7.2 feature files

    Dear all, I am using NetWeaver CE 7.2 and the NWDS 7.2. But while installing the plugins and feature files the installation hangs up (it shows the same progress percentage for several days and does not make any further progress). After cancelling the

  • Hoe, How can I sync my In-App Purchases from my iPod touch 4th generation to my iphone5s?

    How can I sync my In-App Purchases from my iPod touch 4th generation to my iphone5s?

  • Problem with adding text to photos in PE6 on my iMac

    I can't seem to add text to any photo. I have a new iMac, installed PE6, and all other features seem to be working fine. I even reset all tools to default just to be sure I didn't tweak something. When I click on the Text tool and click on a photo, a