Mail Adapter :: eMail Reporting

Hi
I am creating one scenario using following weblog :
/people/community.user/blog/2006/09/08/email-report-as-attachment-excelword
But in my mail I am getting the Headings but not the values which I am providing through my XML file.
I even deleted all the fomatting elements but still the same thing.
My XSLT file is like this now ...
?xml version='1.0'?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
  <xsl:template match="/">
   <ns1:Mail xmlns:ns1="http://sap.com/xi/XI/Mail/30">
    <Subject>Deliveries from XI</Subject>
    <From><i>MY EMAIL ID</i></From>
    <To><i>My EMAIL ID</i></To>
    <Content_Type>text/html</Content_Type>
    <Content>
     <xsl:text xsl:space="preserve">Catalog of CDs available:</xsl:text>
     <xsl:text xsl:space="preserve">Title</xsl:text>
     <xsl:text xsl:space="preserve">Artist</xsl:text>
     <xsl:text xsl:space="preserve">Country</xsl:text>
     <xsl:text xsl:space="preserve">Company</xsl:text>
     <xsl:text xsl:space="preserve">Price</xsl:text>
     <xsl:text xsl:space="preserve">Year</xsl:text>
     <xsl:for-each select="Catalog_MT/cd">
      <xsl:value-of select="title"/>
      <xsl:value-of select="artist"/>
      <xsl:value-of select="country"/>
      <xsl:value-of select="company"/>
      <xsl:value-of select="price"/>
      <xsl:value-of select="year"/>
     </xsl:for-each>
    </Content>
   </ns1:Mail>
  </xsl:template>
</xsl:stylesheet>
My XML file is this
<?xml version="1.0" encoding="ISO-8859-1" ?>
- <ns0:Catalog_MT xmlns:ns0="urn:Reporting">
- <cd>
  <title>Empire Burlesque</title>
  <artist>Bob Dylan</artist>
  <country>USA</country>
  <company>Columbia</company>
  <price>10.90</price>
  <year>1985</year>
  </cd>
- <cd>
  <title>Hide your heart</title>
  <artist>Bonnie Tyler</artist>
  <country>UK</country>
  <company>CBS Records</company>
  <price>9.90</price>
  <year>1988</year>
  </cd>
  </ns0:Catalog_MT>
I am getting the output like this in my Mail Body -->
<i><b>Catalog of CDs available:TitleArtistCountryCompanyPriceYear</b></i>
I am not so good in XSLT. Can you pls. suggest what am I missing.
Regards
- Lalit -

Hi,
You did not consider namespace in your XSLT
try this
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" <b>xmlns:ns2="urn:Reporting"</b>>
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
<ns1:Mail xmlns:ns1="http://sap.com/xi/XI/Mail/30">
<Subject>Deliveries from XI</Subject>
<From>MY EMAIL ID</From>
<To>My EMAIL ID</To>
<Content_Type>text/html</Content_Type>
<Content>
<xsl:text xsl:space="preserve">Catalog of CDs available:</xsl:text>
<xsl:text xsl:space="preserve">Title</xsl:text>
<xsl:text xsl:space="preserve">Artist</xsl:text>
<xsl:text xsl:space="preserve">Country</xsl:text>
<xsl:text xsl:space="preserve">Company</xsl:text>
<xsl:text xsl:space="preserve">Price</xsl:text>
<xsl:text xsl:space="preserve">Year</xsl:text>
<xsl:for-each select<b>="ns2:Catalog_MT/cd"</b>>
<xsl:value-of select="title"/>
<xsl:value-of select="artist"/>
<xsl:value-of select="country"/>
<xsl:value-of select="company"/>
<xsl:value-of select="price"/>
<xsl:value-of select="year"/>
</xsl:for-each>
</Content>
</ns1:Mail>
</xsl:template>
</xsl:stylesheet>
Regards,
Prakash

Similar Messages

  • Mail Adapter :  Email has blank sender

    I have an interface that creates an email and attaches 2 files.  This all works great in our development environment.  In our production environment, however, the same scenario creates an email with no sender.
    The "from" attribute in the mail CC is set to GeFacto
    In dev the email is created correctly with GeFacto as sender.  If I look in Lotus Notes on the email's document properties the from field has "GeFacto".
    In prod the email is created with no sender.  If I look in Lotus Notes on the email's document properties the from field has "<GeFacto>".
    Somehow prod is putting angle bracklets on the "from" attribute, which Lotus Notes is interpretting differently.
    If I change the "from" attribute in XI to be <GeFacto> in dev environment (where it previously worked) it does the same as production and creates the email with a blank sender.
    We have vers SP19 in development and SP16 in production - This is the only difference I can see because the CCs are identical.
    Please help - I have been stuck on this for a while!

    Yes crazy but true!!!
    We have development SP19, quality SP19 and then production SP16.
    It makes debugging very difficult - especially with problems like this one.
    They were supposed to put SP19 into production - but basis had so many problems putting it into the test systems - I think they are scared to put it live!!!!

  • Configuring a mail adapter

    I have been going through procedure to create a File - Mail scenario.
    I was going through the SDN TV link for the same and it is told that no target DT creation is required and need to download from market place.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/media/uuid/70e47c62-0c01-0010-dea1-83390d4beb4c
    Does this mean I cannot create DT for Mail scenario manually?
    If I have to download the DT... please provide the link and procedure to import it to my NS.
    Also please provide step by step instructions for creating this scenario.
    I have been through blogs.. I came across this scenario using XSLT,  Mail Receiver Adaptor Configuration, how to implement dynamic mail address, eMail Report as Attachment but i failed to find good blogs that descripe step by step.
    Thanks,
    Venkat.

    Venkat,
    You can download from this location mentioned in this thread:
    File to  Mail Adapter
    Also if you dont have user id and pwd for oss you hv the xsd here. Copy it in a notepad and use it:
    Problem in Occurance for Mail XSD
    You can see this step by step:
    https://wiki.sdn.sap.com/wiki/display/XI/StepbyStepMailToFileScenario
    /people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address
    Regards,
    ---Satish

  • E-Mail reporting in file to mail adapter scenario

    Experts,
       I am working on a file to mail adapter in which, have to just send a mail to the recipient by  putting a subject line and mail body.
    am following the following example
    /people/community.user/blog/2006/09/07/email-reporting
    but my requirement is not to send the mail attachment. I just need to send a mail body stating the error location.
    here at teh receiver side, have downloaded a mail.xsd. in this "subject line","from field" , "to" field is there but there is no "mail body" field .
    Can any one please help me out. I just require to send a mail body to the recipient.
    Thanks
    Veeru

    Expert,
       I have used but still am getting teh attachment not as a mail body.
    Isit possible to send the mail body via XSLT mapping , for eg
    <?xml version='1.0'?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="http://perks.com/MailTest">
      <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
        <xsl:template match="/">
       <ns1:Mail xmlns:ns1="http://sap.com/xi/XI/Mail/30">
        <Subject>Error files from XI</Subject>
        <From>from mail ID</From>
        <To>to mail id</To>
        <Content_Type>text/html</Content_Type>
        <Content>
         <xsl:text xsl:space="preserve">The error files for which service entry has not been created:</xsl:text>
         <xsl:value-of select="$break"/>
         <xsl:value-of select="$break"/>
         <xsl:value-of select="$tableB"/>
         <xsl:value-of select="$thB"/>
         <xsl:value-of select="$tdB"/>
         <xsl:text xsl:
        </Content>
       </ns1:Mail>
      </xsl:template>
    </xsl:stylesheet>
    Any suggestions?
    Thanks
    Veeru

  • Email attachment name in sender mail adapter to the receiver file adapter

    HI ,
    Ths is regarding email to file scenario. I am trying to create file (in rceiver file adapter) with the same name as the email attachment that i read from mail sender adapter. I want ro use adapter module for this. I could find from blogs that there is module - GetAttachmentName - available that i can use for this in sender mail adapter.
    Can you please let me know what whetehr i neeed to mention any module key and parameters for this.
    I assume , i need to do following steps :Please confirm.
    1. i can use this module - after payload swap module and before standard mail adapter module in sender mail adapter
    2. select ASMA option in advanced tab in sender mail adapter
    3. In receiver file adapter select ASMA option in advanced tab in sender mail adapter
    4. Also select file name option in ASMA in sender mail adapter
    Thanks,
    Vamsi

    Hi Vamsi,
    your scenario is also described here: Re: sender mail adapter - attachment name
    If you use the Module getAttachmentName, which is described here,
    http://wiki.sdn.sap.com/wiki/display/XI/AdapterModulePI7.0GetAttachmentName
    your scenario should work as you described it.
    You just need to make sure that the Attachment Name that you read in the first place, is mapped to the Filename Attribute of the
    Fileadapter (http://sap.com/xi/XI/System/File/FileName).
    regards,
    Daniel

  • Sender mail adapter - filter emails by attachment?

    Dear experts,
    I have a sender mail adapter that picks an XSL (EXCEL) attachment from an incoming email and converts it (with a custom adapter module) to XML.
    But now how can I make the adapter only process emails with XLS - attachments? In that Inbox I also have emails with HTML-attachments for example. And now my adapter also wants to process those messages.
    In my adapter module that makes XLS to XML I see an exception in RWB but the message still gets through to SXMB_MONI where it gets stuck with a red flag.
    Can I somehow tell the adapter to only process emails with XLS attachments?
    Or can I stop the processing in the adapter module that converts XLS to XML?
    Thank you for any input or ideas on this!
    Best regards,
    Peter
    PS: I am using this code to convert XLS to XML:
    http://wiki.sdn.sap.com/wiki/display/ABAP/AdapterModuleToReadExcelFilewithMultipleRowsandMultiple+Columns

    Hello ChizzT,
    Thank you for your idea. I went with this one and it worked.
    Best regards,
    Peter

  • Receiver Mail Adapter with external Email-Provider

    Hi everyone,
    I have implemendet an Scenario with a receiver Mail Adapter. With using the SAP-Mail-Server it works fine.
    Now I want to use an external Email Provider like GMX or yahoo. But the Parameter e.g. smtp://mail.gmx.net does not work.
    Is this generally with an external Email Provider possible?
    Thanks in advice
    Christoph

    Hi,
    of course it is, but:
    your XI has to see the external provider = opened ports
    Regards,
    michal

  • How to set "Cc" field in Dynamic Email address in Receiver Mail adapter

    I have done the configuration for setting up the dynamic email address using the XSD provided by SAP in note no 748024. It is working fine.
    Michal's blog “Mail Adapter (XI) - how to implement dynamic mail address.” was a gr8 help in doing this.
    But there is no clue of setting up of "CC" in email.
    There should be "CC" in email is our bussiness requirement.
    Would appreciate your helps.
    with regards,
    Ravi Siddam

    Hi,
    If you do not need mail package for other reasons, I suppose it is enough to provide a value in Dynamic Configuration for fields "THeaderTO" and "THeaderCC" and the select "Use Adapter-Specific Message Attributes" and "Variable Transport Binding" in receiver Mail Adapter.
    see <a href="http://help.sap.com/saphelp_nw04/helpdata/en/6b/4493404f673028e10000000a1550b0/frameset.htm">SAP help</a> for more details.
    Regards,
    Daniele

  • Configuring Receiver mail adapter with dynamic email addresses

    Hi,
    I'm a newbie to XI and I have problems in configuring the Receiver mail adapter with the "Use Mail package" option selected. I am trying pickup a file (using file adapter on Sender side, picks up a simple XML file) and after mapping in XI, send the message as an email message to dynamic email addresses.
    Everything works fine if I did not select the "Use Mail Package". But when I choose that option it errors out. I followed this blog posted on SDN -
    /people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address
    The following XML message is my source
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/Somenamespace">
       <ns0:Message1>
          <ns1:studentlisttest xmlns:ns1="urn:karthiksender_to_karthikreceiver">
             <Student>
                <studentid>1</studentid>
                <lastname>Studentlastname</lastname>
                <firstname>Studentfirstname</firstname>
             </Student>
             <Mail>
                <From>[email protected]</From>
                <To>[email protected]</To>
                <Subject>Test mail adapter</Subject>
             </Mail>
          </ns1:studentlisttest>
       </ns0:Message1>
    </ns0:Messages>
    What I want to accomplish is, I have a simple message mapping where the Studentdetails are mapped to, lets say Customer details. For convenience lets keep it simple, StudentId --> Customerid, (student)Firstname --> (customer)Firstname, (Student)Lastname --> (customer)Lastname
    I would like to get the Customer details as an XML attachment or in the body of an email with from, to and subject corresponding to that specified in the <Mail> node.
    I followed the instructions posted on the blog and it works fine if I don't map the studentdetails to customerdetails. I did multimapping, with one source message (the xml file I posted above) and two target messages (customerdetails and Mail, which is the external definition posted on the blog). I beleive I'm missing something here. Could somebody please guide me through this?
    Thanks
    Karthik

    hi,
    I still have not found the solution for this problem. Michal, your blog works fine when my source message has got only the mail details. As per your advice, I tried modified the structure of the xsd file as follows
    <xs:schema targetNamespace="http://sap.com/xi/XI/Mail/30"
      xmlns:xi="http://sap.com/xi/XI/Mail/30"
      xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <!--
    Mail
      -->
      <xs:element name="Mail">
        <xs:annotation>
          <xs:documentation>Mail package for XI - Mail Adapter</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Subject" type="xs:string" minOccurs="0"/>
            <xs:element name="From" type="xs:string" minOccurs="0"/>
            <xs:element name="To" type="xs:string" minOccurs="0"/>
            <xs:element name="Reply_To" type="xs:string" minOccurs="0"/>
            <xs:element name="Content_Type" type="xs:string" minOccurs="0"/>
            <xs:element name="Date" type="xs:dateTime" minOccurs="0"/>
            <xs:element name="Message_ID" type="xs:string" minOccurs="0"/>
            <xs:element name="X_Mailer" type="xs:string" minOccurs="0"/>
            <xs:element name="Content" minOccurs="0">
              <xs:annotation>
                <xs:documentation>any type</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
          <xs:attribute name="encoding" type="xs:string"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="MailReceipt">
        <xs:annotation>
          <xs:documentation>Mail Receipt for XI - Mail Adaper</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Server" type="xs:string"/>
            <xs:element name="Format" type="xs:string"/>
            <xs:element name="UseMailPackage" type="xs:boolean"/>
            <xs:element name="Encoding" type="xs:string"/>
            <xs:element name="Subject" type="xs:string" minOccurs="0"/>
            <xs:element name="From" type="xs:dateTime" minOccurs="0"/>
            <xs:element name="To" type="xs:string" minOccurs="0"/>
            <xs:element name="Date" type="xs:dateTime" minOccurs="0"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="CustomerlistExternal">
        <xs:annotation>
          <xs:documentation>Customer List</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Customername" type="xs:string"/>
            <xs:element name="Customerid" type="xs:string"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:schema>
    My source message will be something like
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
       <ns0:Message1>
          <ns1:studentlisttest xmlns:ns1="urn:karthiksender_to_karthikreceiver">
             <Student>
                <studentid>1</studentid>
                <lastname>abclname</lastname>
                <firstname>abcfname</firstname>
             </Student>
             <Mail>
                <From>[email protected]</From>
                <To>[email protected]</To>
                <Subject>Testing Mail adapter</Subject>
             </Mail>
          </ns1:studentlisttest>
       </ns0:Message1>
    </ns0:Messages>
    I have mapped the <student></student> information to customerlist, with customerid --> studentid and customername --> firstname or lastname (for symplicity). This was a multimapping with one source and two target messages. My test mapping output is
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
         <ns0:Message1>
              <ns2:Mail xmlns:ns2="http://sap.com/xi/XI/Mail/30">
                   <Subject>Testing Mail adapter</Subject>
                   <From>[email protected]</From>
                   <To>[email protected]</To>
              </ns2:Mail>
         </ns0:Message1>
         <ns0:Message2>
              <ns2:CustomerlistExternal xmlns:ns2="http://sap.com/xi/XI/Mail/30">
                   <Customername>abclname</Customername>
                   <Customerid>1</Customerid>
              </ns2:CustomerlistExternal>
         </ns0:Message2>
    </ns0:Messages>
    So how would I get this part of the <CustomerlistExternal></CustomerlistExternal> part of the message as an attachment to the mail address specified in the <ns2:Mail></ns2:Mail> tags.
    I'm definitely not understanding it right and am missing something. Could you give me step by step instructions to acheive this. I apologize for the trouble..this would be of great help to me.
    Thanks
    Karthik

  • Sender Mail Adapter able to retrieve HTML emails?

    Hi there,
    I stamped over an issue that look like an adapter limitation, would like to hear you opinions.
    We´re using a POP3 account configured in a Sender Mail Communication Channel with XIPAYLOAD, with this attempts:
    - with or without the Mail Package;
    - any type of encoding;
    - must keep attachments.
    In all of this options always the retrieved email from the POP Server comes in TEXT format.
    Does the Mail Adapter support HTML emails?
    Does the Mail Adapter support mixed/alternative Content-Type?
    >Current version: SAP PI 7.0 SP14
    >Mail Server: Lotus Domino 7.0.x
    Regards,
    Marlo Simon.

    Ok,
    I´m using the Sender Mail Scenario.
    I tried the MessageTransformBean (Transform.ContentType) to force the Content-type to text/html and it made no difference.
    Is there any Advanced parameter that would help? No docummentation from SAP on those ones.
    I want to keep the original email body, but looks like the adapter only read plain text.
    Rgds,
    Marlo Simon.
    Edited by: Marlo Simon on Feb 5, 2010 2:23 PM

  • PI: Sender Mail adapter: archive incoming email

    Hi!
    Our task is to archive the incoming email unchanged - in the file adapter I have the possibility to store the processed file on a different location. Do I have this possibility also with the mail adapter?
    IMplementing a Module bean is not possible in our case as we use sMIMe security and the framwork does the signature checking before calling the adapter modules and also removes the certificate attachment from the incoming data.
    Any help would be fine!
    I have heard of "Security archiving" - can be found in the RWB when selecting the adapter engine - does anybody hav experience with this?
    kr Martin

    Hi Martin,
    On the STATUS tab itself, you will a lot of other options, like - Repeat Ping, Repeat Self-Test, Communication Channel Monitoring and so on. At the same place, you will find option for Security Archiving. Once you click on that, a new window will pop-up. There you can configure your archiving options.
    Have a look at this - http://help.sap.com/saphelp_nwpi71/helpdata/en/8c/2ec59131d7f84ea514a67d628925a9/frameset.htm
    Hope this helps.
    Regards,
    Neetesh

  • Read date from an email using sender mail adapter.

    Hi All,
    I am working on a scenario, which reads emails from mail box using POP3 protocol and Mail adapter. How to get the mail attributes like received date? I have to take some decisions based on that field.
    Also can we tell to move that mail to different folder in that mail box after successfully read? it is like archiving folder in that mail box.
    Regards,
    Hari

    Hi Hari,
    You use IMAP4 (Internet Message Access Protocol) to retrieve e-mails from a folder of an e-mail server.
    You use POP3 (Post Office Protocol Version 3) to retrieve e-mails from an e-mail server.
    AFAIK,  you have to use IMAP4 protocol for moving email to another folder are reading email successfully. And i don't think POP3 will allow this functionality.
    Regarding email date , If you maintain Message protocol as XIPAYLOAD you will receive all header details(Subject , TO ,FROM ,CC,DATE ,etc ) in your payload.
    Thanks
    Hari.

  • Sender Mail Adapter consegue ler emails com HTML?

    Olá pessoal,
    Encontrei um "issue" onde estou deconfiado de uma limitação do Mail Adapter.
    Gostaria de ouvir suas opiniões.
    O cenário usa um Canal de Comunicação do tipo Mail com XIPAYLOAD em uma caixa POP3, com as seguintes variantes:
    - com ou sem Mail Package;
    - com ou sem encoding;
    - mantendo os anexos.
    Independente das variações acima o resultado do email proveniente do POP é TEXTO.
    Será que o Mail Adapter suporta mensagens HTML?
    Será que o Mail Adapter suporta multipart/alternative Content-Type?
    >Versão do PI: SAP PI 7.0 SP14
    >Mail Server: Lotus Domino 7.0.x
    []´s
    Marlo Simon.

    Marlo,
    o content type é lido a partir do MIME Header que o Cliente de email que enviou a mensagem cria.
    Em geral, mesmo colando um conteudo XML no corpo do email, se o Content Type no Header vier text, o adapter vai interpreta-lo como texto.
    Se vc sabe que o conteudo sempre vai ser um XML, existe uma maneira de forcar que o adapter sempre sete o content type como xml, atraves do parametro avançado IMail.AssumeXMLContent. Veja o help do Sender Mail Adapter:
    Advanced Mode
    To specify additional parameters in the adapter configuration, set the Advanced Mode indicator.
    Specify the additional parameter names and parameter values in the table:
    ●      For the security settings, enter values for the receiver party and receiver service here.
    ●      In the table, set the parameter IMail.AssumeXMLContent = true. The text of the message is then interpreted as XML and is copied unchanged to the mail package. If this parameter is not set, the information is copied from the content type of the MIME header. If the type specified there is application/xml or text/xml, the text of the message is copied as XML; otherwise it is copied as text.
    Abs,
    Henrique.

  • XI Mail Adapter: sending emails with attachment with help of java mapping

    Hi ,
    On trying out the scenerio mentioned in the blog, using the java mapping provided
    "XI Mail Adapter: An approach for sending emails with attachment with help of Java mapping
    The scenerio works just fine.
    But the payload as the content of the attachment is not getting generated in proper XML format.
    I suppose it's because of the replace special characters code part..
    Can anyone help me state the modification required in the code.
    Thanks!
    Regards,
    Faria Mithani

    It might be a codepage issue. Is your original payload UTF-8?

  • Dynamic Email Addresses in Mail Adapter in PI 7.1

    Hi All,
    I am having trouble populating email addresses in the structure and sending them. I have a source and target structure. The target structure should be sent as a mail attachment. I have created the external defintion of the mail attributes from the blog https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1361. [original link is broken] [original link is broken] [original link is broken] Now my message mapping is multi-mapping. Its 1: 2 messages. And my operation mapping also has one source and 2 target interfaces. Now in Interface determination I gave the same mapping and both the messages showed up. But when I execute the scenario, its giving a mapping error, though its working in ESR.  Can anybody please help me out here.
    Please do not send me links to
    /people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure or /people/jayakrishnan.nair/blog/2005/06/20/dynamic-file-name-using-xi-30-sp12-part--i .
    Thanks,
    Geetha

    Hi,
    Cause: com.sap.engine.interfaces.messaging.api.exception.MessagingException:
    Error: invalid XIMailAdapter channel
    This problem is answered in this thread:
    invalid XIMailAdapter
    Regards,
    Abhishek.

Maybe you are looking for

  • I need to change from one computer to another

    I bought my iPhone and learned that i had Mac OSx 10.3 and had to order an upgrade to 10.4 for iTunes to work with the iPhone... Anxious to get started, I used a pc at work to activate the phone and now, a week later -- using osx 10.4.10 and iTunes 7

  • Nearly blank page in my apps listing after ios7

    Just installed ios7, to find a nearly blank page in my apps listing between apple's stuff and my stuff. Other than manually moving every single ap to fill in the blank space (a tedious and clumbsy process at best), is there a way to get it to do this

  • Completely DISABLE wiki in 10.6 server

    I have two Xserves running as heads for our Xsan. I want to disable as many services as possible that are not needed. Anyone know how I might completely disable wiki, web, ical, ichat services altogether?

  • Create new customize Component

    Hi Experts, As i need to craete <b>new</b> Component in SolMan 3.2. Where the component is the value that available for input during Service message creation. I have debugged and got to know that current Component values are stored in table DSWP_CSNC

  • File with 3 types of  record

    I've a entry file with 3 types of record. The first field of each record tell the type. When XI receive this file it must be validate some fields. It's possible management this file in XI? how? very thanks