How to use ssrs indicator based on expression ??

Hii all
I have a condition to show my data 
like =iif(count(fields.file.value)>0,"yes","")
in place of this i want to place a green tick  indicator to display count 
how can i use indicator it in textbox  ??
guide me ... 
Dilip Patil..

Hi ,
  Instead of the text box you can use the Indicator control itself. Still if you would like to use the text box , the only way i could think of changing the background image of the text box based on the above expression.
Best Regards Sorna

Similar Messages

  • Oracle:how to use max() function in case expression

    how to use max() function in case expression, Please explain with any example

    Hope this helps and should be self explanatory
    with t as
    (select 1 col,100 col2 from dual union
    select 2 ,100 from dual union
    select 2 ,200 from dual union
    select 3,100  from dual union
    select 3,200  from dual  )
    select col, case when max(col2)=100 then 'with 100 range'
    when  max(col2)=200 then 'with 200 range' end  from t group by col

  • How to use Phase Indicator?

    Hi All.
        How to use Phase Indicator? Thank you in advance.

    Hi,
    Please find the code snippet below.
    I have explained in detail about the different phase indicator as and when they come up.
    Types (ty_)
      TYPES:
        BEGIN OF ty_severity_list,
          severe TYPE ccihe_severe,
          severetxt TYPE ccihe_severetxt,
        END OF ty_severity_list,
        BEGIN OF ty_input,
          severe TYPE ccihe_severe,
        END OF ty_input,
    Local objects (lo_)
      DATA: lo_nd_record_risk TYPE REF TO if_wd_context_node,
            lo_el_record_risk TYPE REF TO if_wd_context_element.
    Local tables (lt_)
      DATA: lt_severity_list  TYPE STANDARD TABLE OF ty_severity_list,
            lt_column_texts   TYPE wdr_name_value_list,
    Local structures (ls_)
            ls_severity_list  TYPE ty_severity_list,
            ls_text           TYPE wdr_name_value,
            ls_record_risk    TYPE wd_this->element_record_risk,
    Local variables (lv_)
            lv_window_title   TYPE string,
            lv_zzsevere       LIKE ls_record_risk-zzsevere,
            lv_zzseveretxt    LIKE ls_record_risk-zzseveretxt.
    field symbols(fs_)
      FIELD-SYMBOLS: <fs_selection>    TYPE ty_severity_list.
    navigate from <CONTEXT> to <RECORD_RISK> via lead selection
      lo_nd_record_risk = wd_context->get_child_node( name = wd_this->wdctx_record_risk ).
    get element via lead selection
      lo_el_record_risk = lo_nd_record_risk->get_element(  ).
      CASE ovs_callback_object->phase_indicator.
        WHEN if_wd_ovs=>co_phase_0.  "configuration phase, may be omitted
    *Here you set
    *The window title, the heading, or the column heading of the output table displayed *** hit list
    *We can also set the selectability property, Basically the number of records that can be selected.
          ls_text-name = `SEVERE`.  "must match a field name of search
          ls_text-value = wd_assist->if_wd_component_assistance~get_text( key = '010' ).
          INSERT ls_text INTO TABLE lt_column_texts.
          ls_text-name = `SEVERETXT`.  "must match a field in list structure
          ls_text-value = wd_assist->if_wd_component_assistance~get_text( key = '011' ).
          INSERT ls_text INTO TABLE lt_column_texts.
          lv_window_title = wd_assist->if_wd_component_assistance~get_text( key = '012' ).
          ovs_callback_object->set_configuration(
                    column_texts = lt_column_texts
                    window_title = lv_window_title
                    col_count    = 2
                    row_count    = 10 ).
        WHEN if_wd_ovs=>co_phase_1.
    *This section is optional.
    *This is to set the Selection view of the OVS component and default values on the screen.
    *Here you can define the fields using which we can be used for further restricting the hitlist.
    *The method SET_INPUT_STRUCTURE  is provided for this purpose. If this not called, then the hitlist is displayed immediately.
            ls_input-severe  = '1'.
            ovs_callback_object->set_input_structure( ls_input ).
    *If the above method is called in some other phases then it would raise an error message.
        WHEN if_wd_ovs=>co_phase_2.
    *In this phase we can fetch the records to build the hitlist. The restrictions entered on the screen defined in phase 1 can be fetched from instance attribute QUERY_PARAMETERS of the event *parameter OVS_CALLBACK_OBJECT. Use method SET_OUTPUT_TABLE of the event parameter OVS_CALLBACK_OBJECT.
          SELECT a~severe
                 b~severetxt
              INTO CORRESPONDING FIELDS OF TABLE lt_severity_list
            FROM ccihc_sv AS a INNER JOIN
                  ccihc_svtxt AS b ON asevere EQ bsevere
                   WHERE aratingcat EQ bratingcat AND
                   a~ratingcat = 'ZAN' AND
                   b~langu = sy-langu.
          ovs_callback_object->set_output_table( output = lt_severity_list ).
        WHEN if_wd_ovs=>co_phase_3.
    *The result of the search was displayed in the results view of the OVS component and when user selects a record(s) on the hitlist displayed. The cursor comes to this phase and the selected *values can be fetched by reading the  instance attribute SELECTION of the result parameter OVS_CALLBACK_OBJECT.
          ASSIGN ovs_callback_object->selection->* TO <fs_selection>.
          IF <fs_selection> IS ASSIGNED.
            lv_zzsevere = <fs_selection>-severe.
            lv_zzseveretxt = <fs_selection>-severetxt.
            get single attribute
            lo_el_record_risk->set_attribute( name =  `ZZSEVERE`
                                              value = lv_zzsevere ).
            get single attribute
            lo_el_record_risk->set_attribute( name =  `ZZSEVERETXT`
                                              value = lv_zzseveretxt ).
          ENDIF.
      ENDCASE.
    Do let me know in case you need any more details.
    Regards,
    Sravan Varagani

  • Use BAM in ALBPM  --- How to use "Business Indicator variable" ?

    In ALBPM60_Studio_ReferenceGuide.pdf, there is text like that:
    Using Variables in BAM
    When creating a Project variable, you can define it as a Business Indicator variable. This allows the variable to be stored in BAM the database.
    When you add Business Indicator variable to your process, a column is added to the following BAM database tables:Workload, Task Performance and Process Performance. The name of this column is the Business Indicator name preceded by the prefix "V_".
    If you define a business dimension, the workload table contains one row for each possible value of this business dimension present in the process. Each of this rows will show the quantity of instances that match that business dimension.
    When you define a measurement business variable the sum of this variable's value for all in flight is stored into workload table. If business dimensions were defined as well, then this sum will be divided into as many rows as business dimension values present in flight instances.
    Task performance table stores one row for each instance that completes an activity. Each of these rows contains the value of dimensions and measurements at the time the instance completed the activity.
    In a similar way, process performance table stores one row for each instance that gets to the end activity. Each of these rows contains the value of dimensions and measurements at the time the instance completed the whole process.
    QUESTION:
    1. What's meaning is that writed in bold italic? (Can anybody give me a samaple?)
    2. How to use Range of Business Indicator variable?(When I set range in my sample,this varible can't save into BAM_WORKLOAD, BAM_TASKPERFORMANCE, BAM_PROCESSPERFORMANCE)
    Edited by just9doit at 01/15/2008 10:18 PM

    Hi Saket,
    Check the Tcode - BUPA_DEL.

  • Siebel8-How to use special character in WF expression

    How to use a special Chanarcter in a Workflow expression?
    in the below expression, am looking for comma
    IIF(Instr([&ProccProp], "','"), 'Y', 'N')
    But I am getting the following error
    The query could not be run because there is an invalid character in the field '<?>'. Please ensure that the value in the field is formatted correctly with only valid characters.
    Missing quotes around the search criteria or unnecessary punctuation will often cause an error.(SBL-DAT-00403)
    The Siebel version is 8.
    Thanks in advance

    Fine you already bypass this.
    When i readed your post and saw your solution, i asked for myself what version of siebel you were using, and from the first post understood that was version 8.
    Some months ago i have made workflows in siebel 8 and many times happened that i falled in situations and errors that were very very tricky to understand...workflow UI in that version, really needs some improvements.
    Bye

  • How to use asterisk indicator in footnote

    Hello All,
    I want to use asterisk indicator instead of Arabic numbers in footnotes, so I changed the footnote number format to the symbol format indicator *,  but the asterisk does not increment so that the first
    footnote would be displayed as * blah blah, second footnote would be ** blah blah, and third footnote would be *** blah blah. How can I use only the asterisk symbol indicator and also let it increment for each footnote?  I am seeking your assistance with
    this.  Here is a sample of what I am trying to achieve. Thanks for your help.
        *   Term of office expires on 18 June 2007.
        **  Term of office expires on 18 June 2008.
        *** Term of office expires on 18 June 2009.

    Hi,
    I'm afraid we don't have such a built-in feature/setting to do this in Word. Actually, you can do this manually. This won't take too much effort if you don't have a giant number of footnotes to be inserted.
    When you want to insert a footnote, you can click the Footnotes
    Dialog Box Launcher, type any number of asterisk indicators you want into
    Custom mark textbox, then click Insert. 
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • How to use/access XML based DVMs in ODI 11.1.1.5.0

    Hi All,
    I want to use XML based DVMs in interface on ODI 11.1.1.5.0.
    I have tried something like this. However while "Load Data" step, i am facing the error "
    -4850 : 3F000 : java.sql.SQLException: invalid schema name: CURRENCYCODE
    java.sql.SQLException: invalid schema name: CURRENCYCODE
    at org.hsqldb.jdbc.Util.sqlException(Unknown Source)
    at org.hsqldb.jdbc.JDBCPreparedStatement.<init>(Unknown Source)
    at org.hsqldb.jdbc.JDBCConnection.prepareStatement(Unknown Source)
    at com.sunopsis.jdbc.driver.xml.SnpsXmlConnection.prepareStatement(SnpsXmlConnection.java:1192)
    at sun.reflect.GeneratedMethodAccessor314.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at oracle.odi.core.datasource.dwgobject.support.OnConnectOnDisconnectDataSourceAdapter$OnDisconnectCommandExecutionHandler.invoke(OnConnectOnDisconnectDataSourceAdapter.java:200)
    at $Proxy138.prepareStatement(Unknown Source)
    at oracle.odi.runtime.agent.execution.sql.SQLCommand.doInitializeStatement(SQLCommand.java:83)
    at oracle.odi.runtime.agent.execution.sql.SQLCommand.getStatement(SQLCommand.java:117)
    at oracle.odi.runtime.agent.execution.sql.SQLCommand.getStatement(SQLCommand.java:111)
    at oracle.odi.runtime.agent.execution.sql.SQLDataProvider.readData(SQLDataProvider.java:76)
    at oracle.odi.runtime.agent.execution.sql.SQLDataProvider.readData(SQLDataProvider.java:1)
    at oracle.odi.runtime.agent.execution.DataMovementTaskExecutionHandler.handleTask(DataMovementTaskExecutionHandler.java:67)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.processTask(SnpSessTaskSql.java:2906)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2609)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:537)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:453)
    at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:1740)
    at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:1595)
    at oracle.odi.runtime.agent.processor.impl.StartScenRequestProcessor$2.doAction(StartScenRequestProcessor.java:580)
    at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:214)
    at oracle.odi.runtime.agent.processor.impl.StartScenRequestProcessor.doProcessStartScenTask(StartScenRequestProcessor.java:513)
    at oracle.odi.runtime.agent.processor.impl.StartScenRequestProcessor$StartScenTask.doExecute(StartScenRequestProcessor.java:1070)
    at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:123)
    at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$2.run(DefaultAgentTaskExecutor.java:82)
    at java.lang.Thread.run(Thread.java:662)
    Caused by: org.hsqldb.HsqlException: invalid schema name: CURRENCYCODE
    at org.hsqldb.error.Error.error(Unknown Source)
    at org.hsqldb.SchemaManager.getSchemaHsqlName(Unknown Source)
    at org.hsqldb.SchemaManager.getSchemaName(Unknown Source)
    at org.hsqldb.Session.getSchemaName(Unknown Source)
    at org.hsqldb.SchemaManager.getTable(Unknown Source)
    at org.hsqldb.ParserDQL.readTableName(Unknown Source)
    at org.hsqldb.ParserDQL.readTableOrSubquery(Unknown Source)
    at org.hsqldb.ParserDQL.XreadTableReference(Unknown Source)
    at org.hsqldb.ParserDQL.XreadFromClause(Unknown Source)
    at org.hsqldb.ParserDQL.XreadTableExpression(Unknown Source)
    at org.hsqldb.ParserDQL.XreadQuerySpecification(Unknown Source)
    at org.hsqldb.ParserDQL.XreadSimpleTable(Unknown Source)
    at org.hsqldb.ParserDQL.XreadQueryPrimary(Unknown Source)
    at org.hsqldb.ParserDQL.XreadQueryTerm(Unknown Source)
    at org.hsqldb.ParserDQL.XreadQueryExpressionBody(Unknown Source)
    at org.hsqldb.ParserDQL.XreadQueryExpression(Unknown Source)
    at org.hsqldb.ParserDQL.compileCursorSpecification(Unknown Source)
    at org.hsqldb.ParserCommand.compilePart(Unknown Source)
    at org.hsqldb.ParserCommand.compileStatement(Unknown Source)
    at org.hsqldb.Session.compileStatement(Unknown Source)
    at org.hsqldb.StatementManager.compile(Unknown Source)
    at org.hsqldb.Session.execute(Unknown Source)
    ... 27 more"
    Steps followed:
    1. Created data server with below values.
         JDBS Driver : com.sunopsis.jdbc.driver.xml.SnpsXmlDriver
         JDBC URL : jdbc:snps:xml?f=/appl/oracle/dev/fmw/11g/product/Oracle_ODI1/oracledi/xml_odi/CURRENCY95CODE.xml&s=CURRENCYCODE&case_sens=true
    2. Created a physical schemas out of it and passed SCHEMA as "CURRENCYCODE". Please note that it dint showup automatically. I had to type the schema name "CURRENCYCODE".
    3. Implemented logic in interface and facing the above error when tried executing interface at "Load Data" step.
    Note : Test Connection is working fine. And i have all the permissions to execute.
    Kindly suggest the right way if i am doing something wrong.

    Hello,
    Your filemaker install should have come with a jdbc driver (.jar file). You'll need to check your filemaker pro documentation to confirm. Once you have the file, place it in the ODI/oracledi/agent/drivers folder where your agent lives (also place it on your client if you want to use the local agent for testing). You can then create a custom Technology in the Topology tab in ODI.
    There are many options in the Technology definition which you will need to figure out based on what filemaker pro can handle and how it processes queries. Once the technology is created, add a Data Server and Physical Schema as you would any other technology. Then, build the model, datastores, interfaces, etc. just like any other tech.
    Hope this gets you started.
    Thank you,
    Michael R.

  • How to use decode for a not = expression ?

    Hi ,
    i want to use in my seelct query decode( val1 , IF not = 'abc' , sum(val1)
    how can i express it as a not equal or even a >= in a decode ?
    kindly advise
    tks & rdgs

    hi ,
    i have used a function to resolve my issue
    tks for all the info
    rdgsYou would be better doing it all in SQL for performance reasons so you do not context switch between PL/SQL and SQL all the time...
    Ok, without using CASE...
    SQL> create table a (stupid_number_in_varchar  VARCHAR2(10));
    Table created.
    SQL> insert into a
      2  select '3' as stupid_number_in_varchar from dual union all
      3  select 'X' from dual union all
      4  select '4' from dual union all
      5  select 'X' from dual union all
      6  select '5' from dual;
    5 rows created.
    -- Strip out non numeric values...
    SQL> ed
    Wrote file afiedt.buf
      1  select decode(stupid_number_in_varchar, 'X', null, stupid_number_in_varchar) as mynum
      2* from a
    SQL> /
    MYNUM
    3
    4
    5
    -- Only take numbers >= 4 ...
    SQL> ed
    Wrote file afiedt.buf
      1  select decode(sign(mynum-4), -1, null, mynum)
      2  from (
      3       select decode(stupid_number_in_varchar, 'X', null, stupid_number_in_varchar) as mynum
      4       from a
      5*      )
    SQL> /
    DECODE(SIG
    4
    5
    -- Sum the result...
    SQL> ed
    Wrote file afiedt.buf
      1  select sum(mynum) from
      2  (
      3    select decode(sign(mynum-4), -1, null, mynum) mynum
      4    from (
      5         select decode(stupid_number_in_varchar, 'X', null, stupid_number_in_varchar) as mynum
      6         from a
      7         )
      8*   )
    SQL> /
    SUM(MYNUM)
             9
    SQL>

  • How to use Type Casting in JSF Expression Language

    I have an attribute CategoryId in my VO of type oracle.jbo.domain.Number. I am trying to use the expression of Boolean item in JSF as #{row.CategoryId != 4}
    Here is the JSF code:
                          <af:column id="s141NewItem3Col" noWrap="true" width="100"
                                     rowHeader="false">
                            <f:facet name="header">
                              <af:outputLabel value="CAtIDDeq4" showRequired="false"
                                              id="ol18"/>
                            </f:facet>
                            <af:inputText id="s141NewItem3"
                                          value="#{row.CategoryId != 4}"
                                          label="CAtIDDeq4" required="false"
                                          readOnly="#{((pageFlowScope.ContractRightCategoriesTable.newRow) and (!(jhsUserRoles['RM, ADMIN, AllButTitl, AllButAdmn']))) or ((!pageFlowScope.ContractRightCategoriesTable.newRow) and (!(jhsUserRoles['RM, ADMIN, AllButTitl, AllButAdmn'])))}"></af:inputText>
                          </af:column>I am getting the run time exception as "Can not convert 4 of type class oracle.jbo.domain.Number to class java.lang.Long".
    I am wondering how the row.CategoryId is treated as Long?. PLease advise. Also, will I be able to use type casting expressions in JSF Expression Language?
    Thanks, Pradeep

    use attributeValue
    Try *#{row.bindings.CategoryId.attributeValue != 4}* ?
    Check this thread for details which discusses about the same:
    El expression to disable  or enable
    Thanks,
    Navaneeth

  • How to use Session Key-based Request Targeting Mechanism in OCCAS ??

    I read Session Key-Based Request Targeting(chapter 5) in Developing SIP Applications.
    But, I don't work my application using this mechanism.
    I add sesssionKey function with @SipApplicationKey annotation.
    I deploy this application. And then, other machine send INVITE request.
    My application received INVITE request. But sessionKey function is not called before doInvite function is called.
    I used @SipApplicationKey(applicationName="...") annotation.
    It didn't work.
    sample code is following.
    Could someone help me?
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletContext;
    import javax.servlet.ServletException;
    import javax.servlet.sip.SipFactory;
    import javax.servlet.sip.SipServlet;
    import javax.servlet.sip.SipServletMessage;
    import javax.servlet.sip.SipServletRequest;
    import javax.servlet.sip.SipServletResponse;
    import javax.servlet.sip.SipURI;
    import javax.servlet.sip.URI;
    import javax.servlet.sip.annotation.SipApplicationKey;
    public class app2SipServlet extends SipServlet {
    private static final long serialVersionUID = 1L;
    public static SipFactory sipFactory;
    public static ServletContext sc;
    public void init(ServletConfig cfg) throws ServletException {
    super.init(cfg);
    sipFactory = getSipFactory();
    sc = getServletContext();
    trace("+++ app2SipServlet Initialization");          
    @SipApplicationKey
    public static String sessionKey(SipServletRequest req) {
    String appid = req.getHeader("ApplicationID");
    System.out.println("application id : " + appid);
    return appid;
    @Override
    public void doRequest(SipServletRequest req)     throws ServletException, IOException {
    trace(req, "doRequest()");
    super.doRequest(req);
    @Override
    protected void doInvite(SipServletRequest req) throws ServletException, IOException {
    URI from = req.getFrom().getURI();
    String user = ((SipURI)from).getUser();
    trace(user + " : " + req.getSession().getApplicationSession().getId());
    trace(user + " : " + req.getSession().getApplicationSession().getApplicationName());
    SipServletResponse resp = req.createResponse(200);
    resp.send();
    trace(resp);
    }

    How many servlets you have defined in your sip.xml .If there are multiple you may want to check if
    -- You have defined main-servlet ?
    -- or Is deployment descriptor version 1.0 or 1.1

  • How to use special characters in regular expression

    HI all, I am new to regular expression.
    Can any one please tell me the regular expression for characters which are used in regular expression like " [({. tetc.Is there any particular expression to prefix before using these characters                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Expression:
    < td .*? bgcolor = \" ( [^ \" ] +) \" \\s* .*? > ( .+? ) </td>
    It will search for expression starting with <td ,
    .*? means any characters zero or more than one,
    then it will find bgcolor = , then literal \"... \(any char) is that specific char
    [ ^ \" ] any character but not literal \",this means there has to be something between ".... " if empty then wont match ,+ is 1 or more times
    Then again literal \ " , after that \\s* means zero or more num of spaces,
    then again , .*? means any characters zero or more than one,
    it will search for literal > , again any chars . * ?
    Finally </td> will be searched.....!!
    So all expressions having this particular structure will be
    matched.
    Output :
    <td align="left" valign="top" bgcolor="ffffff" width="177">bla bla bla</td>

  • How to use progress indicator which block the user for editing ?

    Hi All,
    I have a requirement where i need to show a round progress bar while processing to the database.For example :- I have a bounded taskflow and inside it I have a two jspx page called as "First.jspx" and "Second.jspx".And i have two textboxes and one "Save" button on first.jspx page.
    Now when user puts the values in the textboxes and hits the "Save" button , my ticker or progress indicator should say "Please wait while processing" and as soon as the transaction is complete , i need to show another page which is "Second.jspx" page. "Save" button action has method inside a managed bean which has some functionality and then it executes the VO(View Object) and commits the data.
    How should i implement the indicator?
    I have read this article :- http://www.oracle.com/technetwork/developer-tools/adf/learnmore/42-progressbarcolor-169184.pdf but it doesn't fit to my requirement.I need indicator which holds the user to edit anything on the page.Like what we get when we do any transaction in banks while navigating to payment gateway.
    Please suggest!!!
    Thanks and Regards,
    Shah

    Hi Shah,
    The answer was around the same are that you were looking into. http://www.oracle.com/technetwork/developer-tools/adf/learnmore/27-long-running-queries-169166.pdf but the sample was the 27.
    - Juan Camilo

  • How to use more than one airport express with multiple speakers

    I have 2 Airport Express. Prior to the multiple speaker enhansement I changed spekers by changing the wireless network. Each of the Airports is recognised as a wirelss network. Is there any way I can make my computer and itunes to see all of my Airports so I can use the Multiple Speaker function for both of my Airports at the same time withour having to change wireless network.

    You need to have a single wireless network.
    If you con't have a wireless router, then you will need to configure one of the Airport Express (AX) units to join the existing wireless network of the other AX.

  • How to use Relational Access Administrator from Express Administrator

    I added the following [Relational Access Administrator] group to my xadmin.ini file:
    [Relational Access Administrator]
    InUse=-1
    ExePath=f:\OraExpClnt\olap\Ead630\xadmin.exe
    The Relational Access Administrator under Tools in the Express Administrator is still greyed out and I cannot access it.
    Did I missed any step ? Any suggestions on how to make the Relation Access Administrator show ?
    Thanks
    Lee
    null

    Hi
    When yr SAP is running at time u need to connect yr  add-on Copyexpress. (CE)
    then go in tool > open copy express
    onces yr CE is open i other windows select source & target company.
    Take a backup
    select BP and upload (it wil take som time)
    I hope this r basic step
    Thanks
    Kevin

  • I purchased an iTunes gift certificate with my Canadian-based American Express card (I live there) and had it emailed as a gift to someone at a hotel in the U.S.; Now, he cannot seem to use it. Apple online said it is cause it's only usable in Canada! Wha

    I bought a gift certificate from iTunes, online, for someone travelling in the U.S. temporarily. He is a Canadian, I am a U.S. citizen, and I bought it using my Canda-based American express account, as I live in Canada.  Now he is told by Apple on the telephone that he cannot use the certificate to buy anything as it was purchased on a computer in Canada.  This seems utterly impossible!  Does Apple have walls between countries?  It seems to me that someone stuck in a hotel, with his iPhone, might want to purchase stuff from iTunes, but now it seems this cannot be done and he will have to return to Canada to use the certificate.  What the heck kind of instant gift service is that!?
    Anyone know how to deal with this?  The person travelling is gone another couple of months.  Anyone ever try for a refund from iTunes?

    When you tried to contact Support with the card's images how were you trying to do it, on your phone or a browser on your computer ? And have you tried a different browser to see if you get the same error message ?
    As well as images of the card they might also want an image of its receipt.
    And to contact Support you were using : http://www.apple.com/support/itunes/contact/ , and clicked on Contact iTunes Store Support on the right-hand side of the page, then iTunes Cards And Codes ?

Maybe you are looking for