No result returned or XML returned contains error in test query

Hello,
I have a problem with Visual Composer 7.0. When I try to execute a test query it shows the following error:
'No result returned or XML returned in the result contains error'. What could it be?
Thanks,
Belen

Either your query doesn't return results or you don't have the MSXML Parser installed on your client.

Similar Messages

  • Reg:"No result returned or xml returned in the result contains an Error

    Dear All,
    After adding a query to VC storyboard and than trying to use the option define/test query for this query element, I am facing the below error on pressing the execute button.
    "No result returned or xml returned in the result contains an error"
    Query is working fine and giving the desired output in BW system.
    How can i resolve my problem?
    Regards,
    Hemalatha J
    Edited by: hema latha on Nov 19, 2009 3:21 PM

    Hi Hemalatha,
    this can have several reasons, usually there are variables in the query that aren't filled correctly in the "specify filter" box.
    One thing you could do is to personalize all variables in the query and then try to fill one after another in the "specify filter" box.
    If you don't get values after you have filled a specific one of them, then this one is passed incorrectly.
    Best wishes
    Markus

  • How to duplicate return of RFC.Exception Application error to test fix

    I am calling a RFC using a sync step in an BPM process. I am checking for system error and have an exception branch. However we got the below error (probably due to the ECC system not being available at that precise moment or something) which was not trapped by the exception alert handling because this comes in as an Application error and not a System error. My questions are :
    1) How to handle this return of .Exception message so that the BPM raises the alert in the exception branch? I have read in other threads that we need to assign the below message structure as the Fault Message and set this under the Exceptions property of the Synchronous send step. If this is true, I am mostly interested in the below question so I can test this.
    2) How to duplicate this issue? I am not sure when exactly the .Exception message is returned on a RFC call, this is not configured anywhere on the ABAP side.
    <rfc:ZRFC_GET_DATA.Exception xmlns:rfc="urn:sap-com:document:sap:rfc:functions">
            <Name>RFC_ERROR_COMMUNICATION</Name>
            <Text>CPIC-CALL: CMRCV on convId: 01667803
                   LOCATION    CPIC (TCP/IP) on local host with Unicode
                   ERROR       connection to partner broken
                   TIME        Mon Mar 16 11:21:51 2009
                   RELEASE     640
                   COMPONENT   NI (network interface)
                   VERSION     37
                   RC          -6
                   MODULE      niuxi_mt.c
                   LINE        905
                   DETAIL      NiPRead (xx.xx.xx.xx/yyyy, hdl 64)
                   SYSTEM CALL recv
                   COUNTER     2
            </Text>
            <Message>
                   <ID>RFC_ERROR_COMMUNICATION</ID>
                   <Number>null</Number>
            </Message>
    </rfc:ZRFC_GET_DATA.Exception>

    Is the error resolved means that the RFC is working fine?
    I think this error due to the RFC destination set to Non-unicode which is expecting unicode option
    Check the R/3 machine whether it is unicode or not try to set the RFC destination option of unicode  in other way and check the error getting replicated or not
    Rajesh

  • Return as XML in NWDS Expression editor

    Hello experts,
    when I`m building mapping in swing application, I can set that target node will be returned as XML (return as XML checkbox in context menu).
    I did not find that choice in expression editor in NWDS.
    Can you please point me how to get same or at least similar functionality in NWDS?
    Thank you
    VB

    Nobody challenged this before?
    I cannot believe - it is really simple in java client in mapping, but I need it in BPM process creation.
    I want to use that for simple logging using reporting activity. I want to send whole raw xml into one field of reporting activity, because it is problem with 0..unbounded elements mapping into reporting activity.

  • I am getting the Error as "Returned Content XMl is Empty" in SAP Jco Config

    Hi,
    I am facing the problem in SAP Jco Config in SAP_JCo_Interface Action,
    while searching the BAPI (I am Using search Pattern as BAPI*) I am getting the error like following
    "Returned Content XMl is Empty".
    this URL refer the same problem ... Re: Reg : JCOProxy error:null
    But I am able to connect the SAP R/3 system successfully .. because  from the Existing Transaction the BAPI is called successfully.
    Regards,
    Dhanabal T
    Edited by: Dhanabal Thangavel on Jan 15, 2009 8:30 AM
    Edited by: Dhanabal Thangavel on Jan 15, 2009 8:37 AM

    Hi,
    Are you deploying Office 365 with the latest Office Deployment Tool? Try to download the latest version of ODT from below link, then try again:
    http://www.microsoft.com/en-us/download/details.aspx?id=36778
    A similar issue was resolved here, you might want to have a look:
    http://social.technet.microsoft.com/Forums/en-US/eeb7b577-7868-487a-851d-a6d8c1c6bbda/office-c2r-installation-error-17002?forum=officeitpro
    BTW, Microsoft Office 365 Community > Forums > Deploy Office 365
    is a better source for this kind of problem and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
    Thanks,
    Ethan Hua CHN
    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 return two XML result sets using the function

    Hi Experts,
    Thanks.

    So that I want to return two XML result sets if the query returns more than 50,000 records.
    One XML result set with 50,000 and another XML result set with remaining records.
    How to incorporate this in my function.
    Have the function return a collection of CLOB then.
    DBMS_XMLGEN can handle pagination so it's easy to adapt your existing code.
    Here's an example fetching data in batches of max. 3 rows each, using a pipelined function :
    SQL> create or replace type clob_array is table of clob;
      2  /
    Type created
    SQL>
    SQL> create or replace function genXmlRowset (p_deptno in number) return clob_array pipelined
      2  is
      3    ctx    dbms_xmlgen.ctxHandle;
      4    doc    clob;
      5  begin
      6 
      7    ctx := dbms_xmlgen.newContext('SELECT empno, ename FROM scott.emp WHERE deptno = :1');
      8    dbms_xmlgen.setBindValue(ctx, '1', p_deptno);
      9    dbms_xmlgen.setMaxRows(ctx, 3);
    10 
    11    loop
    12 
    13      doc := dbms_xmlgen.getXML(ctx);
    14      exit when dbms_xmlgen.getNumRowsProcessed(ctx) = 0;
    15      pipe row (doc);
    16 
    17    end loop;
    18 
    19    dbms_xmlgen.closeContext(ctx);
    20 
    21    return;
    22 
    23  end;
    24  /
    Function created
    SQL> set long 5000
    SQL> select * from table(genXmlRowset(30));
    COLUMN_VALUE
    <?xml version="1.0"?>
    <ROWSET>
    <ROW>
      <EMPNO>7499</EMPNO>
      <ENAME>ALLEN</ENAME>
    </ROW>
    <ROW>
      <EMPNO>7521</EMPNO>
      <ENAME>WARD</ENAME>
    </ROW>
    <ROW>
      <EMPNO>7654</EMPNO>
      <ENAME>MARTIN</ENAME>
    </ROW>
    </ROWSET>
    <?xml version="1.0"?>
    <ROWSET>
    <ROW>
      <EMPNO>7698</EMPNO>
      <ENAME>BLAKE</ENAME>
    </ROW>
    <ROW>
      <EMPNO>7844</EMPNO>
      <ENAME>TURNER</ENAME>
    </ROW>
    <ROW>
      <EMPNO>7900</EMPNO>
      <ENAME>JAMES</ENAME>
    </ROW>
    </ROWSET>
    SQL>
    (and don't forget to use bind variables in your query)

  • JSON deep insert returns atom/xml

    Dear,
    When I test a json deep insert (For eaxmple:a POST on /sap/opu/odata/sap/<Gateway_service>/<GW_Data>Set in the GW Client then it returns the result in atom/xml....
    If i add ?$format=json to the call i receive following error:
    The Data Services Request contains SystemQueryOptions that are not allowed for this Request Type
    Is there a way to get the response in json for a POST deep insert/create?
    Thanks in advance!
    Kind Regards,
    Robin

    Hi Robin,
    This error is coming from method PROCESS_ENTITY_SET (/IWCOR/CL_DS_PROC_DISPATCHER)
    Below system query options are not allowed for POST.
    " system query option are not allowed
             IF io_uri->expand IS NOT INITIAL OR
                io_uri->select IS NOT INITIAL OR
                io_uri->filter IS BOUND OR
                io_uri->orderby IS BOUND OR
                io_uri->skip IS NOT INITIAL OR
                io_uri->top IS NOT INITIAL OR
                io_uri->skiptoken IS NOT INITIAL OR
                io_uri->inlinecount IS NOT INITIAL OR
                io_uri->format IS NOT INITIAL.
               RAISE EXCEPTION TYPE /IWCOR/cx_DS_proc_error
                 EXPORTING
                   textid = /IWCOR/cx_DS_proc_error=>invalid_system_query_option.
    ENDIF.
    May be using batch call you can get response in JSON format. I mean using batch method, 1st give call to POST and then to GET which allows $format.
    again on client side (may be ui5), you can easily convert response in json format with available APIs.
    Regards,
    Chandra

  • Using the XML returned by XI to populate table in Web Dynpro UI

    Hi,
    In Web Dynpro,I have a scenario where i have to generate reports. For this, I enter the "Customer number", "Date" & "Item No" in 'Generate report' page  and hit the "submit" button. These details are sent as XML to XI which interacts with the ABAP R/3 system, performs the search and returns the search results as an XML
    Now, I want to display search results contained in this XML by populating it in a table.
    From, the point where the XML is returned by XI, could you please tell me the step by step process to populate this XML in a table. Please include code, if any.
    Kindly help.

    Hello Sandeep,
    Create context node with following strucure:
    <i>
    result
    -CustomerNumber
    -ItemNumber
    -Material
    -OrderDate</i>
    Create data handler:
    public class XIDataHandler extends DefaultHandler {
         private String lastAttribute;
         private IWDNodeElement newElement;
         public void startElement(String namespaceURI, String localName, String rawName, Attributes atts) {
              if ("Result".equals(localName)) {
                   newElement = wdContext.createResultElement();
                   wdContext.nodeResult().addElement(newElement);
              } else {
                   if(null!=newElement)
                        lastAttribute = localName.trim();
         public void endElement(String namespaceURI, String localName, String rawName) {
              if ("Result".equals(localName)) {
                   newElement = null;
                   lastAttribute = null;
         public void characters(char[] data, int off, int length) {
              if(null!=newElement && null!=lastAttribute) {
                   final String value = new String(data, off, length).trim();
                   if(!"".equals(value)) {
                        newElement.setAttributeValue(lastAttribute, value);
    And parse XML in appropriate place within your application:
    try {
         SAXParserFactory factory = SAXParserFactory.newInstance();
         SAXParser parser = factory.newSAXParser();
         //Loading XML from string (XI_DOCUMENT), change if source differs
         StringReader sr = new StringReader(XI_DOCUMENT.trim());
         InputSource is = new InputSource(sr);
         parser.parse(is, new XIDataHandler());
    } catch (Exception e) {
         final StringWriter sw = new StringWriter();
         final PrintWriter pw = new PrintWriter(sw);
         e.printStackTrace(pw);
         wdComponentAPI.getMessageManager().reportException(sw.toString(), true);
    Create table and table columns and map your context to it.
    Best regards, Maksim rashchynski.

  • Multi-row sub query returns  ORA-00904 :invalid identifier error

    I am creating a report from two tables that I am not joining. I want a single line for every row in table1 that meets a date range. Table2 can contain none or many rows for each recored in table1. I want to get up to two fields from table2.
    I was using a case statement to check if there was data and then an in-line query or subquery. Once again, the idea is to have a single line on the report for each table1 record.
    I get this error with the code below. It seems the nested multi-row subquery can not see the a.cr_mas_cr_no identifier.
    ORA-00904: "a"."cr_mas_cr_no": invalid identifier
    Any help is greatly appreciated,
    Sam
    select
    a.cr_mas_cr_no "CRNO", a.cr_mas_type "TYPE", a.cr_mas_status "CR Status",
    a.cr_mas_date_logged "Logged date", a.CR_REL_REQ_APP_DATE "RTP approved",a.CR_REL_REQ_RTP_DATE "RTP Date",
    a.cr_accepted_date "Complete", a.cr_mas_submitted_by "Requester",
    select doc_user FROM crrm_cr_documents WHERE doc_cr_number =a.cr_mas_cr_no and rownum = 1 and DOC_TYPE = 'BD' ) "Bus Design",
    (select doc_user FROM crrm_cr_documents WHERE doc_cr_number = a.cr_mas_cr_no and rownum = 1 and DOC_TYPE = 'TD' ) "Tech Design",
    (select doc_user FROM crrm_cr_documents WHERE doc_cr_number = a.cr_mas_cr_no and rownum = 1 and DOC_TYPE = 'TE' ) "User acceptance test",
    case
    when (select count(appr_user) from crrm_cr_approvals where appr_cr_no = a.cr_mas_cr_no and appr_type = 'RTP') > 0
    then (select appr_user from (select * from crrm_cr_approvals where appr_cr_no = a.cr_mas_cr_no and appr_type = 'RTP') where rownum = 1)
    end
    "RTP #1",
    case
    when (select count(appr_user) from crrm_cr_approvals where appr_cr_no = a.cr_mas_cr_no and appr_type = 'RTP') > 1
    then (select appr_user from (select * from crrm_cr_approvals where appr_cr_no = a.cr_mas_cr_no and appr_type = 'RTP') where rownum = 2)
    end
    "RTP #2",
    a.CR_REL_REQ_RTP_BY "Released by",
    a.CR_ACCEPTED_BY "Post RTP User Acceptance",
    a.cr_mas_title "Title", a.cr_mas_id "ID"
    from
    crrm_crmaster a
    where
    (a.CR_REL_REQ_RTP_DATE >= :P1109_BEGDATE and (a.CR_REL_REQ_RTP_DATE <= :P1109_ENDDATE) and
    (a.cr_mas_status = 'Complete' or (a.cr_mas_status = 'Release Approved'and a.CR_REL_REQ_APP_DATE < :P1109_ENDDATE))
    Message was edited by:
    slavanaway

    Iceman,
    Thanks for the reply I will try your suggestion.
    I will try and explain why I think two subqueries (an in-line query with a subquery?) are required. I will use the creation of the column RTP #1 as the example as the RTP #2 column is only different in the rownum selected.
    Looking only at the lines that fail, here is my analysis. (If I rem out the two case lines the query runs, I just don't get two columns of data I need.) I will only examine the first case as the second is changed to extract the second approval via the rownum = 2 criteria. The first statement checks there is at least one RTP approval stored for the request and then gets the user who approved the request if the test is true.
    case when
    (select count(appr_user) from crrm_cr_approvals where appr_cr_no =a.cr_mas_cr_no and appr_type = 'RTP') > 0
    then
    The above part works fine and the correct count of approvals is returned.
    (select appr_user from (select * from crrm_cr_approvals where appr_cr_no=a.cr_mas_cr_no and appr_type = 'RTP') where rownum = 1)
    end
    "RTP #1",
    I moved the parenthesis to the correct location. There can be multiple approvals for a given parent record. Some parent records need one, some need two approvals. If I replace
    (select appr_user from (select * from crrm_cr_approvals where appr_cr_no =a.cr_mas_cr_no and appr_type = 'RTP') where rownum = 1)
    with
    (select appr_user from approvals where appr_cr_no =a.cr_mas_cr_no and appr_type = 'RTP' and rownum = 1)
    The correct result is returned because it returns exactly one row as rownum=1 limits the query. When rownum = 2 then the query returns null as the rownum never gets to two as the rownum column is built via the set created by the second subquery.
    The subquery builds a set of approvals for a specific "cr_no" and appr_type of "RTP". the outer query then looks at the rownum of the second query
    Here is where I got the rownum information from;
    http://www.oracle.com/technology/oramag/oracle/06-sep/o56asktom.html
    So here is what I think is happening;
    1. Main query From and Where are processed. This should provide the "set" for the query
    2.The from subqueries for RTP #1 and RTP #2 should be able to access the a.cr_mas_cr_no field and build a set from the approvals table.
    3.The RTP #1/2 subquery (inline maybe a better description?) would then get the correct row from the from subquery.
    The error "invalid identifier" refers to the a.cr_mas_cr_no field. I assume it means it can not resolve the table alias inside the subquery.
    So maybe your grouping would help, I will try.
    Sam

  • XI doesn't return an xml file

    Hi,
    I've made a scenario using XI 3.0. I use a file adapter with an inbound synchronous interface to send a xml file to XI. XI consumes a function from CRM using a RFC adapter and an outbound synchronous interface. I've setted "Best Effort" as quality of service too.
    The xml file arrives correctly to CRM and CRM returns the BAPI result to XI correctly too. The problem is XI doesn't return the xml file which it should, that's to say, the xml file sent by XI isn't in the specified target directory (using an inbound synchronous interface and a XI adapter).
    Could someone explain me what happens?
    Thanks in advance,
    Samantha.

    Hi Samantha,
    bad news: File Adapter is always asynchronous, cant get any response. And if you use an interface to send data it is an outbound interface.
    To realize your business logic you must use BPM like
    file (outbound asynchronous) -> BP (abstract asynchronous)
    BP (abstract synchronous) <-> CRM (inbound synchronous)
    BP (abstract asynchronous) -> file (inbound asynchronous)
    Regards,
    Udo

  • Query creating XML returns empty tags when no data

    Hello everyone,
    I have a problem that I just can't seem to solve.
    I have the following query:
    select
                xmlelement
                   "users",
                   xmlagg
                      xmlelement
                         "user",
                         xmlelement
                            "username",
                            e.pin
                         xmlagg
                            xmlelement
                               "details",
                               xmlforest
                                  e.password as "password"
                                 ,e.first_name as "forename"
                                 ,e.surname as "surname"
                                 ,'0' as "retired"
                                 ,e.email_address as "email"
                                 ,e.telephone_number as "phone"
                                 ,'No External Ref' as "externalRef"
                                 ,add_months(sysdate,+60) as "expiryDate"
                ) xml_out
             from   aqaost_examiners e
             group by e.pin;The query returns the XML in the desired structure.
    But the problem I have is that when there is no data found by the query, I still get a single row returned with the following: <users></users>
    I've tried so many things to try to have the query return nothing at all if there is no data to be found, but I just can't do it without something else going wrong (messing up the XML structure etc).
    Please can someone help or point me in the right direction?
    Thank you very much in advance!
    Robin

    odie_63 wrote:
    Hi,
    Peter,
    It is the GROUP BY that does that.Actually no, the GROUP BY relates to the innermost XMLAgg and is mandatory if e.pin is not unique.
    Leave it out, and you also seem to have one to many XMLAGG(?)That's assuming e.pin is unique in the table (which is probably a fair assumption in this case).
    In fact, the behaviour comes from the topmost XMLAgg :
    SQL> select xmlelement("users",
    2           xmlagg(
    3             xmlelement("user",
    4               xmlelement("username", e.empno)
    5             , xmlelement("details",
    6                 xmlforest(
    7                   e.ename as "name"
    8                 , e.job as "job"
    9                 )
    10               )
    11             )
    12           )
    13         ) xml_out
    14  from scott.emp e
    15  where 1 = 0
    16  ;
    XML_OUT
    <users></users>As with other aggregate functions (like SUM or AVG) adding a GROUP BY 'something' solves the problem :
    SQL> select xmlelement("users",
    2           xmlagg(
    3             xmlelement("user",
    4               xmlelement("username", e.empno)
    5             , xmlelement("details",
    6                 xmlforest(
    7                   e.ename as "name"
    8                 , e.job as "job"
    9                 )
    10               )
    11             )
    12           )
    13         ) xml_out
    14  from scott.emp e
    15  where 1 = 0
    16  group by null
    17  ;
    no rows selectedRobin,
    If the innermost XMLAgg is really necessary, then you can use a subquery :
    select xmlelement("users", v.users)
    from (
    select xmlagg(
    xmlelement("user",
    xmlelement("username", e.empno)
    , xmlagg(
    xmlelement("details",
    xmlforest(
    e.ename as "name"
    , e.job as "job"
    ) as users
    from scott.emp e
    group by e.empno
    ) v
    where v.users is not null
    Hello there,
    Thank you very much! That sorted out the issue (adding the Group By Null)...it works a treat! I hadn't even considered that.
    I didn't need the second XMLAGG in the end either, as I discovered when tinkering to try to sort the issue, but thank you for being so comprehensive with your reply.
    Here is my finished result:
    select xmlelement("users",
                 xmlagg(
                   xmlelement("user",
                     xmlelement("username", e.pin)
                   , xmlelement("details",
                       xmlforest(
                                  e.password as "password"
                                 ,e.first_name as "forename"
                                 ,e.surname as "surname"
                                 ,'0' as "retired"
                                 ,e.email_address as "email"
                                 ,e.telephone_number as "phone"
                                 ,'No External Ref' as "externalRef"
                                 ,add_months(sysdate,+60) as "expiryDate"
              ).getclobval() xml_out
       from aqaost_examiners e
       group by null;Thank you so much again.
    Robin

  • Function return value == -10. Native error code -2146824584 ADOBD.Recordset: Operation is not allowed when object is closed

    I want to call Stored Procedure that return records and output parameter, from CVI
    I can get output parrameter but when I want to get records stream I recieve following wrror:
    function return value == -10. Native error code -2146824584 ADOBD.Recordset: Operation is not allowed when object is closed

    in Stored procedure I create table variable and and insert into string values
    when I remove usage of table variable the error desappear

  • How to parse a raw string that returns an XML file?

    Guys,
    Good day!
    I was assign to work on this but I did'nt know what to start. Please help me. The Problem is something like this:
    xml-file = pword(raw data string, token interpretation string)
    returns an XML file of:
    token type,
    token (value),
    position in file
    token terminator - condition that broke the type
    the format of the XML file is:
    <tokenizer date=mm/dd/yyyy file="name">
    <Token position=###>
    <type> quoted String </type>
    <tokenValue> "here" </tokenValue>
    <terminator> unquote </terminator>
    <position> #### </position>
    </Token>
    </Tokens>
    I need your suggestions and idea bout this. Thanks in advance.
    Regards,
    I-Talk

    Strings don't "return files", and XML parsing is pretty much the same, regardless of source. So, what is it you're trying to do?
    ~

  • Add carriage return in XML file

    Hi,
    I found a topic that correspond to my requirement :
    [Add carriage return in XML file|https://wiki.sdn.sap.com/wiki/display/XI/HowtoappendCarriageReturnintheendofeachtagofxml+file]
    But i don't know where created this udf, which input parameter pass?
    Thank you for your help.

    Hi Frantzy,
    The link does not give enough explanation. What I am assuming is if you have xml string in one field then if you need to add new line after each tag then you can follow that.
    If you want a udf where you want to insert a new line use this udf:
    Create a Value UDF with one input argument 'a' and name the udf as addnewline. Then add this code:
    Imports: java.*;
    String lines;
    lines = "";
    lines = lines.concat(a + '\n' );
    return lines;
    Then where ever you want a new line just add this udf in your mapping. If you want a new line for 10 fields then you can put in all the 10 fields.
    Example:
    Source field --> logic --> udf (addnewline) --> target.
    So after logic if you have the value as 123 then in the target you will see 123 followed by a carriage return.
    Regards,
    ---Satish

  • Will someone please help me set-up Acrobat to send a PDF via webmail?  Acrobat returns a message "Server Connection Error .... Port 143 unavailable"

    Will someone please help me set-up Acrobat to send a PDF via webmail?  Acrobat returns a message "Server Connection Error .... Port 143 unavailable"

    Are you using a Microsoft or Apache web server? If so, you can submit to a server-side script, which will bypass web mail and client-side email software such as OUTLOOK.
    For examples:
    http://www.nk-inc.com/software/pdfemail.net/examples/

Maybe you are looking for

  • How can I change my Apple ID for iCloud on iPhone 5 with iOS7?

    How can I change my Apple ID for iCloud on iPhone 5 with iOS7? When I updated to iOS7 it kept my old ID on some features and my new one on others. I was able to change my Apple ID on all apps except iCloud. I don't have the original email account I u

  • How to determine the real (effective) Service Level ov a material?

    Hello Experts, I have Service Levels of for example 92% or 98% for a material set up in the material master data ( MARC-LGRAD ). This shall mean in reality, that I can deliver in 92% or 98% of the cases the needed goods in the right quantity. Only in

  • User wise change of sensitive fields

    Hi guys, We are having trouble with fields like payment term, payment block and baseline date. All user can change them as and when they want. Is there any possiblity of restricting of the change of these fields to users. I mean here,some users shoul

  • Best wasy to move OC4J from Production to Test MidTier

    I've read the documents but I am still lost on the best way to move a OC4J instance to another MidTier I have 3 separate OC4J instances that are deployed for 3 separate divisions that contain different apps. What is the easiest way to move them to a

  • The screen is not responding when i try to unlock.

    Hi, is there a way to fix my ipad touch screen? I got it a few days back after upgrading to IOS7 it becomes unresponsive when i try to unlock it, I can't even swipe to unlock. I'm also using a smartcover, but still, it won't work. It will only get me