Attachments View Error in FB03

Hi friends,
I've two documents for which i'm trying to view the attachments through FB03 and one of them is not working:
2980 1900042489 2011
2980 1900043902 2011  10/17
I am finding that older images linked prior to the October release get the www.werweabc.com link which the system is not finding and i'm not able to view the attachments.  However, newer documents get the www.sfgsdfksghf.com link and i'm able to view the attachments without any issues.
Iu2019m pretty sure the new link is built based on values from table ZURL.  The table has URLs for each client and systems such as it has the URL links for development, testing and production systems with P_SYSID and P_URL as the key fields.
The issue is, I donu2019t know where the http://werweabc.com ...Is coming from on the older docs.  Can any one tell where it is where it is coming from?
I've debugged the transaction code FB03, but could not find from where the documents prior to the october release are getting this older link. I've checked READ_LINKS method of class CL_BINARY_RELATION but no luck.
Please help. I'm looking on how to get the URL link for the old documents.
Thanks,
Shamim

I guess URL is created via GOS functionality.. Please read about GOS...
Nabheet

Similar Messages

  • How to view errors if bulk collect has thrown errors

    Hi,
    I have few questions.
    1.How to view error whether bulk collect is successful or not
    2.What is identified & unidentified relationships in ERWIN
    3.How to see the errors whether the sql loder is successful or not
    and how to open the log file.Is there any specific command in UNIX
    which tells loader is successful or thrown error
    4.When executing the pl/sql procedure from UNIX.how to check for errors.
    Please provide the answers for this
    Thanks

    Use SAVE EXCEPTIONS clause in your FORALL loop.
    Is this for homework/test?

  • Crystal Report Windows Forms Viewer Error in 1 Workstation after upgrade of PL

    Hi all,
    We just upgraded SAP from 8.82 PL02 to 8.82 PL15.
    Afterwards, in just 1 workstation, Crystal Reports layouts have Crystal Report Windows Forms Viewer error I attach.
    Before the upgrade this error did not happen.
    No permissions or authorizations were changed  in the workstation.
    The Crystal Reports layouts remain working fine in server and in the other workstations.
    In the workstation following are installed:
    - Operating System Windows 7;
    - Microsoft .NET Framework 4.5;
    - SAP Crystal Reports runtime engine for. NET Framework;
    - Crystal Report 2008 Runtime SP6;
    - Microsoft SQL Server 2008 R2 Native Client.
    All, but the operating system, are equal to the other workstations.
    User has edit access to SAP folders, temp and access to the attach path.
    We already uninstalled SAP client and client agent and re-installed it but with no avail.
    Can anyone help me?
    Thanks in advance.
    Best regards,
    Pedro Mariano

    Hi San Xu,
    Thank you for your input.
    However I'm facing problem with each software is suitable.
    I installed SAP Crystal Reports for SAP Business One (CR 2011 V14.0.4.738), but with no avail.
    Thanks in advance.
    Best regards,
    Pedro Mariano

  • Unable to display tree view; Error when parsing an XML document (Premature end of file.)

    Hi folks,
    I am using a cascaded mapping in my OM. I have a graphical mapping followed by the Java mapping. It is a flat file to IDOC mapping. Everything works fine in Dev but when I transport the same objects to QA, the Operation mapping though it doesn't fail in ESR testing tool, gives the following message and there is no output generated for the same payload which is successfully tested in DEV. Please advise on what could be the possible reasons.
    Unable to display tree view; Error when parsing an XML document (Premature end of file.)

    kalyan,
    There seems to be an invalid xml payload which causes this error in ESR not generating the tree view. Please find the similar error screenshot and rectify the payload.
    Mutti

  • JavaMapping in PI 7.1 Error:Unable to display tree view; Error when parsing

    hi,
    i get by testing in PI 7.1 (operation mapping) this ERROR:
    "Unable to display tree view; Error when parsing an XML document (Content is not allowed in prolog.)"
    this is my java-programm-code:
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import com.sap.aii.mapping.api.StreamTransformation;
    import java.io.*;
    import java.util.Map;
    import javax.xml.parsers.*;
    import org.xml.sax.*;
    import org.xml.sax.helpers.*;
    /*IMPORT statement imports the specified classes and its methods into the program */
    /Every Java mapping program must implement the interface StreamTransformation and its methods execute() and setParameter() and extend the class DefaultHandler./
    public class Mapping extends DefaultHandler implements StreamTransformation {
    Below is the declaration for all the variables we are going to use in the
    subsequent methods.
         private Map map;
         private OutputStream out;
         private boolean input1 = false;
         private boolean input2 = false;
         private int number1;
         private int number2;
         private int addvalue;
         private int mulvalue;
         private int subvalue;
         String lineEnd = System.getProperty("line.separator");
    setParamater() method is used to store the mapping object in the variable
    "map"
         public void setParameter(Map param) {
              map = param;
         public void execute(InputStream in, OutputStream out)
                   throws com.sap.aii.mapping.api.StreamTransformationException {
              DefaultHandler handler = this;
              SAXParserFactory factory = SAXParserFactory.newInstance();
              try {
                   SAXParser saxParser = factory.newSAXParser();
                   this.out = out;
                   saxParser.parse(in, handler);
              } catch (Throwable t) {
                   t.printStackTrace();
    As seen above execute() method has two parameters "in" of type
    InputStream and "out" of type OutputStream. First we get a new instance
    of SAXParserFactory and from this one we create a new Instance of
    SAXParser. To the Parse Method of SaxParser, we pass two parameters,
    inputstream "in" and the class variable "handler".
    Method "write" is a user defined method, which is used to write the
    string "s" to the outpurstream "out".
         private void write(String s) throws SAXException {
              try {
                   out.write(s.getBytes());
                   out.flush();
              } catch (IOException e) {
                   throw new SAXException("I/O error", e);
         public void startDocument() throws SAXException {
              write("");
              write(lineEnd);
              write("");
              write(lineEnd);
         public void endDocument() throws SAXException {
              write("");
              try {
                   out.flush();
              } catch (IOException e) {
                   throw new SAXException("I/O error", e);
         public void startElement(String namespaceURI, String sName, String qName,
                   Attributes attrs) throws SAXException {
              String eName = sName;
              if ("".equals(eName))
                   eName = qName;
              if (eName.equals("NUMBER1"))
                   input1 = true;
              if (eName.equals("NUMBER2"))
                   input2 = true;
         public void endElement(String namespaceURI, String sName, String qName)
                   throws SAXException {
              String eName = sName;
              if ("".equals(eName))
                   eName = qName;
              if (eName.equals("NUMBER1"))
                   input1 = false;
              if (eName.equals("NUMBER2"))
                   input2 = false;
         public void characters(char[] chars, int startIndex, int endIndex)
                   throws SAXException {
              String dataString = new String(chars, startIndex, endIndex).trim();
              if (input1) {
                   try {
                        number1 = Integer.parseInt(dataString);
                   } catch (NumberFormatException nfe) {
              if (input2) {
                   number2 = Integer.parseInt(dataString);
              if (input2 == true) {
                   addvalue = number1 + number2;
                   mulvalue = number1 * number2;
                   subvalue = number1 - number2;
                   write("" + addvalue + "");
                   write(lineEnd);
                   write("" + mulvalue + "");
                   write(lineEnd);
                   write("" + subvalue + "");
                   write(lineEnd);
    in developer studio 7.1 i dont get error.
    this happens by testing the mapping-programm in ESR.
    can somebody help me please?

    Make sure that the xml created out after the java mapping is a valid xml with only one root node.
    Regards,
    Prateek

  • Attachments view in IC webclient

    Hi all,
    I have a requirement to incorporate an 'Attachments' view in the IC webclient that I'm currently configuring. I would like to be able to attach documents to my Interaction Record while I'm creating it.
    I have not been able to find a View or Viewset for that in CRM_IC or IC_Base.
    Can I do that? Has anyone out there done it already?
    Currently, my only option is to use the Activity Monitor in the Navigation Bar.
    Regards,
    Jacques

    When you create the interaction and before ending the interaction, why not choose the document search nav button.  There you should be able to attach a document that is linked to your interaction.
    The next time anyone opens that interaction they will get a notification of the attached document(s).

  • Refresh Order Management Materialized Views errors out in R12.1.3

    Hi All -
    Refresh Order Management Materialized Views errors out in R12.1.3 when submitted with blank parameters. Please find below error details ..
    OEXITORDMV module: Refresh Order Management Materialized Views
    Current system time is 15-OCT-2012 11:30:29
    **Starts**15-OCT-2012 11:30:29
    ORACLE error 12008 in FDPSTP
    Cause: FDPSTP failed due to ORA-12008: error in materialized view refresh path
    ORA-01555: snapshot too old: rollback segment number 4 with name "_SYSSMU4_3768336236$" too small
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2566
    ORA
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Thanks,

    Cause: FDPSTP failed due to ORA-12008: error in materialized view refresh path
    ORA-01555: snapshot too old: rollback segment number 4 with name "_SYSSMU4_3768336236$" too small
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2566Please see old threads for the ORA-015555 docs you need to refer to.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=ORA-01555&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=ORA-01555+AND+Materialized+AND+View&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Smart View Error: Requested Operation Failed. Error: Java.lang.NullPointerE

    Hi All,
    I get the below error when i refresh a report from smartview.
    Small reports works fine but if the report is huge i get this error
    Smart View Error: Requested Operation Failed. Error: Java.lang.NullPointerE
    Smart View 11.1.2 MS OFFICE 2007 SP3
    Essbase 11.1.2
    Any pointers.
    Regards,
    Mink

    you mean i have to set below in essbase.properties of aps
    SET JAVA_OPTIONS=–Xms128m –Xmx1024m
    Regards,
    Mink

  • Event Viewer errors and warnings

    How do I clear Event Viewer errors and warnings?

    This one may help.
    http://technet.microsoft.com/en-us/library/cc722318.aspx
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Smart View error when opening Powerpoint files read-only

    Users are experiencing the following error when they open a Powerpoint file as read only. Using MS Office 2007 with Hyperion 11.1.2.1 Doesn't happen in edit mode. Error reappears every time user pages down to next slide. Quite annoying!
    Shape. Tags : Invalid request. Presentations cannot be modified.
    Has anyone experienced this issue and resolved it?
    Thanks,

    Source: My oracle support
    =============================================================================================================================
    Applies to:
    Hyperion Planning - Version: 11.1.2.1.000 and later [Release: 11.1 and later ]
    Information in this document applies to any platform.
    Symptoms
    In Smart View Version 11.1.2.1.000, when attempting to open a PowerPoint document that is already open by other user the following error occurs:
    ERROR : Shape.Tags: Invalid Request. Presentation cannot be modified.
    Cause
    This issue has been verified as Unpublished Bug 12418027: SMART VIEW ERROR : SHAPE.TAGS : INVALID REQUEST. PRESENTATION CANNOT BE MODIFIED
    The cause of the problem is that when a presentation is edited by another user, an exception will be thrown while trying to query the tags in the presentation from a different process.
    Solution
    This issue has been fixed in the Oracle Hyperion Smart View for Office, Release 11.1.2.0.000 Patch Set 1 (PS1): 11.1.2.1.102 Release.
    This patch is available via My Oracle Support:
    1. Log into the My Oracle Support portal.
    2. Choose the Patches & Updates tab.
    3. Enter the Patch Name or Number from the drop-down box.
    4. Perform a search for Patch:12968304 for your corresponding OS platform.
    5. The patch file includes both installers and the readme.
    Additional Information:
    Please refer to the patch readme for system requirements, dependencies, and installation instructions.

  • Event Viewer Error Reports

    How do I send all my event viewer error reports from 3/1/15 to the manufacturer of my computer? IN the event viewer window there seems to be a lock on opening submenu to perform a copy and paste or a SEND option available. I have a WINDOWS 8.1
    OPERATING SYSTEM.

    You should be able to right click on each indivudual log "App, Sec, Setup, System, etc" and click on Save all events as.

  • Event in "view error log"

    Hi,
    I am using sun web proxy server 4.0.3 for windows (windows 2000). I used 4.0.2 but I have got some problems with cpu usage (process usage 100 %...).
    We are using Etrust Antivirus and recently I have got some problems when I am downloading new signature. Sometimes I can download new signature sometimes not.
    In Server status, view error log, I have severals :
    "[08/Sep/2006:12:34:53] info ( 3520): CORE3282: stdout: gc channel: ftpav.ca.com anonymous:sunproxy@ "
    ftpav.ca.com is from where i'm downloading new signature.
    Anyone can help me to understand these messages ?
    Mems.
    PS: sorry for my english.

    I have the same problem with ftp. If I try to download the same file several times with help of ftp proxy, after third or fourth retry proxy rejects my connections.
    It writes the same line in error log, and file is not accessible anymore.

  • IDS Event viewer error

    Hi All
    Please help me out with this .I am getting attached IDS Event viewer error while trying to install it .Please let me know the probable causes and how to rectify the same
    Regards
    Ankur

    At what stage of installation are you seeing this error?
    It appears that a SSL certificate has expired, or an applet has a digital signature based on a certificate that has recently expired.
    If you can provide recreation steps then we can figure out what certificate is expiring, and determine the next steps in resolving your issue.
    Without knowing anything else my best guess at this point is that the SSL certificate on your sensor has expired. If the sensor has been deployed in your network for over a year, then this jsut could be the standard expiration of the SSL certificate on your sensor. Try conneting from a web browser directly to your sensor. When your web browser connects it should warn you if the sensor certificate is expired. If this is the case then ssh or telnet to the sensor and execute: "tls generat-key" to enforce the creation of a new SSL certificate for your sensor.
    If the error is not from an expired SSL certificate, then it is from other certificate or digital signature and we will need to try and recreate in our lab.
    Once you provide us with re-create steps, then there is something you might try for a short term solution as we try to re-create.
    You might try setting the date/time on your PC to a few days ago. The certificate appears to have expired on April 23rd so setting it back to April 20th may make the error go away. I am not positive this will work, but may be worth a shot if you need access immediately and can't wait a day or 2 as analysis is done. This is not a permanent solution and would just be a temporary workaround as we try to analyze what certificate is expiring.

  • Viewing errors resulting from automated user replication

    hi guys
    pls tel me how to view errors resulting from automated user replication
    regards
    kamal

    Does it not appear in default trace?

  • Protected View Error "The file is corrupt and cannot be opened"

    All 
    I have a problem with Protected View in Office 2010 on Windows 7.
    Symptom:  When downloading a file from the Internet, the file will not open if launched directly from the source location, or saved locally and then opened.  This
    is impacting both Word and Excel.  I haven’t tested other applications.  The user gets the error "The file is corrupt and cannot be opened.".
    Expected behaviour:  Documents should open in Protected View because they are coming from an untrusted zone (Internet Zone).
    Troubleshooting Results:
     -      If I turn off Protected View the error goes away and the documents open without
    issue (but not in Protected View obviously)
    -      If I save the file locally, then copy it to a network drive, the problem goes away (because the zone information is changed?).
    -      If I save the file directly to a network location, then open it, the problem does not impact me (also doesn’t open in Protected View)
    -      If I repair Office the problem is NOT fixed
    -      If I reinstall Office the problem is NOT fixed
    The problem doesn't impact all machines, but any new machine I build suffers the problem.  All Protected View options are set by group policy and all machines are getting the correct settings.
    -       The setting “Enable Protected View for files originating from the Internet” is enabled
    -       The setting “Enable Protected View for files located in potentially unsafe locations” is enabled
    -      The setting “Enable Protected View for Outlook attachments” is enabled
    -      Enable Data Execution Prevention mode is enabled
    Has anyone seen this problem or can anyone offer suggestions of where to start looking for the root cause?  There are lots of postings on this around the various Internet forums, but most
    just suggest turning off Protected View, that is not a valid solution to my mind, Protected View is there for a very sound reason and it is not something I'm willing to turn off, especially when it is working on some machines as expected.
    Thanks.
    James.

    Thanks for coming back, James, and I'm glad you've found the source of your
    problem.
    As an aside, I had no idea HP made software like that and will take a look
    at it - or would if I could. Personally, although I love their hardware, I
    wouldn't touch HP software, and the fact that their web page doesn't load
    (in IE8) just reinforces my feeling.
    Enjoy,
    Tony
    www.WordArticles.com
    "jsc.19" wrote in message news:f9aaa05d-ad62-4f0e-96e1-6bbeb4c7098d...
    > Will, thanks for taking the time to post some suggestions. I understand
    > Protected View perfectly well and my post is because Protected View is not
    > behaving as it should. I think my dot points above show this, still,
    > thanks for taking the time to post. I think Tony is more on track with
    > his questions around what has changed in my build, and this is the area
    > I've focused on over the few days since posting.
    >
    > I've pulled my build apart and put it back together and found the issue.
    > This was tedious to say the least, but turned out worthwhile. A program
    > we used called Trim Context Desktop
    > (http://h71028.www7.hp.com/enterprise/w1/en/software/information-management-trim.html)
    > is part of our SOE. This is a records management tool, but we only use a
    > small feature set, and all the Office integration options that can be
    > configured during install are turned off, but it turns out that the
    > application still impacts Office. If I uninstall the Trim client from our
    > SOE, Office Protected View starts working as expected. We knew the full
    > Trim suite wasn't ready for Office 2010, but assumed, wrongly, that since
    > we didn't use the Office integration features we were OK. All our testing
    > was around the application and it works fine, I just didn't connect it to
    > the Office issues until systematically eliminating changes from the SOE
    > build. Keep a log of your changes!!! It helped me reverse things until I
    > found the problem.
    >
    > Uninstalling Trim also fixes and issue I had in Outlook where the
    > previewers wouldn't display Office documents, reporting that the
    > previewers were not installed.
    >
    > We will go to HP to get some support and advice around this before putting
    > Trim back in to the SOE.
    >
    > Anyone - if you have similar problems, can I suggest you look at all your
    > Office add-ins and also any applications that may potentially hook in to
    > Office.
    >
    > Cheers all.
    >
    > James.
    >
    >
    >
    Enjoy,
    Tony
    www.WordArticles.com

Maybe you are looking for

  • Selecting one of multiple midi inputs in Garageband

    Hi, I've connected an M-Audio Midisport 4X4 to my powerbook G4 and am trying to control the synths in Reason Adapted at the same time as a synth in Garageband, in order to play them together. Does anyone know how to select the midi input in Garageban

  • How to reference the properties used in different file in ant

    Hello, in my build.xml : <?xml version="1.0" encoding="UTF-8"?> <project name="name of project" basedir=".">      <property file="build.properties"/> <target name="all" depends="clean,compile" description="Clean build and then compile"> <jar jarfile=

  • WAN IP (or lack of)

    I ditched my old DLink router to get a shiny Linksys WRT54GX4, and got nothing but disconnects ever since. From reading these forums it seem to be a real issue with a lot of peoplewith this series of routers. Do I need to return this while I still ha

  • EBS Relinking error

    Hi Hussein/helios, I am applying patch 7303033 for our new setup EBS R12.1.1 64bit OEL5.3. But I encountered this error: Starting  link of product 'fem' on Fri Feb 26 16:05:15 PHT 2010 Current product is  fem Current product _TOP is  $FEM_TOP Current

  • Adobe Reader 11 install failure

    I download Adobe Reader 11 to my XP machine.  When I run the .exe file is just deletes itself and then shuts down.  No trace of it ever existed. Have tried many downloads.