DEBMAS text mapping

Hi all,
we send DEBMAS-IDocs out of a SAP 4.7 system to XI. The target is a MS SQL db (connected via JDBC), where the segments are mapped into several tables.
I have difficulties to map texts from IDoc to SQL-table. In the SQL-DB there is only one table for customer texts, so I have to flatten header and line information in one structure in the target table.
That worked fine until in one IDoc there came a delete request for one text and one or more insert requests for other texts. I used the function "useOneAsMany" to copy the header information to the table and combined it with the line information. But because there is no line sent with the delete request the function caused an error: there are more contexts on header level than on item level.
Example:
In the IDoc are three texts, the first has to be deleted, the others have to be created. The first has no lines, the others have multiple lines.
How can I map that?
Example with data:
         <E1KNA1H SEGMENT="1">
            <MSGFN>003</MSGFN>       /* delete function */
            <TDOBJECT>KNA1</TDOBJECT>
            <TDNAME>0000021321</TDNAME>
            <TDID>9010</TDID>
            <TDSPRASISO>EN</TDSPRASISO>
         </E1KNA1H>
         <E1KNA1H SEGMENT="1">
            <MSGFN>005</MSGFN>
            <TDOBJECT>KNA1</TDOBJECT>
            <TDNAME>0000021321</TDNAME>
            <TDID>9025</TDID>
            <TDSPRASISO>EN</TDSPRASISO>
            <E1KNA1L SEGMENT="1">
               <MSGFN>005</MSGFN>
               <TDFORMAT>*</TDFORMAT>
               <TDLINE>Textline 1</TDLINE>
            </E1KNA1L>
            <E1KNA1L SEGMENT="1">
               <MSGFN>005</MSGFN>
               <TDFORMAT>*</TDFORMAT>
               <TDLINE>Textline 2</TDLINE>
            </E1KNA1L>
         </E1KNA1H>
         <E1KNA1H SEGMENT="1">
            <MSGFN>005</MSGFN>
            <TDOBJECT>KNA1</TDOBJECT>
            <TDNAME>0000021321</TDNAME>
            <TDID>9080</TDID>
            <TDSPRASISO>EN</TDSPRASISO>
            <E1KNA1L SEGMENT="1">
               <MSGFN>005</MSGFN>
               <TDFORMAT>*</TDFORMAT>
               <TDLINE>EFTA 1</TDLINE>
            </E1KNA1L>
            <E1KNA1L SEGMENT="1">
               <MSGFN>005</MSGFN>
               <TDFORMAT>*</TDFORMAT>
               <TDLINE>EFTA 2</TDLINE>
            </E1KNA1L>
            <E1KNA1L SEGMENT="1">
               <MSGFN>005</MSGFN>
               <TDFORMAT>*</TDFORMAT>
               <TDLINE>EFTA 3</TDLINE>
            </E1KNA1L>
         </E1KNA1H>
The result should be as follows:
Action -- Customer   -- Text -- ID   -- SPRAS -- LINE -- TEXT
DELETE -- 0000021321 -- KNA1 -- 9010 -- EN
INSERT -- 0000021321 -- KNA1 -- 9025 -- EN -- 1 -- Textline 1
INSERT -- 0000021321 -- KNA1 -- 9025 -- EN -- 2 -- Textline 2
INSERT -- 0000021321 -- KNA1 -- 9080 -- EN -- 1 -- EFTA1
INSERT -- 0000021321 -- KNA1 -- 9080 -- EN -- 2 -- EFTA2
INSERT -- 0000021321 -- KNA1 -- 9080 -- EN -- 2 -- EFTA3
Any idea?
Best regards
Lars

Hi Stefan,
I'm afraid that I described the result wrong, it is a little more complicated.
Because we can't compare the texts we delete every text in a previous step:
Action -- Customer -- Textobject -- ID -
SPRAS
DELETE -- 0000021321 -- KNA1 -- 9010 -- EN
DELETE -- 0000021321 -- KNA1 -- 9025 -- EN
DELETE -- 0000021321 -- KNA1 -- 9080 -- EN
In the second step there should be no DELETE action for the delete request, only INSERT actions.
The result should look like this:
Action -- Customer -- Textobject -- ID -- SPRAS -- LINE -- TEXT
INSERT -- 0000021321 -- KNA1 -- 9025 -- EN -- 1 -- Textline 1
INSERT -- 0000021321 -- KNA1 -- 9025 -- EN -- 2 -- Textline 2
INSERT -- 0000021321 -- KNA1 -- 9080 -- EN -- 1 -- EFTA1
INSERT -- 0000021321 -- KNA1 -- 9080 -- EN -- 2 -- EFTA2
INSERT -- 0000021321 -- KNA1 -- 9080 -- EN -- 2 -- EFTA3
What the JDBC-adapter expects is the following XML-Statement:
<StatementKNA1_TextDelete>
  <mssql_db action="DELETE">
    <table>KNA1_Text</table>
      <key1><KUNNR>0000021321</KUNNR><TextId>9010</TextId><Langu>EN</Langu><Textobj>KNA1</Textobj></key1>
  </mssql_db>
</StatementKNA1_TextDelete>
<StatementKNA1_TextDelete>
  <mssql_db action="DELETE">
    <table>KNA1_Text</table>
      <key1><KUNNR>0000021321</KUNNR><TextId>9025</TextId><Langu>EN</Langu><Textobj>KNA1</Textobj></key1>
  </mssql_db>
</StatementKNA1_TextDelete>
<StatementKNA1_TextDelete>
  <mssql_db action="DELETE">
    <table>KNA1_Text</table>
      <key1><KUNNR>0000021321</KUNNR><TextId>9080</TextId><Langu>EN</Langu><Textobj>KNA1</Textobj></key1>
  </mssql_db>
</StatementKNA1_TextDelete>
The DELETE action is not the problem, it is a simple 1:1 mapping.
But for the INSERT action there is one more input-context than output-context.
<StatementKNA1_Text>
  <mssql_db action="INSERT">
    <table>KNA1_Text</table>
      <access>
        <KUNNR>0000021321</KUNNR><TextId>9025</TextId><Langu>EN</Langu><Textobj>KNA1</Textobj><Line>1</Line>
        <Text>Textline 1</Text>
      </access>
      <access>
        <KUNNR>0000021321</KUNNR><TextId>9025</TextId><Langu>EN</Langu><Textobj>KNA1</Textobj><Line>2</Line>
        <Text>Textline 2</Text>
      </access>
  </mssql_db>
</StatementKNA1_Text>
<StatementKNA1_Text>
  <mssql_db action="INSERT">
    <table>KNA1_Text</table>
      <access>
        <KUNNR>0000021321</KUNNR><TextId>9080</TextId><Langu>EN</Langu><Textobj>KNA1</Textobj><Line>1</Line>
        <Text>EFTA1</Text>
      </access>
      <access>
        <KUNNR>0000021321</KUNNR><TextId>9080</TextId><Langu>EN</Langu><Textobj>KNA1</Textobj><Line>2</Line>
        <Text>EFTA2</Text>
      </access>
      <access>
        <KUNNR>0000021321</KUNNR><TextId>9080</TextId><Langu>EN</Langu><Textobj>KNA1</Textobj><Line>3</Line>
        <Text>EFTA2</Text>
      </access>
  </mssql_db>
</StatementKNA1_Text>
I think for this case I can't use the function <i>useOneAsMany</i>. Have you any idea how this can be mapped?
BTW, we are on XI 3.0 SP14
Thank you for the hint about the function <i>mapWithDefault</i>, it helps for copying empty fields ;-).
Best regards,
Lars

Similar Messages

  • Text Mapping during PDP

    This thread is in continuation with Entry does not exist in BBPC_TEXT_EXT
    We want to get additional text types from PR to SC via PDP.
    So while maintaing values under IMG>SRM>SRM Server>Cross Application Basic Settings>Text Mapping>Text Mapping for Inbound and Outbound text, we got an error that "Entry does not exist in BBPC_TEXT_EXT".
    After running /SAPSRM/GET_TEXT_CUST_ERP I got values in the table BBPC_TEXT_EXT (from ECC) and could complete above customization.
    Now we observe that, only standard item text types are getting transfred but text maintained in additional text types do not get transferred in spite of above cutomization and applied notes 1448047.
    What could be the problem?
    Thanks.
    GH

    in SRM
    inbound and outbound text
    The Object type to be used to define settings for external requirement is EXTREQ
    as well
    In the backend system ,
    Material management >purchasing>PR->texts for pRs->Define text type
    SRM-cross applica->define settings for attachemtns
    afte r that your PR attachment get transfer to SRM sc.

  • Text mapping from SAP SRM confirmation to ECC Servic Entry Sheet

    How can we map Item and Header texts from SRM confirmations to ECC Service Entry Sheet appropriate fields.

    Hello Sanjeev,
    FIrst, run report /SAPSRM/GET_TEXT_CUST_ERP in SRM. This report copy texts from backend to SRM.
    Then use SPRO to map texts between SRM document and R/3 corresponding document:
    SAP Implementation Guide &gt; SAP Supplier Relationship Management &gt; SRM Server &gt; Cross-Application Basic Settings &gt; Text Mapping &gt; Text Mapping for Inbound and Outbound Texts
    Standard Text ID for ERP lines of service begin with "L". They are linked to customzing object ESLL.
    For more details, have a look at R/3 function module MMPUR_GET_TEXT_CUST_DATA.
    Regards.
    Laurent.

  • SRM Fixed Text Mapped to ERP Purchase Order for Extended Classic

    We are switching from Classic to Extended Classic.
    We currently have "Contract Riders" which are fixed text that the users can select and the header level on the ERP purchase order. 
    We need to add this functionality to the SRM purchase order.  Unfortunatly the fix text on the SRM purchase order is only 30 in length.  Can we map the fixed text codes from the SRM purchase order to the ERP purchase order so that the full text on the ERP side is selected?
    Or is there a way to allow more than 30 characters for the fixed text in the SRM purchase order?
    Regards,
    -Paul

    Answered.

  • 0postxt  Item text Mapping

    When I am mapping 0FIAR_O03 to  0FI_AR_3 there is no 0postxt  in the DSO to map on to  0FI_AR_3 which has that field but when I am mapping same DSO  0FIAR_O03 to 0FI_AR_4, DSO shows up the field 0postxt in the transformation?
    Why so?
    What does field 0postxt imply?

    hi Jr,
    check
    Note 603720 - Long text in line items cannot be displayed
    Summary
    Symptom
    The 'long description' data field (0TXTLG) is used in the ODS object customer single item object (0FIAR_O03). It cannot be displayed in queries and InfoCubes that read data from the ODS object.
    Other terms
    Customer single item, 0FIAR_O03, 0FI_AR_4
    Reason and Prerequisites
    The 'long name' data field cannot be displayed because the relevant characteristic 0TXTLG has the property 'attribute only'.
    Solution
    This note can only be used if there is still no data in the ODS object.
    As of BI Content Release 3.30, the 0TXTLG InfoObject is replaced by the 0POSTXT InfoObject.
    The 'attribute only' indicator is not set for the 0POSTXT InfoObject.
    Solution:
    Create InfoObject ZPOSTXT. Use InfoObject 0TXTLG as a template. Delete the 'attribute only' and 'characteristic is document attribute' properties.
    Delete InfoObject 0TXTLG from InfoSources 0FI_GL_4, 0FI_AR_4, 0FI_AR_3, 0FI_AP_4 and 0FI_AP_3, and insert InfoObject ZPOSTXT. You have to adjust the communication structures.
    Then cancel the 0TXTLG characteristic from ODS objects 0FIGL_O02, 0FIAP_O03 and 0FIAR_O03. Insert the ZPOSTXT characteristic where you deleted 0TXTLG.
    Select the 'overwriting' update type in the update rues of these InfoProviders. Activate the update rules of the changed InfoProviders.
    Activate all changed objects.

  • Long text mapping from SC to PR

    Hi,
    We are using SRM 5.0 system and have a classic model implemented.
    While creating a SC the user enters the text in  long text of the shopping cart for a service item.
    when this SC is converted to PR in R/3 system  the text is copied into the service text at the service level.
    we would like this text to be copied to the item text in the PR.
    Can some one suggest the if this needs a custom code or is it a config change.
    Thanks & Regards
    R.M.

    Hi Ruchir,
    This is not a config change in SRM 5.0. You need to implement BBP_LONGTEXT_BADI and map the text as desired.
    Thanks,
    Anshu

  • PDF Text Mapped to Private Use Area of Unicode Plane 16

    I recently came across a pdf document in standard English where all the text was apparently mapped into the Private Use Area of Unicode Plane 16. Of course searching the text via typing something in the search box was impossible, as was copy/pasting the text.
    Can anyone explain to me whether this is normal for certain kinds of pdf's and if so, why it is done?

    A PDF file optionally contains a mapping to Unicode for each character
    in a font. It may be that this particular PDF contains such a map,
    with such a result. It would be odd, but perhaps a deliberate attempt
    to make text extraction difficult, or perhaps a side effect of
    something different.
    Alternatively, in the absence of a map, Acrobat may have to guess.
    Something may have led it to use this Unicode mapping.
    Aandi Inston

  • Free text mapping

    I need to transform content of a file with the structure as follow
    <b>Name</b> [tab] Name1
    <b>Name</b> [tab] Name2
    <b>Name</b> [tab] Name3
    <b>Group</b> [tab] Group11 [tab] Group12
    <b>Group</b> [tab] Group21 [tab] Group22
    <b>Group</b> [tab] Group31 [tab] Group32 [tab] Group33
    Note: [tab] = '0x09'.
    With this kind of structure, what type of mapping should I use?
    Can I use message mapping, or need to use Java mapping or other type?
    Thanks

    Hi,
    >>How does the engine know to separate the [tab] character here
    You need to specify the field separator as [tab] in the FCC of the Sender file adapter...!
    Also have a look into the Blog <a href="/people/shabarish.vijayakumar/blog/2005/08/17/nab-the-tab-file-adapter Delimited files</a> By Shabarish Vijayakumar
    Regards
    San

  • Map Extended Classic SRM Local PO Text to ERP PO Text

    Hi Gurus
    I am trying to configure mapping for purchase order texts in the SRM 7.0 system.  I am using the folllowing configuration:
    "Text Mapping for Inbound and Outbound Texts".  I am having an issue with the fact that I can't selelct an "External Logical System" when attempting to map the text fields.
    This field "External Logical System" is associated with table BBPC_TEXT_EXT,  I can't find anywhere in the system to update this table with the external systems?
    Does anyone know how this to setup this configuration???
    Regards,
    -Paul

    First establish the logical systems, text objects, and text types for external text mapping in the table BBPC_TEXT_EXT using transaction SE16.

  • Header text not getting populated in PO in R/3 from SRM!

    Hi,
    Our requirement is to automatically populate the email ID of the user in the header text once the PO is created in R/3 with reference to Shopping Cart in SRM.
    our scenario is classic.
    So far, we have used the following Badis in our development but seems to be not working.
    1.ME_Process_PO_Cust
    2.BBP_PO_INBOUND_BADI
    Need your inputs to solve this email querry.
    Regards,
    Archit Gandhi
    Edited by: Archit Gandhi on Feb 4, 2011 11:14 AM

    Check "Text Schema" & "Text Mapping" config part under Cross-Application Basic Settings..
    This should help you.. If you need help in configuration let me know..
    Thanks!!
    Bharath

  • Image with text

    I have created an image with text (map with town names). The
    text is 12px Verdana bold. When I export to a gif (only a few
    colors) and show on a page I want to get the text to show clear
    when the page is resized. But it does not it becomes more obscure
    as it gets smaller. I have the image which I have styled
    {width:100%;height:100%;} to stop the image expanding the td it's
    in.
    Can anyone advise how best to achieve good font clarity in
    images that may be resized?
    thanks.

    ROGM wrote:
    > Can anyone advise how best to achieve good font clarity
    in images that may be
    > resized?
    Use Flash format, which is scalable. GIF's are not scalable.
    Linda Rathgeber [PVII] *Adobe Community Expert-Fireworks*
    http://www.projectseven.com
    Fireworks Newsgroup:
    news://forums.projectseven.com/fireworks/
    CSS Newsgroup: news://forums.projectseven.com/css/
    http://www.adobe.com/communities/experts/

  • Item text and note not transfering to PO from SRM 5.0

    Hi,
    We are in SRM 5.0/ECC 6.0
    We have a requirement to transfer Item text and item note (Item Text/note to be printed on PO) to ECC PO. From SRM 5.0
    These Item note and Item text is available in PO->Iteam->Service->service text and line text.
    Please advice..
    thanks,
    shri

    For similar kind of problem in SRM 7.0 there is SAP note implementation : Note 1424590 - Text mapping from SRM SC to backend purchase requisition.
    can any one give solution for SRM 5.0

  • The option to add a hyperlink to a text or image is greyed out and not functional.  How do I fix this?

    The option to add a hyperlink to text or an image in pages is greyed out.  How do I fix this?

    Peter is correct. However, one can clever up two overlayed, grouped Text Box and simulate a hyperlinked image that can be placed in the document body with text flowing around the image. Moving the image requires temporarily turning off the hyperlink in the Link inspector. Example was Pages ’09 v4.3 on OS X 10.8.4.
    Steps:
    From the Pages Toolbar, select Text Box twice. The Text Box will be slightly offset. Select and drag the offset one to just above the centered one.
    Click inside the centered Text Box and back out the placeholder text. Now select this Text Box and choose the graphic inspector.
    Choose Fill > Image Fill. Choose your image, and then Scale to Fit the entire Text Box.
    From the Pages arrange menu, choose Make Background Objects Selectable, and Send Object to Background.
    In the Wrap inspector, select Object Causes Wrap, and your choice there. My example was door #2.
    Click inside your text-only Text Box. Change the placeholder text to three instances of the capital letter ‘O.’
    Launch the Font panel (command+T).
    Manually change the font size to 92 points. This just fits a default Text Box size without wrapping. I used Times New Roman Regular.
    Select the text, and with the Link inspector, enable your choice of hyperlink, and also disable it (for now) with the “Make all hyperlinks inactive.”
    With the text still selected, choose Font color from the Font panel. At the bottom of the Color tool, set the Opacity of your text to zero.
    Drag the transparent text-only Text Box exactly over the top of your image Text Box. Use the blue guides.
    From the Pages edit menu, Select All. From the Pages Arrange menu, choose Group.
    Drag the Text Box group where you want it in your document body. Text will flow around it if you used my setting in the Wrap inspector.
    Lastly, with the Text Box group selected, disable “Make all Hyperlinks inactive” in the Link Inspector. You now effectively have a text map overlaying your image and the mouse pointer changes to a hand. The link is now active. Exporting your Pages document to PDF preserves the hyperlinked image effect in both Preview and Acrobat Reader.

  • Map Paragraph and Character Styles

    Hello all,
    I am trying to import Word documents based on the Word Import Preset documents.
    Here's an example smp document
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <Sangam-Import-Preset reader-type="Word/RTF">
        <!--Style mappings take the form of key-value pairs consisting of:
    style-name: Source document's style name, for example RTF style name.
    This attribute is mandatory and the value cannot be an empty string.
    mapped-to: Target InDesign document's style name.
    This attribute is mandatory but can take an empty string as its value.-->
        <Style-Mappings>
            <Paragraph-Style-Mappings>
                <Mapping style-name="Body Text" mapped-to="Body 2" />
                <Mapping style-name="Heading 1" mapped-to="Heading 1" />
                <Mapping style-name="Normal" mapped-to="Normal 2" />
            </Paragraph-Style-Mappings>
            <Character-Style-Mappings>
                <Mapping style-name="Hyperlink" mapped-to="Hyp" />
            </Character-Style-Mappings>
        </Style-Mappings>
        <!--Each Import Preference has two mandatory attributes:
    name: Name of the preference (cannot be an empty string).
    value:Value of the preference (cannot be an empty string).
    For boolean preferences, type 0 for false and 1 for true.-->
        <Import-Preferences>
            <Preference name="import-toc" value="1" />
            <Preference name="import-index" value="1" />
            <Preference name="import-hyperlink" value="1" />
            <Preference name="import-tables" value="1" />
            <Preference name="import-footnotes" value="1" />
            <Preference name="import-endnotes" value="1" />
            <Preference name="import-track-changes" value="1" />
            <Preference name="import-preserve-graphics" value="1" />
            <Preference name="spacing" value="1" />
            <Preference name="break-before-para" value="0" />
            <Preference name="use-typographers-quotes" value="1" />
            <Preference name="convert-tables-to" value="0" />
            <Preference name="remove-formatting" value="0" />
            <Preference name="dont-strip-char-formatting" value="0" />
            <Preference name="bring-unused-styles" value="0" />
            <Preference name="para-style-clash-option" value="0" />
            <Preference name="char-style-clash-option" value="0" />
            <Preference name="use-style-mappings" value="1" />
            <Preference name="convert-BN-to-text" value="0" />
        </Import-Preferences>
    </Sangam-Import-Preset>
    Everything should be easy to set in the WordRTFImportPreference except for the mappings.
    I tried using app.activeDocument. paraStyleMappings.add("Normal","Normal 2",   MapType.STYLE_MAPPING_RULE) after setting app.generalPreferences.mapStylesOnContentPlace = true
    Doesn't work . I suspect the mappings are only good for XML placements and not Word ones, in which case I guess the way to do it would be to us changeText() on the styles.  This is not a great solution as the changes would be done after placement unlike when using the UI before the placement.
    Has anyone done this or got any ideas?
    Regards,
    Trevor

    Paragraph Tools from SiliconPrairieSoftware.com will do it and it's cheap.
    Note that you may not want to convert H1 to Heading1, but convert in the
    opposite direction. A lot of expert Framers use the keyboard to choose
    paragraph tags instead of the mouse-- it's faster-- and have set up short
    names for paragraph formats to make that go even faster. (Someone who uses
    the technique can explain it better than I.) If you have members of your
    team who use this method, changing to the longer tagname may slow them down
    and bring down a hail of grumbles.

  • Message Mapping RFC structure to deep XML structure

    Hello,
    I have a message mapping I am struggling with. The outbound interface is an RFC with structure like this:
    RFC_send_material
    -material (1..unbounded)
    --matnr
    --meins
    --brgew
    -description (1..unbounded)
    --matnr
    --vkorg
    --text
    The inbound interface should look like this:
    Materials_from_SAP
    -material (1..unbounded)
    --matnr
    --meins
    --brgew
    --description (0..unbounded)
    ---vkorg
    ---text
    My problem is to get all the description connected to the matnr together.
    Examples with data:
    Outbound rfc:
    <RFC_send_material>
       <material>
          <matnr>100</matnr>
          <meins>c1</code1>
          <brgew>c2</code2>
       </material>
       <material>
          <matnr>101</matnr>
          <meins>c1a</code1>
          <brgew>c2a</code2>
       </material>
       <material>
          <matnr>102</matnr>
          <meins>bv102</code1>
          <brgew>addd102</code2>
       </material>
       <description>
          <matnr>100</matnr>
          <vkorg>NO10</sales_org>
          <text>testing100</text>
       </description>
       <description>
          <matnr>102</matnr>
          <vkorg>SE10</sales_org>
          <text>testing102</text>
       </description>
       <description>
          <matnr>102</matnr>
          <vkorg>DK10</sales_org>
          <text>testing103</text>
       </description>
    </RFC_send_material>
    The inbound file structure should then look like this:
    <Materials_from_SAP>
       <material>
          <matnr>100</matnr>
          <meins>c1</meins>
          <brgew>c2</brgew>
          <description>
             <vkorg>NO10</vkorg>
             <text>testing100</text>
          </description>
       </material>
       <material>
          <matnr>101</matnr>
          <meins>c1a</meins>
          <brgew>c2a</brgew>
       </material>
       <material>
          <matnr>102</matnr>
          <meins>bv102</meins>
          <brgew>addd102</brgew>
          <description>
             <vkorg>SE10</vkorg>
             <text>testing102</text>
          </description>
          <description>
             <vkorg>DK10</sales_org>
             <text>testing103</text>
          </description>
       </material>
    </Materials_from_SAP>
    So as you see, my problem is to get the correct description belonging to the material. Hope anybody can help with doing this in Message Mapping.
    Regards,
    Per

    Hi PRW,
    As Michal said correctly, it is hard to describe in words, so here are some pictures which I think is the solution of your problem.
    Description mapping  : http://www.flickr.com/photos/23639237@N02/3220030016/sizes/o/
    VKORG mapping      : http://www.flickr.com/photos/23639237@N02/3219181675/sizes/o/
    Text  mapping           : http://www.flickr.com/photos/23639237@N02/3219182919/sizes/o/
    UDF  CODE             : http://www.flickr.com/photos/23639237@N02/3219184005/sizes/o/
    And the Final Reslut : http://www.flickr.com/photos/23639237@N02/3220035356/sizes/o/
    Regards,
    Sarvesh

Maybe you are looking for

  • CCM Image does not appear in Shopping cart

    Hi, I loaded a picture "Router.jpg" in a MIME-directory. Via the web I can access the picture using the link below: http://dessrm.entel.cl:8000/sap/bc/bsp/ccm/public/Router.jpg In a Purchasing Catalog I added the following caracteristics to a positio

  • Mails need to be Triggerd when clients Fails authentication

    CISCO 4404 ALERTS TO BE GENERATED(mail has to be triggerred) WHEN WLAN CLIENT AUTHENTICATION FAILS. Is there are any options on WCS to enable Authentication Failure on WCS. I have already Enabled 1.Client authentication failure Alarm and Authenticati

  • Threshold value problem.

    Hi, experts. Now, I'm testing the preference calculateion. After I save sales order document, the sales order I saved is replicated to the GTS server. And, the threshold value is calculated by the system. In my understanding, the threshold value shou

  • Letterboxing on 6.03

    At least half of the time I have letterboxing stop, sometimes, with no visual prompt and sometimes I will get "i Movie unresponsive". I can see the memory usage stop on the hard drives remaining memory listing on the bottom. Long pieces are hardly ev

  • Wallpaper zooms in slightly when setting it to home screen

    Whenever I try to set a wallpaper, the image I choose is zoomed in from the image shown when I align it on the "move and scale" screen. How can I fix this?