ST22 Dump - Need to find associated proxy XML

Hi,
I need to find the inbound proxy call (xml message), which has caused the ST22 dump. Can any of you tell me whether the transaction id or any other values from ST22 can be used to track the message unique?
Thanks,

HI Joe,
for any proxy call either inbound or outbound, you will find all the processed the messages in the SXMB_MONI transaction.
the messages which are processed successfully has the status and processed successfully but if there is any problem during the processing of message because of program dump then this message remains in the green flagged status. hence try to find out the green flagged status and check the error log for the same. you will find out the exact error message which is appearing in ST22.
you can also try to check the queue using smq2 transaction , if there is any dump while processing the message the followeing messages are got stuck as long as you are not deleting the first messages. from there also you can see the erroneous XML data.

Similar Messages

  • Where do I find my proxy settings.

    I need to find my proxy address.

    Firefox for Android proxy settings are hidden:
    #Open about:config in the url bar.
    # Enter “proxy.http” into the search box on the about:config page.
    # Tap Modify on “network.proxy.http” and type the proxy server name/ip address into the text box.
    # Tap Modify on “network.proxy.http_port” and type the port number into the number box.
    #Enter “network.proxy.type” and enter 1
    #Restart Firefox.
    Another way to manage this on the device is from an app in the Google play store with more features and nobs and whistles.
    Managed by an add on [https://addons.mozilla.org/en-US/mobile/search/?q=proxy&platform=all&appver=35.0] -too bad Mobile Proxy is no longer available

  • Need to find the assets associated to a BCC project using SQL query

    Hi,
    Given a BCC project (project_id), I need to find the assets (type of asset, version, status etc) in that project using SQL queries.
    I need this for reporting purpose and cannot do this programatically using any code.
    Surprisingly ATG does not store this association in a direct way. Can someone provide me the query if you have already done this before?
    I tried enabling loggingDebug in PublishingRepository and VersionManagerRepository to get the queries, but I did not get what I want.
    Thanks in advance,
    Gopinath Ramasamy

    UPDATE:
    When a project is selected in BCC, ATG is doing something crazy, as it appears to me, of querying all the tables (ofcourse when there is a cache miss) in all the versioned item descriptor with the workspace id of the project to display the assets contained in it.
    I do not see an easy or direct way of coming up with a query for this requirement.
    Please let me know if anyone has any other idea.
    Thanks,
    Gopinath Ramasamy

  • I need to find all XML elements and add a line break to the text of each of them

    I need to find all XML elements and add a line break to the text of each of them.
    Is this possible with a script?

    I need to go from this ...
    to this...
    but looking for the XML elements (not paragraphs) and then adding text ...
    Thanks for your attention !!!

  • St22 Dump in Mail

    Dear All,
    I want to configure the St22 dump in mail , With criteria if Mail is more than 150 in a day it should send a mail.Please Let me know the steps need to be done.
    RK

    Hello Rableen,
    in RZ20 there are several MTEs, where dumps are catched, for example, ABAP dumps are displayed under:
    RZ20 --> SAP CCMS Monitor Templates
                   --> Entire System
                        --> <SID> --> Application Server
                             --> <instance> --> R3Abap
    and here you have these MTEs
    You can configure threshold values in the properties of MTE "Shortdumps Frequency" and assign an autoreaction method.
    But this MTE is only for ABAP dumps. Other type of dumps you can find as described in KBA:
    1942651 - RZ20 does not display shortdumps
    but there is no such monitor in RZ20, which cathes all dumps from ST22 in one MTE.
    Regards,
    Alwina

  • Need to generate a Index xml file for corresponding Report PDF file.

    Need to generate a Index xml file for corresponding Report PDF file.
    Currently in fusion we are generating a pdf file using given Rtf template and dataModal source through Ess BIPJobType.xml .
    This is generating pdf successfully.
    As per requirement from Oracle GSI team, they need index xml file of corresponding generated pdf file for their own business scenario.
    Please see the following attached sample file .
    PDf file : https://kix.oraclecorp.com/KIX/uploads1/Jan-2013/354962/docs/BPA_Print_Trx-_output.pdf
    Index file : https://kix.oraclecorp.com/KIX/uploads1/Jan-2013/354962/docs/o39861053.out.idx.txt
    In R12 ,
         We are doing this through java API call to FOProcessor and build the pdf. Here is sample snapshot :
         xmlStream = PrintInvoiceThread.generateXML(pCpContext, logFile, outFile, dbCon, list, aLog, debugFlag);
         OADocumentProcessor docProc = new OADocumentProcessor(xmlStream, tmpDir);
         docProc.process();
         PrintInvoiceThread :
              out.println("<?xml version=\"1.0\" encoding=\"UTF-8\" ?>");
                   out.print("<xapi:requestset ");
                   out.println("<xapi:filesystem output=\"" + outFile.getFileName() + "\"/>");
                   out.println("<xapi:indexfile output=\"" + outFile.getFileName() + ".idx\">");
                   out.println(" <totalpages>${VAR_TOTAL_PAGES}</totalpages>");
                   out.println(" <totaldocuments>${VAR_TOTAL_DOCS}</totaldocuments>");
                   out.println("</xapi:indexfile>");
                   out.println("<xapi:document output-type=\"pdf\">");
    out.println("<xapi:customcontents>");
    XMLDocument idxDoc = new XMLDocument();
    idxDoc.setEncoding("UTF-8");
    ((XMLElement)(generator.buildIndexItems(idxDoc, am, row)).getDocumentElement()).print(out);
    idxDoc = null;
    out.println("</xapi:customcontents>");
         In r12 we have a privilege to use page number variable through oracle.apps.xdo.batch.ControlFile
              public static final String VAR_BEGIN_PAGE = "${VAR_BEGIN_PAGE}";
              public static final String VAR_END_PAGE = "${VAR_END_PAGE}";
              public static final String VAR_TOTAL_DOCS = "${VAR_TOTAL_DOCS}";
              public static final String VAR_TOTAL_PAGES = "${VAR_TOTAL_PAGES}";
    Is there any similar java library which do the same thing in fusion .
    Note: I checked in the BIP doc http://docs.oracle.com/cd/E21764_01/bi.1111/e18863/javaapis.htm#CIHHDDEH
              Section 7.11.3.2 Invoking Processors with InputStream .
    But this is not helping much to me. Is there any other document/view-let which covers these thing .
    Appreciate any help/suggestions.
    -anjani prasad
    I have attached these java file in kixs : https://kix.oraclecorp.com/KIX/display.php?labelId=3755&articleId=354962
    PrintInvoiceThread
    InvoiceXmlBuilder
    Control.java

    You can find the steps here.
    http://weblogic-wonders.com/weblogic/2009/11/29/plan-xml-usage-for-message-driven-bean/
    http://weblogic-wonders.com/weblogic/2009/12/16/invalidation-interval-secs/

  • Can no longer see projects in library viewer in imovie '08 and need to find a different apple editing program

    Can no longer see projects in library viewer in imovie ’08 and need to find a different apple editing program
    I had approximately 15 projects that I can no longer see in imovie. I have read almost every thread on this community for imovie regarding error messages associated with looking for clips. In each case I have rebuilt the project.  However, today I continually received a message to search for a .dv file. I have located the file and even changed the .dv file to .mov file and yet none of my projects will appear. I have rebooted, deleted the plist and nothing works.
    I was planning on buying a new Mac in 2014 with new editing, and use my old Mac as a backup for imovie files. Very frustrated that I can’t work with any projects now! I se the files in my Movies/imovies/iprojects folder but they don’t appear in the viewer.
    Does anyone have a suggestion on how to get back my projects into the viewer? Or, can someone recommend a basic program compatible with imovie 08 that I can use to import my exiting projects into?

    No, Wasn't sure if I could continue to upgrade to 9.0.9 since my Mac is relatively old.
    Just don't understand why I have to keep starting a project over and over again. As I type this, the imovie icon is jumping and asking for "clip 135-02-05-05;27:15" cannot be found. Without this file, the movie cannot play properly."  I have located this clip and pointed imovie to the clip, and nothing happens. I even try to locate the corresponding clip in the event viewer but it is not there.
    Today is the first time I have not been able to see my projects in the viewer.

  • Need suggestion about a fast XML parser

    I have a program which needs to parse lots of XML files of sizes varing from few MBs to hundreds of MBs. It needs to parse the file in one-pass, and for which the SAX approach is best suited. I initially tried coding this program using the SAX parser provided by Java library, but it takes way-way too much time to parse the files. I then googled out Piccolo XML Parser, but it throws ArrayIndexOutOfBound exception. Furthermore, sometimes XML files could terminated prematurely.
    Can you suggest any SAX XML parser for this job?

    I am pasting here a trimmed version of my code..... sorry this is not the simplified and complete in itself version as the norm is.
    public Vector<String> search(String dumpfile, String srfor, int type, long size, boolean showTTH, boolean phpSerialize, String hubname) {
         Vector<String> results = new Vector<String>();
         try {
             SAXParserFactory factory = SAXParserFactory.newInstance();
             SAXParser parser = factory.newSAXParser();
             BufferedInputStream ubin = new BufferedInputStream(new FileInputStream(dumpfile));
             ubin.read(new byte[2]); //To discard the starting BZ flag.
             CBZip2InputStream bin = new CBZip2InputStream(ubin);
             String line = null;
             int c=0;
             line = "";
             while((c=bin.read())!='\n' && c!=-1) line = line + (char) c;
             String dnt = line;
             if (c==-1){// (line == null){
              dnt="";
              return null;
             line = "";
             while((c=bin.read())!='\n' && c!=-1) line = line + (char) c;
             if(c==-1)// (line == null)
              return null;
             if (!phpSerialize)
              results.add("Dump's Date and Time stamp: " + dnt + "\n==========================\n"+"hubname: " + line);
             else
              results.add("$" + dnt +"\n"+"|" + line);
             if(hubname!=null && !line.trim().toLowerCase().contains(hubname.toLowerCase().subSequence(0, hubname.length()))){
              results.add("No hits.");
              return results;
             while((c=bin.read())!='\n' && c!=-1);
             FilelistHandler handler = new FilelistHandler(srfor,type,size,showTTH,phpSerialize,hubname,results);
             try{
              parser.parse(bin, handler);
             }catch(org.xml.sax.SAXParseException saxe){
              saxe.printStackTrace();
             if(results.size()==1){
              results.add("No hits.");
         } catch (FileNotFoundException e) {
             // TODO Auto-generated catch block
             e.printStackTrace();
         } catch (IOException e) {
             // TODO Auto-generated catch block
             e.printStackTrace();
         } catch (ParserConfigurationException e) {
             e.printStackTrace();
         } catch (SAXParseException e) {
             // TODO Auto-generated catch block
             e.printStackTrace();
             System.err.println("Line: "+e.getLineNumber()+"; Col:"+e.getColumnNumber());
         } catch (SAXException e) {
             // TODO Auto-generated catch block
             e.printStackTrace();
         return results;
    private class FilelistHandler extends DefaultHandler {
         static final int USER = 0;
         static final int FILE = 1;
         static final int DIR = 2;
         static final int ANY = 3;
         static final int UNKNOWN = 4;
         private Vector<String> results;
         Vector<String> dirs = new Vector<String>();
         private String srfor;
         private int type;
         private int level = -1;
         private long size;
         private boolean showTTH;
         private boolean phpSerialize;
         private String hubname;
         private String currentUser;
         private String currentIP;
         public FilelistHandler(String Srfor, int Type, long Size, boolean ShowTTH, boolean PhpSerialize, String Hubname, Vector<String> res) {
             srfor = Srfor.trim().toLowerCase();
             type = Type;
             size = Size;
             showTTH = ShowTTH;
             phpSerialize = PhpSerialize;
             hubname = Hubname;
             results = res;
         public void startElement(String uri, String lname, String qname, Attributes attrs) throws SAXException {
             String result = null;
             long currsize = 0L;
             String TTH = "";
             String value = "";
             int currType = UNKNOWN;
             if (qname.equalsIgnoreCase("Directory")) {
              value = attrs.getValue("Name");
              dirs.add(attrs.getValue("Name"));
              currType = DIR;
             } else if (qname.equalsIgnoreCase("user")) {
              currentUser = attrs.getValue("username");
              currentIP = attrs.getValue("ip");
              currType = USER;
             } else if (qname.equalsIgnoreCase("File")) {
              value = attrs.getValue("Name");
              currsize = Long.parseLong(attrs.getValue("Size"));
              TTH = attrs.getValue("TTH");
              currType = FILE;
             if (currType == FILE || currType == DIR) {
              // Searching.
              boolean found = false;
              result = currentUser + ":" + currentIP + ":" + (currType == FILE && showTTH ? TTH + ":" : "") + getPwd(dirs);
              if (result.trim().toLowerCase().contains(srfor.subSequence(0, srfor.length())) || currType == FILE && TTH.equalsIgnoreCase(srfor)) {
                  found = true;
              if (type != ANY && currType != type)
                  found = false;
              if (size >= 0 && currType == FILE)
                  if ((size == 0 && currsize != size) || (size != 0 && (((double) (Math.abs(currsize - size))) / size) > 0.1))
                   found = false;
              if (found) {
                  if (!phpSerialize) {
                   if (currType == FILE)
                       result = result + "/" + value;
                  } else {
                   int index = 0;
                   result = serializeEntity(index++, currType == FILE ? "f" : "d");
                   result = result + serializeEntity(index++, currentUser);
                   result = result + serializeEntity(index++, currentIP);
                   if (currType == FILE && showTTH)
                       result = result + serializeEntity(index++, TTH);
                   result = result + serializeEntity(index++, getPwd(dirs));
                   if (currType == FILE)
                       result = result + serializeEntity(index++, value);
                   result = "a:" + index + ":{" + result + "}";
                  results.add(result); // ADDING THE RESULT.
         public void endElement(String uri, String lname, String qname) throws SAXException {
             if (qname.equalsIgnoreCase("Directory")) {
              dirs.remove(dirs.size() - 1);
         private String getPwd(Vector<String> dirs) {
             String pwd = "";
             for (String dir : dirs) {
              pwd = pwd + "/" + dir;
             return pwd;
         private String serializeEntity(int index, String s) {
             return "i:" + index + ";s:" + s.length() + ":\"" + s + "\";";
         public Vector<String> getParsedData() {
             return results;
        }

  • Need to create ABAP proxy in ECC 6.0

    Hi All,
              I need to create Abap proxy in ECC 6.0 .Tha actual senerio is iam getting data from XI in XML format and i need to validate and update the date in the ZEE table fields respectively.i need to Modularize the class and keep the validation part separate. we should do validation framework for custom Master Data objects which can be turned On and Off. This can be used as a common framework for all master data validations.can any one guide me how to create abap proxy from staring till end ...Thanks in advance ...
    Regards,
    SRIram

    Hi,
    I got these below steps from SDNforumonly ..i do not have the link however i have the steps:
    1.check Delivered Languages service.sap.com/languages.
    2.check note 42305
    3.In transaction SMLT , Choose Classify Language (Language symbol or F5 )
    4.Supplement this language with English or German (Recommended)
    5.The language must be defined in the instance profiles so that you can log on in these languages. The relevant parameter is
    zcsa/installed_languages.
    6.Go to the language for which you want to install extra packages and choose or choose Language --> Import Package
    7.in the next screen , enter the path for language packages.
    8.start immediately or schedule it .Optionally you can use the target server to exceute this ( to avoid performance issues
    ,if you are importing in production timings, and you cna exculde this server from logon group )
    9.if any problems in importing then analyze the log and restart the import .
    10.After importing the languages, you must also import the language data in the Support Packages.Choose Language --->
    Special Actions ---> Import Support Packages
    11.Go to the language that you want to supplement and choose or Language ---> Supplement Language(this is client specific ,
    so execute for each client in your system)
    And also to the above if your system is running on non unicode you need to install the code pages (example AIX locale command) .
    Thanks.

  • ST22 Dumps in ECC pushed to Slution Manager

    Hi,
    We have a ECC6.0 and Solution Manager in our system.
    I wanted to configure that if a ST22 Dump occurs in ECC 6.0, the ST22 dump should be pused to the Solution Manager and i should be able to view it through the Solution Manager.
    Please let me know whether it is possible or anyone has done it

    Dear andreas,
    You will not be able to see ST22 dumps in solution Manager. You can see dumps in Solution Manager Diagonstics.. for that you need to configure SMD agents on satelite system and SMD on solution Manager...
    also if you just want to get alerts .. you can configure.. CCMS RZ20 and use solution manager as central system..
    search in help.sap.com for more info..
    Let me know if you require any furher info..
    Regards,
    akhilesh

  • I would like to upgrade my firefox but when I do it cannot find the proxy server

    When I try to up grade to the new firefox 5.o from the 3.5 I currently have it cannot find my proxy server and I do not know how to fix this

    In current Firefox versions the default connection settings are set to "Use the system proxy settings".
    You can find the connection settings in Tools > Options > Advanced : Network : Connection<br />
    If you do not need to use a proxy to connect to internet then select "No Proxy"
    See "Firefox connection settings":
    * [[Firefox cannot load websites but other programs can]]
    * [[Server not found]]

  • Cannot find the proxy server even after following the advice in the help section

    I successfully downloaded the latest version but I cannot connect to the internet. I get a "cannot find the proxy server" prompt. I have followed the advice in the help section but nothing seems to work.

    You can check20the connection settings here:
    *Tools > Options > Advanced : Network : Connection > Settings
    If you do not need to use a proxy to connect to internet then select "No Proxy" if the default "Use the system proxy settings" setting doesn't work.
    See "Firefox connection settings":
    *https://support.mozilla.com/kb/Firefox+cannot+load+websites+but+other+programs+can

  • Need help finding proper page for Extending OA Framework

    I am using OAF 11.5.10 CU2. We have a requirement to modify the table that shows on the OTL timecard notification. This is what shows when u go to the "Worklist Timecard Approval" responsibility and select the notification with type of "OTL Workflows for Employees". The table contains project number, we want to change that to project name. We also need to add a custom comments field.
    When I go thru the "Extending OA Framework Applications" documentation it shows me how to find the page to export from the MDS repository. However, when I do that it doesn't contain the Timecard Entries table as expected. The page I exported was /oracle/apps/fnd/wf/worklist/webui/NotifDetailsPG, as the "About this Page" shows.
    Please help me find the proper xml page to extend for this requirement.

    t looks like it does creates the web bean dynamically. This is the controller code that gets fired when the details button is selected, which is the timecard details.
    if(s9.equals("Detail"))
    oapagecontext.removeSessionValue("TimecardBlockCount");
    oapagecontext.removeSessionValue("TimecardAttributeCount");
    flag = false;
    GlobalUtilities.putSessionValue(oapagecontext, "FOOTER", "detail");
    oapagecontext.putSessionValue("TimecardMode", "TIMECARD-REVIEW");
    oawebbean.addIndexedChild(createWebBean(oapagecontext, oawebbean, "Hxctimecard"));
    So How would I know how to find this web bean to make the changes?

  • Where do i find com.sun.xml

    Hi,
    i need to import com.sun.xml package but i get an error message: The import cannot be resolved. Evidently i miss some API. Where do i find it.
    Thanks in advance.

    Hi,
    i need to import com.sun.xml package but i get an
    error message: The import cannot be resolved.
    Evidently i miss some API. Where do i find it.
    Thanks in advance.It's a good thing you can't find it anyways, because it is not a standard class. Nothing from com.sun.* should be directly used - only java.*, javax.* (and other names that come with the JRE), your own packages, and true 3rd-party packages. com.sun.* doesn't fit any of those categories, they're internal classes (I'm pretty sure anyway).

  • How can I read st22 dump in ABAP

    hello,
    i would like to know if st22 dump info could be read via FMs or Classes. I found a class CL_DUMP_INFO_MANAGER, btu well could not find documentation on it usage. Will be glad if someone can tell me how to retrieve St22 info.
    - Harish

    Hi,
    Try the fun module
    RS_ST22_GET_DUMPS
    to get the dump results.
    other related fun modules are:
    RS_ST22_GET_DUMPS_CATEGORIES
    RS_ST22_GET_DUMP_CATEGORY
    RS_ST22_GET_DUMP_CATEGORY_TEXT
    reward if useful
    regards,
    Anji

Maybe you are looking for

  • Ipod touch library restore! HELP PLEASE!

    Someone help please! I have an ipod touch, my pc stoped working so my entire library got erased. Is it possible to somehow bring up my old library on my newly restored computer? -Im using the same computer now as I was when I had my original itunes l

  • Make command not available error

    I want to create an action that will apply a set of color adjustment layers to an existing selection in a group. IE. I want to create a group with a selection mask that contains several color type adjustment layers. THis is what I did: Make a selecti

  • Menu size and button viewing

    I've been using FCS2 for quite awhile with no problem with DVDSP. I had to clean install my system, so decided to upgrade to the latest versions, which for DVDSP was 4.2.1. (OS 10.5.2 at the time) When I opened the new version of DVDSP for the first

  • Best Practices: Flash Player 10.1 and Flash Lite 4

    I've found the documentation for Flash Lite 4.  It appears to support most everything you'd want to do in AS3, aside from some desktop-specific APIs like Clipboard, File, ContextualMenu, etc.. I've also noticed that there's a Flash Lite 4 compile tar

  • CS3 Design Premium reinstall problems - Windows 7

    I've just upgraded from a Windows XP system that had CS3 Design Premium installed (years ago) to a new Windows 7 PC. Most of my installed applications made the transition smoothly using LapLink's PCmover, but not CS3.  I spent much of my day today on