PL/SQL to map query results to a column?

Is there a programmatic way to map the query result to a value in a table?
I have table A. There's a column with a carat-delimited string 0^0^1^ that I can parse with substr/instr functions. So, query that table/column for a 5th digit that sits between 5th and 6th ^ character.
There's table B. It has a 'position' column and 'key' column. How do I let the table A know that when I query table A for 5th digit, it needs to map to table B's where position=5?
thanks,

Did you try to run those statements? Please do so next time.
Also the creation of table C (or is it D) and E are missing.
However, the tricky part is in deciphering table A to make up for the flawed design.
I hope this piece of SQL is helpful for you, because you could join the outcome to your other tables:
SQL> create table a
  2  ( visitor_id number(*,0),
  3  adate date,
  4  carat varchar2(4000 byte),
  5  ip_address varchar2(4000 byte),
  6  state varchar2(4000 byte),
  7  city varchar2(4000 byte),
  8  id number(*,0) not null enable,
  9  constraint "a" primary key (id)
10  )
11  /
Tabel is aangemaakt.
SQL> insert into A
  2  (VISITOR_ID,ADATE,CARAT,IP_ADDRESS,STATE,city,id) VALUES(194296532,TO_DATE('2007-06-26.00.01.46',''),'-1^1^2^0^3^85741^3^0^176^0^1
^-1^41^-1^-1^US^0^-1^2^0^1^^^^^^^','71.226.9.44','az','tucson',1);
1 rij is aangemaakt.
SQL> insert into A
  2  (VISITOR_ID,ADATE,CARAT,IP_ADDRESS,STATE,city,id) VALUES(37482918,TO_DATE('2007-06-26.00.01.46',''),'0^1^2^5^^78154^3^7^184^0^1^2^
17^2^1^US^1^0^1^0^0^^^^^^^','70.163.196.111','tx','san antonio',2);
1 rij is aangemaakt.
SQL> select id
  2       , visitor_id
  3       , i position
  4       , c value
  5    from a
  6   model
  7         return updated rows
  8         partition by (id, visitor_id)
  9         dimension by (0 i)
10         measures ('^' || carat || '^' c)
11         rules
12         ( c[for i from 1 to length(regexp_replace(c[0],'[^\^]'))-1 increment 1]
13           = regexp_substr(c[0],'[^\^]+',1,cv(i))
14         )
15   order by id
16       , position
17  /
        ID VISITOR_ID   POSITION VALUE
         1  194296532          1 -1
         1  194296532          2 1
         1  194296532          3 2
         1  194296532          4 0
         1  194296532          5 3
         1  194296532          6 85741
         1  194296532          7 3
         1  194296532          8 0
         1  194296532          9 176
         1  194296532         10 0
         1  194296532         11 1
         1  194296532         12 -1
         1  194296532         13 41
         1  194296532         14 -1
         1  194296532         15 -1
         1  194296532         16 US
         1  194296532         17 0
         1  194296532         18 -1
         1  194296532         19 2
         1  194296532         20 0
         1  194296532         21 1
         1  194296532         22
         1  194296532         23
         1  194296532         24
         1  194296532         25
         1  194296532         26
         1  194296532         27
         1  194296532         28
         2   37482918          1 0
         2   37482918          2 1
         2   37482918          3 2
         2   37482918          4 5
         2   37482918          5 78154
         2   37482918          6 3
         2   37482918          7 7
         2   37482918          8 184
         2   37482918          9 0
         2   37482918         10 1
         2   37482918         11 2
         2   37482918         12 17
         2   37482918         13 2
         2   37482918         14 1
         2   37482918         15 US
         2   37482918         16 1
         2   37482918         17 0
         2   37482918         18 1
         2   37482918         19 0
         2   37482918         20 0
         2   37482918         21
         2   37482918         22
         2   37482918         23
         2   37482918         24
         2   37482918         25
         2   37482918         26
         2   37482918         27
         2   37482918         28
56 rijen zijn geselecteerd.Regards,
Rob.

Similar Messages

  • Hiding SQL statement in Query Result Window

    Hi everyone,
    Is it possible to hide the SQL statement from a query result window? This can usually be done by click the orange triangle that is positioned to the left of the SQL string box (to expand and collapse it). The System Queries have this box collapsed per default, is it possible to have this setup as default for all queries, including the custom? If so, please let me know where this can be done.
    Cheers

    You should do this only with SDK programming - dont allow to show the syntax. The next, but problematic way, is the code you have do inside stored procedure and call only this sp inside the query generator window - if you have there some input parameters, you should use filling variables before executing sp and get it as input parameters to sp.

  • Mapping query result to excel sheet

    Hi Experts,
    i have a requirement where in i need to map the result into particular cellls of the excel sheet, because the excel sheet acts as front end which has graphs and by just putting the result in particular cells of excel the graph is automatically generated, so is there any way where i can map the result cells into particulat cells in excel?
    Thank you.

    Hi Shetty,
    You might have stopped reading this thread since you have the answer you need for now.  From experience, let me tell you what might happen next.
    If the query definition is ever changed ... say, a new characteristic is added because a different user has a slightly different need ... the result table will move down by a few rows and your equation no longer works.
    If you think this might happen, let me tell you a very easy way to get around it.
    1.  Name the range(s) you will use.  If the first result is in cell B31 on Sheet1, then go to cell B31 on Sheet1 and Select Insert>>Name>>Define.  Call it something you will remember, like "LastMonthSales" (no spaces, but underline is OK)
    2. use the range name in your formula.  This happens automatically, in fact.  If you press = then click on cell B31, Excel will automatically use the range name instead of the range address.  Excel LIKES names.
    3. now, go to the Visual Basic Editor (Tools >> Macro >> Visual Basic Editor; or, Alt+F11).  In your workbook, there should be a subroutine as follows:
    Sub SAPBEXonRefresh(queryID As String, resultArea As Range)
    If you do not find it, add it.  This probably also means that you are using Excel 2002 or later and have not set your Macro security to "trust access to Visual Basic Project"; so, change that security setting (Tools >> Options >> Security >> Macro Settings).
    The visual basic code is very simple.  For each result that you need to map you will want one line of code like this one:
    resultArea.Cells(4, 2).Name = "LastMonthSales"
    The Cells(4, 2) are counted from the top left of the result table.  So, in this case if B31 = Cells(4,2), then the top left of my result table must have been in cell A28 in Excel.
    This subroutine will be run automatically every time that the query is refreshed.  So, if the result table moves, the names will move with it.  One less thing to worry about.
    If you do not think you need to do this today, don't!  No sense in doing work that is not necessary.  But, save this.  I suspect that some day you will need it.
    - Pete

  • Mapping query result

    Hello,
    I can't map string Display Name to the string property, on the User prompts tab I set prompt with type Query Result, on the Configure Prompts I configure this query by selecting AD User of Group -> Display Name, now I have Prompt Output called DisplayName
    (string). On the Map prompts I can't map this prompt to the string property, why? I just want to choose one user from AD and put it on the form as string.

    You will never get "simple values" from a query result. The option "3. Display Columns" are the properties on the class that you display on the portal. You will not be able to map a query result anywhere. You must attach it somehow to the request (in the
    last tab "4. Options").
    So even though the prompt output says "DisplayName (string)" you are still getting an object out of it. This makes more sense if you select more properties in 3.
    http://codebeaver.blogspot.dk/
    Thanks fro info, I have a script which reads custom string property of my custom service request class and translates it to 'AD user class' and makes it as Reviewer in the Review Activity. But instead of textbox field on the portal I need to use query,
    how can I get info from this service request about query to create AD user in my script?
    I placed query form on the portal to test, it shows only 2000 objects by default, is it possisble to show members of some OU or group in this field?

  • How to display MySql query results in multiple columns?

    Hi, I know how to display PHP/MySq
    l query results in a single column, but I am really stuck at displa
    ying the results in multiple columns in DW CS4.
    Can anyone help me with a code example?. I am new to php/mysql. Thanks

    Are you asking how to pivot the results of the query? Do a search for horizontal looping. If that's not what you are asking, please provide more details.

  • Why does SQL*Plus split query result?

    My result is:
    ENAME DEPTNO SAL RUNNING_TOTAL DEPARTMENT_TOTAL SEQ
    CLARK 10 2450 2450 2450 1
    KING 10 5000 7450 7450 2
    MILLER 10 1300 8750 8750 3
    ADAMS 20 1100 9850 1100 1
    FORD 20 3000 12850 4100 2
    JONES 20 2975 15825 7075 3
    SCOTT 20 3000 18825 10075 4
    SMITH 20 800 19625 10875 5
    ALLEN 30 1600 21225 1600 1
    BLAKE 30 2850 24075 4450 2
    JAMES 30 950 25025 5400 3
    ENAME DEPTNO SAL RUNNING_TOTAL DEPARTMENT_TOTAL SEQ
    MARTIN 30 1250 26275 6650 4
    TURNER 30 1500 27775 8150 5
    WARD 30 1250 29025 9400 6
    14 rows selected.
    It is very annoying and I wonder if there is a way to tell SQL*Plus not to split this result into 2 sub-results.

    user8931607 wrote:
    It is very annoying and I wonder if there is a way to tell SQL*Plus not to split this result into 2 sub-results.Well, then you should RTFM. Discover SQL*Plus PAGESIZE property:
    SQL> select ename from emp
      2  /
    ENAME
    SMITH
    ALLEN
    WARD
    JONES
    MARTIN
    BLAKE
    CLARK
    SCOTT
    KING
    TURNER
    ADAMS
    ENAME
    JAMES
    FORD
    MILLER
    14 rows selected.
    SQL> set pagesize 100
    SQL> select ename from emp
      2  /
    ENAME
    SMITH
    ALLEN
    WARD
    JONES
    MARTIN
    BLAKE
    CLARK
    SCOTT
    KING
    TURNER
    ADAMS
    JAMES
    FORD
    MILLER
    14 rows selected.
    SQL> SY.

  • Trying to display query results in 2 columns

    I am trying modify someone elses existing code to display the
    results of a query in 2 columns on a web page.
    The result of the existing code can be seen
    here
    Below is the code that I am trying to modify
    <table width="95%" border="0" align="center"
    cellpadding="4" cellspacing="2">
    <cfoutput query="News" startrow="#StartRow_News#"
    maxrows="#MaxRows_News#">
    <tr align="center" class="TEXTnormal">
    <td nowrap class="TEXTnormal
    style1">................................................................................. ...................................</td>
    </tr>
    <tr class="TEXTnormal">
    <td><table width="100%" border="0" cellpadding="0"
    cellspacing="0" class="TEXTnormal">
    <tr>
    <td><cfif News.ImageNameThumb gt 0>
    <a href="news_view.cfm?recordID=#News.ID#"><img
    src="uploadedimages/#News.ImageNameThumb#"
    alt="#News.ImageCaption#" hspace="8" vspace="0" border="0"
    align="left"></a>
    <cfelse>
    </cfif></td>
    <td><a href="news_view.cfm?recordID=#News.ID#"
    class="TEXThighlight">#News.Title#</a> -
    #News.Day#.#News.Month#.#News.Year# <br>
    #News.Summary#</td>
    </tr>
    </table></td>
    </tr>
    </cfoutput>
    </table>
    I have changed the above code to
    <table width="95%" border="0" align="center"
    cellpadding="4" cellspacing="2">
    <cfset LoopEndRow = CEILING(#EndRow_News#/2)>
    <cfloop
    index = "row"
    from = "#StartRow_News#"
    to = "#LoopEndRow#"
    step = "1">
    <tr class="TEXTnormal">
    <cfset breaker = 0>
    <cfloop
    index = "column"
    from = "0"
    to = "2"
    step = "1">
    <cfoutput query="News1" startrow="#StartRow_News#"
    maxrows="#MaxRows_News#">
    <td width="50%">
    <table width="100%" border="0" cellpadding="0"
    cellspacing="0" class="TEXTnormal">
    <tr>
    <td><cfif News1.ImageNameThumb gt 0>
    <a href="news_view.cfm?recordID=#News1.ID#"><img
    src="uploadedimages/#News1.ImageNameThumb#"
    alt="#News1.ImageCaption#" hspace="8" vspace="0" border="0"
    align="left"></a>
    <cfelse>
    </cfif></td>
    <td><a href="news_view.cfm?recordID=#News1.ID#"
    class="TEXThighlight">#News1.Title#</a> -
    #News1.Day#.#News1.Month#.#News1.Year# <br>
    #News1.Summary#</td>
    </tr>
    </table></td>
    <cfset breaker = breaker+1>
    <cfif breaker EQUAL 2>
    <cfbreak>
    </cfif>
    </cfoutput>
    </cfloop>
    </tr>
    </cfloop>
    </table>
    The results of this modified code can be see
    Here
    as you can see what I have done gives the correct number of
    columns (2)
    and the correct number of rows for the quantity of data (3)
    however each row shows only the first 2 pieces of data
    returned by the query
    Can I modify the query output so that it returns pieces of
    data off set by the amount of data already output?
    if so how?

    Right off the bat, you have 2 loops and I cant see why...
    So what is happening, is the outer loop is going 3 times...
    for 3 rows, then your inside loop is showing the first record, the
    Breaker var is breakign out of this loop after one row is shown.
    Then the main loop says do it again...
    You don't need nested loops to accomplish this, I dont
    understand why you would think of needing that...
    Looking at your code, just get rid of the outer loop... there
    is no need for it. You are already looping around the query object
    in the inner loop, thats all you need...
    Heres some psudeo code to help you out...
    loop around query maximum of 6 rows
    -- display data
    -- if recordcount EQ 2 or recordcount EQ 4 then
    ----- </tr><tr> <!--- this will make the new
    row --->
    end loop

  • Autotrace does not show SQL Query Results

    In the previous versions of SQL Developer, the query results will be shown in the Results tab when running the SQL using Autotrace. However, in SQL Developer v2, I cannot find the query results when I run the SQL using Autotrace. Are there any options or settings to turn on the query results in autotrace?

    Please do not duplicate threads (original Autotrace does not show Query Results only makes you and all of us lose time.
    If nobody answered, that would probably indicate a NO.
    You can request this at the SQL Developer Exchange again, so other users can vote and add weight for possible future implementation.
    Sorry,
    K.

  • 2.1EA2: Pinning Query Results and changing Connections [fixed in 2.1.0]

    I am on 2.1EA2 (JDK 1.6.0_16) and been playing with the new SQL Worksheet pin query results functionality. I have found that it is possible to run a query against one connection, pin the results and then change connection and run the same (or a different) query against another connection. I really like this, but found a few problems:
    #1 There doesn't seem to be any way to tell which connection a query result tab was actually run against
    #2 Even if all rows are fetched, if I then disconnect from the first connection it can get quite messy. Sometimes I get an empty connection dialog (I can't remember the exact title and it doesn't reproduce consistently) with only the close window X in the corner. Some times I get prompted to log in with a connection information dialog with no reference to the connection it is connecting to - cancelling only brings up the same dialog again until I successfully connect. Some times I get prompted to log in and while that is still on the screen, SQL Developer logs me back in to the connection (even though I don't save passwords) - I even get a new worksheet for the reconnected connection.
    theFurryOne

    Raghu,
    I am happy with both.
    #1 - I would be happy if the connection name was at the start of the tool-tip style pop-up when hovering over Query Results tab and the Query Result SQL dialog that opens on the SQL button. -K-'s suggestion makes it immediately obvious for the currently selected Query Results tab, without having to move the mouse or click on something.
    Ideally, I would like something similar for the other output tabs (ie Script Output), but they seem to show results for all connections that the worksheet has used, so the same concept may not work.
    #2 - I am used to the grid being cleared when disconnecting from earlier versions - I assumed that this was a bug where SQLD was not checking the connection of the results, just the current connection of the worksheet.
    theFurryOne

  • How to set query result to emai content?

    Dears,
    Since user want to get the email with content like a grid format, just like a sql query result with some columns and rows.
    Is there any simply way to set the sql query result to the email content?
    Thanks!

    Create a transaction or modify the existing one which is sending the email.
    Take the output of the SQL Query action block and use an XSLT action block (lookup the ones in the Transformation portion of the query template you are using in the SQL Query action block to find the one with an HTML output) to convert it to HTML. 
    Go the Web group of action blocks and find the HTML Saver.
    You can save it to the Workbench (actually NW) by using either web://<yourprojectname>/WEB/<yourfoldername>/<yourfilename> or db://<yourprojectname>/WEB/<yourfoldername>/<yourfilename> (web:// publishes it, db:// does not)
    Play around with it a bit to see what will present the data the way you want. 
    Good luck,
    Mike

  • SSMS Addin - How To Access Query Results Grid

    Hi,
    I want to access Query Result Grid(Results) in SSMS addin but I did'nt found anything.
    How can I access Query Result Grid, Rows, Columns and Cells when I executed a script?
    Thanks.

    SQL Server Management Studio currently supports query execution results to be displayed in three different ways: Results to Grid,
    Results to Text and Results to File.
    By default SQL Server Management Studio is configured to display query results in
    Grid format.  If you want to change the default to some other option follow these steps.
    1. In SQL Server Management Studio, under Tools menu, click
    Options as shown in the snippet below.
    2. In the Options dialog box, expand Query Results, expand
    SQL Server and then select General as shown in the snippet below. In the right side panel choose one of the three options shown below in the
    Default Destination for results drop down list and click
    OK to save the changes as shown in the snippet below. The changes will go into effect once you open a New Query window.
    Query Result Options for Results to Text
    In this format you have the option to display the results in a different tab as well as setting different output options.
    In the Options dialog box, expand Query Results, expand
    SQL Server and then select Results to Text tab as shown in the snippet below. In the right side panel first select the checkbox for
    Display results in a separate tab and then select the checkbox for
    Switch to results tab after the query executes and then click
    OK. If you would like to also display the column name in the result set then choose the option Include column headers in the result set
    as shown in the snippet below.
    The options you can use in the Text format are:
    Output format: - In the above snippet you could see that by default the output is displayed as columns aligned. Some of the other options that are available are Comma Delimited,
    Tab Delimited, Space Delimited and Custom Delimited. If you choose the Custom Delimited option in the Output format drop down list then you need to specify a character of your choice for the delimiter in the
    Custom delimiter text box.
    Include column headers when copying or saving the results: - If this option is selected, then whenever the results are copied to clipboard or it is saved to a file the column headers are also copied along with the results.
    Include the query in the result set: - The text of the query is displayed as part of query output under the messages tab.
    Scroll as results are received: - If this option is selected, then the display focuses on the most recently returned records at the end of the results set.
    Right align numeric values: - If this option is selected, then numeric values will be aligned to the right of the column.
    Discard results after query executes: - If this option is selected, then the query results are not displayed in the reviewing pane.
    Display results in a separate tab: - If this option is selected, then the result set after query execution will be displayed in a new tab instead of at the bottom of the query window.
    Switch to results tab after the query executes: - If this option is selected, then after the query execution the screen focus will be set to the results tab.
    Maximum number of characters displayed in each column: - This sets the maximum characters to display for any one column.  So if you have a column that is 500 characters this will only show the first 256 if you keep the default setting.
    Ref link :http://www.mssqltips.com/sqlservertip/2346/different-options-for-query-results-in-sql-server-management-studio/
    Ahsan Kabir Please remember to click Mark as Answer and Vote as Helpful on posts that help you. This can be beneficial to other community members reading the thread. http://www.aktechforum.blogspot.com/

  • Transferring multi-column query result into MS Excel

    Hello everybody!
    An ultimate novice in Oracle, with some database concepts, is here.
    The very first challenge; which I encoutered is that I want to transfer a Select query result, with multiple columns, into MS Excel sheet in a way that each field occupies a separate column in the sheet.
    I hope the forum members will show me a simple way to get around the problem.
    Thanks in anticipation.
    Rabi

    what will happen the query returns too many rows that
    Excel cant hold? I faced this problem and divided the
    report into "n" numbers based on the number of rows
    returned. Is there any internal logic for it in
    oracle?Excel is capable of holding 65536 rows of data on a sheet.
    Oracle is capable of writing data out to files.
    Oracle does not know or care whether the file it is writing is for Excel or any other product, as the file you are likely to be writing is CSV (comma seperate format) which is an open format, not specifically for Excel. If you need to limit the number of rows per CSV file then you will have to code this "business logic" into your code that produces the CSV file from Oracle.

  • Getting query results from a PL/SQL procedure

    Hi! So, I’m a little stumped and I can’t seem to find the answer to what I believe is probably a simple question…
    So, here goes… I have a big ol’ union query that I use to create a report on a page, it’s about 25k – not over the 32k limit, but fails to be able to compile every time (I always get a 400 – Bad Request error). I’m not sure why this is happening, but I can remove a union statement and it compiles just fine – so it has something to do with the size of the query. ANYWAY – I’ve resolved that I should put this bad boy into the database as a stored procedure and just call it from Apex, my problem is I can’t figure out quite how to do this with variables, etc.…
    Instead of giving you my whole big query, I’ll use the emp table as the concept is the same:
    Say we have a query that creates a report on a page:
    select empno, ename, job, mgr, hiredate, sal, comm, deptno
    from emp
    where job = :P_JOB
    and hiredate >= :P_HIREDATE;
    How would I take this query, create it as a stored procedure on the db, pass the variables from Apex and return the query result set from the stored proc as a report?
    I really appreciate any help on this!
    Best,
    Gilcrest

    Hi Gilcrest,
    You should create the query as a View and use the view name and the WHERE clause in the report's sql source.
    Andy

  • Sending email using PL/SQL based on a query result

    Hello all,
    I want to create a procedure using PL/SQL, based on a query result.Here is the scenario:
    I have multiple tables in Target and Source databases that I want to compare(not the whole table but queries on these tables) and if they differ, I want to shoot an email. I have some ideas how to implement this but not sure whether it is the best approach.
    select Acct_id, total from SourceTableA
    minus
    select Acct_id, total from TargetTableA
    select Acct_id, sum from SourceTableB
    minus
    select Acct_id, sum from TargetTableB
    If the result of any of above queries > 0 then I want to shoot an email and want to repeat this procedure in the morning every day.
    I know how to implement send_mail procedure using UTL_SMTP package and how to schedule tha job by dbms_job package. But I am not sure how to implement the result of minus query. In case if minus > 0 then I also want to send the name of tables in the email message where source and target tables are not same. Should i use cursor, variable or insert the result in a new table? any help would be highly appreciated. Thanks in advance.
    Khan

    Actually these queries are the part of our daily testing that we run everyday manually(after the scheduled ETL load) to see if there are any discrepencies between our datawarehouse tables and source tables. So instead of running these queries manually everyday we want to schedula a procedure that will shoot an email in case of any discrepency and indicate which tables have problems.

  • How can I architect my data layer to yield query result pages to the application as SQL Server prepares them?

    I tried to make the question as explicit as possible.
    Refer to Sql Server Management Studio's Results view.  Depending upon the structure of the execution plan, the Results pane may begin displaying results while the query is still executing.  Can someone point me in a direction for architecting a
    data layer (I am tech and framework agnostic for this task. Any solution will suffice) that will begin receiving pages of the set before SQL Server has completed the entire query?
    The call from the data layer to SQL Server will obviously have to be asynchronous, but is there any additional ceremony that I need to be aware of when issuing OPTION (FAST x) to the query optimizer?

    Thanks for the reply. (I actually meant to put this in the SQL Data Access forum, not the T-SQL forum)
    "Generally the last step is ORDER BY in a
    query, so nothing can start before that executes."
    I would imagine you cannot ORDER BY and yield results as they are fetched because of the execution plan that would be generated.  For the purposes of this post, please assume that sorting will be done purely client side
    "Can you post your query?"
     For purposes of discussion, let's assume that the query is
    select *
    from information_schema.columns
    and also assume that you have "lots" of columns to display.
    This was an exploratory question to see what would be necessary to replicate the behavior of Management Studio's Query Result view in a custom application. 
    I would imagine that there's going to be a lot of analysis of the execution plans that get generated in order for the OPTION (FAST x) optimizer hint to do any good, but apart from general tuning concerns that would allow SQL SERVER to yield a page of data
    "fast", I was wondering if there was anything else required of the calling client to force it to yield return its first page.
    After thinking about this (and phrasing it the way I did in the last sentence) perhaps this is the incorrect forum for this question.  I imagine that my concerns are better addressed in forums dedicated to the technology of the calling client (which
    would be a .NET assembly)
    Be that as it may, if there is any ceremony that SQL Server imposes on clients in order to yield return, I would expect that my question would be in the scope of SQL Server discussions (even though I intended this to be in a different SQL Server forum)

Maybe you are looking for

  • How do i import my library from an external hard drive. Exported it as had to wipe pc and reinstal windows but when i try to import nothing happens

    How do i import my library from an external hard drive. Had to export it as had to reinstal windows due to a conflict between windows and i-tunes. Wen i try to import nothing happens despite selecting the file. Can you import from an i-phone to i-tun

  • Dual monitor use on MacBook with BootCamp

    I have a Client using the new 24" LED Display with his MacBook. He only want to use the External display and close the notebook when he is in the office. This works OK in OS X, he closes the lid so the laptop sleeps, and then wakes it again from the

  • Unique IF Problem

    Hello Guys, I have a unique problem with my mapping. There is a IF condition which checks for number of line items and maps accordingly to the target. In the else part, if the number of line items is not matched as per a field, am calling an RFC look

  • HT1848 Lost Purchases Since IOS7

    I have paid for several audiobooks and since upgrading to IOS7 they are not available on my iPhone OR visible on iTunes and have appeared to have just disappeared.  They are in my purchases in account history but nowhere either on my Mac, iPhone or i

  • Syncing after ios5

    After installing ios5 to ipod touch, it won't sync with itunes. It reaches step 5 of 5 (syncing music or books, and then just syncs indefinitely; ie it does not complete. What is going on?