Help Query selection criteria

Hi all experts,
I have a problem making my selection criteria on this query for the user to input the numbers 1 to 10 variables
is there anything that can help me to resolve this
I have tried many times but it just does not work
Query me this:
SELECT
T1.[DocEntry], T0.[CardCode], T0.[CardName], T0.[DocDate], T1.[ItemCode], T1.[Dscription], T1.[Price], T2.[LastPurPrc]T1.[NumPerMsr] AS 'Last Purchase Price', (T1.[Price] -  (T2.[LastPurPrc]T1.[NumPerMsr])) AS 'Variance', (((T1.[Price] - (T2.[LastPurPrc]T1.[NumPerMsr]))/(T2.[LastPurPrc]T1.[NumPerMsr]))*100) AS 'Variance%', T3.[SlpName]
FROM
OPCH T0  INNER JOIN PCH1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN OITM T2 ON T1.ItemCode = T2.ItemCode INNER JOIN OSLP T3 ON T0.SlpCode = T3.SlpCode
WHERE
(T2.[LastPurPrc] > 0) AND Month(T0.[DocDate]) = Month(Getdate()) AND Year(T0.[Docdate]) = Year(Getdate()) AND ((((T1.[PriceBefDi] - (T2.[LastPurPrc]T1.[NumPerMsr]))/(T2.[LastPurPrc]T1.[NumPerMsr]))*100) Between >= '[%0]'AND <= '[%1]')
Thanks

Try this:
SELECT
T1.DocEntry, T0.CardCode, T0.CardName, T0.DocDate,
T1.ItemCode, T1.Dscription, T1.Price,
T2.LastPurPrc*T1.NumPerMsr AS 'Last Purchase Price',
(T1.Price - (T2.LastPurPrc*T1.NumPerMsr)) AS 'Variance',
(((T1.Price - (T2.LastPurPrc*T1.NumPerMsr))/(T2.LastPurPrc*T1.NumPerMsr))*100) AS 'Variance%',
T3.SlpName
FROM
OPCH T0 INNER JOIN PCH1 T1 ON T0.DocEntry = T1.DocEntry
INNER JOIN OITM T2 ON T1.ItemCode = T2.ItemCode
INNER JOIN OSLP T3 ON T0.SlpCode = T3.SlpCode
WHERE
(T2.LastPurPrc > 0) AND Month(T0.DocDate) = Month(Getdate())
AND Year(T0.Docdate) = Year(Getdate())
AND ((((T1.PriceBefDi - (T2.LastPurPrc*T1.NumPerMsr))/(T2.LastPurPrc*T1.NumPerMsr))*100)
Between  [%0] AND  [%1])

Similar Messages

  • Query selection criteria - changing description field..?

    Hi Experts,
    i want to change description filed in user query selection criteria form..
    i have 3 fileds  :
    docdate - this filed i want to chage 'Document First'
    docdate - This filed i want to change 'Document Last'
    name -
    my problem: screenshot
    [Click Here|http://img638.imageshack.us/img638/3466/userqueris.jpg]

    The system always asks with the description of the field you refer to with the parameter variable in the select statement.
    I sometimes defined a UDT only for getting the appropriate title in the parameter entering window. The table has no data; I used it only for its field names.
    (The parameter request can be placed inside a comment and the entered value is used setting an SQL variable like this:
    declare @d datetime
    /*select t.createdate from ordr t where t.createdate=[%0]*/
    set @d=[%0]
    This SQL variable can be used later in the real query.)
    (But then you loose the possibility to choose from the u2018List of existing valuesu2019

  • Query Selection Criteria

    Hi Gurus,
    In the cube we have Valid from and Valid To date. in the Selection Criteria user needs to select Period (mm/yyyy) valid from and validto i e Start date and End date. If I am using intrvel in Valid from variable definition i .e selection criteria we are selecting the valid from start date and end date. We need to select valid from Start date and Valid to End date. how will we do this in the query.
    proper response will be rewarded with points.
    Thanks
    RK

    Hi,
    Create a variable and select the options as per your requirement wheather single value or multiple single values or interval range etc on the infoobject in the query which you want to see.
    Cheers,
    Malli.........

  • Duplicate Entries in query Selection Criteria

    Hi,
    I am having Infoobject 'period' in Query Filter,in drop down of selection it is showing Two values for each period.
    This infoobject is fetching data from master table T009B,This table is having Two calenders for period.
    Please let me know what can I do to restrict to single entry for each period.
    Thanjks
    Sudhakar

    Hi Sudhakar
    You can use Customer exit variable if not already using. That way you can remove duplicate entries via little ABAP.
    You can go through the following link for the steps involved in creating a Customer Exit variable.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d09d4588-3832-2c10-e185-f778d9dbea85?quicklink=index&overridelayout=true
    Regards,
    Kush Kashyap

  • POWL: Freely Programmed Input help for Selection Criteria possible

    Hi,
    is it possible to add a freely programmed value help to a POWL-selection field? In this case the use of OVS is unsufficient from the user perspective.
    Can anybody guide me?
    Thanks, Elke.

    I dont intend to create another search help component for my 2nd input field because if let say i have 20 input fields that requires search help, does that means I need to create 20 search help components and embed 20 of them into my parent component?
    NO need of creating 20 more search helps if you have these 20 attributes in the result table of the value help.
    just check in the help from where the help is getting called and then pass the value accordingly.
    here is a sample code where i am checking whether the search help is called from ID field or Location field and then passing
    the required info back.
    lo_listener = wd_comp_controller->value_help_listener.
    lv_attrib_name = lo_listener->f4_attribute_info-name.
    IF lv_attrib_name EQ 'ID'.
    lo_listener->f4_context_element->set_attribute( value = lv_id
    name = lv_attrib_name ).
    ENDIF.
    IF lv_attrib_name EQ 'LOCATION'.
    lo_listener->f4_context_element->set_attribute( value = LOC
    name = lv_attrib_name ).
    ENDIF.
    wd_comp_controller->fire_vh_data_selected_evt( ).
    thanks
    sarbjeet singh

  • Can we use Selection Criteria Screen to tell Query which SQL script to run?

    Dear All,
    When I run this code, it gives me the screen below:
    declare @ScanOp4 nvarchar (30)
    set @ScanOp4=
    /*select T3.U_ScanOp4 from [dbo].[@SCANNING] T3 where T3.U_ScanOp4*/ '[%0]'
    I have used Tools -> Customization to define a UDT and UDF
    Query - Selection Criteria
    Invoice / Credit Note?            [----------------- ]
                                     (there's a drop-down arrow with 2 choices:
                                      Inv = Invoice
                                      CN  = Credit Note
    [OK]       [Cancel]
    Now, I have 2 very similar queries; the only difference is that they use different tables because one is for
    Purchases (OPCH/PCH1), and the other is for Credit Memos (ORPC/RPC1)
    I want to put the above declaration together with my 2 queries all in a single query so that:
    (a) If I select 'Invoice', the Invoice part is executed and only invoices are displayed,
    (b) If I select 'Credit Note', the Credit Note part is executed and only Credit Notes are displayed.
    Do you think such a Query is possible? If yes, please give me an idea how I can achieve it.
    I don't want to use UNION ALL because one of my fields is a LINK field to which I have linked all PDF Scanned documents.
    I want to preserve the links, since this is the reason I'm writing the query.
    Thanks
    Leon Lai
    Here are my skeleton codes
    1st Query: User selects 'Invoice' -
    SELECT
    T0.[TaxDate] AS 'Doc Dt',
    T5.[TransType] AS 'Txn Type',
    T0.[DocNum] AS 'Doc No.',
    T0.[DocTotal] AS 'Amount'
    FROM [dbo].[OPCH] T0
    INNER JOIN [dbo].[PCH1] T1 ON T0.[DocEntry] = T1.[DocEntry]
    INNER JOIN [dbo].[OJDT] T5 ON T0.[TransID]  = T5.[TransID]
    2nd Query: User selects 'Credit Note' -
    SELECT
    T0.[TaxDate] AS 'Doc Dt',
    T5.[TransType] AS 'Txn Type',
    T0.[DocNum] AS 'Doc No.',
    T0.[DocTotal] AS 'Amount'
    FROM [dbo].[ORPC] T0
    INNER JOIN [dbo].[RPC1] T1 ON T0.[DocEntry] = T1.[DocEntry]
    INNER JOIN [dbo].[OJDT] T5 ON T0.[TransID]  = T5.[TransID]

    Try this:
    declare @ScanOp4 nvarchar (30)
    set @ScanOp4=
    /*select T3.U_ScanOp4 from [dbo].[@SCANNING] T3 where T3.U_ScanOp4*/ '[%0]'
    If @ScanOp4='Inv'
    SELECT
    T0.[TaxDate] AS 'Doc Dt',
    T5.[TransType] AS 'Txn Type',
    T0.[DocNum] AS 'Doc No.',
    T0.[DocTotal] AS 'Amount'
    FROM [dbo].[OPCH] T0
    INNER JOIN [dbo].[PCH1] T1 ON T0.[DocEntry] = T1.[DocEntry]
    INNER JOIN [dbo].[OJDT] T5 ON T0.[TransID]  = T5.[TransID]
    If @ScanOp4='CN'
    SELECT
    T0.[TaxDate] AS 'Doc Dt',
    T5.[TransType] AS 'Txn Type',
    T0.[DocNum] AS 'Doc No.',
    T0.[DocTotal] AS 'Amount'
    FROM [dbo].[ORPC] T0
    INNER JOIN [dbo].[RPC1] T1 ON T0.[DocEntry] = T1.[DocEntry]
    INNER JOIN [dbo].[OJDT] T5 ON T0.[TransID]  = T5.[TransID]

  • How to count no. of days from selection criteria in BEx

    hi,
    I need to do some calculations in query and one of requirements is to count number of days for which query was executed (day period is in query selection criteria)
    I would like to use it for calculated KF definition.
    Does somebody knows how to get this number?
    Regards,
    Andrzej

    Hi Andrzej,
    The answer is correct - you have to do it in user-exit. You have to learn it becouse its a very powerfull solution and is very ofen used in reporting.
    See help ... http://help.sap.com/saphelp_nw04/helpdata/en/f1/0a56f5e09411d2acb90000e829fbfe/content.htm
    In the interface of this exit you will find all query selections + sy-datum = what you need.
    Pozdrowka
    Wojtek

  • BEx Selection Criteria need to be change

    Hi friends,
    I need to change the Bex Query Selection Criteria from Date to Year.
    Kindly Help me out on this Issue.
    Thanks in Advance
    Priyanka

    Hi,
    Let the variable for 0CALDAY be ZVARDAY of Processing type Customer Exit Interval
    Let the variable for 0CALYEAR be ZVARYER of User Entry single value
    Add the 0CALYEAR to the Filter and attach the variable ZVARYER
    Go to Cmod transaction and add the code to the variable exit
    check the code with an Abap Consultant.
    WHEN 'ZVARDAY'.
        IF i_step = 2.
          READ TABLE i_t_var_range INTO zrange
            WITH KEY vnam = 'ZVARYER'.
          lyear = zrange-low+0(4).
            CONCATENATE lyear '0101' INTO l_s_range-low.
            CONCATENATE lyear '1231' INTO l_s_range-high.
          APPEND l_s_range TO e_t_range.
    regards
    Happy Tony

  • Can we change parameter descriptions in Selection Criteria. YES we can!

    Dear All,
    I have been struggling some time on some way to change the parameter descriptions in the Query - Selection Criteria screen.
    While doing numerous tests on trial-and-error, I accidentally hit upon a solution which appears to work!
    To change a parameter description, we simply have to reverse the order in which the WHERE clause is written.
    Please refer to the Query below:
    I used Customization Tools to create a UDT called @SCANNING
    and a UDF called U_ourref
              Title   : ourref
              Description : Our Reference
    If I use WHERE clause the conventional way, ie
    WHERE
    T1.[ImportLog] = @ourref
    I get the following Selection Criteria screen:
    Query - Selection Criteria Screen
    Import Log         .........................
    [OK]   [Cancel]
    If I write WHERE clause by interchanging the 2 sides of the equality, i.e
    WHERE
    @ourref = T1.[ImportLog]
    I get this screen:
    Query - Selection Criteria Screen
    Our Reference         .........................
    [OK]   [Cancel]
    Well! Is this not a way of changing the parameter description?
    And it works!
    My Problem
    The solution is nice. However, I wanted to use LIKE instead of EQUAL TO
    in order to allow Query to search for similar items.
    With the conventional clause, I can use '%[%1]%' in declaration and LIKE in the WHERE clause.
    With the reverse clause, I cannot figure out how to do it.
    Could anybody help?
    Thanks
    Leon Lai
    declare @ourref nvarchar (30)
    set @ourref =
    /*select T2.U_ourref FROM [dbo].[@SCANNING] T2 where T2.U_ourref*/ '[%1]'
    SELECT
    T0.[TaxDate] AS 'Doc Dt',
    T0.[DocNum] AS 'SAP Ref.',
    T0.[CardName]  AS 'Supplier Name',
    T0.[DocTotal]  AS 'Amount',
    T1.[ImportLog] AS 'Our Ref',
    T1.[BlockNum]  AS 'Reqn No.'
    FROM [dbo].[OPCH] T0
    INNER JOIN [dbo].[PCH1] T1 ON T0.[DocEntry] = T1.[DocEntry]
    INNER JOIN [dbo].[OJDT] T2 ON T0.[TransID] = T2.[TransID]
    WHERE
    @ourref = T1.[ImportLog]

    Dear István Korös  ,
    My main concern was modifying the Parameter Description in the Selection Criteria Screen.
    I certainly tried your suggestion, and it works, but unless I modified the WHERE Clause
    from :
    T1.[ImportLog].@ourref
    to:
    @ourref = T1.[ImportLog]
    the Selection Criteria screen shows:
    Query - Selection Criteria Screen
    Import Log         .........................
    [OK]   [Cancel]
    It is only after I have 'primed' the system by using:
    WHERE
    @ourref = T1.[ImportLog]
    that the Parameter Description changes to:
    Query - Selection Criteria Screen
    Our Reference         .........................
    [OK]   [Cancel]
    I can then use your line:
    WHERE T1.[ImportLog] like '%'@ourref'%'
    without any problem. The amended Parameter Description remains!
    I noticed something strange:
    Once I have 'primed' the system, it always shows the amended description on the Selection screen!
    Before priming, it always showed the system description.
    Don't know why?
    Anyway, I found a trick to 'prime' the system in all my queries to make sure the amended name appears
    on the Selection screen. I write:
    WHERE
    (@ourref    = T1.[ImportLog] OR
    T1.[ImportLog] like '%'@ourref'%')
    The first line is just for priming to ensure the Parameter Name will be changed.
    The 2nd line is the correct code to use.
    With this trick, we can change the Parameter Descriptions to whatever name we want.
    The only problem is that you lose the function List of available values.
    Thanks a lot,
    Leon Lai

  • Can we make the SELECTION CRITERIA BOX act as a Menu / Submenu system?

    Dear All,
    I have written several queries.
    For user convenience, I wish to combine all related queries in a single Query and use the Selection Criteria box as a Menu System to select which Query script to run.
    I can already do this by the use of variables.
    But all  variables are shown in the Selection Criteria Box, and  users must fill in only the relevant boxes.
    It's not a problem, but as the number of Queries grows, the Selection box becomes quite long and distracting.
    I wonder if it is possible to create a sub-menu?
    Example
    Let's say: When you run the Query, it gives this Selection Box:
    Query - Selection Criteria
    Choose a Report                                  [                     ]
                                                    There are 2 choices:
                                                           (a) AP Aging by Document Date
                                                           (b) AP Aging by Posting Date
    [OK]                [Cancel]
    When you choose AP Aging by Doc Date, this Selection Box should pop up:
    Query - Selection Criteria
    Document Date                                  [                     ]
    [OK]                [Cancel]
    And when you choose AP Aging by Posting Date, this Selection Box should pop up:
    Query - Selection Criteria
    Posting Date                                  [                     ]
    [OK]                [Cancel]
    Please let me know if this kind of menu / sub-menu system is possible using SQL only?
    I tried (see code below), but all variables appear on the initial screen (not what I expect) - like this:
    Query - Selection Criteria
    Choose a Report                             [                     ]
    Document Date                               [                     ]
    Posting Date                                [                     ]
    [OK]                [Cancel]
    Thanks
    Leon Lai
    Here's a test code: (not exactly for the illustration above)
    declare @apaging1 varchar(max)
    set @apaging1 =
    /*select T6.U_apaging1 from [dbo].[@APAGING] T6 where T6.U_apaging1*/ '[%0]'
    /* @apaging1 : [0 = Summary]  [Detailed]  */
    If @apaging1 = ' ' set @apaging1 = 'Sum'
    If @apaging1 = 'Sum'
    GOTO Screen1
    If @apaging1 = 'Det'
    GOTO Screen2
    Screen1:
    begin
    declare @aptxn nvarchar (30)
    set @aptxn =
    /*select T9.U_aptxn from [dbo].[@APTRXNS] T9 where T9.U_aptxn*/ '[%9]'
    /*@aptxn: [0 = PU] [PC] [Both]*/
    If @aptxn = ' ' set @aptxn = 'PU'
    end
    Screen2:
    begin
    declare @taxdt1 date
    set @taxdt1=
    /*select T1.[TaxDate] from [dbo].[OPCH] T1 where T1.[TaxDate]*/              '[%5]'
    end

    Dear István Korös 
    Thanks a lot.
    Sad  
    At least, your answer will save me a lot of time searching for the unattainable.
    Best Regards
    Leon Lai

  • The parameter name [...] in the query's selection criteria does not match..

    Hi all,
    I'm trying to pratice EJB 3 (which I learnt at school), with JSF and JPA, but i'm really stuck with that error :
    Exception [TOPLINK-6094] (Oracle TopLink Essentials - 2.0 (Build b41-beta2 (03/30/2007))): oracle.toplink.essentials.exceptions.QueryException
    Exception Description: The parameter name [departmentID] in the query's selection criteria does not match any parameter name defined in the query.
    Query: ReadAllQuery(oracle.datamodel.Employees)
    I will try to explain clearly what i'm trying to do :
    In fact, i'm following that tutorial :
    http://www.oracle.com/technology/obe/obe1013jdev/10131/ejb_and_jpa/master-detail_pagewith_ejb.htm
    But, as i didn't have any oracle database, but had a mysql one on my machine, i decided to use that DB instead of the the oracle DB... So i created a set of example data (to replace the oracle example set) ...so i created the tables EMPLOYEE, and DEPARTMENT... with the correct relations (FK) and PK)
    All was ok, i choose my "mysql-connector" (jdbc) instead of the oracle jdbc connector... so i could follow the tutorial.
    My problem appears at the step 12 (of "Creating a Master-Detail JavaServer Faces Page"), when i run the file deptEmployees.jspx.
    The information of the first departement displays correctly :
    departmentID 1
    departmentName ... etc
    but it can't display the employees belonging to that department !
    the error is :
    JBO-29000: Exception Description: The parameter name [departmentID] in the query's selection criteria does not match any parameter name defined in the query. Query: ReadAllQuery(oracle.datamodel.Employees)
    I think i understand what is the problem... I think that the query in charge of gathering the data of a specific departement need a parameter, but couldn't find it. But i don't know why :-/ I have tried many things and read the topics talking about that error... but it didn't solved the problem. I don't know anymore where to investigate.
    I have created a Zip file of my work (it's an EJB/JSF Application.. with jdev 10.1.3.3.0)
    (available here : http://dl.free.fr/mQ5esdQuS/EJB_appli.zip)
    I would be glad if someone could take few minutes to help me.
    Thank you in advance,
    Thomas B (student)

    Hello,
    This is a common mistake. Java string comparisons in TopLink are case sensitive by default, and since column names are uppercase when defaulted, TopLink cannot find the "departmentID" column name. In this case, Departments ID column defaults to "DEPARTMENTID" as required by the JPA specification.
    Either change Departments id annotation to     @Id
        @Column(name="departmentID", nullable = false)
        private Integer departmentID;or change Employees' ManytoOne annotation to:
        @ManyToOne
        @JoinColumn(name = "departmentID", referencedColumnName = "DEPARTMENTID")
        private Departments departments;Best Regards,
    Chris

  • How make default values in the selection criteria of BEx query????

    Hi all
    I have to create a brand new query, in the selection criteria(Prompts) I have two prompts. one prompt should show current budget year and second prompt should show next budget year, both prompts are mandatory and default.
    Can any one please let me know how to obtain current and next budget year??? do I need to write any customer exit or do i need to create a offset???
    Two prompts are using same infoobject 0fiscper which is mapped to ECC Table MBEW and field is LFGJA.
    Thanks

    HI sathiyaa,
    so you want to show user with two prompts one will show current year and the other next year value by default.
    //tell me that if you user change the current year value for ex: it will show 2011 by default.. and user changed it to 2009.
    you want to show 2009 year results or 2011 even though he changed the prompt.
    Here i'm considering that even though user changed current year to some other year still you want to show the current year results.
    Create a customer exit variable for calyear with ready for input (checked).
    customer exit code in CMOD :
    when ' customer exit var for cal year'
    IF I_step = 1.
    clear l_S_range.
    l_S_range-low = sy-datum+0(4).
    l_s_range-sign = 'I'.
    L_s_RANGE-opt = 'EQ'.
    ENDIF.
    if i_step = 2.
    data: zyear(4) type c.
    zyear = sy-datum+0(4).
    ex: l_s_range-sign = 'I',
    l_s_range-opt = 'EQ'.
    L_s_range-low = zyear.
    appen l_s_range to e_t_range.
    after this create a variable offset
    create a new selection in the structure, drag the KF and calyear restricted by current year variable . Copy the same selection and insert it as a new selection, go back to the calyear restriction, right clik on the variable. specify variable offset and enter + 1.
    or search in sdn how to create variable offset it will help you
    Regards,
    Ranganath.

  • ABAP QUERY HEADER from "selection criteria"

    Dear Expert,
               I would like to add coding for showing "billing date from - to" (selection criteria) to my ABAP QUERY Header. I used "SAP List Viewer" as my reports.
    Can anyone sharing idea and how to code it?
    Greate Thank,
    Prach

    Hi Andrzej,
    The answer is correct - you have to do it in user-exit. You have to learn it becouse its a very powerfull solution and is very ofen used in reporting.
    See help ... http://help.sap.com/saphelp_nw04/helpdata/en/f1/0a56f5e09411d2acb90000e829fbfe/content.htm
    In the interface of this exit you will find all query selections + sy-datum = what you need.
    Pozdrowka
    Wojtek

  • Querying a table based on a selection criteria

    Hi Gurus,
    Could you please help me in creating a function module that picks records from the table based on certain selection criteria.For eg, If contract number(a primary field) is an import parameter and I want the Function module to export all the records with contract number starting with 1 or may be ending with 303.How could I query this??
    Thanks,
    Ashwini

    Hello,
    Creation of Function Module
    Goto TCode SE37
    Click on the Menu Goto->Create Function Group
    Create Z (ZPTP) function group and Activate Function Group even if the error occurs
    Create Function module Namely Z (ZTEST) assign to the function group (ZPTP)
    Go to the Import parameters (EBLEN TYPE EKKO-EBELN)
    Go to the Tables ( itab type ekpo)
    Goto the Source code
    tables ekpo.
    Select * from ekpo into table itab
    where ebeln eq ebeln.
    Activate the function module and run the function
    regards
    suresh nair

  • How to call the same query more than once with different selection criteria

    Hi,
    Please do anybody know how to solve this issue? I need to call one query with the fixed structure more than once with different selection criteria. For example. I have following data
    Sales organization XX
                         Income 2008  Income 2009
    Customer A       10                 20
    Customer B        30                  0
    Sales organization YY
                         Income 2008  Income 2009
    Customer A        20                5
    Customer B        50                10
    Now, I need this. At the selection screen of query, user fill variable  charakteristic "Sales organization" with interval  XX - YY, than I need to generate two separate results per sales organization, one for Sales Organization XX and the second for SO YYwhich will be displayed each on separate page, where result for SO YY will be dispayed under result for SO YY. Are there some options how to do it for example in Report Designer or WAD or with programming? In Report Designer is possible to use one query more than once, but I dont know how to force each query in RD to display result only for one Sales Organization, which will be defined in selection screen.
    Thank you very much
    J.

    Hello,
    thanks to all for cooperation. Finally we solved this issue with the following way..
    User fill appropriate SO on the selection screen, which is defined as range. This will resulte, that selected SO are listed in report below each othe (standard behavior). Required solution we achieved with the Report Designer, we set page break under each Result row of RD. This caused, that report is divided into required part per SO, which are stated each on separate page.
    J.

Maybe you are looking for

  • Got the sound back now how can I get my video back to normal?

    Thanks for your help on Sunday.  I am sorry I could not get back to the forum sooner but I came down with a virus and was feeling pretty bad. I did take the advice regarding the sound and it is back up.  ( it is always the little things)  It turned o

  • How to make IOS 7 readable? Or how to go back to IOS 6?

    I know there are tons of improvements in IOS 7, but the user interface isn't one of them. I can't read light blue against a lime green background, and I can't read white, spindly letters against a white background either. I've been tested: my color v

  • How to create a request in Development server?

    Hi BW Experts, good afternoon.    Please can anyone tell me, how to create a request in Development server.      Thanks in advance    Regards   Anjali

  • ME_FW_INSTALL

    When I try and launch the MI client installer I am getting the following error from the URL http://<fqdn>:8000/sap/bc/bsp/sap/me_fw_install/install.htm Business Server Page (BSP) error What happened? Calling the BSP page was terminated due to an erro

  • How can I fix a problem upgrading iPhoto9 to iPhoto11?

    I have iPhoto9 (8.1.2) installed and working on an iMac running Lion and want to purchase an upgrade to iPhoto11 (current version) so I can use iPhoto with recently purchased Aperture3. Despite multiple attempts, to purchase the upgrade in the AppSto