HTTP_RESP_STATUS_CODE_NOT_OK. Pls advice

Hi All,
Basically I have sender CRM system that send data to my SAP XI system.
I am getting error in my CRM system
"HTTP response contains status code 500 with the description Timeout Error while sending by HTTP (error code: 500, error text: Timeout)
Pls advice

Hi Rick,
increase timeout dont decrease it................
Still when I try to reprocess my data from sxmb_moni It is giving same error. - SXMB_MONI of crm or xi system........go to sm58 in CRM system and execute the LUWs stuck there if there is any..........if there is no LUW there, re-trigger your CRM data from CRM system and it should reach XI system.
Regards,
Rajeev Gupta
Edited by: RAJEEV GUPTA on Mar 26, 2008 11:16 AM

Similar Messages

  • Same Sender and Receiver File Name. Pls advice urgent

    Hi All,
    My sender file name is auto generated number so
    it is dynamic in nature.
    ex. "abc1.txt"
         "abc2.txt"
    Now In my Sender File Adapter I cannot give
    File Name hard coded as my sender file name is auto generated number.
    Also I want same file name received at receving end.
    File Sender --   "abc1.txt"
    File Receiver -- "abc1.txt"
    File Sender --   "abc2.txt"
    File Receiver -- "abc2.txt"
    Pls advice.
    Regards

    Hi Rider,
    All your sender files have .txt extension but the name is not constant(dynamic in nature).Than in this case to pick ur file u can use the *.txt as ur sender file name.Than all the files with .txt extension in the source folder specified would be picked.
    Than u can proceed in the same way given in this blog
    /people/michal.krawczyk2/blog/2005/11/10/xi-the-same-filename-from-a-sender-to-a-receiver-file-adapter--sp14
    Please let me know if u need any information
    Thanks,
    Bhargav
    Note:Award points if found useful

  • UDF in message mapping instead of Java Mapping. Pls advice urgent

    Hi All,
    My scenario
    CRM --- XI -- CRM
    In XI I have to open socket connection.
    Pls refer link:
    /people/saravanakumar.kuppusamy2/blog/2005/12/15/socket-integration-with-xi
    Can Java Mapping code given in above link for socket connection can be used in Message Mapping (CRM -- CRM)UDF?
    Pls advice urgent
    Regards

    Hi Henry,
    I understood your requirement.
    But as per the architecture of XI/PI some message has to trigger your scenario.
    In this case there is no adapter where you can directly communicate with CRM system.
    Do one thing configure a dummy scenario on the sender side.
    Use File adapter for simplicity. once it pools the file with some dummy data in the file it comes to Interface mapping(message mapping) of the PIPELINE steps. Now use the code as you mentioned above(within UDF) for opening socket to CRM system and implement you business logic within that program and write the response to target interface which will infact talk with CRM system.
    Dont forget to do the coding in an infinite loop with some delay (if required). Other wise every time you have to put a message for File Adapter for triggering purposes.
    You can also acheive the same if you use Java Mapping instead of Graphical mapping with UDF(code for Opening socket and business logic). I suggest you to use Java Mapping.
    I dont know how you will comunicate with CRM system on receiver side.?
    Thanks,
    Gujjeti

  • I change the hard disk from 500gb to 750 gb then i heard qw sound in some interval pls advice me., i change the hard disk from 500gb to 750 gb then i heard qw sound in some interval pls advice me?

    i change the hard disk from 500gb to 750 gb then i heard qw sound in some interval pls advice me., i change the hard disk from 500gb to 750 gb then i heard qw sound in some interval pls advice me?

    I wish it was under better circumstances, but welcome to the discussions!
    It certainly sounds like a bad HD to me. Back up your data and then take it in or call Apple.

  • Order by taking too much time. Tried using all_rows hints no use.Pls advice

    I run the query without order by and finishes in less than 30 sec. Once you have order by,query just hangs. Pls advice. Thanks.
    select col4,col6
    from
    table a , table b, table c
    where a.col1 = b.col2
    and a.col1 = c.col3
    order by col1,col2 desc

    If you put the \ tag (6 characters, all lower case) around the text where you want to preserve the formatting, the query plans you post are going to be much more readable.
    The optimizer's estimates appear to be correct and the plan is the same other than the ORDER BY.  I would, therefore, be highly inclined to believe as I was discussing earlier that the "30 seconds" figure that you're discussing is the time to fetch the first few rows, not the time to fetch the last row.
    Can you define "hang"?  How long do you let the query run before killing it?  Minutes?  Hours?  Days?
    What are the wait events associated with the query when it is running?  If the optimizer is correct that you're generating 5.4 million rows and a little over a GB of data that needs to be sorted, that should be expensive but that shouldn't take hours.
    What is the business problem you're trying to solve?  Sorting implies that you are trying to return results from a report to a user.  But, obviously, no user is ever going to page through 5.4 million rows of results.
    Justin                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Hi,I lost my iphone 5,n trying to log in to icloud so that I can locate it but every time I try login in I get a message that an error occured while trying to connect to server.Pls advice what to do to locate it.Thank you.

    Hi I lost my iphone 5,and each time I try to log in to icloud to locate it I get a message that error while connecting to server.Pls advice on what to do to locate ot.Thank you.

    what browser? have you tried another browser could be your browser settings which cause it you can also try another computer

  • Pls advice........its urgent

    Please advice any FM that takes excel sheet file from local drive and convert the data present in excel sheet into text tab delimited as the output.......My input file should be excell sheet only.......i will call gui upload to get the file.but later after uploading i need the output to be displayed in text tab delimited file...........
    Note : Requirement is input file should be excel sheet only....i dnt want to convert the excel sheet as tab delimited file and thn upload......
    pls advice........thanks in advance

    You can use FM ALSM_EXCEL_TO_INTERNAL_TABLE and check this link for sample code.
    http://www.sapdevelopment.co.uk/file/file_upexcel2.htm
    Here is sample program.
    REPORT ZDBLV_UPLOAD_EXCEL_TEST.
    data: begin of itab occurs 0,
    name(20) type c,
    addre(20) type c,
    end of itab.
    dATA : ITAB1 LIKE ALSMEX_TABLINE OCCURS 0 WITH HEADER LINE.
    DATA : B1 TYPE I VALUE 1,
    C1 TYPE I VALUE 1,
    B2 TYPE I VALUE 100,
    C2 TYPE I VALUE 9999.
    CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
    EXPORTING
    FILENAME = 'C:\test.xls'
    I_BEGIN_COL = B1
    I_BEGIN_ROW = C1
    I_END_COL = B2
    I_END_ROW = C2
    TABLES
    INTERN = itab1
    EXCEPTIONS
    INCONSISTENT_PARAMETERS = 1
    UPLOAD_OLE = 2
    OTHERS = 3.
    IF SY-SUBRC 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    loop at itab1.
    write:/ itab1.
    Endloop.

  • Certificates for Server and Client to install . Pls advice

    I am doing File --XI --- File scenario with FTPS.
    Currently consider only File -- XI part now.
    We go point by point: for this link:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/964f67ec-0701-0010-bd88-f995abf4e1fc
    Blog says:
    1. In the visual admin of XI make Server Public and Private keys.
    2. In the visual admin of XI make Client Public and Private keys.
    Suppose File Sender System is Server and XI is Client
    Questions:
    a. Do I need make Server Public and Private keys In the visual admin of XI ?
    b. Do I need make Client Public and Private keys In the visual admin of XI ?
    Generic Rule -- system1 sends its public key to system2 and  similarly system2 sends its public key to system1.
    c. For Export keys and Import keys as given in blog
    -- I am not able to get this part given from Page 38 - 41 of this blog.
    Pls advice me
    Regards
    Edited by: Henry A on Mar 3, 2008 1:07 PM
    Edited by: Henry A on Mar 3, 2008 1:08 PM
    Edited by: Henry A on Mar 3, 2008 1:54 PM

    Hi DecaXD,
    thank you for quick response :)
    on the client site i tried to establish the connection to the work repository with the following connection information:
    Login information*:
    Oracle Data Integrator Connection
    Login name = odi_server
    User = SUPERVISOR
    Database connection (Master Repository):
    User = odim
    URL = jdbc:oracle:thin:@<server ip>:1521:orcl
    A work repository could be found, but the connection failed! (?!)
    " ODI-26130: Connection to the repository failed.
    oracle.odi.core.config.NotWorkRepositorySchemaException: ODI-10147: Repository type mismatches.     
    Could not get JDBC Connection; nested exception is java.sql.SQLException: Unable to start the Universal Connection Pool: oracle.ucp.UniversalConnectionPoolException: Invalid SQL-Query for validating the connection (+translated from german into english+) "
    my ODI configuration on the server site (loged in as: odiw):
    topology tab*:
    Physical architecture:
    Technology:
    Definition:
    Dataserver name = oracle_db_11gr2
    User = odiw
    JDBC-URL = jdbc:oracle:thin:@10.168.178.131:1521:orcl
    Datasource:
    Agent = OracleDIAgent
    JNDI-Name = [DataSourceName]
    Agents:
    Definition:
    Name = OracleDIAgent
    Host = <IP of the server>
    Port = 8001
    Webapplicationcontext = oraclediagent
    Datasources:
    Dataserver = oracle_db_11gr2
    JNDI-Name = [DataSourceName]
    Logical architecture:
    Technology:
    Defintion:
    Name = oracle_db_11gr2
    Context = aMIS_dev
    Physical schema = oracle_db_11gr2.ODIW
    Agent:
    Name = OracleDIAgent
    Context = aMIS_dev
    Physical agent = OracleDIAgent
    when i test the connection of the data server (topology>physical architecture>technology>oracle>oracle_db_11gr2) with the OracleDIAgent i receive the
    " ODI-26039: Connection failed.
    oracle.odi.runtime.agent.invocation.InvocationException: javax.naming.NameNotFoundException: Unable to resolve '[DataSourceName]'. Resolved ''; remaining name '[DataSourceName]' "
    since testing the connection on the server site failed in first place, i couldn't test the connection on the client site.

  • XI to WebService . Pls advice urgent

    Hi All,
    Scenario:
    There is some response from System A back into XI.
    I need to send response from XI to System B and get response back to XI.
    System B has Synchronous Web Service and has provided its WSDL to XI.
    Question:
    1. Do I need to Import Webservice WSDL as External Defination in XI.?
    2.Do I need to use only Soap Receiver Adapter in XI as it is Synchronous Web Service and XI can get response back from that System or also I need Soap Sender Adapter ?
    Regards

    Hi Sudeep,
    I am sending this xml from runtime workbench:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_REQ_TEST xmlns:ns0="http://CRM">
       <MobileNo>1</MobileNo>
       <Message>2</Message>
       <ActivationCode>3</ActivationCode>
       <StrService>4</StrService>
       <StrFrom>5</StrFrom>
       <StrOptions>6</StrOptions>
    </ns0:MT_REQ_TEST>
    The below XML forms after mapping
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns1:SendMessageSoapIn xmlns:ns1="urn:MMWebSrvService">
      <strFrom>XI</strFrom>
      <strTo>1</strTo>
      <strMessage>2</strMessage>
      <strSubject>3</strSubject>
      <strService>abc</strService>
      <nOptions>0</nOptions>
      </ns1:SendMessageSoapIn>
    In Soap Receiver Adapter
    URL -- http://172.20.80.11/MMWebService/MMWebSrv.asmx
    Soap action -- #SendMessage
    The error I am getting now:
    <SAP:AdditionalText>soap fault: Server was unable to read request. ---> There is an error in XML document (1, 97). ---> <SendMessageSoapIn xmlns='urn:MMWebSrvService'> was not expected.</SAP:AdditionalText>
    Pls advice
    Regards

  • WebService Receiver Problem. Pls advice urgent.

    Hi All,
    I have R/3 (RFC) -- XI -- R/3(WebService) Scenario.
    Now when I test my WebService in R/3 using wsadmin command it works fine.
    But If I import my webservice as wsdl file and use it in Soap Receicer Adapter and use XI I get error:
    <SAP:Category>XIAdapterFramework</SAP:Category>
    <SAP:Code area="MESSAGE">GENERAL</SAP:Code>
    <SAP:AdditionalText>com.sap.aii.af.ra.ms.api.DeliveryException: sapd03ci.alkhaliji.bank</SAP:AdditionalText>
    Pls advice very urgent
    regards

    Hi RAC,
    May I know where this R/3 webservice located.
    In your landscape or not?
    Thanks
    Gujjeti

  • Webservice sender and Receiver. Pls advice urgent

    Hi All,
    My Scenario
    System A (WebService) -- XI -- System B (WebService)
    Pls let me know
    1. What does it mean by WebService needs WebServer?
    2. For System A (WebService) -- XI
        Do I require WebServer to be installed at System A or XI?
    3. For XI -- System B (WebService)
    Do I require WebServer to be installed at System B or XI?
    Pls advice urgent.
    Regards

    Hi Piyush,
    Hi Piyush,
    System A (WebService) -- XI --- System B (WebService)
    I know the flow -- like both webservices will be impoted as External Definations and will me mapped.
    I was asking about Webserver.
    a. XI --- System B (WebService)
    System B is providing wsdl.
    WebServer is required at System B -- fine.
    b. System A (WebService) -- XI
    System A is providing WebService(wsdl) to XI
    XI is NOT providing WebService to System A.
    So It is a webservice(wsdl) of System A. It will be given to XI and XI will import it as wsdl.
    So do we or not require require Webserver in
    System A or XI?
    Pls tell System A (WebService) -- XI
    Webserver part.
    Regards

  • RFC Receiver adapter issue. Pls advice

    Hi All,
    When XI is sending data back to R/3 system though RFC Receiver Adapter  I am getting the below error. Any suggestions
    Error Category   XI_J2EE_ADAPTER_RFC
    Error Code  RECEIVER_GENERAL_ERROR
    Pls advice.

    Rick, your question is very unspecific, so anyone trying to help can only guess very roughly.
    So I only have a very rough hint for you, which is the FAQ for RFC adapter.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes/sdn_oss_bc_xi/~form/handler%7b5f4150503d3030323030363832353030303030303031393732265f4556454e543d444953504c4159265f4e4e554d3d373330383730%7d

  • Alert Problem. Pls advice

    Hi Aall,
    I have made one alert Category.
    Initially Wwhen I do not check -- Suppress Multiple Alerts of This Rule  every time I was getting alert.
    But as I want one alert I check that box I am not getting any alert.
    Pls advice urgent
    Regards

    hi
    here give you some blogs and Docs about alerts
    apply the better for you
    XI: Alerts - Step by step
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step
    http://help.sap.com/saphelp_nw04s/helpdata/en/d0/d4b54020c6792ae10000000a155106/frameset.htm
    Triggering by Calling a Function Module Directly.
    /people/bhavesh.kantilal/blog/2006/07/25/triggering-xi-alerts-from-a-user-defined-function
    Alerts with variables from the messages payload (XI) – UPDATED
    /people/michal.krawczyk2/blog/2005/03/13/alerts-with-variables-from-the-messages-payload-xi--updated
    Simple Steps to Get Descriptive Alerts from BPM in XI
    /people/community.user/blog/2006/10/16/simple-steps-to-get-descriptive-alerts-from-bpm-in-xi
    Triggering XI Alerts from a User Defined Function
    /people/bhavesh.kantilal/blog/2006/07/25/triggering-xi-alerts-from-a-user-defined-function
    Throwing Smart Exceptions in XI Graphical Mapping
    /people/alessandro.guarneri/blog/2006/01/26/throwing-smart-exceptions-in-xi-graphical-mapping
    /people/sukumar.natarajan/blog/2007/01/07/how-to-raise-alerts-from-abap-proxy
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--troubleshooting-guide
    /people/sravya.talanki2/blog/2006/11/22/error-handling-framework-xiout-of-the-box-episode-1
    /people/ginger.gatling/blog/2005/06/16/integrating-alerts-into-uwl--its-no-problem
    /people/aravindh.prasanna/blog/2006/02/20/configuring-scenario-specific-e-mail-alerts-in-xi-ccms-part-3
    /people/aravindh.prasanna/blog/2005/12/24/configuring-scenario-specific-e-mail-alerts-in-xi-ccms-part-2
    /people/aravindh.prasanna/blog/2005/12/23/configuring-scenario-specific-e-mail-alerts-in-xi-ccms-part--1
    http://help.sap.com/saphelp_nw2004s/helpdata/en/56/d5b54020c6792ae10000000a155106/content.ht
    http://help.sap.com/saphelp_nw04/helpdata/en/2c/abb2e7ff6311d194c000a0c93033f7/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/80/942f3ffed33d67e10000000a114084/frameset.htm
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step
    check this links.
    https://www.sdn.sap.com/irj/sdn/forums
    Trouble shooting Alert configuration:
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--troubleshooting-guide
    /people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions
    Alert Inbox
    http://help.sap.com/saphelp_nw04/helpdata/en/80/942f3ffed33d67e10000000a114084/frameset.htm
    Alert Notification Step-by-Step
    http://help.sap.com/saphelp_nw04/helpdata/en/49/cbfb40f17af66fe10000000a1550b0/frameset.htm
    Defining Alert Classifications
    http://help.sap.com/saphelp_nw04/helpdata/en/49/cbfb40f17af66fe10000000a1550b0/frameset.htm
    Triggering Alerts
    http://help.sap.com/saphelp_nw04/helpdata/en/49/cbfb40f17af66fe10000000a1550b0/frameset.htm
    Setting up alerts
    Setting up alerts in RZ20
    Alert Management
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e04141e8-0f11-2a10-adaa-9d97b062c2df
    Alert Notification
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/90f449a8-a6db-2910-a386-d2b5999f5751
    Thanks
    Rodrigo

  • Pls advice me how to add X509IssuerSerial to SOAP

    Hi Java expert guys...
    I'm trying to make signed soap message.
    So I made my programming code like the below.
    {color:#333333}*FileInputStream fis = new FileInputStream("d:\\signCert.der");*
    CertificateFactory cf = CertificateFactory.getInstance( "X.509" );
    X509Certificate cert = (X509Certificate)cf.generateCertificate(fis);
    sig.addKeyInfo(cert.getPublicKey());
    sig.addKeyInfo(cert);{color}
    But I just get the below without X509IssuerSerial.
    <ds:KeyInfo>
    <ds:KeyValue>
    <ds:RSAKeyValue> <ds:Modulus>0kAPK6BMhiMTVia+XwXYDLhdD1+ZDcb86r17js68IzbbZYgUwMeu2yEe8zx+/pZsBD3jM89XaGWEeHTBo/QOQa0ZgBm135P4ce+7fhksL8UyanVXR/evzLyghTFaHK22jOkZWlcs2R85UnVH561qO+WMxK59aRvYF06IXlRaDW8=
    </ds:Modulus>
    <ds:Exponent>AQAB</ds:Exponent>
    </ds:RSAKeyValue>
    </ds:KeyValue>
    {color:#0000ff}<ds:X509Data>
    <ds:X509Certificate>MIIFXjCCBEagAw.....
    </ds:X509Certificate>
    </ds:X509Data>{color}
    </ds:KeyInfo>
    I cannot find out the way to add X509IssuerSerial in the above <ds:X509Data> like the below.
    {color:#0000ff}<ds:X509Data>{color}
    {color:#ff0000}*<ds:X509IssuerSerial>*
    *<ds:X509IssuerName>ou=ttt,ou=LicensedCA,o=ttt,c=KR</ds:X509IssuerName>*
    *<ds:X509SerialNumber>123456</ds:X509SerialNumber>*
    *</ds:X509IssuerSerial>*{color}
    {color:#0000ff}<ds:X509SubjectName>cnxxx,ou=xxx,ou=LicensedCA,o=xxx,c=KR</ds:X509SubjectName>
    <ds:X509Certificate>MIIFXjCCBEagAw.....
    </ds:X509Certificate>
    </ds:X509Data>
    {color}{color:#000000}If there are someone who know this, pls advice me.
    Thanks...{color}

    Hi SG,
    BUT WHEN I ENTER THE NAME OF THE WEB REPORT BRD_MM_01 AFTER OPENING THE REPORT , I WAS CLICKING ON PUBLISH---> AS BEX BROAD CASTER AND NEW SCREEN  COMES WITH LOGON DETAILS
    AFTER ENTERING THE LOGON DETAILS IT IS SHOWING ME THE SETTINGS FOR NEW USERS LIKE CREATE SETTINGS.
    I WAS NOT ABLE TO ADD THE NEW USERS IN THAT BECUASE AFTER ENTERING THE USERNAEM AND MAIL ID'S IT'S GIVING ME THE MESSAGE LIKE THESE USERS ARE NOT VALID BW USERS.
    BUT FOR AUTOMATIC BROADCAST OF THIS REPORT NO NEED OR BW USER I.E. I CAN BROAD CAST THIS REPORT TO ANY USER (RIGHT OR NOT)
    AND ALSO IT IS ASKING ME THE ROLE OF THE USER ALSO.
    PLEASE ADVICE ME .
    THANKS IN ADVANCE,
    REGARDS,
    KUMAR.

  • Pls advice correct sequence of learning SAP-ABAP

    I am a new learner in SAP-ABAP so just wanted to know the correct sequence of learning the things in SAP-ABAP and also I need to become technically strong . So just tell me how should I start? because my conpany is going to start implementation ecc 6.0 so all module consulting working six months in my company so pls advice correct sequence of learning the things with sap consulting.
    Thanks
    R.Sudhakar

    Hi R.Sudhakar
    There is no correct or incorrect sequence to any career. The most efficient way also depends more on your background and the opportunities available to you.
    If your company is going to start an SAP implementation does this mean you will be part of the project team? Or, are you trying to prepare yourself by self-learning and training to learn ABAP in hopes that you will get a job in that area?
    If you are working for your company your career path would be a bit different to SAP consulting. In both cases, if you are part of the team has your manager discussed training opportunities with you?
    What are you currently doing in your company at the moment? Are you already a developer and trying to learn ABAP instead? What research have you done so far?
    Regards
    Colleen

  • Http Scenario. Pls advice very urgent

    Hi All,
    My Scenario is
    a. HTTP sends data to XI Synchronously.
    b. XI opens Socket Connection in User Defined Function (UDF)
        of Message Mapping and gets response back from Socket
        in UDF. For Socket Connection request and response I will
        write java code in UDF
    c. XI needs to send back Socket response to HTTP as XI has
        received data from HTTP Synchronously.
    d. XI also needs to send back Socket response to File.
    How to make this approach in XI using BPM.
    Pls expain urgent
    Regards

    Hi Praveen,
    Steps in BPM I have done :
    1. One Rec step with Open S/A mode.
        Abstract Sync Message Interface for HTTP Request and
        HTTP Response.
    2. Transformation Step (Mapping in BPM)
        HTTP Request and Socket Response
    3. Fork Step -- Necessary Branch 2
    4. Branch 1st --
      a. Transformation Step(Mapping in BPM)
        Socket Response and HTTP Response
       b.One Send Step with Close S/A mode for HTTPResponse
          back
    5. Branch 2nd --
    a. Transformation Step (Mapping in BPM)
        Socket Response and File Response
    b. One Send Step for File Response back.
    Pls advice is it ok ?
    Regards

Maybe you are looking for

  • Can the calendar on the ipad show a 12 hour format instead of 24 hour?

    I want my calendar on my ipad to only show a 12 hour format instead of a 24 hour one. Is this possible and if so how do i change it?

  • Connecting Apple TV 2 to iMac

    Is there any way that i would be able to use my imac an external display for my apple tv 2?? i belive i have the right wires to do it but am unable to navigate settings on the imac to get it to work. Hope someone can help George

  • Firefox does not handle large bookmark "files" gracefully, it HANGS

    Essentially large #'s ( massive ) cause Firefox to go off the deep end and never shut down in any reasonable time. I tried backups in JSON and HTML, files produced took ~2-3 days, 50mbyte and ~90mbytes each. Essentially when you exceed past some inde

  • WinPE and FullOS Issues with Disk Numbers

    So, I seem to have run into an issue where I'm trying to image up an HP Z15 laptop and it has dual HDD's in it.  While imaging it seems to just die after it boots into the full OS and try's to configure the SCCM Client. I've narrowed down the issue t

  • 30 second counter for detecting peaks

    Hello, I want to count number of peaks detected in a 30sec interval from a pulse signal acquired using DAQ.I made this programme and in this each second is almost taking 12 sec's more as compared to the real clock second.As a total it taking more tha