Why even though I mentioned the direction as 2; still, its posting OUTBOUND

Hi Experts,
I wanna to POST the IDOC INBOUND, so , I hv mentioned the direction as 2 in control rec. and passed the all sender & receiver info.
So, I tried to post it from WE19, but, am getting as OUTBOX - OUTBOUND in WE05
Why even though I mentioned the direction as 2; still, its posting OUTBOUND??
thanq

thanq
actually, i tries all combinations.
this is my code of other thread,
Hi Experts,
The Following is simple code for CREATION of Transfer Order-TO IDOC creation and its POSTING, for the purpose of that, the corresponding TO shulod be CONFIRMED.
The Issue: NOTHING is happening, I mean NO CREATION and NO POSTING,
so, request u that, let me know
1-Why not creating? not posting?
2 - correct the code or suggest some ideas.
Fill Control Record Information
control_record_in-direct = '2'.
control_record_in-mestyp = 'WMTOCO'.
control_record_in-idoctp = 'WMTCID01'.
control_record_in-rcvprt = 'KU'.
control_record_in-rcvpfc = 'AG'.
control_record_in-rcvprn = '456783'.
control_record_in-rcvpor = 'GENTRANP02'.
control_record_in-sndprt = 'LI'.
clear control_record_in-sndpfc.
control_record_in-sndprn = '2000'. "SAPDEV100
control_record_in-sndpor = 'SAPDEV'.
SORT idoc_data BY docnum segnam.
READ TABLE idoc_data INTO edidd WITH KEY segnam = 'E1EDL20'
BINARY SEARCH.
IF sy-subrc = 0.
Fill Header Output Data
SELECT SINGLE sammg FROM vbss INTO fs_hdr_data-sammg
WHERE vbeln = edidd-sdata.
fs_hdr_data-tanum = edidd-sdata.
ENDIF.
Fill the Administrative Section of the Data Record
fs_int_edidd-segnam = 'E1LTCOH'.
fs_int_edidd-sdata = fs_hdr_data.
Append the EDI Header Record Data to the IDOC
APPEND fs_int_edidd TO int_edidd.
CLEAR fs_int_edidd.
Detail Record
Fill Detail Output Data
LOOP AT idoc_data INTO edidd.
IF edidd-segnam = 'E1EDL24'.
CLEAR wa_e1edl24.
wa_e1edl24 = edidd-sdata.
fs_itm_data-tapos = wa_e1edl24-posnr.
fs_itm_data-nista = wa_e1edl24-lfimg.
fs_itm_data-altme = wa_e1edl24-vrkme.
SELECT SINGLE meinh INTO fs_itm_data-altme
FROM marm
WHERE matnr = wa_e1edl24+6(18).
ENDIF.
ENDLOOP.
Fill the Administrative Section of the Data Record
fs_int_edidd-segnam = 'E1LTCOI'.
fs_int_edidd-sdata = fs_itm_data.
Append the EDI Header Record Data to the IDOC
APPEND fs_int_edidd TO int_edidd.
CLEAR fs_int_edidd.
ENDLOOP.
thank you

Similar Messages

  • On opening gogle I get the message:"WARNING! Your Flash Player may be out of date. Please update to continue" - on clicking ok I am diverted to Flash Player Pro download site?? Is this a Adobe product? And why even though i have the latest flash player ve

    On opening google I get the message:"WARNING! Your Flash Player may be out of date. Please update to continue" - on clicking ok I am diverted to Flash Player Pro download site?? Is this a Adobe product? And why even though i have the latest flash player version I repeatedly get the message?

    This is not a message that Adobe is providing, and I recommend that you not click on the link. It sounds as though you might have malware on your computer.
    For more information, see: http://malwaretips.com/blogs/warning-your-flash-player-may-be-out-of-date-virus/ or http://wasconet.com/how-to-remove-warning-your-flash-player-may-be-out-of-date/

  • Would someone please inform me why even though I ordered my iPhone 5 on the 14th of September, where the confirmation told me that I would receive it on the 28th of September, my "Order Status" now informs me that it will not ship until October 19th?

    Would someone please inform me why even though I ordered my iPhone 5 on the 14th of September, where the confirmation told me that I would receive it on the 28th of September, my "Order Status" now informs me that it will not ship until October 19th?

        Hello Leisabee!
    I am so excited for you to get your iPhone 5. I know how eager we all are to have this phone!  I know you mentioned you ordered on 9/14, did you receive a confirmation letter by chance?
    You can also check your order status here: http://bit.ly/rqEisu
    That is really just right around the corner and time will fly by! I promise.  If you have any other questions, just let us know!
    Thanks,
    MelissaM_VZW
    Follow us on Twitter @vzwsupport

  • Why does JDBC keep connections open even though I close the resultsets?

    I attached my program and my output. Please bear with me for the long output. My question here is why do the connections remain even though I closed the resultsets. I need to reuse my prepared statements, but don't want to keep the oracle sessions open. Is this possible? What do I need to do?
    If you notice in the program, I have executed the query to find the number of open sessions 5 times.
    1) After creating the connections
    2) After creating the prepared statements
    3) After executing them
    4) After getString on the resultSets
    5) After closing the resultsets.
    And the sessions are still there even is Step 5 :-(
    import java.sql.*;
    * Title:
    * Description:
    * Copyright: Copyright (c) 2001
    * Company:
    * @author
    * @version 1.0
    public class Test {
    String dburl = "jdbc:oracle:thin:@oracle92:1521:oracle92";
    String query = "select s.username,s.sid ,s.logon_time, s.serial#,sql.sql_text"+
    " from v$session s, v$sqltext sql where sql.address = "+
    "s.sql_address and sql.hash_value = s.sql_hash_value "+
    "and upper(s.username) like 'KRTEMP%'"+
    " order by s.username ,s.sid ,s.serial# ,sql.piece" ;
    // String query = "select s.username, s.sid ,s.logon_time, s.status from v$session s where upper(s.username) like 'KRTEMP%'";
    public Test(int num) throws Exception {
    Class.forName("oracle.jdbc.driver.OracleDriver");
    Connection[] con = new Connection[num];
    for(int i=0; i<num; i++) {
    con[i] = DriverManager.getConnection(dburl, "krtemp", "krtemp");
    executeQuery();
    PreparedStatement[] ps = new PreparedStatement[num];
    for(int i=0; i<num; i++) {
    ps[i] = con.prepareStatement("select * from contact");
    executeQuery();
    ResultSet[] rs = new ResultSet[num];
    for(int i=0; i<num; i++) {
    rs[i] = ps[i].executeQuery();
    executeQuery();
    for(int i=0; i<num; i++) {
    ResultSetMetaData meta = rs[i].getMetaData();
    while(rs[i].next()) {
    for(int j=1; j<=meta.getColumnCount(); j++) {
    rs[i].getString(j);
    executeQuery();
    for(int i=0; i<num; i++) {
    rs[i].close();
    executeQuery();
    private void executeQuery() throws Exception {
    Connection con = DriverManager.getConnection(dburl, "krtemp", "krtemp");
    PreparedStatement ps = con.prepareStatement(query);
    ResultSet rs = ps.executeQuery();
    ResultSetMetaData meta = rs.getMetaData();
    System.out.println("-----");
    while(rs.next()) {
    for(int i=1; i<=meta.getColumnCount(); i++) {
    System.out.print(rs.getString(i));
    System.out.print(" ");
    System.out.println();
    System.out.println("-----");
    public static void main(String[] args) throws Exception {
    Test test = new Test(5);
    The output is
    KRTEMP 9 2005-06-27 17:09:30.0 5436 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS WH
    ERE PARAMETER ='NLS_
    KRTEMP 9 2005-06-27 17:09:30.0 5436 DATE_FORMAT'
    KRTEMP 34 2005-06-26 18:51:01.0 3629 rename tstore to store
    KRTEMP 37 2005-06-27 17:09:25.0 4209 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS W
    HERE PARAMETER ='NLS_
    KRTEMP 37 2005-06-27 17:09:25.0 4209 DATE_FORMAT'
    KRTEMP 74 2005-06-27 17:09:26.0 17625 select appId from profile_application_tabl
    e wher
    KRTEMP 74 2005-06-27 17:09:26.0 17625 e appName=:1 and appVersion=:2
    KRTEMP 83 2005-06-27 17:09:25.0 1771 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS W
    HERE PARAMETER ='NLS_
    KRTEMP 83 2005-06-27 17:09:25.0 1771 DATE_FORMAT'
    KRTEMP 105 2005-06-27 17:09:30.0 3296 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS
    WHERE PARAMETER ='NLS_
    KRTEMP 105 2005-06-27 17:09:30.0 3296 DATE_FORMAT'
    KRTEMP 111 2005-06-27 17:09:25.0 4878 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS
    WHERE PARAMETER ='NLS_
    KRTEMP 111 2005-06-27 17:09:25.0 4878 DATE_FORMAT'
    KRTEMP 153 2005-06-27 17:09:30.0 31065 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS
    WHERE PARAMETER ='NLS_
    KRTEMP 153 2005-06-27 17:09:30.0 31065 DATE_FORMAT'
    KRTEMP 163 2005-06-27 17:09:30.0 3205 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS
    WHERE PARAMETER ='NLS_
    KRTEMP 163 2005-06-27 17:09:30.0 3205 DATE_FORMAT'
    KRTEMP 183 2005-06-27 17:09:30.0 3465 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS
    WHERE PARAMETER ='NLS_
    KRTEMP 183 2005-06-27 17:09:30.0 3465 DATE_FORMAT'
    KRTEMP 191 2005-06-27 17:09:26.0 5438 select appId from profile_application_tabl
    e wher
    KRTEMP 191 2005-06-27 17:09:26.0 5438 e appName=:1 and appVersion=:2
    KRTEMP 256 2005-06-27 17:09:30.0 2718 select s.username,s.sid ,s.logon_time, s.s
    erial#,sql.sql_text fr
    KRTEMP 256 2005-06-27 17:09:30.0 2718 om v$session s, v$sqltext sql where sql.ad
    dress = s.sql_address
    KRTEMP 256 2005-06-27 17:09:30.0 2718 and sql.hash_value = s.sql_hash_value and
    upper(s.username) like
    KRTEMP 256 2005-06-27 17:09:30.0 2718 'KRTEMP%' order by s.username ,s.sid ,s.s
    erial# ,sql.piece
    KRTEMP 9 2005-06-27 17:09:30.0 5436 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS WH
    ERE PARAMETER ='NLS_
    KRTEMP 9 2005-06-27 17:09:30.0 5436 DATE_FORMAT'
    KRTEMP 34 2005-06-26 18:51:01.0 3629 rename tstore to store
    KRTEMP 37 2005-06-27 17:09:25.0 4209 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS W
    HERE PARAMETER ='NLS_
    KRTEMP 37 2005-06-27 17:09:25.0 4209 DATE_FORMAT'
    KRTEMP 74 2005-06-27 17:09:26.0 17625 select appId from profile_application_tabl
    e wher
    KRTEMP 74 2005-06-27 17:09:26.0 17625 e appName=:1 and appVersion=:2
    KRTEMP 83 2005-06-27 17:09:25.0 1771 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS W
    HERE PARAMETER ='NLS_
    KRTEMP 83 2005-06-27 17:09:25.0 1771 DATE_FORMAT'
    KRTEMP 105 2005-06-27 17:09:30.0 3296 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS
    WHERE PARAMETER ='NLS_
    KRTEMP 105 2005-06-27 17:09:30.0 3296 DATE_FORMAT'
    KRTEMP 111 2005-06-27 17:09:25.0 4878 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS
    WHERE PARAMETER ='NLS_
    KRTEMP 111 2005-06-27 17:09:25.0 4878 DATE_FORMAT'
    KRTEMP 153 2005-06-27 17:09:30.0 31065 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS
    WHERE PARAMETER ='NLS_
    KRTEMP 153 2005-06-27 17:09:30.0 31065 DATE_FORMAT'
    KRTEMP 163 2005-06-27 17:09:30.0 3205 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS
    WHERE PARAMETER ='NLS_
    KRTEMP 163 2005-06-27 17:09:30.0 3205 DATE_FORMAT'
    KRTEMP 183 2005-06-27 17:09:30.0 3465 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS
    WHERE PARAMETER ='NLS_
    KRTEMP 183 2005-06-27 17:09:30.0 3465 DATE_FORMAT'
    KRTEMP 191 2005-06-27 17:09:26.0 5438 select appId from profile_application_tabl
    e wher
    KRTEMP 191 2005-06-27 17:09:26.0 5438 e appName=:1 and appVersion=:2
    KRTEMP 232 2005-06-27 17:09:31.0 5893 select s.username,s.sid ,s.logon_time, s.s
    erial#,sql.sql_text fr
    KRTEMP 232 2005-06-27 17:09:31.0 5893 om v$session s, v$sqltext sql where sql.ad
    dress = s.sql_address
    KRTEMP 232 2005-06-27 17:09:31.0 5893 and sql.hash_value = s.sql_hash_value and
    upper(s.username) like
    KRTEMP 232 2005-06-27 17:09:31.0 5893 'KRTEMP%' order by s.username ,s.sid ,s.s
    erial# ,sql.piece
    KRTEMP 34 2005-06-26 18:51:01.0 3629 rename tstore to store
    KRTEMP 37 2005-06-27 17:09:25.0 4209 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS W
    HERE PARAMETER ='NLS_
    KRTEMP 37 2005-06-27 17:09:25.0 4209 DATE_FORMAT'
    KRTEMP 74 2005-06-27 17:09:26.0 17625 select appId from profile_application_tabl
    e wher
    KRTEMP 74 2005-06-27 17:09:26.0 17625 e appName=:1 and appVersion=:2
    KRTEMP 83 2005-06-27 17:09:25.0 1771 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS W
    HERE PARAMETER ='NLS_
    KRTEMP 83 2005-06-27 17:09:25.0 1771 DATE_FORMAT'
    KRTEMP 111 2005-06-27 17:09:25.0 4878 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS
    WHERE PARAMETER ='NLS_
    KRTEMP 111 2005-06-27 17:09:25.0 4878 DATE_FORMAT'
    KRTEMP 232 2005-06-27 17:09:31.0 5893 select s.username,s.sid ,s.logon_time, s.s
    erial#,sql.sql_text fr
    KRTEMP 232 2005-06-27 17:09:31.0 5893 om v$session s, v$sqltext sql where sql.ad
    dress = s.sql_address
    KRTEMP 232 2005-06-27 17:09:31.0 5893 and sql.hash_value = s.sql_hash_value and
    upper(s.username) like
    KRTEMP 232 2005-06-27 17:09:31.0 5893 'KRTEMP%' order by s.username ,s.sid ,s.s
    erial# ,sql.piece
    KRTEMP 256 2005-06-27 17:09:31.0 2783 select s.username,s.sid ,s.logon_time, s.s
    erial#,sql.sql_text fr
    KRTEMP 256 2005-06-27 17:09:31.0 2783 om v$session s, v$sqltext sql where sql.ad
    dress = s.sql_address
    KRTEMP 256 2005-06-27 17:09:31.0 2783 and sql.hash_value = s.sql_hash_value and
    upper(s.username) like
    KRTEMP 256 2005-06-27 17:09:31.0 2783 'KRTEMP%' order by s.username ,s.sid ,s.s
    erial# ,sql.piece
    KRTEMP 9 2005-06-27 17:09:30.0 5436 select * from contact
    KRTEMP 34 2005-06-26 18:51:01.0 3629 rename tstore to store
    KRTEMP 37 2005-06-27 17:09:25.0 4209 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS W
    HERE PARAMETER ='NLS_
    KRTEMP 37 2005-06-27 17:09:25.0 4209 DATE_FORMAT'
    KRTEMP 74 2005-06-27 17:09:26.0 17625 select appId from profile_application_tabl
    e wher
    KRTEMP 74 2005-06-27 17:09:26.0 17625 e appName=:1 and appVersion=:2
    KRTEMP 83 2005-06-27 17:09:25.0 1771 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS W
    HERE PARAMETER ='NLS_
    KRTEMP 83 2005-06-27 17:09:25.0 1771 DATE_FORMAT'
    KRTEMP 105 2005-06-27 17:09:30.0 3296 select * from contact
    KRTEMP 111 2005-06-27 17:09:25.0 4878 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS
    WHERE PARAMETER ='NLS_
    KRTEMP 111 2005-06-27 17:09:25.0 4878 DATE_FORMAT'
    KRTEMP 153 2005-06-27 17:09:30.0 31065 select * from contact
    KRTEMP 163 2005-06-27 17:09:30.0 3205 select * from contact
    KRTEMP 173 2005-06-27 17:09:31.0 3922 select s.username,s.sid ,s.logon_time, s.s
    erial#,sql.sql_text fr
    KRTEMP 173 2005-06-27 17:09:31.0 3922 om v$session s, v$sqltext sql where sql.ad
    dress = s.sql_address
    KRTEMP 173 2005-06-27 17:09:31.0 3922 and sql.hash_value = s.sql_hash_value and
    upper(s.username) like
    KRTEMP 173 2005-06-27 17:09:31.0 3922 'KRTEMP%' order by s.username ,s.sid ,s.s
    erial# ,sql.piece
    KRTEMP 183 2005-06-27 17:09:30.0 3465 select * from contact
    KRTEMP 191 2005-06-27 17:09:26.0 5438 select appId from profile_application_tabl
    e wher
    KRTEMP 191 2005-06-27 17:09:26.0 5438 e appName=:1 and appVersion=:2
    KRTEMP 232 2005-06-27 17:09:31.0 5893 select s.username,s.sid ,s.logon_time, s.s
    erial#,sql.sql_text fr
    KRTEMP 232 2005-06-27 17:09:31.0 5893 om v$session s, v$sqltext sql where sql.ad
    dress = s.sql_address
    KRTEMP 232 2005-06-27 17:09:31.0 5893 and sql.hash_value = s.sql_hash_value and
    upper(s.username) like
    KRTEMP 232 2005-06-27 17:09:31.0 5893 'KRTEMP%' order by s.username ,s.sid ,s.s
    erial# ,sql.piece
    KRTEMP 256 2005-06-27 17:09:31.0 2783 select s.username,s.sid ,s.logon_time, s.s
    erial#,sql.sql_text fr
    KRTEMP 256 2005-06-27 17:09:31.0 2783 om v$session s, v$sqltext sql where sql.ad
    dress = s.sql_address
    KRTEMP 256 2005-06-27 17:09:31.0 2783 and sql.hash_value = s.sql_hash_value and
    upper(s.username) like
    KRTEMP 256 2005-06-27 17:09:31.0 2783 'KRTEMP%' order by s.username ,s.sid ,s.s
    erial# ,sql.piece
    KRTEMP 9 2005-06-27 17:09:30.0 5436 select * from contact
    KRTEMP 34 2005-06-26 18:51:01.0 3629 rename tstore to store
    KRTEMP 37 2005-06-27 17:09:25.0 4209 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS W
    HERE PARAMETER ='NLS_
    KRTEMP 37 2005-06-27 17:09:25.0 4209 DATE_FORMAT'
    KRTEMP 74 2005-06-27 17:09:26.0 17625 select appId from profile_application_tabl
    e wher
    KRTEMP 74 2005-06-27 17:09:26.0 17625 e appName=:1 and appVersion=:2
    KRTEMP 83 2005-06-27 17:09:25.0 1771 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS W
    HERE PARAMETER ='NLS_
    KRTEMP 83 2005-06-27 17:09:25.0 1771 DATE_FORMAT'
    KRTEMP 105 2005-06-27 17:09:30.0 3296 select * from contact
    KRTEMP 111 2005-06-27 17:09:25.0 4878 SELECT VALUE FROM NLS_INSTANCE_PARAMETERS
    WHERE PARAMETER ='NLS_
    KRTEMP 111 2005-06-27 17:09:25.0 4878 DATE_FORMAT'
    KRTEMP 153 2005-06-27 17:09:30.0 31065 select * from contact
    KRTEMP 163 2005-06-27 17:09:30.0 3205 select * from contact
    KRTEMP 183 2005-06-27 17:09:30.0 3465 select * from contact
    KRTEMP 191 2005-06-27 17:09:26.0 5438 select appId from profile_application_tabl
    e wher
    KRTEMP 191 2005-06-27 17:09:26.0 5438 e appName=:1 and appVersion=:2
    KRTEMP 204 2005-06-27 17:09:32.0 1478 select s.username,s.sid ,s.logon_time, s.s
    erial#,sql.sql_text fr
    KRTEMP 204 2005-06-27 17:09:32.0 1478 om v$session s, v$sqltext sql where sql.ad
    dress = s.sql_address
    KRTEMP 204 2005-06-27 17:09:32.0 1478 and sql.hash_value = s.sql_hash_value and
    upper(s.username) like
    KRTEMP 204 2005-06-27 17:09:32.0 1478 'KRTEMP%' order by s.username ,s.sid ,s.s
    erial# ,sql.piece
    KRTEMP 232 2005-06-27 17:09:31.0 5893 select s.username,s.sid ,s.logon_time, s.s
    erial#,sql.sql_text fr
    KRTEMP 232 2005-06-27 17:09:31.0 5893 om v$session s, v$sqltext sql where sql.ad
    dress = s.sql_address
    KRTEMP 232 2005-06-27 17:09:31.0 5893 and sql.hash_value = s.sql_hash_value and
    upper(s.username) like
    KRTEMP 232 2005-06-27 17:09:31.0 5893 'KRTEMP%' order by s.username ,s.sid ,s.s
    erial# ,sql.piece
    KRTEMP 256 2005-06-27 17:09:31.0 2783 select s.username,s.sid ,s.logon_time, s.s
    erial#,sql.sql_text fr
    KRTEMP 256 2005-06-27 17:09:31.0 2783 om v$session s, v$sqltext sql where sql.ad
    dress = s.sql_address
    KRTEMP 256 2005-06-27 17:09:31.0 2783 and sql.hash_value = s.sql_hash_value and
    upper(s.username) like
    KRTEMP 256 2005-06-27 17:09:31.0 2783 'KRTEMP%' order by s.username ,s.sid ,s.s
    erial# ,sql.piece

    Why do the connections stay open? Because you haven't closed them.
    You answered your own question: obviously closing the ResultSet is NOT the same thing as closing the connection.
    When you do a query, you want to get the connection, statement, and result set, load the data from the result set into an object or data structure, and then immediately close them all again in reverse order of creation. You want to keep the scope as narrow as possible. You want to use a connection pool to keep the cost of obtaining a connection down. You should leave caching of the PreparedStatements to the JDBC driver.
    %

  • I downloaded a series and only 4 episodes will show why can't I watch the others even though I purchased the entire series

    I downloaded a series and only 4 episodes will show why can't I watch the others even though I purchased the entire series.  It won't let me watch and every time is select the little cloud it tells me that it is downloading but nothing happens.  I have tried to sync it on my PC but I could only get the first couple of episodes.

    Hi Kousies!
    It sounds like you may need to report this issue with your purchases:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase
    http://support.apple.com/kb/ht1933
    You can also use this article to try to restart these stalled downloads:
    iTunes: How to resume interrupted iTunes Store downloads
    http://support.apple.com/kb/ht1725
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • Why is OS X Lion showing download even though I have the most current version?

    Why is OS X Lion showing download even though I have the most current version?

    Hi..
    Nothing to be concerned about. The download is available if you want to download Lion again to create an install disc or re download Lion on any other authorized Macs you have for free using the same Apple ID.
    How to create an OS X Lion installation disc | MacFixIt - CNET Reviews

  • Why can't i see documents using adobe reader even though I have the most updated version?

    Why can't I see documents using adobe reader even though I have the most updated version?

    Hi lawalton,
    Please tell me a bit more--what happens when you try to open your files in Reader? Are you getting an error message? Do they open, but don't display correctly?
    I look forward to hearing back from you so we can get this mystery sorted out.
    Best,
    Sara

  • Why do all of my incoming calls on my iPhone 5c say they are from unknown, even though I have the person calling already in my contacts?

    why do all of my incoming calls on my iPhone 5c say they are from unknown, even though I have the person calling already in my contacts?

    Caller ID can also be turned off on some networks e.g. iOS has a setting for UK phones to turn it off. You should try calling from a number you know is not blocked from sending the caller ID.

  • I've upgraded to OS 10.8.2 and my Bowers and Wilkins MM-1 Speakers were working fine until today, and now they won't play any sound at all, even though iTunes shows the audio is playing. I've tried both the headphone jack and the USB port. Please help!

    I've upgraded to OS 10.8.2 and my Bowers and Wilkins MM-1 Speakers were working fine until today, and now they won't play any sound at all, even though iTunes shows the audio is playing. I've tried both the headphone jack and the USB port. Please help! I don't want to have to be stuck using my internal speakers!
    Thank you,
    Chris

    Michael,
    Thanks. I haven't mixed down the audio or checked the number of tracks in Prefs. Good points.
    As far as a mixdown goes, I'll definitely give it a try, though I wonder whether or not the tracks will be recognized during mix down recording - given that you can't hear either of those segments in playback. Just have to try.
    Re the preferred number of allowed tracks - I'll go check as soon as I send this off, but I'm not sure that applies in this case, since the two Channels containing the segments that are pinked out are not in additional tracks. I should have mentioned that other audio clips and segments on the same Channels in the SAME tracks ARE heard in playback. As are two additional track in the 2nd Sequence. It's only when the two sequences are joined that the pink tinted segments can't be heard. Within the sequence the same audio cuts playback as they should. Thanks again &
    Best regards,
    David

  • ITunes music files cannot be edited, and new music files imported.  The messages says I do not have enough access privileges even though I am the administrator of the system.

    Since installing the latest version of iTunes all my music files cannot be edited, and I cannot import new music files into iTunes.  The messages says I do not have enough access privileges even though I am the administrator of the system.  If anyone can help me sort this out I would be really grateful.  I have checked the read and write privileges for all the iTunes folders and it all seems in order so I can't understand it.
    In general, I am getting really frustrated with Apple.  They seem to be getting ever more controlling in their approach to their consumers.  I need to edit music file information as I am a dj.  And why can't I import music, unless I buy it from iTunes?  Most of all, why can't I use the devices I paid a lot of money for in the way I want to use them, and not be forced to coerced to use apple's fee paying services (iCloud, iTunes).
    I have used apple computers since the early 1990's, but in the last year I have gotten rid of my iPhone and my iPad and replaced them with Android devices.  Much better and much less control.  Perhaps it is time to switch from Apple altogether.

    Hi
    Read this About Disk Utility's Repair Disk Permissions feature
    and OS X Mavericks: If you don’t have the correct permissions to open a file or folder
    Does this help?
    Jim

  • Metadata under the Page Properties is not there - even though I have the latest March 15 Update

    Anyone,
    Metadata under the Page Properties is not there - even though I have the latest March 15 Update. ?? Help. Why is this?

    It's only there for "normal" pages, not master pages.

  • I am getting a pop up on my iPhone 4S asking password of my iCloud even though I feed the password but still keep on asking the same thing every second so I am not able to use my iPhone.

    I am getting a pop up on my iPhone 4S asking password of my iCloud even though I feed the password but still keep on asking the same thing every second so I am not able to use my iPhone.at various times it asks different passwords.

    Curretly, there is an iCloud blackout.  It started this morning around 2AM California time (Pacific), 5AM New York (Eastern).  A lot of people have been having issues all day, including me.  No iCloud services are online.  Even Find My iPhone is down.

  • HT1338 Even though I have the Pages 5.0.1 installed as the default software, I still receive the message "You need a newer version of pages to open this document."  HELP!

    Even though I have the Pages 5.0.1 installed as the default software, I still receive the message “You need a newer version of pages to open this document.”  HELP!

    Please clarify....
    Mac OS X (10.4.6)
    What your system profile shows yet, you posted in the ML forums.

  • I downloaded digital hd copies of movies onto my parents' computer and they have a new computer now, and the movies aren't there, even though they have the same apple ID. What do I do to get them to download?

    I downloaded digital hd copies of movies onto my parents' computer and they have a new computer now, and the movies aren't there, even though they have the same apple ID. What do I do to get them to download?
    New computer: Dell, Windows 8.1
    Processor: Intel Core i7-4770 CPU @ 3.40GHz
    64-bit Operating System, x64-based processor
    16 GB RAM
    itunes up-to-date
    Old computer: Dell, Microsoft Windows XP
    Processor: Intel Pentium D CPU @ 2.80GHz
    1 GB RAM
    itunes not up-to-date (updating it isn't really an option)
    I have these movies downloaded on the old computer from digital hd redeemed codes: Fantastic Mr. Fox, Super 98, Thor, Inception, The Hunger Games, and Star Trek Into Darkness. I bought Pirates of the Caribbean: The Curse of the Black Pearl on itunes with money, and that one isn't showing up either. When I search it on itunes to see if I can just re-download it, that isn't an option. I would have to buy it again. Home Sharing isn't what I want because the old computer will not be here forever and it is not connected to wifi.
    It's kind of a lot of movies, and I want them on the new computer.

    im so happy I have a iTunes Card Code absolutely free! I got it at http://linkbitty.com/freeitunes2014

  • I want to create a new folder on my external hard drive for photos.  Even though I added the new folder button to the tool bar it is not highlighted so I cannot click on it to create a new folder on this drive.

    I have an external hard drive that I would like to pre-make a new folder before I import photos into it.  Even though I added the new folder app to by toolbar, it is not highlighted and I cannot use it.  It will only let me create new folders if I upload to iPhoto.  That is not where I want to store everything.  So I need to figure out how to turn on or activate New Folder on my toolbar for all possible downloading options.

    If it's a drive that you've previously used with a PC, just double-check the format - click the drive once on the desktop to highlight it, and click cmd-i (the command key and the i key together) to see the Info window. That will tell you, under Format, how it's formatted.
    If it's "NTFS", that's the current Windows format. You can read but not write to it with a Mac. If you want full read/write access, you should look into Paragon NTFS, which allows you to do both. Note that some features of te Mac (Time Machine, for example) will only work with Mac-formatted drives.
    Matt

Maybe you are looking for

  • Songs not on my iOS device appear in iTunes

    I have no music synced to my iPhone or iPad, I just use iTunes Match. However, when I connect my iOS device to iTunes and select the "On this iPhone/iPad" tab, it shows a list of songs that are NOT on my phone. I don't download songs from iTunes matc

  • How to setup a DB Adapter in Web Logic

    I am familiar setting up DB adapters (eis/DB/) in OC4J; but having challenges setting up the same in Web Logic. I was able to set up the JDBC datasource, but couldn't figure out where to go and setup the DB adapter (which in OC4J would use that datas

  • Syncing between harddrives

    Hi All, I currently have my iTunes library on my external hard drive. I was thinking of moving it to my macbook so I could have it with me. My first question is: what is the easiest way to copy everything to my macbook? My second question is: does an

  • Assign PO Condition Type to Purchase Order Type

    Dear Gurus, I'm trying to assign a condition type which is currently not assigned to a specific PO type. Could anyone give me the flow of configuring PO Condition Types. Thank you VM Regards, Jin

  • Can't get flash player. can't open file blocked by c:\users\wmdaniel\ap.. etc 32bitinstaller. How dio i download win 7 64 bit

    I can't get to this file to try and change it. I don't know how I can get the files to open. I am not very good at working with the computer. I the same with problem with the 32 bit 64 bit of IE.