B2B EDI File Configuration Settings

Hi All,
We are seeing some default values in our EDI files for following Segment elements.
Interchange Control Number (100000044)
Group Control Number (1044)
We are using 4010_850 format.
Let us know where to change these default values in B2B console.
Thanks,
Sid.

Hi Sid,
it's not default value. instead it is a running number automatically generated by B2B. it increments for ever interchange/group/transaction
Thanks,
Prasanna

Similar Messages

  • EDI Basic configuration settings for Third party sales

    Dear All,
    Could you help step by step how to configure EDI to send PO automatically to outsourcing company for the Third party sales order.
    Thanks
    CG Balaji

    Hi roberto
    Please send me basic EDI configuration document to my mail id [email protected] this will help me a lot.
    Thanks and regards,
    CG Balaji

  • Want  to decode PGP encrypted edi files with oracle soa b2b 11.1.1.6.0

    I am working on a scenario where the trading parter(TP) will publish the edi to our FTP server. These edi files are encrypted using PGP software( we have to provide them our public key for this).
    I have never worked with encryption\ decryption before, but I understand the theory of cryptography.
    Question 1: Can we install PGP on top of soa 11g server and configure the b2b to decode the file using our private key.
    Question 2: If SOA 11g server do not support PGP, then shall i install PGP at the FTP server, and use java to decode the file(using the private key) to a new location and B2B can pick the decode file from here.
    These are two strategy I have planed, please guide me which one is feasible\best , and if you know the steps to implement please do share it with me.
    Thanks in advance.
    Syam
    Edited by: user12196358 on May 10, 2013 4:28 PM

    Both options are feasible but for option#1 (PGP decryption at B2B/SOA), you have to write a java callout. B2B/SOA 11g does not support PGP out-of-box but it can be achieved using java callout. I would prefer option#2, personally as in this case, PGP decryption will be done out of SOA/B2B and hence it will be hot pluggable (can be removed in future, if required, without modifying SOA/B2B configuration).
    Regards,
    Anuj

  • REST API: Create Deployment throwing error BadRequest (The specified configuration settings for Settings are invalid. Verify that the service configuration file is a valid XML file, and that role instance counts are specified as positive integers.)

    Hi All,
    We are trying to access the Create Deployment method stated below
    http://msdn.microsoft.com/en-us/library/windowsazure/ee460813
    We have uploaded the Package in the blob and browsing the configuration file. We have checked trying to upload manually the package and config file in Azure portal and its working
    fine.
    Below is the code we have written for creating deployment where "AzureEcoystemCloudService" is our cloud service name where we want to deploy our package. I have also highlighted the XML creation
    part.
    byte[] bytes =
    new byte[fupldConfig.PostedFile.ContentLength + 1];
                fupldConfig.PostedFile.InputStream.Read(bytes, 0, bytes.Length);
    string a = Encoding.UTF8.GetString(bytes, 0, bytes.Length);
    string base64ConfigurationFile = a.ToBase64();
    X509Certificate2 certificate =
    CertificateUtility.GetStoreCertificate(ConfigurationManager.AppSettings["thumbprint"].ToString());
    HostedService.CreateNewDeployment(certificate,
    ConfigurationManager.AppSettings["SubscriptionId"].ToString(),
    "2012-03-01", "AzureEcoystemCloudService", Infosys.AzureEcosystem.Entities.Enums.DeploymentSlot.staging,
    "AzureEcoystemDeployment",
    "http://shubhendustorage.blob.core.windows.net/shubhendustorage/Infosys.AzureEcoystem.Web.cspkg",
    "AzureEcoystemDeployment", base64ConfigurationFile,
    true, false);   
    <summary>
    /// </summary>
    /// <param name="certificate"></param>
    /// <param name="subscriptionId"></param>
    /// <param name="version"></param>
    /// <param name="serviceName"></param>
    /// <param name="deploymentSlot"></param>
    /// <param name="name"></param>
    /// <param name="packageUrl"></param>
    /// <param name="label"></param>
    /// <param name="base64Configuration"></param>
    /// <param name="startDeployment"></param>
    /// <param name="treatWarningsAsError"></param>
    public static
    void CreateNewDeployment(X509Certificate2 certificate,
    string subscriptionId,
    string version, string serviceName, Infosys.AzureEcosystem.Entities.Enums.DeploymentSlot deploymentSlot,
    string name, string packageUrl,
    string label, string base64Configuration,
    bool startDeployment, bool treatWarningsAsError)
    Uri uri = new
    Uri(String.Format(Constants.CreateDeploymentUrlTemplate, subscriptionId, serviceName, deploymentSlot.ToString()));
    XNamespace wa = Constants.xmlNamespace;
    XDocument requestBody =
    new XDocument();
    String base64ConfigurationFile = base64Configuration;
    String base64Label = label.ToBase64();
    XElement xName = new
    XElement(wa + "Name", name);
    XElement xPackageUrl =
    new XElement(wa +
    "PackageUrl", packageUrl);
    XElement xLabel = new
    XElement(wa + "Label", base64Label);
    XElement xConfiguration =
    new XElement(wa +
    "Configuration", base64ConfigurationFile);
    XElement xStartDeployment =
    new XElement(wa +
    "StartDeployment", startDeployment.ToString().ToLower());
    XElement xTreatWarningsAsError =
    new XElement(wa +
    "TreatWarningsAsError", treatWarningsAsError.ToString().ToLower());
    XElement createDeployment =
    new XElement(wa +
    "CreateDeployment");
                createDeployment.Add(xName);
                createDeployment.Add(xPackageUrl);
                createDeployment.Add(xLabel);
                createDeployment.Add(xConfiguration);
                createDeployment.Add(xStartDeployment);
                createDeployment.Add(xTreatWarningsAsError);
                requestBody.Add(createDeployment);
                requestBody.Declaration =
    new XDeclaration("1.0",
    "UTF-8", "no");
    XDocument responseBody;
    RestApiUtility.InvokeRequest(
                    uri, Infosys.AzureEcosystem.Entities.Enums.RequestMethod.POST.ToString(),
    HttpStatusCode.Accepted, requestBody, certificate, version,
    out responseBody);
    <summary>
    /// A helper function to invoke a Service Management REST API operation.
    /// Throws an ApplicationException on unexpected status code results.
    /// </summary>
    /// <param name="uri">The URI of the operation to invoke using a web request.</param>
    /// <param name="method">The method of the web request, GET, PUT, POST, or DELETE.</param>
    /// <param name="expectedCode">The expected status code.</param>
    /// <param name="requestBody">The XML body to send with the web request. Use null to send no request body.</param>
    /// <param name="responseBody">The XML body returned by the request, if any.</param>
    /// <returns>The requestId returned by the operation.</returns>
    public static
    string InvokeRequest(
    Uri uri,
    string method,
    HttpStatusCode expectedCode,
    XDocument requestBody,
    X509Certificate2 certificate,
    string version,
    out XDocument responseBody)
                responseBody =
    null;
    string requestId = String.Empty;
    HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(uri);
                request.Method = method;
                request.Headers.Add("x-ms-Version", version);
                request.ClientCertificates.Add(certificate);
                request.ContentType =
    "application/xml";
    if (requestBody != null)
    using (Stream requestStream = request.GetRequestStream())
    using (StreamWriter streamWriter =
    new StreamWriter(
                            requestStream, System.Text.UTF8Encoding.UTF8))
                            requestBody.Save(streamWriter,
    SaveOptions.DisableFormatting);
    HttpWebResponse response;
    HttpStatusCode statusCode =
    HttpStatusCode.Unused;
    try
    response = (HttpWebResponse)request.GetResponse();
    catch (WebException ex)
    // GetResponse throws a WebException for 4XX and 5XX status codes
                    response = (HttpWebResponse)ex.Response;
    try
                    statusCode = response.StatusCode;
    if (response.ContentLength > 0)
    using (XmlReader reader =
    XmlReader.Create(response.GetResponseStream()))
                            responseBody =
    XDocument.Load(reader);
    if (response.Headers !=
    null)
                        requestId = response.Headers["x-ms-request-id"];
    finally
                    response.Close();
    if (!statusCode.Equals(expectedCode))
    throw new
    ApplicationException(string.Format(
    "Call to {0} returned an error:{1}Status Code: {2} ({3}):{1}{4}",
                        uri.ToString(),
    Environment.NewLine,
                        (int)statusCode,
                        statusCode,
                        responseBody.ToString(SaveOptions.OmitDuplicateNamespaces)));
    return requestId;
    But every time we are getting the below error from the line
     response = (HttpWebResponse)request.GetResponse();
    <Error xmlns="http://schemas.microsoft.com/windowsazure" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
      <Code>BadRequest</Code>
      <Message>The specified configuration settings for Settings are invalid. Verify that the service configuration file is a valid XML file, and that role instance counts are specified as positive integers.</Message>
    </Error>
     Any help is appreciated.
    Thanks,
    Shubhendu

    Please find the request XML I have found it in debug mode
    <CreateDeployment xmlns="http://schemas.microsoft.com/windowsazure">
      <Name>742d0a5e-2a5d-4bd0-b4ac-dc9fa0d69610</Name>
      <PackageUrl>http://shubhendustorage.blob.core.windows.net/shubhendustorage/WindowsAzure1.cspkg</PackageUrl>
      <Label>QXp1cmVFY295c3RlbURlcGxveW1lbnQ=</Label>
      <Configuration>77u/PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0NCiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKg0KDQogIFRoaXMgZmlsZSB3YXMgZ2VuZXJhdGVkIGJ5IGEgdG9vbCBmcm9tIHRoZSBwcm9qZWN0IGZpbGU6IFNlcnZpY2VDb25maWd1cmF0aW9uLkNsb3VkLmNzY2ZnDQoNCiAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLg0KDQogICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioNCi0tPg0KPFNlcnZpY2VDb25maWd1cmF0aW9uIHNlcnZpY2VOYW1lPSJXaW5kb3dzQXp1cmUxIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMSIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTA1LjEuNyI+DQogIDxSb2xlIG5hbWU9IldlYlJvbGUxIj4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIyIiAvPg0KICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+DQogICAgICA8U2V0dGluZyBuYW1lPSJNaWNyb3NvZnQuV2luZG93c0F6dXJlLlBsdWdpbnMuRGlhZ25vc3RpY3MuQ29ubmVjdGlvblN0cmluZyIgdmFsdWU9IkRlZmF1bHRFbmRwb2ludHNQcm90b2NvbD1odHRwcztBY2NvdW50TmFtZT1zaHViaGVuZHVzdG9yYWdlO0FjY291bnRLZXk9WHIzZ3o2aUxFSkdMRHJBd1dTV3VIaUt3UklXbkFrYWo0MkFEcU5saGRKTTJwUnhnSzl4TWZEcTQ1ZHI3aDJXWUYvYUxObENnZ0FiZnhONWVBZ2lTWGc9PSIgLz4NCiAgICA8L0NvbmZpZ3VyYXRpb25TZXR0aW5ncz4NCiAgPC9Sb2xlPg0KPC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=</Configuration>
      <StartDeployment>true</StartDeployment>
      <TreatWarningsAsError>false</TreatWarningsAsError>
    </CreateDeployment>
    Shubhendu G

  • [svn] 3519: Fix typo in error string for situations where there are advanced messaging configuration settings from LCDS used in the configuration files but no AdvancedMessagingSupport service .

    Revision: 3519
    Author: [email protected]
    Date: 2008-10-08 04:17:40 -0700 (Wed, 08 Oct 2008)
    Log Message:
    Fix typo in error string for situations where there are advanced messaging configuration settings from LCDS used in the configuration files but no AdvancedMessagingSupport service. The error string said that there was no flex.messaging.services.AdvancedMessagingService registered but it is the flex.messaging.services.AdvancedMessagingSupport service that needs to be registered.
    Add configuration test that starts the server with a destination that has the reliable property set which is an advanced messaging feature but there is no AdvancedMessagingSupport service registered.
    Modified Paths:
    blazeds/trunk/modules/common/src/flex/messaging/errors.properties
    Added Paths:
    blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/messagingService/ReliableDestina tionWithNoAdvancedMessagingSupport/
    blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/messagingService/ReliableDestina tionWithNoAdvancedMessagingSupport/error.txt
    blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/messagingService/ReliableDestina tionWithNoAdvancedMessagingSupport/services-config.xml

    Hi,
    Unfortunately I already tried all kinds of re-installs (the full list is in my original message). The only one remaining is the reinstall of Windows 8 itself, which I would really like to avoid.
    What I find really strange is the time it takes for the above error message to appear. It's like one hour or even more (never measured exactly, I left the computer running).
    What kind of a timeout is that? I would expect that, if ports are really used by some other application, I get the message in less than a minute (seconds, actually). To me this looks like the emulator itself for some reason believes there's a problem with
    some port while in reality there isn't.
    I'll eventually contact Microsoft Support, thanks for the suggestion.

  • Filtering EDI Files in B2B 11g

    Hi Gurus,
    We have a requirement that we should not process the EDI files which will have Usage Indicator(ISA15) has 'T' value. Rather we should send the file to some test directory on SOA file system.
    Could you please let me know whether we can achieve this in B2B 11g.
    Regards,
    Raghav

    Hi Raghav,
    Oracle B2B is not a service bus and hence does not has a functionality of content based routing. Better change your design and have a service bus before B2B to do content based routing.
    Regards,
    Anuj

  • Custom file names of B2B generated edi files

    All,
    We have an outbound 834 EDI being implemented and there are two SOA Composites processing these based on some business case and we have a requirement of naming B2B generated edi files for trading partners in the delivery channels based on the SOA composite that processes the outbound transaction. Is there a way of naming these edi files based on the SOA composite that created/processed it? For example:
    TP_834_CompositeA.edi
    TP_834_CompositeB.edi
    Thanks.

    From my understanding, the delivery channel in B2B does not take variable for Filename format. Also it is not possible to dynamically assign the delivery channel to TP Agreement. The only option could be using Java callout in the TP Agreement.
    ~Ismail.

  • Write data in a Configuration Settings file

    Hello,
    I want to open,write and save a Configuration Setting File and I use the VI Write_Characters_To_File (available in the Input/Output functions) for that. But my problem is that the file generated had a size of 1.81Kbytes instead of the original file size 1.83Kbytes and despite the fact that the two files contains exactly the same characters. I can't identify the problem?
    Thank you for your help!!
    PS: here is the VI and the Configuration Settings Files (I use Labview 7.0)
    Attachments:
    ConfigurationSettingFile.zip ‏48 KB

    The two text files aren't the same.
    The text is longer in one than in the other.
    I've found out that in one a filename is "header_BbyoneSW_2LLP_1.0_PreC.bin" whereas in the other it's "header_BbyoneSW_2LLP_1.0_PreC_Cand11.bin". This is present more than once so this could be the reason.
    In addition at the very beginning of your file, a square bracket "[" is missing in one file.
    Hope this helps
    Shane.
    Using LV 6.1 and 8.2.1 on W2k (SP4) and WXP (SP2)

  • Migration of files,programs and configuration settings from Powerbook G4

    How does one move files, programs and configuration settings from a G4 Powerbook running OSX 10.4.11 to a late 2008 unibody Macbook since there is no firewire capability to use for a target disk.

    If you previously created an user account on the MacBook, open the Users folder, find the folder you migrated, drag it to the desktop, authenticate yourself if needed, and then move the files from the folder on the desktop to the corresponding locations in your home folder.
    (30421)

  • EDI Seperator Channel Issue - Single EDI File is Creating Two IDOCs

    Hi Experts,
       We are facing a strange issue in our project. We are working on SAP PO 7.4 SP06. Our's is an EDI to IDOC Scenario. We are using standard EDI XSD's generated by B2B 2.0 Cockpit. Since yesterday our Quality server is behaving strangely. Its processing an EDI File and generating TWO IDocs out of it.
    When we run the same EDI File in our DEV Environment it executes perfectly and creates only ONE IDOC.
    Signature in OM and it is 1 to 1 and in MM Target IDOC header is mapped to "Constant".
    Our Scenario is :
    1st IFLow : File to EDISeperator
    2nd IFlow: EDISeperator to IDOC.
    Appreciate your valuable inputs.

    Hi,
    Please do check your input file(s). Could be that you offer an EDI interchange, containing multiple messages, to SAP PO.
    Also, maybe in the mean time, some objects or configuration was changed.
    Kind regards,
    Dimitri

  • B2B logs files needed

    Hi,
    We have configured oracle B2B to receive EDI transactions from trading partner. However trading partner is some times not able to post the EDI transaction. They are getting following error message.
    "HTTP Error Response(500 Internal Server Error"
    I would like to know which log files to check in B2B to find the root cause of the error. Any leads would be appreciated.
    thanks

    Hello,
    You can check the b2b.log file under $ORACLE_HOME/ip/log/b2b directory. You can also the HTTP Server (Apache) and opmn logs to see why you're getting an internal server error. The opmn logs are located under $ORACLE_HOME/opmn/logs directory. You can look at the B2B-B2BServer... file or the OC4J-home-default_island~1 file. Go to your $ORACLE_HOME/Apache/Apache/logs directory and look at the access_log.<xxx> and error_log.<xxx> to see if there is an http server issue.
    Hope this helps.
    Thanks,
    Ahmad

  • Configuration settings for applications ... best practices?

    Hi!
    We're currently developing applications for WebLogic (ADF Faces RC, EAR deployment).
    Now we arrived at a point where we need some simple configuration settings/properties on the server or the domain. The applications should be able to read these settings, the mechanism should be as simple as possible.
    An administrator at the server should be able to update the settings and the applications should pick up the changed values the next time the settings are accessed, without server or application restart.
    I wonder what the best way would be to handle this?
    - put them into the database, but then all apps would need DB access to those settings?
    - System env. variable on the server, but how to pick up changes without restart?
    - Property file? Where do I put that so that an admin can easily find and edit it?
    What are you guys using? I was kind of hoping that WebLogic would provide some UI in the console app, that enables an admin to set some properties, but I couldn't find one. Is there one?
    Any advice?
    Thanks.
    Sascha

    Hi Sascha,
    If you place the properties files in %WEBLOGIC_HOME%/user_projects/domains/[your_domain] then the properties file should be picked up, without having to be placed in a jar file, and in a location that will be easy to find for the WebLogic administrator.
    Hope it helps.
    Regards,
    Cris

  • Configuration settings for FM10 & DITA questions

    We are currently using FrameMaker 10 and trying to tweak some configuration settings.
    1. Is there any way to change the default location of the user version of maker.ini? On Windows 7 it defaults to C:\Users\User Name\AppData\Roaming\Adobe\FrameMaker\version
    I'd like to be able to change this to a network location. (Our FM installation is within a remote server that creates a temporary profile every time you open FM, which means that settings are lost.)
    2. When using DITA, inserting a topicref into a relationship or DITA map you browse for a file. The default file type is .xml. Is there a way to change this so that the default is .dita (or at least all files)?
    [I know how to change the default file type when you create a new DITA file to be .dita rather than .xml (DITA > DITA Options) - the setting is in the ditafm.ini file. But this does not impact the default when you browse for files.]
    3. When using DITA and you insert an image, the default file type in the browse window is .JPG. Is there a way to change this?
    4. Is there a way to change the default view for DITA files to show Element Boundaries (as Tags)? Currently you have to set it for each file you open.
    [Thread moved to Structured Forum by moderator]

    [This would have been better if you split your single posting with multiple questions into separate posts.]
    1. As Jeff says, you can't move the FM specific location, however, you can move an entire Users pofile to another drive/location. This may present  issues with other aplications though, so be wary. Detailed instructions can be found here:
    http://www.sevenforums.com/tutorials/87555-user-profile-change-default-location.html

  • Configuration settings in app/web.config or db

    Besides a connection string to the db I use I have several other configuration settings (user names/passwords, URIs to third-party services, etc.).
    What is the recommended approach to handle such situations:
    - put all config settings in an web/app.config file (encrypted external config files called from the web/app.config)?
    - put only a connection string (encrypted) in the web/app.config file and the other settings in a db table (e.g. Settings)?
    Thanks.

    Unfortunatley this is a, 'it depends' question. If your business requirements are such that you need to easily change a configuration via standard tools, e.g. you're hosting an Azure web site, then config file is a great choice. If you have an architecture
    where the settings differ depending upon a user login then a database might be a good solution. If your architecture uses security zones then the less you put in a less secure zone the better. Sorry, but, "it depends" is the best I can offer.
    http://pauliom.wordpress.com

  • Problems with file block settings

    We manage file block settings via group policy.  I have run into problems with the file block settings not working as advertised.
    I've run into a couple of issues:
    First, in Excel 2010 I would like to open Web Page and XML files in protected view rather than blocking entirely.  Our "Set Default File Block Behavior" in the GPO is set to "Blocked Files are not opened."  According to the
    documentation, the settings for individual file types should be able to override this behavior but this is not the case in my testing.  If I set "Web pages and Excel 2003 XML spreadsheets" to "Allow editing and Open in Protected View"
    the files are still blocked and the Trust Center list the file as Do not open, not the GPO setting of open in protected view.  I have verified via GPresults that the GPO applied successfully, rebooted the PC, etc.  The "Set Default File Block
    Behavior" is NOT overridden by individual file type settings.
    According to the "plan file block settings" technet article:
    The “Set default file block behavior” setting specifies how blocked files open (for example: does not open, opens in protected view, or opens in protected view but can be edited). If you enable this setting, the default file block behavior you specify applies
    to any file format that users block in the Trust Center UI. It also applies to a specific file format only if you both enable its file format setting (for more information about individual file format settings, see the tables in this article) and select the
    Open/Save blocked, use open policy option. Otherwise, if you configure an individual file format setting, it overrides the
    Set default file block behavior setting configuration for that file type.
    Second, even if I do change the set default file block behavior to open in protected view, I still cannot open XML spreadsheets.  The trust center says that the file format is set to open in protected view but when I attempt to open a file it behaves
    as if the setting was still set to block entirely.
    The only thing that works is setting it to "do not block" which is not where I'd like to go - I would for security reasons like these types of files to open in protected view but there doesn't seem to be any way to do this contrary to the Technet
    documentation.

    Hi,
    I had opened a case at Microsoft in 2012 about the «Open/Save Block, use open policy» parameter about HTM/HMTL files... Here is the answer I got from the support.
    Hope it will help
    Thank you for contacting Microsoft regarding your recent Office 2010 Hotfix request (SR 112022071246968) in reference to File Block settings on web pages. We have conducted a thorough investigation into this matter
    and while we recognize the impact the issue is having on your business, we cannot accept this Hotfix request because it is acting as designed.<u5:p></u5:p>
    Office will block any files that are explicitly set in the File Block UI by an Administrator when there is no built in validator.  The Office File Validation scans and validates certain kinds of files and will
    only display those applicable files in Protected View.  We could provide a safe experience in Protected View for HTM, but it wouldn't be a useful experience. Linked content of the web page is not available (images, stylesheets, javascript, etc), so the
    user would effectively see plain text. This is not the experience we want in Protected View, and it would encourage users to leave Protected View, putting their machine at risk. So HTM/HTML files are blocked.<u5:p></u5:p>
    <u5:p></u5:p>

Maybe you are looking for

  • How do i make my iphone 5 bluetooth not discoverable

    How do i make my iphone 5 bluetooth feature "not" discoverable so that my phone is secure from hacking while i am in public and the bluetooth feature is turned on.

  • PDF In Browser-No Save

    I have a user who's been opening pdfs up in the browser off of an internal server. Normally he'd open them, they open in a pop-up, and he hits the save button. Suddenly yesterday afternoon, the save button is grayed out. No changes were made that I c

  • Language settings and Google

    I like to keep my iPhone's language and regional settings in Japanese. This in turn redirects all Google related activity to google.co.jp (and Wikipedia also goes to .co,jp), but I want to keep it to google.com so that my search results are in Englis

  • Youtube not loading on new ipad2

    I just received an ipad2 and it is preloaded with youtube app. When I try to view a video, the app seems to try to load the video and I then get a message that the video can not be loaded. This happens for all videos from the youtube app or from yout

  • Why is iMovie no longer recognizing mov. files?

    My iMovie is no longer letting me import mov. files. Also, iMovie will no longer PLAY the .mov files I have already saved in my iMovie library. Does anyone know what might be going on here? Is it possible that some recently installed update may have