Cdata within input request xml

I have a simple orchestrator that takes in a simple XML and then writes it to a file.
If my input is as follows it works fines
<myInput xmlns="http://xmlns.oracle.com/myinput>
<input>
<AL3>abc</AL3>
</input>
</myInput>
But if I have my input as
<myInput xmlns="http://xmlns.oracle.com/myinput>
<input>
<AL3><![CDATA[ ABCABC]]></AL3>
</input>
</myInput>

It does work ...but I dont understand why its interpreting the data within the CDATA tags
for example:
<EmailProcessRequest xmlns="http://xmlns.oracle.com/Email">
<input>
<AL3>;lt![CDATA[<?ACORD version="1.3.0"?<ACORD>ABC</ACORD>]];gt
</AL3>
</input>
</EmailProcessRequest>
This doesnt work...it interprets the ? within the CDATA tags and stops...Is this a bug?
Thanks
-a

Similar Messages

  • How to view the input rate request xml?

    Hi Frens,
    please help on viewing the input rate request xml. I am not able to view the input xml(don't know to view). tell where I have to go and view that XML file.
    I am using oracle insbridge rate manager version 4.00.0.
    thanks in advance.

    user13809539 wrote:
    Hi Andy,
    I am new to INSBridge 4 and currently learning it on our own. I am facing some issues in creating rating logic and algorithms. Unfortunately Ratemanager library does not have any mock rating templates. Can you please share a mock or dummy rating template if it is appropriate to do so. My email id is [email protected]. A rating template might help me in figuring out the reason for the issues I am facing.
    Regards,
    Akhi
    Edited by: user13809539 on Jan 21, 2011 7:38 AMHi Akhi,
    I am doubtful that anyone is going to share rating templates, because that is generally regarded as intellectual property of the companies that own the rating books. You may consider attending Oracle University which has several classes that will have you build a rating program from the ground up.
    --Andy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • BUG: Web service returns request XML as response when result too large

    Hi,
    sorry for cross-posting, but the Web Services forum seems to be quite abandoned and this is an urgent issue for me.
    I have a web service returning some records of a given type (created using JDeveloper 10.1.3.3). The running environment and the service implementation do not seem to make any difference, as the situation is the same whether running it in embedded OC4J or in AS 10.1.3.1, and whether it is generated from a PL/SQL procedure or a method of a plain Java class.
    The problem is that if the result of this web service is too large (contains a lot of records), then the processing halts in some Oracle class in some web service library, so not in a debuggable generated web service source or in the service implementation itself.
    I think that the XML processing halts because of a "java.lang.OutOfMemoryError: Java heap space".
    Then a more serious problem follows: the service doesn't return a fault message but the original request XML as a response. Obviously, this can lead to some really unexpected errors.
    To reproduce this error:
    1. Create a Java class with a method returning an array of an arbitrary type, of the size specified in an input parameter.
    2. Create a web service from this class.
    3. Call it multiple times increasing the size parameter in every call until you get back the request as response or any error message.
    For example:
    - if you test the web service using the web page generated to access the endpoint, then you can see the response XML - in case you don't get an Internal Server Error (Java heap space).
    - if you use a generated web service proxy for testing, then it will give an error saying "unexpected element name: expected={namespace}someOperationResponseElement
    actual={namespace}someOperationElement".
    Any ideas how to locate / solve this problem?
    Regards,
    Patrik

    Patrik,
    the usual recommendation is to try with 10.1.3.3 instead of 10.1.3.1 to exclude you are hunting down an already fixed issue. From what you describe, the error seems less JDeveloper related than OC4J or OracleAs.
    So in case it reproduces in 10.1.3.3 I suggest to create a testcase and open a service request with support, or try the OC4J forum in case its known there.
    Frank

  • How to get the request xml string in Business service.

    Hi
    I have following requirement
    1) XAI inbound service will get a input xml request feed and call the Business Service.
    2) Business service will do some validation and do the insert in the database.
    My BS schema is as below
    <schema pageAction="change">
    <personId mapField="PER_ID"/>
    <personOrBusiness mapField="PER_OR_BUS_FLG"/>
    <name mapField="ENTITY_NAME" mdField="C1_ENTITY_NAME"/>
    <emailAddress mapField="EMAILID"/>
    <city mapField="CITY"/>
    <county mapField="COUNTY"/>
    <postal mapField="POSTAL"/>
    <houseType mapField="HOUSE_TYPE"/>
    <taxVendorGeographicalCode mapField="GEO_CODE"/>
    <isInCityLimit mapField="IN_CITY_LIMIT"/>
    <state mapField="STATE"/>
    <version mapField="VERSION"/>
    <division mapField="CIS_DIVISION"/>
    <accessGroup mapField="ACCESS_GRP_CD"/>
    <address1 mapField="ADDRESS1"/>
    <personCharacteristic type="list" mapList="CI_PER_CHAR">
    <personId mapField="PER_ID"/>
    <characteristicType mapField="CHAR_TYPE_CD"/>
    <characteristicValue mapField="CHAR_VAL"/>
    <effectiveDate mapField="EFFDT"/>
    <adhocCharacteristicValue mapField="ADHOC_CHAR_VAL"/>
    <characteristicValueForeignKey1 mapField="CHAR_VAL_FK1"/>
    <characteristicValueFK2 mapField="CHAR_VAL_FK2"/>
    <characteristicValueFK3 mapField="CHAR_VAL_FK3"/>
    <characteristicValueFk4 mapField="CHAR_VAL_FK4"/>
    <characteristicValueFK5 mapField="CHAR_VAL_FK5"/>
    </personCharacteristic>
    </schema>
    The request XML to BS is as below_
    (support.schema.AbstractSchemaBasedDispatcher) Performing page:change of BusinessService CM_SPRDSHT_BS' (service='CMSPRDHSHTUPLD'), with input request
    <?xml version="1.0" encoding="UTF-8"?>
    <CM_Person>
    <personOrBusiness>P</personOrBusiness>
    <name>Marsh,Corporate</name>
    <emailAddress>[email protected]</emailAddress>
    <city>Tampa</city>
    <country>USA</country>
    <postal>2131</postal>
    <houseType/>
    <taxVendorGeographicalCode/>
    <isInCityLimit/>
    <state>CA</state>
    <version>1</version>
    <division>930</division>
    <accessGroup>***</accessGroup>
    <address1>Address of Khan</address1>
    </CM_Person>
    I can access the values of each xml node in BS with the help of data item.
    I wanted to know how can I get the above request xml string in my Business Service in Java.

    {color:#0000ff}http://java.sun.com/javase/6/docs/api/java/lang/Integer.html#parseInt(java.lang.String)
    http://java.sun.com/javase/6/docs/api/java/lang/Integer.html#valueOf(java.lang.String){color}

  • Need to replace a tag in Request XML in OSB

    I have my proxy service in OSB connected to MQ as the input provider. Now I want to take a couple of namespaces and copy them into the body and remove those tags.
    Here is the input from MQ...
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v="http://www.w3.org/1999/XSL/Transform">
    <soapenv:Header/>
    <soapenv:Body>
    <v:createAccount>
    <partId>Mnhtd_21</partId>
    </v:createAccount>
    </soapenv:Body>
    </soapenv:Envelope>
    I want this request xml to be converted into the following xml before it can be routed to the Business Service...
    <v:createAccount xmlns:v="http://www.w3.org/1999/XSL/Transform">
    <partId>Mnhtd_21</partId>
    </v:createAccount>
    How can I transform it in the Proxy Service message flow?
    Please Help.
    Thanks in advance!
    Edited by: 994962 on Mar 20, 2013 12:10 AM

    Dear Fabio,
    I am forced to strip off the namespaces from the Soap Envelope that I am receiving from the MQ which is not the standard precedure. So I need the namespaces so that I can put them as attributes in the bosy itself.
    Here's what I want to do.....
    Input:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v="http://www.w3.org/1999/XSL/Transform">
    <v:createAccount>
    <partId>Mnhtd_21</partId>
    </v:createAccount>
    Desired Output:
    <v:createAccount xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v="http://www.w3.org/1999/XSL/Transform">
    <partId>Mnhtd_21</partId>
    </v:createAccount>
    So I need an Xpath to take the attributes out of the <soapenv:Envelope> and put them in <v:createAccount>
    Thanks!

  • Operation Name part of request XML

    Hi,
    In weblogic 10.3, We have created a web service from the WSDL. All is OK but the problem that we are facing is that the request XML has the request object encapsulated within the transaction Name tag. For example, if the operation name is getNumericId, the request xml (from the wsdl test page) is coming out to be: <getNumericId><requestXML></getNumericId>.
    Because of this, the clients are facing an issue. Is there a way to remove the transaction name from the request XML? Because when I use xmlSpy to create a soap request from the WSDL, it creates the XML without the operation name preceding it and that is assumed to be the standard request structure as per the WSDL shared with the clients.
    From what I understand, the WSDL that we use to create the Jws from has differences with the endpoint WSDL that is generated by weblogic. Is this a known issue? How do I resolve this?
    Please help!
    Aditya

    Jay,
    Thanks for your response. I have just now resolved the issue. It was because of a simple problem -- the @webservice annotations were incomplete. Once we used them, the service is behaving as expected.
    However, there is one other issue. We are using import weblogic.wsee.jws.wlw.SoapFaultException to throw back exception generated from the webservice. In the response, WSException is wrapped inside an element called WLW_FAULT_DETAIL, which client is not able to understand.
    <detail>
            <WLW_FAULT_DETAIL><v3:WSException xmlns:v3="http://abc.edf.com/commonheader/v3"><v3:Message>Processing Error Occurred:City and/or Zip reqd
    </v3:Message><v3:ErrorCode>9</v3:ErrorCode></v3:WSException></WLW_FAULT_DETAIL>
          </detail>
        </env:Fault>
      </env:Body>
      </env:Envelope>
    Any pointers with this?
    Thanks
    Aditya

  • How to export string in CDATA with the jaxb xml writer?

    How to export string in CDATA with the jaxb xml writer?
    It read CDATA no problem but it is lost on write.

    Found it:
    ### THIS WORKS WITH SUN JAXB REFERENCE IMPLEMENTATION. ###
    (Not tested with any other)
    In the xsd, you must create a type for your string-like element.
    Then associate a data type converter class to this new type, which will produce CDATA tags.
    Then you must set a custom characterEscapeHandler to avoid the default xml escaping in order to preserve the previously produced CDATA tag.
    Good luck.
    -----type converter-----
    import javax.xml.bind.DatatypeConverter;
    public class ExpressionConverter {
         * Convert an expression from an XML file into an internal representation. JAXB will
         * probably have already stripped off the CDATA encapsulation. As a result, this method
         * simply invokes the JAXB type conversion for strings but does not take any other action.
         * @param text an XML-compliant expression
         * @return a pure string expression
         public static String parse(String text) {
              String result = DatatypeConverter.parseString(text);
              return result;
         * Convert an expression from its internal representation to an XML-compliant version.
         * This method will simply surround the string in a CDATA block and return the result.
         * @param text a pure string expression
         * @return the expression encapsulated within a CDATA block
         public static String print(String text) {
              StringBuffer sb = new StringBuffer(text.length() + 20); //should add the length of the CDATA tags + 8 EOLs to be safe
              sb.append("<![CDATA[");
              sb.append(wrapLines(text, 80));
              sb.append("]]>");
              return DatatypeConverter.printString(sb.toString());
         * Provides line-wrapping for long text strings. EOL indicators are inserted at
         * word boundaries once a specified line-length has been exceeded.
         * @param text the string to be wrapped
         * @param lineLength the maximum number of characters that should be included in a single line
         * @return the new string with appropriate EOL insertions
         private static String wrapLines(String text, int lineLength) {
              //wrap logic, watchout for quoted strings!!!!
              return text;
    ------in caller----
    Marshaller writer = ......
    writer.setProperty("com.sun.xml.bind.characterEscapeHandler", new NoCharacterEscapeHandler());
    -----escaper-----
    import java.io.IOException;
    import java.io.Writer;
    import com.sun.xml.bind.marshaller.CharacterEscapeHandler;
    public class NoCharacterEscapeHandler implements CharacterEscapeHandler {
         * Escape characters inside the buffer and send the output to the writer.
         * @param buf buffer of characters to be encoded
         * @param start the index position of the first character that should be encoded
         * @param len the number of characters that should be encoded
         * @param isAttValue true, if the buffer represents an XML tag attribute
         * @param out the output stream
         * @throws IOException if the writing process fails
         public void escape(char[] buf, int start, int len, boolean isAttValue, Writer out) throws IOException {
              for (int i = start; i < start + len; i++) {
                   char ch = buf;
                   if (isAttValue) {
                        // isAttValue is set to true when the marshaller is processing
                        // attribute values. Inside attribute values, there are more
                        // things you need to escape, usually.
                        if (ch == '&') {
                             out.write("&");
                        } else if (ch == '>') {
                             out.write(">");
                        } else if (ch == '<') {
                             out.write("<");
                        } else if (ch == '"') {
                             out.write(""");
                        } else if (ch == '\'') {
                             out.write("&apos;");
                        } else if (ch > 0x7F) {
                             // escape everything above ASCII to &#xXXXX;
                             out.write("&#x");
                             out.write(Integer.toHexString(ch));
                             out.write(";");
                        } else {
                             out.write(ch);
                   } else {
                        out.write(ch);
              return;

  • Reference a DSL from CDATA section in an Xml file

    I use a DSL along with some XML files in an Eclipse project. I would like to reference some of the DSL entities from within a CDATA section in the XML files and provide content assist for doing so.
    Would I need to define a DSL for the XML and then implement some DSL cross referencing ?
    Would I lose the default XML features of Eclipse if I do so ?
    Is there a way to overload the XML support built into Eclipse for implementing this ?

    I don't know about the extension capabilities of the XML editor. You would need to investigate how this editor can be extended first. This might be a question for Eclipse Web Tools Platform, if you use that XML editor (there are several XML editor plugins available).

  • How can I render an active link (yrl) within a UIX/XML page

    How can I render an active link (url) within a UIX/XML page.
    How can I get <jbo:ShowValue> to work in UIX/XML, or is there another way?
    Bill G...

    It may seem strange, but the <contents> of <rawText> aren't actually
    raw - it's only the "text" attribute that's raw. (It seems strange because
    it is. Ah well.) This is different from UIX JSP.
    So, try something like the following:
    <bc4j:attrScope name="Notes">
    <contents>
    <rawText text="&lt;a href=&quot;"/>
    <rawText>
    <boundAttribute name="text">
    <bc4j:attrProperty name="value"/>
    </boundAttribute>
    </rawText text="&quot;&gt;"/>
    Some text in the link.
    <rawText text="&lt;/a&gt;"/>
    </contents>
    <bc4j:attrScope>
    Thankfully, this will be much simpler in 9.0.3, when the following
    will work:
    <link text="Whatever you want">
    <boundAttribute name="destination">
    <bc4j:attrValue name="Notes"/>
    </boundAttribute>
    </link>

  • How to schedule a job to run twice within a request set?

    How to schedule a job to run twice within a request set?

    Create one more stage for the same concurrent program.
    Thanks
    Nagamohan

  • Customer Invoice Request XML Specification

    Hi All,
    I've been searching my butt off looking for the customer invoice request XML spec.
    Where is it?
    Judson

    Minimal Request:
    <?xml version="1.0" encoding="utf-8"?>
    <CustomerInvoiceRequestRequest>
      <MessageHeader>
        <CreationDateTime />
      </MessageHeader>
      <CustomerInvoiceRequest actionCode="04" reconciliationPeriodCounterValue="1">
      <BaseBusinessTransactionDocumentID>V00064348</BaseBusinessTransactionDocumentID>
    <BaseBusinessTransactionDocumentTypeCode>29</BaseBusinessTransactionDocumentTypeCode>
        <ProposedInvoiceDate>2012-05-07</ProposedInvoiceDate>
        <name>Extreme Reach - DEV</name>
    <ReferenceBusinessTransactionDocumentID>V00064348</ReferenceBusinessTransactionDocumentID>
        <BusinessProcessVariantType>
          <BusinessProcessVariantTypeCode>1</BusinessProcessVariantTypeCode>
          <MainIndicator>true</MainIndicator>
        </BusinessProcessVariantType>
        <BusinessProcessVariantType>
          <BusinessProcessVariantTypeCode>319</BusinessProcessVariantTypeCode>
          <MainIndicator>false</MainIndicator>
        </BusinessProcessVariantType>
        <BuyerParty>
          <InternalID>2113</InternalID>
        </BuyerParty>
        <EmployeeResponsibleParty>
          <InternalID>8000000017</InternalID>
        </EmployeeResponsibleParty>
        <SalesUnitParty>
          <InternalID>TV3003</InternalID>
        </SalesUnitParty>
        <SalesAndServiceBusinessArea>
          <DistributionChannelCode>01</DistributionChannelCode>
        </SalesAndServiceBusinessArea>
        <PricingTerms>
          <PricingProcedureCode listID="2">PPSTD1</PricingProcedureCode>
          <CurrencyCode>USD</CurrencyCode>
        </PricingTerms>
        <Item actionCode="04">
      <BaseBusinessTransactionDocumentItemID>10</BaseBusinessTransactionDocumentItemID>
    <BaseBusinessTransactionDocumentItemTypeCode>002</BaseBusinessTransactionDocumentItemTypeCode>
          <SettlementRelevanceIndicator>true</SettlementRelevanceIndicator>
          <BaseItemCancelledIndicator>false</BaseItemCancelledIndicator>    <ReceivablesPropertyMovementDirectionCode>2</ReceivablesPropertyMovementDirectionCode>
          <Product>
            <InternalID>V-SD-NEXTDAY-STN-ONLINE-FIRST</InternalID>
            <TypeCode>2</TypeCode>
          </Product>
          <CashDiscountDeductibleIndicator>false</CashDiscountDeductibleIndicator>
          <Quantity unitCode="EA">1</Quantity>
          <QuantityTypeCode>EA</QuantityTypeCode>
          <PriceAndTax>
            <PriceComponent>
              <TypeCode listID="2">7PR1</TypeCode>
              <CategoryCode>1</CategoryCode>
              <PurposeCode>1000</PurposeCode>
              <MajorLevelOrdinalNumberValue>10</MajorLevelOrdinalNumberValue>
              <MinorLevelOrdinalNumberValue>1</MinorLevelOrdinalNumberValue>
              <Rate>
                <DecimalValue>2.0000</DecimalValue>
                <CurrencyCode>USD</CurrencyCode>
                <BaseDecimalValue>1</BaseDecimalValue>
                <BaseMeasureUnitCode>EA</BaseMeasureUnitCode>
              </Rate>
              <RateBaseQuantityTypeCode>EA</RateBaseQuantityTypeCode>
              <CalculationBasis>
                <BaseCode>3</BaseCode>
                <Quantity unitCode="EA">1</Quantity>
                <QuantityTypeCode>EA</QuantityTypeCode>
                <Amount currencyCode="USD">0</Amount>
              </CalculationBasis>
              <CalculatedAmount currencyCode="" />
              <RoundingDifferenceAmount currencyCode="" />
              <EffectiveIndicator>true</EffectiveIndicator>
              <ManuallyChangedIndicator>true</ManuallyChangedIndicator>
              <GroupedIndicator />
              <OriginCode>2</OriginCode>
              <PriceSpecificationUUID />
              <PriceSpecificationDeterminationTimePoint>
                <TypeCode>1</TypeCode>
                <Date>2012-05-07</Date>
              </PriceSpecificationDeterminationTimePoint>
            </PriceComponent>
          </PriceAndTax>
          <AccountingCodingBlockAssignment>     <AccountingCodingBlock>A1520<GeneralLedgerAccountAliasCode>Z0003</GeneralLedgerAccountAliasCode></AccountingCodingBlock>
          </AccountingCodingBlockAssignment>
        </Item>
      </CustomerInvoiceRequest>
    </CustomerInvoiceRequestRequest>

  • Updation of INPUT Request fields in PI sheet automatically from xMII system

    Hi,
    We are getting the consumption data(Material Weight and Batch) from xMII in SAP browser based PI sheet through Z function module as a parameters .These values needs to updated automatically in PPPI_INPUT-REQUEST fields (PPPI_MATERIAL_CONSUMED & PPPI_BATCH),so that PI_CONS(Consumption) process message will be created automatically.
    We are facing problem to update the input request fields(PPPI_MATERIAL_CONSUMED and PPPI_BATCH) automatically in Browser based PI sheet.
    Can you please help us out to populate the input request fields automatically in PI sheet to automate the xMII with SAP PI sheet. I can provide the screen shots of PI sheets and configuration of process management if required.
    Thank you
    Warm Regards
    Darga Ali

    Hello Udayan,
    The issue is in SAP PI Sheet.
    We are getting the data from xMII into variables through function module and able to populate these values in PI sheet,But we need to update these values directly in input request fields ,so that it will create a process message and updated the process order with material consumption data.
    Is there any functionality available in xMII ,to update the vaules directly in input request fields in PI sheet.
    Thank you
    Warm Regards
    Darga Ali

  • Web Service Request Xml

    Hi,
    I have an web service deployed. I wanted to write a client which will show me an sample request xml for any particular operation. Is there any way by that we can generate the request xml by querying the WSDL file.
    Thanks.

    I have used XML BEANS option for generating client in my webservvices. In that there is
    System.err.println(document.xmlText()); which is basically a request Object for calling stub.
    Any way there should be option to get XML text in most of the clients (client types).
    Secondly for knowledge purpose if you want that XML then you may even try with default test utility provided in ECLIPSE.

  • Retrieving Request XML Element in Web Service Code

    to create a web service: I write java code and using JDeveloper, I 'create J2EE web service' from the java code.
    I need to get and handle a parameter, passed to the web service in the request xml and process it in my java code. For example I want to access a header element received in the request.
    How can I retrieve those elements in my code?
    Regards
    Farbod

    Hi V.S,
    [Here|http://img144.imageshack.us/my.php?image=datetimekb1.jpg] by the screenshot of the working example.
    The expression that I have used is :
    =DSTR(@DATE1,"XML_DATE")&TSTR(@TIME1,"XML_TIME")
    Where,
    XML_DATE    YYYY-MM-DD    2001-01-31
    XML_TIME     THH:NN:SS 02:39:40
    This should work now. Let me know.
    Best regards,
    Dharmi
    Edited by: Dharmi Tanna on Sep 8, 2008 2:29 PM

  • Inbound Service Interface without Input Request Message

    Is it possible to create an Inbound Service Interface without Input Request Message?  We are trying to create a web service to get all records from a database table hence no input parameter is needed.  We have tried in both XI 7.0 and PI 7.1 but couldn't do it.  Is this scenario not supported by ESR or am I missing something?  Any hint will be appreciated.
    Regards,
    Jiannan

    In the scenario I described in my initial post the table structure is only needed in the response message to receive the data. 
    For a web service generated from a RFC function module using the service creation wizard (SE80) a table parameter is automatically included in the request message.  I can understand this as the wizard can not figure out if the table parameter is needed in the request message or not.
    I have tried to use the service creation wizard to generate a web service from the function module RFCPING that has no input or output parameters.  As shown in below WSDL segment the WSDL does allow not having any input or output parameters.
    - <wsdl:types>
    - <xsd:schema attributeFormDefault="qualified" targetNamespace="urn:sap-com:document:sap:soap:functions:mc-style">
    - <xsd:element name="Rfcping">
    - <xsd:complexType>
      <xsd:sequence />
      </xsd:complexType>
      </xsd:element>
    - <xsd:element name="RfcpingResponse">
    - <xsd:complexType>
      <xsd:sequence />
      </xsd:complexType>
      </xsd:element>
      </xsd:schema>
      </wsdl:types>
    - <wsdl:message name="Rfcping">
      <wsdl:part name="parameters" element="tns:Rfcping" />
      </wsdl:message>
    - <wsdl:message name="RfcpingResponse">
      <wsdl:part name="parameter" element="tns:RfcpingResponse" />
      </wsdl:message>
    Thanks,
    Jiannan

Maybe you are looking for

  • How can I tell if my iPad is about to overcharge?

    How can I tell if my Ipad is about to overcharge?  I can I avoid overcharging it? Thanks!

  • GUI_Download problem in tab delimited file

    Hi, I am trying to download tab delimited file using F.M GUI_DOWNLOAD.We have 4.6C version.I have declared internal table with 5 columns.The file created using F.M is very strange.Column 1 and 2 and 3 and 4 are seaprated by tab but column 2 and 3  an

  • Lenya Help

    Hi I have successfully installed Lenya in my machine. However, after logging in when i try to create any document through default or blog publication, it shows lot of exceptions like below: Kindly help me out in solving this issue pls.......... its v

  • Table Maintenance - Add field not in table for display

    I have a Z table which has five fields of which one of them is the GL account field. I need to display the description of the account from SKAT-TXT20 also in SM30 so that In SM30 when the user looks at the table, they should be able to see six fields

  • ATTN: Customer Service - Question Concerning My Contract Expiration Date

    Hi, My phone broke last month, a little over a month before I thought that my contract was due to expire.  The port that charges the phone stopped working.  I was led to believe that my contract would be expiring with Verizon today, so I paid my bill