I need help to hide system data in service desk message

We want to our service desk message has so view:
Description AS2_SMS 09.06.2010 10:40:09
test sen
test sen
But it include very many technical info and view so:
Description AS2_SMS 09.06.2010 10:40:09
test sen
test sen
System Data ... 09.06.2010 10:40:10
SY-DBSYS................ ORACLE ...
SY-HOST................. ...
SY-OPSYS................ SunOS ..
SY-SYSID................ ...
SY-MANDT................ 200
SY-UNAME................ ...
SY-DATUM................ 20100609
SY-UZEIT................ 123949
SY-ZONLO................ CET
SY-CALLD................
SY-CPROG................ SAPLSMTR_NAVIGATION
SY-DYNNR................ 0100
SY-REPID................ SAPLSMTR_NAVIGATION
SY-TCODE................
SY-MSG.................. 000
SLIC_SYSID.............. ...
SAP version............. 701
operating system........ SunOS
machine type............ i86pc
node name............... ...
SAP system id........... ...
database system......... ...
database name........... ...
database host........... ...
database owner.......... SAPSR3
rsyn....................
IP address.............. ...
kernel release.......... 701
database library........ OCI_102 (10.2.0.2.0)
kernel compiled......... ...
kernel patch level...... ...
supported SAP vers...... 700, 701
supported database...... ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.
valid OP system......... SunOS ...
OP system release....... 5.10
ABAP load version....... 1565
CUA load version........ 32
kernel kind............. opt
relinfo................. valid
hot package level....... 5
Компонент ПО/верс./подд. EA-APPL 600 0016
Компонент ПО/верс./подд. EA-DFPS 600 0016
Компонент ПО/верс./подд. EA-FINSERV 604 0004
Компонент ПО/верс./подд. EA-GLTRADE 600 0016
Компонент ПО/верс./подд. EA-HR 600 0045
How to hide System Data part? We use auth CRM_TXT_ID and set TEXTID = SU01 (without SUSD) but system data are included in message.
Edited by: Andrey Garshin on Jun 9, 2010 11:19 PM
Edited by: Andrey Garshin on Jun 9, 2010 11:54 PM

what is term - "scheme"? I don't meet that.
COMV_TEXT_PD is clear for all select.
but:
COMV_TEXT_AS - CRM_ORDERH :
01 Business Partner Text
02 Final Note
03 Header Memo for Predecessor
ASH_PCKI Packing Instructions - Header
IPM00001 IPM BP Text Supplier
ISA_AG01 ISA: Customer Request
OPSM0001 StandardText Sales Methodology
SUSH0001 Header Text and Response Text
not SUSD.
may be another COMV_TEXT*-? Where is it customize?
I find Text Determination Procedure (se73) - CRM_ORDERH-SUSD. But it for print header only, imho..

Similar Messages

  • System data of Service Desk

    we are using the function help / create support message. At the moment
    we don't get all system data out of the satellite system anymore (e.g.
    User, transaction). How can we change to system to get the "old" entries
    like:
    SY-DBSYS................
    SY-HOST.................
    SY-OPSYS................
    SY-SYSID................
    SY-MANDT................
    SY-UNAME................
    SY-DATUM................
    SY-UZEIT................
    SY-CALLD................
    SY-CPROG................
    SY-DYNNR................
    SY-REPID................
    SY-TCODE................
    SY-MSG..................
    SAP version.............
    operating system........
    machine type............
    node name...............
    SAP system id...........
    database system.........
    database name...........
    database host...........
    database owner..........
    rsyn....................
    IP address..............
    kernel release..........
    database library........
    kernel compiled.........
    kernel patch level......
    supported SAP vers......
    supported database......
    valid OP system.........
    OP system release.......
    ABAP load version.......
    CUA load version........
    kernel kind.............
    relinfo.................
    hot package level.......

    Hi Badri,
    When you create the message using the shortcut from Help Menu ( Help -> Create Support Message ) or via double-clicking the SAP logo you are creating a notification and not a transaction type SLFN.
    This notification has an action that will create the SLFN document and pass to it all system data collected from the system where this notification is created.
    The best way to avoid those information is to change the ABAP code responsible for getting the information from the notification and passing it back to the SLFN document.
    In the end it is a standard modification. Keep in mind that whenever you update your solution manager it may me necessary to revisit this change.
    Regards,
    Valdecir

  • No System Information in Service Desk message creation

    Hello,
    I'm trying out all the ways to use de message creation in service desk.
    When i try to create a message directly from SOLMAN_WORKCENTER\Incident Management
    No infos are filled in System Information and so i can't send the message. I can't even choose one
    I checked in transaction BP but i can't put the finger on it..
    Thanks in advance for your help

    Hello,
    Please check in IB52 if there is an Ibase with external ID SOL_MAN_DATA_REP.
    Best regards,
    Miguel Ariñ

  • Need help in formatting the Date - Date does not

    Need help in formatting the Date - Date does not formats and give Not a valid month error in the below scenario.
    select oc.ST_PGM_MGR, r.ag_dnum, get_major_work_type(r.perf_eval_rtng_id) "v_work_code", r.ag_dnum_supp "supp", r.intfinal, to_char(r.formdate,'MM/DD/YYYY') "formdate", to_char(r.servfrom,'MM/DD/YYYY') "srv_from", to_char(r.servto,'MM/DD/YYYY') "srv_to", descript, add_months(to_char
    --- Bellow line of Code on trying to format it to mm/dd/yyyy gives the error
    (r.formdate, 'DD-MON-YYYY'),12) "formdate2"
    from  table REdited by: Lucy Discover on Jul 7, 2011 11:34 AM
    Edited by: Lucy Discover on Jul 7, 2011 1:05 PM

    Your syntax is wrong - look at the post above where this syntax is given:
    to_char (add_months(r.formdate,12), 'MM/DD/YYYY') "formdate2"Look at the formula from a logical perspective - "inside out" to read what is happening -
    take formdate, add 12 months
    add_months(r.formdate, 12)then apply the to_char format mask - basic syntax
    to_char(date, 'MM/DD/YYYY')Compare to your syntax:
    to_char(add_months(r.formdate, 'MM/DD/YYYY'),12) "formdate2"You will see your format string inside the call to add_months, and your 12 inside the call to to_char.
    Good luck!

  • Need help in logging JTDS data packets

    Hi All,
    I m having web application which uses SQL Server database.
    I have to find out some problems in database connection for that there is need to log the jtds data packets.
    I have tried to use class net.sourceforge.jtds.jdbc.TdsCore but in constructor of TdsCore class there are two parameters needed one is ConnectionJDBC2 and another is SQLDiagnostic.
    I have tried a lot but it did not allow me to import class *SQLDiagnostic*.
    I need help in logging JTDS data packets. If there are any other ways or any body having any idea about logging JTDS data packets/SQLDiagnostic.
    Please reply it is urgent...!!
    Thanks in advance......!!

    if you want to use log4j then,
    in your project create a file called log4j.properties and add this
    # Set root logger level to INFO and its only appender to ConsoleOut.
    log4j.rootLogger=INFO,ConsoleOut
    # ConsoleOut is set to be a ConsoleAppender.
    log4j.appender.ConsoleOut=org.apache.log4j.ConsoleAppender
    # ConsoleOut uses PatternLayout.
    log4j.appender.ConsoleOut.layout=org.apache.log4j.PatternLayout
    log4j.appender.ConsoleOut.layout.ConversionPattern=%-5p: [%d] %c{1} - %m%n
    log4j.logger.org.apache.jsp=DEBUG
    #Addon for
    com.sun.faces.level=FINEGo to your class and add this line
    private static final Logger logger = Logger.getLogger("classname");and then you can use
    logger.info();
    logger.error();
    methods

  • Need help in loading master data.

    Hi everyone,
              I am just a beginner in BI 7.0 . I know Bw 3.5 . I need help in loading master data(flat file) in a step by step manner.
    Before posting this forum i searched and checked out other related forums too, as i am a beginner i am unable to follow them. Lots of the forums gave the help.sap.com link which i used and got a little help but not fully, so please don't send that link.  I need a step by step guideline from somebody, which says everything from the beginning till monitoring say like
    e.g.. 1) create a InfoObject by right clicking on InfoObject catalog.
    something like that.
    please help me get a clear and detail step by step procedure to load a master data (Flat File should be good) which may help me get a start will other things without much help.
    Please help me learn.
    Thanks.
    Ranjani.

    HI,
         Thanks for your reply. This is what i did.
    1) Created a Info Area.
    2) Created Info object catalog & activated
    3) created info object with nothing except some 4 attributes.
    4) Created Application compound in Infosource tab.
    5) Right clicked on Application compound and chose create Infosource in which chose a option with 3.x and chose the flexible update and gave the info object name.
    6) In info provider tab , in the Info Area right clicked and chose the Insert char as data target option.
    Now, i am stuck. I have no idea what to do next.
    I know i have to create a transformation - There are two tabs in Transformation box, what should i do there.
    Please help me from point 6 to cont., to load the data.
    Thanks.

  • Need help in fetching requested data from JSP

    Hello,
    I really need help in fecthing requested data from JSP to servlet. Can anyone assist me as soon
    as possible because I must finish my program by today.....( 20/02/2002).
    Thanks in advance.

    It is very likely that somebody can help you, if you say what your problem is. In fact somebody might already have helped you. What is your problem?

  • System data while creating support message

    Hi,
    I would like to know if there is any way to remove the system data from the support message long text (Transaction Data - Overview). In my case we don't need this information in the support message.
    Thanks in advance.
    Best regards,
    Sérgio Vieira

    Hello,
    I'm talking about the message in the Overview tab, under Transaction Data.
    Thanks in advance.
    Best regards,
    SV

  • I have lost the use of my extension pannels, and need help recovering the use. I get a message that extensions failed to load. Why?

    I have lost the use of my extension pannels, and need help recovering the use. I get a message that extensions failed to load. Why?

    I've had that before when on a really slow Internet connection.

  • Cannot "Complete" Service Desk Messages in External System

    Hello Solution Manager Experts!
    I have an issue where we had two Solution Manager Service Desks and needed to consolidate into one.  As part of that exercise, we set up an external service desk relationship between the old service desk (call it SID OLD) and the new service desk (call it SID NEW).  When sending the service desk messages from OLD to NEW via the action (Send to External Service Desk) we can only set the status to "Accepted", and the status "Completed" is grayed out for the service desk message that resides in the NEW system.  In the NEW system, under the Transaction Details-->Transaction Analysis there an error indicating that the message can only be closed by the external system (OLD).  However, in the OLD system, the original message is already set to "Complete", and I am no longer able to do anything with the original service desk message.  Even if I make another copy of the message in the OLD system and resend the copy to the NEW system (as status "new"), I still cannot mark the service desk message "Complete".  In the OLD system, even of this copy of the service desk message is something other then Complete, I cannot mark it complete and synchronize with the new system.  I get an error in the old system that says that "The problem message is locked in external system SM_NEWCLNT030_SERVDESK", which is obviously a reference to the RFC destination for the new external service desk.
    How can I go back into the NEW system and change the message to "Complete"?  Additionally, even if I could close the message in OLD and synchronize with NEW, I am curious how I would get around this issue if the OLD Solution Manager service desk needed to be decommissioned, and was no longer available, this would still be an issue of closing out service desk messages to a status of "Complete".  Is there some kind of program I can run agains certain service desk message numbers which will "break" that relationship with the OLD service desk so I can set those messages that originated in OLD to be "Complete" in NEW?
    Any service desk messages that are created directly in NEW can be closed out to "Completed".  This is an issue that is only a problem with  messages that originated in OLD.  I hope this makes sense. 
    Your input is greatly appreciated.
    Thanks!

    I found a workaround by going into the status profile in the NEW system, double clicking on the CONF status, changed "To be distributed"  to "allowed" and "set".  Then I backed up one screen so I could see all my status's; and then in the last column of the CONF status in the column labled "Trans.", I set it to RELE instead of FINI.
    This enables me to set the "completed" messages from my legacy (OLD) system to "completed" in my (NEW) system.  Once I have all the status's set, I'll set the status profile entry for CONF back to the way it was.

  • Accessing the service desk message from satellite system

    gurus  ,
    after creating a creating a service desk message to solution manager system via HELP->CREATE SUPPORT MESSAGE ,
    how does the message creator from satellite system will view/change the message created by them at late point of time ?

    Susin,
    the problem is a commonly asked one that I get when I present the Solution Manager to customers. There is always the question: How can the user see the status of the ticket?
    From my point of view you can give them access to the worklist but I guess it is really a pain for the user to log on to SolMan and to access the information from there through a complex transaction.
    Alternatively to provide the user with access to the ticket system, you could consider sending out an email on (all or only critical) status changes from the system bei assigning an activity to the status change. That might be much easier for the user (and for you).
    After looking at and working with work centres I think it would be worth to install the neccesary patch level. It is really beneficial, for the user reporting a problem, as well as for your help desk monitoring their issues.
    Since it is a very common question, and Ruediger seems to be close to the source, can you (Ruediger) maybe provide some information how SAP is going to handle that in the future? Is SAP purely focussing on the work centers in Solution Manager, or is SAP planning on a track & trace possibility within the satellite system for the users?
    I guess there is no easy solution to your problem, but maybe I was able to provide some ideas how to provide more funtionality.
    Cheers
    Markus

  • Error creating Service Desk Message in Satellite System

    Hi all
    We have two satellite system from which I want to create a Support Message. With my current profile/role and can do it from one system and not from the other system. I get "Error in local message system, message xxx not complete". I dont think it is an Authotization fault, but not sure.
    How should the Number ranges be setup for more than one satellite system?
    Thanx
    Jaco Snyman

    Hi Tina
    This was my answer in a previuos thread:
    Hi all
    I also struggled with this for 2 weeks. But the problem is fixed.
    Do your "normal: config from the IMG and then:
    1) Make sure that you have selected for the system NOT to check for the User in SolMan
    tr: DNO_CUST04, Go to Detail, Select the field NO_USER_CHECK, "X", this is very important, otherwise you will have to create a username for everyone on the satellite system... far too timeconsuming.
    2) In your satellite system under OSS_MSG: Col1:Application: OSS_MSG, Col2: + : W. Col3: RFC Destination: SM_"SOLMANRFC"_BACK. Col4: + : CUST620. COl5: + : 1.0
    In the Solman side you maintain Col3 as "NONE".
    3) Make sure that ALL users in the satellite system has the following roles: SAP_SUPPDESK_CREATE and SAP_SV_FDB_NOTIF_BC_ADMIN.
    4) Make sure that you have TRUSTED RFC to and from your Satellite system and Solution Manager.
    The main one to be sure of is: SAP_ALL for all SOLMANxxx user in the Solution Manager system for every satelite system, because the standard roles from SAP does not work.
    This should have your Service Desk Messaging working.
    Jaco Snyman

  • Service Desk Message Creation Error on R3E System

    Dear Team ,
    We are not able to create the message from R3E System.Whenever we are
    creating the message from R3E Satellite system ,message is thrown "Error513 , No Message is not created in service Desk." At the same time, in
    CRM_DNO_Monitor on solution manager  system , I am able to see thismessage without external reference number. This solution manager is
    connected to 5 satellite systems where service desk message creation is
    working fine.
    This problem is occuring only with R3E & R3T System.and it might affect
    to R3P production servers also . Kindly look into this as urgent issue
    Message creations on R3E systems was working fine upto 12/4/2008.
    HR/ABAP/BASIS Patch Application activity was carried out on 17/4/2008 onR3E System.Kindly suggest if this has affected message creation.
    Regards,
    Pavan.

    Hi pavan,
    Pl check ,action profile assigned for the message type SLF1 (correct: SMSD_ABA_MLDG_SERVICEVORGANG or SLFN0001_STANDARD_DNO) is correct or not also check
    Number ranges are assigned correctly.
    Assign the points ...
    Regards
    Chandravilas
    Edited by: Chandravilas Sonawane on May 14, 2008 12:13 PM
    Edited by: Chandravilas Sonawane on May 14, 2008 12:25 PM

  • I need help highlighting an expiration date on my Numbers '09 spreadsheet. I want the text/fill of a cell to change color when the expiration date of an item is within 180 days of the current date.

    I need help highlighting cells on my Numbers '09 spreadsheet.  I want the cell text/fill to change color when the date is 180 days or less from the current date.  I already have a cell with the current date in it.  I also know how to change the fill/text colors.  All the cells have been formatted to show date only.  I am having trouble with the formula.  I can get to the Conditional Formatting menu and select "With Dates" but after that I am lost.  Can anyone help?
    Thank you for any assistance.
    B

    Set a Conditional Format rule as shown in the illustration below. The rule has been applied to all dates in column B of the table.
    Regards,
    Barry

  • I need help parsing a  swift data string

    i need to parse swift financial data
    is there a way to use split or stringtokenizer for ::
    and keep the :: as part of the new seperated data.
    i want to put each string starting with :: on a seperate line in a text box.
    i gave up and tried it with a loop and a stringbuffer , and indexof.
    if (line.indexOf("::") == Strpos ){
    frame.jTextArea1.append(displayline.toString());
    displayline = new StringBuffer();
    displayline.append(line.substring(Strpos, (Strpos + 2)));
    Strpos += 2;
    if (line.indexOf("::") != Strpos ) {
    displayline.append(line.substring(Strpos, Strpos + 1));
    System.out.println( displayline);
    Strpos++;
    but i cant get that to work either.
    if anyone knows how to parse swift data please give me your email address.
    i've been doing it in cobol for 15 yrs and i just cant get the cobol techniques to translate to java.
    thanks.

    as i said
    i am really a cobol guy
    and yes as you see i did try to use indexof in my code.
    but there must be something about indexof that i'm not getting.
    it works the first time in the loop but then as i increment my start position(strpos)
    the indsex of no longer works.
    am i using the correct technique to increment the start position thru the string buffer.
    thanks guys.

Maybe you are looking for

  • Solaris 8 on x86: been there, am back

    Just a quick opinion on my Solaris experience: it's as evil as Win2K when it comes to partitioning, except it's even harder (in my case not possible) to get lilo to boot Solaris, even on a primary partition... it's not quicker than Linux or FreeBSD,

  • Oracle 10g on Windows Server off-line database backup - a few questions

    I'd like to do an Oracle off-line backup every night. Please tell me what you think about my plan. First, run this batch file. set oracle_sid=PLDG C:\oracle\product\10.2.0\bin\sqlplusw.exe /nolog @c:\oracle\product\oradata\pldg\shutdb.sql C:\oracle\p

  • Spry accordian problems in IE

    I have created a website that uses the Spry accordian effect that has been modified to be used for sections for the site. I have tested it on all browsers however found out that the spry accordian doesn't work in Internet explorer. I have noticed the

  • Monitor to TV question

    Can you find a converter that will take you monitor and plug it into a cable TV box? So that you can watch TV on your monitor?

  • Non-window​s tcp/ip

    Hi, I have a PXI 8184RT with LabView Real time 8.0. Also a have an instrument called Insensys that sense fiber optics strain sensors and send me an array of double values by TCP/IP. I have developed a software that works properly when I run it in a w