[ESS] Line break in service description ??

Hi,
Strangely, even though I put line break in the description of services in view V_T7XSSSERSRV(C), it is not showing up in the Portal.
A workaround is that I replace '.' with cl_abap_char_utilities=>newline in the proxy class I am using but this solution requires a proxy class (which is not always functionnally required).
Does anyone have the same problem?
Thanks in advance.
Best regards,
Guillaume

Hi Guillaume,
yes, i got the same problem, but when i want break line , i used to enter in Second line, since Service description is only a text editor ,as i think its not a ABAP editior where we can use break line statement to break line.
hope it help,
regards
Vijai

Similar Messages

  • Current Date in Service Description of ESS Services

    Hi All,
              We want to display current date in the Text of Service Description.
    In SPRO,  -> personnel Management -> ESS -> General Settings -> Home page for ESS -> Services -> Define Services, I tried using &DATE& but it shows the date, 28.02.2011 and not the current date i.e 14.03.2011.
    The server date is correct, i.e. 14.03.2011
    Can you please help, how can I display current date in the service description.
    Cheers!!!
    Umang

    Hi Umang,
    You can use Proxy class to append the time dynamically to the service description.
    Refer to the blog
    /people/amir.madani/blog/2007/01/05/create-dynamic-xss-homepages-with-static-services-using-a-simple-proxy-class
    Revert if you face any difficulty with this.
    Thanks
    Prashant

  • ESS service description on EP

    Hi,
    We are implemeting Webdynpro ESS in ERP2004. We have a requirement where we have to provide a hyperlink in a service description. I am using relevant IMG of homepage framework to insert the description but it only uploads text files. Is there a way to insert a service description with hyperlink?
    Thank you.
    Regards,
    Abhijeet.

    Ok....so just to follow you....
    (1) Make a resource for the URL link (like for whatever URL the "Additional Info" is located...and you should already have one for your actual service (like Benefits Overview).
    (2) Assign the resource to a service which should be the one to display the link ("Additional Info").
    (3) Assign the service (and the service for Benefits Overview for example) to the <b>SAME</b> "subarea" with "Benefits Overview" given an order of say 10 and the "Additional Info" service given an order of 20...that makes them appear correctly (ie. stacked).
    (4) Assign your subarea to an area (probably already done since it was there for the "Benefits Overview").
    (5) Make sure your changes are moved to the right clients (since the config is client dependent) if in the same instance. For example, if you config in say client 030 but your data/unit test is from 035, log into client 035, run t-code SCC1 and pull over your transport from 030 (it's ok...you can do this as much as you want without releaseing the transport).
    Now...you do NOT have to restart the portal. Your change will not show immediately, but that is ok. Have your portal admin go into "System Admin->Support->Portal Content Directory" and click the "administration" link towards the bottom...then click the "release cache" button. This will clear the cache and next time you access yourpages, they will reload with your new changes. Just that easy! =
    Hope this helps.

  • Does itunes u descriptions no longer support line breaks?

    Hi. I've got a faculty member that wants all of his course recordings available on itunes u. Previously, he would write a description for each session which I would post in the description field. Now, it appears that the description field no longer supports line breaks. Content generated prior to June is fine but all new content just runs on in one long paragraph. Anyone else seeing this problem?

    The collection is in the iTunes U directory. I'll have to breadcrumb you there since I don't know how to direct link. So, go to the University of Washington, Social Science, T536 Taxation of Trans-Pacific Transactions. In the description, you will see it is one giant paragraph, no formatting. Before we were converted to the new template (apple template, not our own) in April, this was formatted properly. I've created new collections and they also suffer from this same issue so it isn't simply a matter of the conversion. Thanks you for your help!

  • Service Description Text

    Within Define Services of the Homepage Framework for ESS, I have added text to my 'Service Description' for Who's Who
    The text is one sentance (all one line) in ERP.  When I review the text in ESS for the Service, the text appears on several lines.
    For example in ERP Homepage Framework:
    Search for all employees by name and find basic information about colleagues.
    In ESS the same text looks like this:
    Search for all employees by name
    and find basic information
    about colleagues.
    How do I resolve this problem?
    Thanks
    WB

    Go into the PCD, and select the relevant iView and press preview.
    Then Press Ctrl and Right Click of the mouse to bring up the details below.
    Select Text Wrapping and change tou2018Yesu2019.
    Then select u2018Textu2019 and ensure that all the Descriptive Text has spaces between each word.
    Then press u2018Applyu2019

  • Unable to find line break between two lines in attachment file.

    Dear all I will be very great full if someone help me out,
    I am trying to send mail through SMTP server with an attachment of oracle report, but I am unable to find line break between two lines, when I down load the attachment from mail and open attach.txt file by double click on it. Next line starts right after previous line ends, it should starts with new line.
    In order to send an attachment file, I am reading source file line by line and put MIME protocol’s attachment instance, contain of source file is being properly written into target file if I open that attachment on cmd prompt.
    Following code may help you to understand the case.
    Thanks in advance.
    My code is as follows:-
    create or replace procedure bec_file_test
    v_subject varchar2, -- Subject of the email
    v_body varchar2, -- Body of the email
    v_from VARCHAR2 default 'XYZ.com', -- sender mail id
    v_to varchar2 default 'XYZ.com', -- Field To of the email
    v_cc varchar2 default 'XYZ.com' -- cc address
    ) is
    -- variable to hold the smtp server connection
    v_smtp_connection utl_smtp.connection;
    -- variable to hold the smtp host name
    v_smtp_host varchar2(100) default 'mail.bec-group.com';
    -- variable to hold the smtp port
    v_smtp_port number default 25;
    -- composite of {CR}{LF} caridge return and line feed.
    CRLF varchar2(2):=CHR(13)||CHR(10);
    cursor pr_rec is
    select requisition_no,line_no,release_no,a.contract,
    a.project_id,substr(a.activity_seq,1,11)ACT_SEQ,
    substr(a.part_no,1,12)PART_NO,
    substr(a.description,1,32)DESCRIPTION,
    substr(a.Bal_qty,1,8) BAL_QTY,
    substr(a.unit_meas,1,5)UOM,
    a.wanted_receipt_date WAN_REC_DT,
    a.latest_order_date LAT_ORD_DT
    from bec_pr_line_rep a
    where a.Bal_qty>0 and a.header_state not in 'Closed'
    and upper(a.state1) like 'RELEASED' and a.contract not in ('U1ENG','ULENG','U1FND','U2FND')
    and a.buyer_code='70306'
    order by a.part_no;
    begin
    declare
    fHandle UTL_FILE.FILE_TYPE;
    v_msg_line varchar2(2000);
    -- v_buffer varchar2(20000);
    --ALTER SYSTEM SET utl_file_dir = 'D:\Database\temp'
    --COMMENT='Temporary change on Dec 14'
    --SCOPE=SPFILE;
    SELECT name, value
    FROM gv$parameter
    WHERE name = 'utl_file_dir';
    --drop directory my_directory
    --CREATE or replace DIRECTORY my_directory AS 'D:\database\temp';
    --GRANT read,write ON DIRECTORY my_directory TO PUBLIC;
    begin ---writing data into a file.
    fHandle := UTL_FILE.FOPEN('MY_DIRECTORY', 'pending_pr_summry.txt', 'w');
    UTL_FILE.put_line(fHandle, ' Pending PR to process (detail report)');
    UTL_FILE.put_line(fHandle,TO_CHAR(SYSDATE,'MM-DD-YY HH:MI:SS AM'));
    UTL_FILE.put_line(fHandle, '--------------------------------------------------------------------------------------------------------------------------------------------------');
    UTL_FILE.put_line(fHandle, 'Req.no. li Re Site Prj Id Act seq Part no Description Qty UOM want rec dt lat ord dt' );
    UTL_FILE.put_line(fHandle, '--------------------------------------------------------------------------------------------------------------------------------------------------');
    for pr_temp in pr_rec loop
    begin
    v_msg_line:=to_char(rpad(pr_temp.requisition_no,12,' ')||'|'||
    lpad(pr_temp.line_no,3,' ')||'|'||
    lpad(pr_temp.release_no,3,' ')||'|'||
    rpad(pr_temp.contract,7,' ')||'|'||
    lpad(nvl(pr_temp.project_id,' '),7,' ')||'|'||
    lpad(nvl(pr_temp.act_seq,' '),12,' ')||'|'||
    lpad(pr_temp.part_no,12,' ')||'|'||
    rpad(pr_temp.description,35,' ')||'|'||
    lpad(pr_temp.bal_qty,10,' ')||'|'||
    rpad(pr_temp.uom,6,' ')||'|'||
    lpad(pr_temp.wan_rec_dt,14,' ')||'|'||
    lpad(pr_temp.lat_ord_dt,14,' '));
    UTL_FILE.put_line(fHandle,v_msg_line);
    end;
    end loop;
    UTL_FILE.put_line(fHandle, '--------------------------------------------------------------------------------------------------------------------------------------------------');
    UTL_FILE.put_line(fHandle, ' Regards : IFSAPP ( Application owner ) ');
    UTL_FILE.FCLOSE(fHandle); ------------writing into file is successfuly done here!
    --Reading of file starts here containt will be added in attchment file
    fHandle :=UTL_FILE.FOPEN('MY_DIRECTORY','pending_pr_summry.txt','R' );
    -- establish the connection to the smtp server
    v_smtp_connection := utl_smtp.open_connection(v_smtp_host, v_smtp_port); /** OPEN CONNECTION ON THE SERVER **/
    -- perform a handshake with the smtp server
    utl_smtp.helo(v_smtp_connection, v_smtp_host); /** DO THE INITIAL HAND SHAKE **/
    -- set the 'from' address of the message
    utl_smtp.mail(v_smtp_connection, v_from);
    -- add the recipient to the message
    utl_smtp.rcpt(v_smtp_connection, v_to);
    -- send the email
    utl_smtp.open_data(v_smtp_connection);
    v_msg_line:='Date: ' || TO_CHAR( SYSDATE, 'dd Mon yy hh24:mi:ss' ) || CRLF ||
    'From: ' || v_from || CRLF ||
    'Subject: ' || v_subject || CRLF ||
    'To: ' || v_to || CRLF ||
    'Cc: ' || v_cc || CRLF ||
    'MIME-Version: 1.0'|| CRLF || -- Use MIME mail standard
    'Content-Type: multipart/mixed;'||CRLF ||
    ' boundary="-----SECBOUND"'||CRLF||
    CRLF ||'-------SECBOUND'|| CRLF ||
    'Content-Type: text/plain;'|| CRLF ||
    'Content-Transfer_Encoding: 7bit'|| CRLF ||
    CRLF ||v_body|| CRLF;     -- Message body
    utl_smtp.write_data(v_smtp_connection,v_msg_line);
    v_msg_line:='-------SECBOUND'|| CRLF ||
    'Content-Type: application/octet-stream;'|| CRLF ||
    'Content-Type: text/plain;'|| CRLF ||
    'name="pending_pr_summry.txt"'|| CRLF ||
    'Content-Transfer_Encoding: 8bit'|| CRLF ||
    'Content-Disposition: attachment;'|| CRLF ||
    ' filename="pending_pr_summry.txt"'|| CRLF || CRLF;     -- Content of attachment
    utl_smtp.write_data(v_smtp_connection,v_msg_line);
    -- check file is opened
    IF utl_file.is_open(fHandle) THEN
    -- loop lines in the file
    LOOP
    BEGIN -- Content of attachment
    utl_file.get_line(fHandle,v_msg_line);
    v_msg_line:=concat(v_msg_line,CRLF);
    utl_smtp.write_data(v_smtp_connection,v_msg_line);
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    EXIT;
    END;
    END LOOP;
    END IF;
    --end of attachment containt     
    utl_smtp.write_data(v_smtp_connection,v_msg_line);
    UTL_FILE.FCLOSE(fHandle);
    utl_smtp.close_data(v_smtp_connection);
    utl_smtp.quit(v_smtp_connection);
    exception
    when utl_smtp.invalid_operation then
    dbms_output.put_line(' Invalid Operation in Mail attempt using UTL_SMTP.');
    when utl_smtp.transient_error then
    dbms_output.put_line(' Temporary e-mail issue - try again');
    when utl_smtp.permanent_error then
    dbms_output.put_line(' Permanent Error Encountered.');
    when others then
    dbms_output.put_line('Exception: SQLCODE=' || SQLCODE || ' SQLERRM=' || SQLERRM);
    RAISE;
    end;
    end bec_file_test;

    Pending PR to process (detail report)01-17-13 12:43:19 PM--------------------------------------------------------------------------------------------------------------------------------------------------Req.no. li Re Site Prj Id Act seq Part no Description Qty UOM want rec dt lat ord dt--------------------------------------------------------------------------------------------------------------------------------------------------MAT/250370 | 2| 1|ISCSP | 4977| 100004207| 0104000016|Angle 50 X 50 X 6 IS:2062 Grade |500|kg |30-NOV-2012| 20-nov-2012MAT/250370 | 3| 1|ISCSP | 4977| 100004207| 0105000002|Channel 100 X 50 IS:2062 Grade A | 1000|kg | 30-NOV-2012| 20-nov-2012MAT/250579 | 2| 1|NMDCJ | 6001| 100005580| 0109020002|TMT Bar 10 mm Fe 415 IS:1786 | 2991|kg | 13-DEC-2012| 03-dec-2012MAT/250606 | 2| |NMDCJ | 6002| 100005860| 0109020002|TMT Bar 10 mm Fe 415 IS:1786 | 4500|kg | 29-DEC-2012| 19-dec-2012MAT/250607 | |1|NMDCJ|6001|100005580| 0109020002|TMT Bar 10 mm Fe 415 IS:1786 | 1500|kg | 29-DEC-2012| 19-dec-2012MAT/250194 | 3| 1|NMDCJ | 6002| 100005818| 0109020002|TMT Bar 10 mm Fe 415 IS:1786 | 3939|kg | 29-DEC-2012| 19-dec-2012MAT/250606 | 4| 1|NMDCJ | 6002| 100005860| 0109020004|TMT Bar 16 mm Fe 415 IS:1786 | 39000|kg | 29-DEC-2012| 19-dec-2012MAT/250607 | 4| 1|NMDCJ | 6001| 100005580| 0109020004|TMT Bar 16 mm Fe 415 IS:1786 | 17500|kg | 29-DEC-2012| 19-dec-2012MAT/250194 | 2| 1|NMDCJ | 6002| 100005818| 0109020004|TMT Bar 16 mm Fe 415 IS:1786 | 12183|kg | 29-DEC-2012| 19-dec-2012MAT/250606 | 6| 1|NMDCJ | 6002| 100005860| 0109020006|TMT Bar 25 mm Fe 415 IS:1786 | 9500|kg | 29-DEC-2012| 19-dec-2012MAT/250607 | 6| 1|NMDCJ | 6001| 100005580| 0109020006|TMT Bar 25 mm Fe 415 IS:1786 | 4500|kg | 29-DEC-2012| 19-dec-2012MAT/250194 | 6| 1|NMDCJ | 6002| 100005818| 0109020006|TMT Bar 25 mm Fe 415 IS:1786 | 17500|kg | 29-DEC-2012| 19-dec-2012MAT/250607 | 7| 1|NMDCJ | 6001| 100005580| 0109020008|TMT Bar 32 mm Fe 415 IS:1786 | 22000|kg | 29-DEC-2012| 19-dec-2012MAT/250194 | 7| 1|NMDCJ | 6002| 100005818| 0109020008|TMT Bar 32 mm Fe 415 IS:1786 | 27060|kg | 29-DEC-2012| 19-dec-2012MAT/251138 | 1| 1|NMDCJ | 6002| 100005825| 3501000001|Cement 50 kg | 1|pkt | 25-DEC-2013| 14-dec-2013--------------------------------------------------------------------------------------------------------------------------------------------------
    where as source file is like that:-
    Pending PR to process (detail report)
    01-17-13 12:43:19 PM
    Req.no. li Re Site Prj Id Act seq Part no Description Qty UOM want rec dt lat ord dt
    MAT/250370 | 2| 1|ISCSP | 4977| 100004207| 0104000016|Angle 50 X 50 X 6 IS:2062 Grade | 5500|kg | 30-NOV-2012| 20-nov-2012
    MAT/250370 | 3| 1|ISCSP | 4977| 100004207| 0105000002|Channel 100 X 50 IS:2062 Grade A | 1000|kg | 30-NOV-2012| 20-nov-2012
    MAT/250579 | 2| 1|NMDCJ | 6001| 100005580| 0109020002|TMT Bar 10 mm Fe 415 IS:1786 | 2991|kg | 13-DEC-2012| 03-dec-2012
    MAT/250606 | 2| 1|NMDCJ | 6002| 100005860| 0109020002|TMT Bar 10 mm Fe 415 IS:1786 | 4500|kg | 29-DEC-2012| 19-dec-2012
    MAT/250607 | 2| 1|NMDCJ | 6001| 100005580| 0109020002|TMT Bar 10 mm Fe 415 IS:1786 | 1500|kg | 29-DEC-2012| 19-dec-2012
    MAT/250194 | 3| 1|NMDCJ | 6002| 100005818| 0109020002|TMT Bar 10 mm Fe 415 IS:1786 | 3939|kg | 29-DEC-2012| 19-dec-2012
    MAT/250606 | 4| 1|NMDCJ | 6002| 100005860| 0109020004|TMT Bar 16 mm Fe 415 IS:1786 | 39000|kg | 29-DEC-2012| 19-dec-2012
    MAT/250607 | 4| 1|NMDCJ | 6001| 100005580| 0109020004|TMT Bar 16 mm Fe 415 IS:1786 | 17500|kg | 29-DEC-2012| 19-dec-2012
    MAT/250194 | 2| 1|NMDCJ | 6002| 100005818| 0109020004|TMT Bar 16 mm Fe 415 IS:1786 | 12183|kg | 29-DEC-2012| 19-dec-2012
    MAT/250606 | 6| 1|NMDCJ | 6002| 100005860| 0109020006|TMT Bar 25 mm Fe 415 IS:1786 | 9500|kg | 29-DEC-2012| 19-dec-2012
    MAT/250607 | 6| 1|NMDCJ | 6001| 100005580| 0109020006|TMT Bar 25 mm Fe 415 IS:1786 | 4500|kg | 29-DEC-2012| 19-dec-2012
    MAT/250194 | 6| 1|NMDCJ | 6002| 100005818| 0109020006|TMT Bar 25 mm Fe 415 IS:1786 | 17500|kg | 29-DEC-2012| 19-dec-2012
    MAT/250607 | 7| 1|NMDCJ | 6001| 100005580| 0109020008|TMT Bar 32 mm Fe 415 IS:1786 | 22000|kg | 29-DEC-2012| 19-dec-2012
    MAT/250194 | 7| 1|NMDCJ | 6002| 100005818| 0109020008|TMT Bar 32 mm Fe 415 IS:1786 | 27060|kg | 29-DEC-2012| 19-dec-2012
    MAT/251138 | 1| 1|NMDCJ | 6002| 100005825| 3501000001|Cement 50 kg | 1 |pkt | 25-DEC-2013| 14-dec-2013
    Ignore alignment. It is well formatted in source file.

  • Output with line breaks seemingly randomly placed

    Hola -
    I've adapted Tyler Muth's RSS feed article (http://tylermuth.wordpress.com/2008/01/22/producing-rss-from-plsql/) for the most part successfully; however, my output has breaks in the lines at inappropriate places, often in the mddle of an XML element tag for example. The placement of the breaks varies if I change the values of l_idx, l_len, l_defrows, l_maxrows, and l_desclen, but the breaks persist. They're not reflected in the code below but I've added the utl_file.fflush to no good effect.
    Examples of broken output:
    <pre>
    <title>Three
    prehistoric inventions that shaped us /</title>
    <guid
    isPermaLink="false">226402455778123622</guid>
    <pubDate>Thu, 04 Aug 2011 12:36:22
    EST</pubDate>
    <guid isPermaLink="fal
    se">220922455778123622</guid>
    <item
    >
    </pre>
    It's a lot of data so I won't post it here, but here's the code & the table; any ideas as to where to start investigating will be greatly appreciated.
    Code:
    create or replace
    PROCEDURE "RSSLOOP3" ( fund_in IN VARCHAR2, fund_in2 IN VARCHAR2 := 'XXX')
    is
    -- customizable parameters
    l_title varchar2(255) := ' New Titles Since ' || to_char(sysdate - 90, 'MM/DD/YYYY');
    l_link varchar2(255) := 'replace this' || fund_in || '.rss';
    l_description varchar2(255) := 'This is a feed of changes to items ' || fund_in;
    l_language varchar2(255) := 'en-us';
    -- end customizable parameters
    l_version varchar2(10) := '2.0';
    l_clob clob;
    l_idx pls_integer := 1;
    l_len pls_integer := 255;
    l_defrows pls_integer := 100;
    l_maxrows pls_integer := 100;
    l_desclen pls_integer := 250;
    -- for output to file
    fh UTL_FILE.FILE_TYPE;
    path VARCHAR2(30);
    filename VARCHAR2(30);
    begin
    path := '/http/live/screens/rss/';
    filename := fund_in || '.rss';
    fh := UTL_FILE.FOPEN(path, filename, 'w');
    for i in (
    select xmlelement( "rss",
    -- Begin XML Header Block
    xmlattributes( l_version as "version"),
    xmlelement( "channel",
    xmlforest( l_title as "title",
    l_link as "link",
    l_description as "description",
    l_language as "language"),
    -- End XML Header Block
    -- Begin List of Individual Articles or Items
    xmlagg(
    xmlelement( "item",
    xmlelement("title", x.title),
    xmlelement("link", x.link),
    xmlelement("description", convert(x.description, 'UTF8', 'AL32UTF8')),
    xmlelement("callnum", x.callnum),
    xmlelement("pubDate", to_char(x.updated_on,'Dy, DD Mon RRRR hh24:mi:ss')),
    xmlelement("guid", XMLATTRIBUTES('false' as "isPermaLink"),x.id||to_char(x.updated_on,'JHH24MISS'))
    -- End List of Individual Articles or Items
    ) as result
    from ( -- Actual Database Query that populates the list of Items
    select id,title,link,description,updated_on, callnum
    from drx_rss_feeds
    where (fund like fund_in||'%')
    and rownum < (l_maxrows+1)) x)
    loop
    l_clob := xmltype.extract(i.result,'/').getclobval;
    exit;
    end loop; --i
    --- OUTPUT RESULTS
    for i in 1..ceil(dbms_lob.getlength(l_clob)/l_len) loop
    UTL_FILE.PUT_LINE(fh,(substr(l_clob,l_idx,l_len)));
    l_idx := l_idx + l_len;
    end loop; --i
    UTL_FILE.FCLOSE(fh);
    end rssloop3;
    Table:
    CREATE TABLE "DRX_RSS_FEEDS"
    "ID" VARCHAR2(32 BYTE),
    "TITLE" VARCHAR2(255 BYTE),
    "DESCRIPTION" VARCHAR2(4000 BYTE),
    "LINK" VARCHAR2(1000 BYTE),
    "AUTHOR" VARCHAR2(255 BYTE),
    "UPDATED_ON" DATE,
    "CALLNUM" VARCHAR2(255 BYTE),
    "FUND" VARCHAR2(10 BYTE)
    )

    Or have a look at the Oracle Documentation, for instance at the parameters for utl_file.fopen
    max_linesize Maximum number of characters for each line, including the
    newline character, for this file (minimum value 1, maximum
    value 32767). If unspecified, Oracle supplies a default value of
    1024.It wouldn't surprise me if your randomly placed line breaks are all 1023 characters a part.
    Anton

  • Field Containg embedded line breaks

    Hi Experts,
    I am doing FCC in sender File adapter. My field separator is "I" and Record separator is "\n".
    In my .txt input file, one of field contains embedded line breaks and Adapter is taking that break as end of that record.
    Without changing the file format & without using custom adapter module, how this problem can be resolved?
    Thanks

    hi Arindam,
    I beleived you had a \n (string) in middle of line, but with a CRLF in the middle of line... Heu... no, I don't know how we can manage that (and enclosureSign will not work). And I think is impossible.
    For me, you have a misbehaviour in your source system, because in a field (description), they do not put a field value but in fact a table (several lines of this description). So for me, that's a conceptual error in their side !
    My suggest is:
    1. To modify the source program of your partner application, in order to change the CRLF used in this description by a specific NewLineSeparator like #@#. by this way, they produce a long description view in a field:
    exm: description = myblablaOf1stLine#@#my2ndLine#@#my3rdLine, for the 3 lines of description:
    myblablaOf1stLine
    my2ndLine
    my3rdLine
    2. in PI adapter, this NewLineSeparator like #@# will be interpreted as all other characters... so no issue.
    3. in ECC, you will used this NewLineSeparator like #@#, to recreate the differents lines of this description, in SAP description.
    Or you do this split in your PI mapping if your ECC target is an idoc with long description (so several "line" segments).
    Regards.
    Mickael

  • TEXT Mail line break issue in Email body

    Email content is breaking up when the preference is MAILTEXT.
    Please see the comments Line Break.
    Ex:
    Dear --Line Break
    PETER,
    Thank you for contacting XXXXX. The service request number 547631 has been created for the following issue:
    Testing Notification
    A technical support representative is working to resolve your issue.
    Because we recognize that many of our customers would prefer to find answers conveniently on our website, we'd like to invite you now and for future needs to search our Knowledge Base online at:
    If --Line Break
    you have any questions or concerns, please contact us at XXXX or XXXX and have your service request number available for the technical support representative.
    Thanks --Line Break
    again, and we appreciate your continued business.
    We are on 11.5.9 and WF version is 2.6.0

    If you have not got a resolution for this issue still, this was a bug in Workflow code and fixed in OWF.H I believe. Please search for Oracle Workflow one-off patches if an one-off was released for 11.5.9.
    Thanks

  • How to get price list line id for service contract line(subline)

    Does some one know how to find a price list line id for service contracts line (sub line)?
    There is actually a column in table okc_k_lines_b which is called price_list_line_id, but it looks like it is never used (all columns values are NULL). I have tried to investigate reprice API's which are used in contracts authoring form, but they are too huge and it didn't lead to nay result. There is a way (bad hack), by calling OKS_QP_INT_PVT.COMPUTE_PRICE it is possible to get price list line id by which contract line is priced, it would be kina fine if I would need to find line id for some rows, but it wont work for thousands!
    Is there some proper way how could I get price list line id by which is service contract line priced?

    Hi,
    Check out the following query that gets the price_list_id on subline_level and more.
    The price_list_Id is stored as a rule.
    SELECT
    chd.contract_number
    , par.party_number
    , par.party_name
    , ldf.pas_nummer
    , ldf.pas_houder     
    , rh.object1_id1 hdr_price_list_id
    , rsl.object1_id1 sl_hdr_price_list_id
    , pld.parkeerterrein
    , msi.segment1
    , sit.description
    FROM
    okc_k_headers_b chd
    , okc_k_lines_b clt
    , okc_k_lines_b cls
    , okc_k_lines_b_dfv ldf
    , okc_k_items cit
    , okc_rule_groups_b rgh
    , okc_rules_b rh
    , okc_rule_groups_b rgt
    , okc_rules_b rtl
    , okc_line_styles_b lst
    , okc_rule_groups_b rgs
    , okc_rules_b rsl
    , okc_line_styles_b lss
    , qp_list_headers_b plh
    , qp_list_lines pll
    , qp_list_lines_dfv pld
    , qp_pricing_attributes pat
    , mtl_system_items_b msi
    , mtl_system_items_tl sit
    , hz_cust_accounts cac
    , hz_parties par
    WHERE
    rgh.chr_id = chd.id
    AND rh.rgp_id = rgh.id
    AND rh.jtot_object1_code = 'OKX_PRICE'
    AND cac.cust_account_id = rtl.object1_id1
    AND par.party_id = cac.party_id
    AND clt.chr_id = chd.id
    AND clt.lse_id = lst.id
    AND lst.lty_code = 'SERVICE'
    AND rgt.cle_id = clt.id
    AND rtl.rgp_id = rgt.id
    AND rtl.jtot_object1_code = 'OKX_CUSTACCT'
    AND cls.cle_id = clt.id
    AND cit.cle_id = cls.cle_id
    AND cit.jtot_object1_code = 'OKX_SERVICE'
    AND cls.lse_id = lss.id
    AND lss.lty_code = 'COVER_ITEM'
    AND cls.id = rgs.cle_id
    AND rgs.id = rsl.rgp_id
    AND rsl.jtot_object1_code = 'OKX_PRICE'
    AND plh.list_header_id = rsl.object1_id1
    AND plh.list_header_id = pll.list_header_id
    AND pll.rowid = pld.row_id
    AND pat.list_header_id = pll.list_header_id
    AND pat.list_line_id = pll.list_line_id
    AND cit.object1_id1 = pat.product_attr_value
    AND cit.object1_id2 = chd.authoring_org_id
    AND msi.inventory_item_id = cit.object1_id1
    AND msi.organization_id = cit.object1_id2
    AND sit.inventory_item_id = msi.inventory_item_id
    AND sit.organization_id = msi.organization_id
    AND sit.language = userenv('LANG')
    AND cls.rowid = ldf.row_id
    Hth,
    Martin
    Edited by: mvdons on 4-sep-2008 2:13

  • Line break symbol in WAD Chart

    Hi,
    We have WAD 3.5 but Query Designer 7.0.  And Internet Explorer 7.
    We have a query where the column description has been split in two lines in the Query Designer.
    When this query is put as chart in WAD a strange symbol is shown where the text is supposed to be split  (and the line is not split, but that is less of an issue.)
    However when the same query is put as table in WAD, everything is fine.
    Any suggestions on getting rid of this symbol?
    Thanks in advance for your feedback.
    Reynir

    Hi Reynir,
    I too have encountered the enter symbol in the Chart Legend. I think the only way to get rid of the same is to avoid using a line break in the Char desc in Query Designer, use a separator ( ) or so to denote what you wish to on the 2nd line - but that would make the col width too wide in the table view.
    --Priya

  • How to extract compiled stored procedure without line break for long statement

    After I compiled stored procedure which contains long statement, the statement would cut into 2 rows into dba_source.
    However, when I extract the codes from dba_source table, the source couldn't be compiled successfully because of
    the broken lines.
    For example, the following statement would be broken into 2 rows like this:
    (line 1) gv_Message := 'Interface Description: Interface with Training '|| 'and Development Intran
    (line 2) et (Evaluation Statistic Details)';

    That's very strange. What did you originally compile it with (sql*plus, toad, etc...)? I was able to compile a procedure with the maximum line length (2499 characters see error SP2-0027) and there is no split. Is the procedure in a VALID state with that line break? Honestly, this seems very odd, possibly even a bug here somewhere.
    Richard

  • How to remove extra line breaks in my html code?

    On my website: 2neatmagazines.com, I have old html, written years ago. The html all functions fine, no problems in the broswers. When I Iook at the code, there are lots of line breaks in the text portions.
    I can do "apply source formatting", and that has cleaned and aligned the html code nicely. But, the text descriptions in the html still breaks at fixes places. This does not affect how it renders, just how the code looks. For example:
                      <p align="left"><span class="blacksregularbold"><span class="blackregular">Life
                        Magazine </span>January 11, 1937</span> : Cover - Japanese
                        soldiers doing their exercises. Full page LIFE magazine
                        ad with railroad locomotive at night. The &quot;first&quot;
                        candid photographs taken by Paul Nadar of Paris in 1886.
                        Governors - new and old. Margaret Sanger wins the court
                        victory that birth control contraceptives can be sent
                        by mail, long fight for related women's rights . Bootleg
                        coal mining near Shamokin, Pennsylvania. Painter Winslow
                        Homer. Dinosaurs Enshrined (collection, storage and
                        display of dinosaur fossils in museums, including Dinosaur
                        National Monument). Baths of Foam, milk, mud,and wax
                        for beauty. . Theatre in 1936 and 1937. Japanese Army.
                        Sonja Henie in her movie &quot;One in a million.&quot;
                        Includes photos of Sonja Henie bicycling - looks like
                        today's town cruiser bikes. . Amazing series of photos
                        of San Francisco people interacting (or not) with bum
                        laying on sidewalk. Photos from wreck of United Airliner
                        which crashed December 27, 1936 in the Santa Susana
                        Mountains of California. Five airline crashes in two
                        weeks at end of 1936. Ice hockey fights. &quot;Tobacco
                        Road&quot; on Broadway. Japanese soldiers training.
                        Neat photo of five new locomotives in a row, Canadian
                        National Railways. <br />
                        <span class="redregular">Very Good</span> - $52
    I would like the main text to be wrapped, and neat. I have tried various "text cleaners" like Haven for the mac, but none of the settings will get rid of this annoying line break formatting.
    Any suggestions would be appreciated.
    mark

    The only "Line Break"
    <br /> I see is at the end.
    Code formating just cleans the display of the visual code it doesn't effect the browser display.
    You can do a "Search and Replace" the <br /> with nothing. to strip all <br /> for the whole site or DIR or page.
    In code view right mouse click and choose
    "Search and Replace"
    Is this what your are asking help on?
    Shane

  • ICS file - Line breaks

    Hi,
    I am sending an email with an ICS file as an attachment. Everything work fine, except that when the user opens the ICS file from their outlook, the text is displayed without a line break.
      CALL FUNCTION 'SO_OBJECT_SEND'
        EXPORTING
          object_hd_change = w_object_hd_change
          object_type      = 'RAW'
          owner            = sy-uname
        TABLES
          objcont          = message_content
          receivers        = receiver_list
          packing_list     = packing_list
          att_cont         = icsfile.
    The message contents came with the proper line breaks. But when I appended the same data into the ICS file, it came out without line breaks.
    Any comments?
    Regards
    Murali.

    Thanks for the response Venkat.
    I tried the way you have mentioned. But it doesnt reflect.
    My packaging file is as below:
    CLEAR packing_list.
      describe table icsfile lines packing_list-body_num.
      packing_list-transf_bin = 'X'.
      packing_list-head_start = 0.
      packing_list-body_start = 1.
      packing_list-head_num = 0.
      packing_list-objtp = 'ICS'.
      packing_list-objnam = 'Object name'.
      packing_list-objdes = Sale Order'.
      packing_list-objlen = packing_list-body_num * 255.
      APPEND packing_list.
    CALL FUNCTION 'SO_OBJECT_SEND'
        EXPORTING
          object_hd_change = w_object_hd_change
          object_type      = 'RAW'
          owner            = sy-uname
        TABLES
          objcont          = message_content
          receivers        = receiver_list
          packing_list     = packing_list
          att_cont         = icsfile.
    When I debugged the code, the icsfile had the below content.
    BEGIN:VCALENDAR
    PRODID:-//Microsoft Corporation//Outlook 11.0 MIMEDIR//EN
    VERSION:2.0
    METHOD:PUBLISH
    BEGIN:VEVENT
    ORGANIZER:MAILTO:noreply@rta
    DTSTART:20090727T110000
    DTEND:20090728T133000
    LOCATION:My location is Sydney
    TRANSP:OPAQUE
    SEQUENCE:0
    UID:2009072711000020090728133000
    DTSTAMP:20090806T130823
    DESCRIPTION:\
    This e-mail is an calendar attachment for the order confirmed yesterday via e-mail from ABC.\
    Do not reply to this e-mail, as it is automatically generated and your reply will not be received or actioned.\
    Vendor:\
    ABC Australia\
    Double click on the attachment and save for your calendar to be updated.\
    SUMMARY:Sales order has been confirmed
    PRIORITY:5
    X-MICROSOFT-CDO-IMPORTANCE:1
    CLASS:PUBLIC
    BEGIN:VALARM
    TRIGGER:-PT15M
    ACTION:DISPLAY
    DESCRIPTION:Reminder
    END:VALARM
    END:VEVENT
    END:VCALENDAR
    I can see that my empty lines are represented in the icsfile with a '/' character.
    Regards
    Murali.

  • Increase the DB size in Azure gives the Error " Msg 40197, Level 16, State 1, Line 1 The service has encountered an error processing your request. Please try again. Error code 40671."

    Increase the DB size in Azure gives the following error
    Msg 40197, Level 16, State 1, Line 1 The service has encountered an error processing your request. Please try again. Error code 40671.
    i have used following ALTER query,
    ALTER DATABASE database_name MODIFY (EDITION='Business', MAXSIZE=10GB);
    Regards
    Vel

    Hi Taiye,
    According to your description, in theory, we can modify the size of database, and the T-SQL statement in your post is right. So we need to verify if there is no problem with network when you execute the modification statement, in addition, you must be connected
    to the master database when executing the ALTER DATABASE statement. As the error message, I recommend you login again and connect to the master database then run the statement again.
     For more information, see: ALTER DATABASE (Windows Azure SQL Database)
    If the error is still exist, the Microsoft support engineer will help to solve the problem from backend. Sometime delay might be expected. Your patience is greatly appreciated.
    Thanks,
    Sofiya Li
    If you have any feedback on our support, please click here.
    Sofiya Li
    TechNet Community Support

Maybe you are looking for

  • "disc burner being used by another program"

    for some reason, recently on my G5 running Tiger i cannot burn cds in Itunes....even though i am NOT running any other burning programs when i am in itunes, it gives me the error message listed in the subject.... i can reboot to temporarily fix the p

  • T510. Optimus technology support in Win XP

    Hello, Have Lenovo T510 4349-PG9 with optimus technology. Need to use WinXP SP3 instead of Win7. I have installed WinXP SP3 with all updates, but can't install NVS 3100M driver. After i switch video card to NVS3100M in BIOS instead of optimus option,

  • Frame8 Distiller Worked; Frame9 Distiller Font Map is Incorrect

    I have been using FrameMaker 8 with a custom AT&T font set, ClearviewATT without incident.  I am evaluating FrameMaker 9, but when I Save as PDF, the Distiller produces PDF files with all bold and italic text as Times New Roman.  This is unacceptable

  • Why does print sharing keep unchecking in system preferences

    Why does print sharing keep unchecking?

  • Masking issues!  URGENT!!

    I am trying to use a mask (black and white) to show one picture being revealed behind another picture as the top picture is torn. I have placed the mask on top of both pictures and the top pictures works in that it is viewable and then tears away cor