Attachment error: Object Link type   in UWL

Hi,
This is regarding the UWL - opening the attachment.
we have integrated the solution manger to the Enterprise portal where
the workflow tasks of the solution manager will be displayed in the UWL
of the Enterprise portal.
The workitems are displayed properly, but when we try to see the actual
work item attachment it is giving error as follows:
"Attachment error: Object Link type . See log file for details "
The detailed error we have taken from the UWL.log, which displays as
follows:
" Mon Mar 12 20:45:42 GMT+05:30
2007:com.sap.netweaver.bc.uwl.core.connect.webflow.util.ObjectLinkException: Mon Mar 12 20:45:42 GMT+05:30 2007 CRM Context service has not
been installed "
The URL which goes like this:
http://ep6devn:50000/irj/servlet/prt/portal/prtroot/com.sap.netweaver.bc.uwl.ui.UWLInformation?key1=AttachmentError&key1_param1= Object Link type .
Similarly if we try to open the same attachment in solution manager by
logging at SAP-GUI frontend i.e. through Tcode:SBWP and selecting the
workitem, choosing the objects and attachments. it is displaying the
actual message.
Enterprise portal current status: EP 6.0 NW2004-SP16
Solution manager status: SOlution manager 4.0 NW2004s-SP8
Help me in solving this.
Thanks and Regards
Yaswanth kumar P

Hi Yeshwanth,
      Can u please share the document how to configure Solution Manager with  UWL of portal.
      Please share the document as u can.
Regards,
kishore.

Similar Messages

  • Attachment error: Object Link type

    Hi,
    This is regarding the UWL - opening the attachment.
    we have integrated the solution manger to the Enterprise portal where
    the workflow tasks of the solution manager will be displayed in the UWL
    of the Enterprise portal.
    The workitems are displayed properly, but when we try to see the actual
    work item attachment it is giving error as follows:
    "Attachment error: Object Link type . See log file for details "
    The detailed error we have taken from the UWL.log, which displays as
    follows:
    " Mon Mar 12 20:45:42 GMT+05:30
    2007:com.sap.netweaver.bc.uwl.core.connect.webflow.util.ObjectLinkException: Mon Mar 12 20:45:42 GMT+05:30 2007 CRM Context service has not
    been installed "
    The URL which goes like this:
    http://ep6devn:50000/irj/servlet/prt/portal/prtroot/com.sap.netweaver.bc.uwl.ui.UWLInformation?key1=AttachmentError&key1_param1= Object Link type .
    Similarly if we try to open the same attachment in solution manager by
    logging at SAP-GUI frontend i.e. through Tcode:SBWP and selecting the
    workitem, choosing the objects and attachments. it is displaying the
    actual message.
    Enterprise portal current status: EP 6.0 NW2004-SP16
    Solution manager status: SOlution manager 4.0 NW2004s-SP8
    Help me in solving this.
    Thanks and Regards
    Yaswanth kumar P

    It seems to be some Basis Issue. May be something from Basis or security side needs to be done. We had experienced such issues previously. The basis team can resolve this.
    <b>Please reward Points if useful</b>
    Thanks
    Arghadip

  • Invoke Web service - WSDL error "Object of type 'System.Int32' cannot be converted to type 'System.UInt64'."

    Hello,
    I'm having a problem when I try to load the WSDL file for the "Invoke Web Service" activity.
    I'm trying to create a connection between Orchestrator 2012 R2 and Cisco Unified CM through a Web Services. When I click the WSDL file and I click the "Format Hint" button appears the following error "Object of type 'System.Int32' can not be
    converted to type 'System.UInt64'."
    The WSDL file that Cisco Unified CM I exported another work tools, tested and working well. In Orchestrator just gives the error.
    Can anyone help with this?
    Thank you
    Rui

    Hi,
    You're going to have to use Get-AzureVM to get your specific VM object and then pipe it into Add-AzureDataDisk. See the examples here:
    http://msdn.microsoft.com/en-us/library/windowsazure/dn495298.aspx
    Don't retire TechNet! -
    (Don't give up yet - 12,575+ strong and growing)

  • Flexunit + Parsley - re-creating error: "Object of type is already managed"

    Hello,
       This may sound a bit strange but I'm trying to force an "Object of type is already managed" error to recreate a bug we had in our app for
       flexunit testing purposes.   The problem arised when we upgraded to FB 4.5 and had a double parsley configuration in a popup launched from a module.
       Here's my flexunit test:
    [code]
    [Test]
    public function testReportsPrintDialog1():void
              rpDialog = new ReportsPrintDialog();
              //attempting to forcibly re-create the project-70 bug:
              //"Object of type reportsDirectoryModule.views::ReportsPrintDialog is already managed"
              childContext.viewManager.addViewRoot(reportsDirectoryBase);
              childContext.viewManager.addViewRoot(rpDialog);
              trace("rpDialog: " + GlobalState.objects.isManaged(rpDialog));
              trace("reportsDirectoryBase: " + GlobalState.objects.isManaged(reportsDirectoryBase));
              rpDialog.addEventListener(FlexEvent.CREATION_COMPLETE, onCreationComplete, false, 0, true);
              PopUpManager.addPopUp(rpDialog, DisplayObject(FlexGlobals.topLevelApplication));
    [/code]
    Unfortunatly, my attempts at 'forcing' the extra parsley object managment by using addViewRoot is not reproducing the error.
    In my test suite I am setting up my main and module scoped parsley context in the next code snippit and it has
    been working very well for other tests so far. Here's the context setup code:
    [code]
    import reportsDirectoryModule.parsleyConfig.ParsleyConfig;
    public var context:Context;
    public var childContext:Context;
    //create base TDMSE parsley context
    this.context = ContextBuilder.newBuilder()
              .config(FlexConfig.forClass(TDMSEAppParsleyConfig))
              .object(this)
              .build();
    this.childContext = ContextBuilder
              .newSetup()
              .parent(context)
              .newBuilder()
              .config(FlexConfig.forClass(reportsDirectoryModule.parsleyConfig.ParsleyConfig))
              .build();
    [/code]
    The ReportsPrintDialog actually inherits from a base popup class called ReportsDirectoryBase which has this parsley declaration:
    [code]
    <s:TitleWindow xmlns:fx="http://ns.adobe.com/mxml/2009"
                                            xmlns:mx="library://ns.adobe.com/flex/mx"
                                            xmlns:s="library://ns.adobe.com/flex/spark"
                                            xmlns:parsley="http://www.spicefactory.org/parsley"
                                            skinClass="common.skins.TitleWindowSkin">
              <fx:Declarations>
                        <parsley:ContextBuilder id="childContext"
                                  parents="{app.module.getContext()}" domain="{app.applicationDomain}"/>
                        <parsley:Configure />
              </fx:Declarations>
              <fx:Script>
                        <![CDATA[
                                  import mx.core.FlexGlobals;
                                  [Bindable]
                                  private static var app:Object = FlexGlobals.topLevelApplication;
    [/code]
    And the 'Object of type is already managed' exception was because ReportsPrintDialog had the following Configure declaration:
    [code]
    <rdv:ReportsDirectoryBase xmlns:fx="http://ns.adobe.com/mxml/2009"
                                            xmlns:s="library://ns.adobe.com/flex/spark"
                                            xmlns:mx="library://ns.adobe.com/flex/mx"
                                      xmlns:rdv="reportsDirectoryModule.views.*"
                                            xmlns:cc="common.components.*"
                                            xmlns:parsley="http://www.spicefactory.org/parsley"
                                            title="Print Reports Confirmation"
                    width="300"
                                            creationComplete="init()"
                                            showCloseButton="true"
                                            close="closeWindow()">
              <fx:Declarations>
                        <parsley:Configure/>
              </fx:Declarations>
    [/code]
    I know this is a bit strange, but if nothing else, I'm chalking it down as a good flexunit/parsley learning experience.
    Thanks,
    Eric H

    when i change #{bindings.addorgflow.regionModel} to #{bindings.addorgflow1.regionModel} and change id ResPersonBean to ResPersonBean1 it run my jsff page

  • Error when attaching object link in DMS

    Hi Experts,
       I am calling the function module CV110_DOC_CREATE in my program. This program i have attached to a ztransaction.Thus the screen after entering the document type, document version and part in the cv01n transaction appears when my ztransaction is executed.  But the problem is that i can attach object link (document info record) when the ztransaction is executed initially. But when i click on back button and again comes to the screen i am not able to attach the object link.Then it gives an error as " Object does not exist". Please help.

    When the back button is clicked screen for my ztransaction comes.From there it is calling the actual screen to attach the object link.there i am trying to attach the object link again...then it is saying as object does not exists. This same dir i have attached earlier as object link when the ztransaction was run initially.

  • DMS:Object link to Purchase requesition item giving error

    Dear All,
    I have a requirement to attach documents in Purchase requesition item, but if i try to attach the object link in DIR from CV01N, it gives ma an error "The status RL cannot be set because no objects exist to the following links"Purchase req. item 001000399200000
    But if attach a document from me51 it is attached & also can be seen from CV02N.
    I have maintained the object link 'EBAN' & screen no 247  to my document type.
    So where should be the problem.
    Help will be Appreciated.

    Thanks rehman,
    i have tried the 'object check' tick removing process it works but when ever i select a purchase requestion as a object link in my DIR, it only selects the purchase req. number but the item no is not selected, if i don't put the item no manually the DIR is saved with the objectlink but if u go & see in the purchase req. transaction there is no document attached to it.
    When u select a purchase req. number & put the item number manually in DIR, then the document is attached in the PUR .REQ.
    What would be the reason that the Pur. Req. & item no both donot appear when i select them in my DIR object link tab.
    And i had four status for my Document type all had the problem of objet check, so i have removed that tick.
    Regards
    Nishant....

  • Easy DMS - object linking DIRs

    Hi,
    I'm implementing Easy DMS currently running version v6.0 SP9. Everything is working well with SAP DMS except for one thing, object linking.
    I've read other threads but no help.
    My issue is I want to be able to show a DIRs relationship with other DIRs in the object links.
    Easy DMS allows this to a certain extent but its useless because all it does is display the related DIRs for this DIR, you cant action anything to display these other DIRs, where as if you do the same thing in SAP DMS, you can actually get a link to the referenced DIRs and when you click on it, it  will automatically navigate you to the related DIR.
    Why doesn't this work in EASY, or is simply just there for show, which I find a waste of time to be honest if object links are simply for show. The same goes if I want to attach a DIR to a material same problem.
    Thanks in advance
    Kurt

    hello Kurt,
    to my knowledge,Navigation to a different dir which is attached as object link in easyDMS is not possible (like in SAP GUI).
    regards,
    anubhav

  • New object link in dms (audit)

    Hello,
    i have to open new object link for AUDIT for DMS.
    any information ?
    thanks,
    avi.

    Hi Avi,
    Define the Object link types for the object links which you want to maintain. Please check whether the Audit type is available in the Object link types or not.
    Regards,
    Nishit Jani

  • Object Links - linking cProjects' Task to ...

    cProjects 4.0
    I intend linking a cProjects' task to an object in the 'Training and Event Management' module (from SAP HR).
    Can I have this object link from cProjects? The Event/Date instance from the 'Training and Management' module ought to be linked to a cProjects' task.
    Any inputs / ideas????
    Thanks...

    Hi Bittu,
    Yes, the object link of the cProject is very flexbel, which can link almost every type of R/3 (may be not only R/3) object.
    Please check the document 'Collaboration Projects (cProjects): Guide Impl. Object Link '
    https://websmp105.sap-ag.de/plm-inst
      SAP Business Suite Applications -> SAP PLM -> using cProject Suite 4.00
    The document well written about how to creatn an own object link type.
    Kind regards,
    Zhenbo

  • Save status when adding cARC link under Object Links Tab

    Hi Experts,
    I want to know how to save status for cARC or SAP spec links added as Object links under the object Links tab.
    Even though I maintain the status it is not saved except for WBS elements.
    Best Regards,
    Arti.

    Do you mean that you have multiple object link types?
    I am having the same problem.
    For object link type A, I can set and save the status (severity) correctly, but for object link types B and C, it does not work. The status can be set, and it is shown on the UI, but it is not saved correctly, so that the status is gone when I reload the project.
    Maybe somebody can help here?

  • Invalid URL error when displaying Work Item Attached URL Object in UWL

    Hi,
    After upgraded from EP6 to EP7 the user can no longer display the attached URL object of work items in the UWL Inbox.  It works fine in the SAPGUI Inbox so the URL should be okay.  We found below error messages in UWL log file:
    #1.5#0003BA5D298B001E0000030300003A280004314BFE992222#1180102370599#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.UWLActionControl#C004049#43497#####SAPEngine_Application_Thread[impl:3]_0##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.UWLActionControl#Plain###com.sap.tc.webdynpro.services.exceptions.InvalidUrlRuntimeException: Invalid URL=HTTP://apinvoice.d51.lilly.com
    gbip
    gbip.asp?po=invoice=TC630400360USERID=USC076601#
    #1.5#0003BA5D298B001E0000030400003A280004314BFE9986AB#1180102370625#/uwl/ui#sap.com/tcwddispwda#com.sap.netweaver.bc.uwl.ui.control.UWLActionControl#C004049#43497#####SAPEngine_Application_Thread[impl:3]_0##0#0#Warning#1#com.sap.netweaver.bc.uwl.ui.control.UWLActionControl#Plain###com.sap.netweaver.bc.uwl.UWLException: Fri May 25 10:12:50 EDT 2007
    (Portal) :com.sap.tc.webdynpro.services.exceptions.InvalidUrlRuntimeException:Invalid URL=HTTP://apinvoice.d51.lilly.com
    gbip
    gbip.asp?po=invoice=TC630400360USERID=USC076601#
    Looks like the error is related to the back slashes in the URL but it was working fine in EP6.  We are going to change the back slashes to forward slashes to see it will work.  We would like to know if any SDNer’s can provide some more detail on why this is happening and if there is other solution.  Any hint will be very appreciated.
    Regards,
    Jiannan Che

    Use link attachment or add button action to UWL as possible workaround. It appears that work item text can only be displayed as-is.

  • Document attaching to Customer Object link

    Hi all,
    I have created a document relevant for Sales. In object links i have attached this document to Customer object. Here in the Customer master data (After double clicking the Customer object link in the DIR), Can i attach any document to the Customer master irrespective of whether it belongs to Sales?
    Venu.

    ..Can i attach any document to the Customer master irrespective of whether it belongs to Sales?..
    Yes,provided you have the requisite authorization for creation of the document types and document creation has been enabled from Customer object in DMS customizing.
    Regards,
    Pradeepkumar Haragoldavar

  • Error message when searching for an object link within EasyDMS

    Hello,
    I have a problem with the easydms system. Everything works fine except searching in the object links. When I want to define an object link and I don't know the name of the object I try to find it with the help of the search function within easydms (within the object links).
    But the search always delivers an error message:
    "Missing authorization check to display master data"
    Does anybody now what to do?
    Thank you for your help.
    Best regards,
    Markus Sigl

    Hi Markus,
    When you try to do this the  BAPI 'BAPI_HELPVALUES_GET' is used. There are some authorization checks that are being performed for the object. These authorizations are maintained in the table BAPIF4T.
    For the above said test data, you are trying to get the help values for
    the relevant field (e.g. EBELN: po_number).However,in table BAPIF4T the corresponding authorization for the data element ebeln is not maintained. And so you are getting this error.
    So, when you maintain the below record in the table BAPIF4T,you will
    have the corresponding authorization and you will not get the error
    anymore.
    sample entry:
    Object type - ' '
    Object type component - ' '
    BAPIF4T-DTEL - 'EBELN'
    BAPIF4T-FNAM - 'PLM_HELPVALUES_AUTHCHECK'
    Best regards,
    Christoph

  • EF Error Attaching an entity of type 'Model' failed because

    I pass my model from webpage to asp.net MVC Controller.When i try to update my code i take this error.I use repository pattern.I read same errors on site but i cant figure how can adapt to my code.
    Error: Attaching an entity of type 'Model' failed because another entity of the same type already has the same primary key value.
    public void Update(Model model)
    model.AnaHesapID = Thread.CurrentPrincipal.Identity.GetAnaHesapID();
    if (model.RowNumber != Guid.Empty && model.ModelID== 0)
    //when i comment this i take 0 record updated error.
    var oldModel= Get(calisan.RowNumber);
    model.ModelID = oldModel.ModelID;
    _myDal.Update(model);
    //Repository Code
    public virtual int Update(TEntity TObject)
    //ADD LAST MODIFIED DATE IF APPLICABLE
    if (TObject is LogProperties)
    (TObject as LogProperties).DegistirmeTarihi = DateTime.UtcNow;
    dbContext.Set<TEntity>().Attach(TObject);
    var entry = dbContext.Entry(TObject);
    entry.State = EntityState.Modified;
    return dbContext.SaveChanges();
    //Get Context
    private TContext dbContext;
    private int _anaHesapID;
    public EfEntityRepositoryBase()
    _anaHesapID = Thread.CurrentPrincipal.Identity.GetAnaHesapID();
    dbContext = GetDbContext();
    #region GetContext
    //Update de patlıyor link: http://stackoverflow.com/questions/23201907/asp-net-mvc-attaching-an-entity-of-type-modelname-failed-because-another-ent
    private TContext GetDbContext()
    return this.GetDbContext(false);
    protected virtual TContext GetDbContext(bool canUseCachedContext)
    if (dbContext != null)
    if (canUseCachedContext)
    return dbContext;
    else
    dbContext.Dispose();
    dbContext = new TContext();
    return dbContext;
    #endregion
    //Dispose
    private bool disposed = false;
    protected virtual void Dispose(bool disposing)
    if (!this.disposed)
    if (disposing)
    dbContext.Dispose();
    this.disposed = true;
    public void Dispose()
    Dispose(true);
    GC.SuppressFinalize(this);

    There is plenty of talk about this out on Google. Hopefully, you'll find the solution.
    https://www.google.com/#q=Error:+Attaching+an+entity+of+type++failed+because+another+entity+of+the+same+type+already+has+the+same+primary+key+value.

  • Excel 2013 "cannot use object linking and embedding error"

    Hi
    We are using excel export as pdf functionality and have the following DCOM configuration
    1.start->run and type 'DCOMCNFG'
    2: Open 'DCOM Config' and locate 'Microsoft Excel Application'
    3: Set its identity to 'This User' and give specific service user
    On opening excel  we are getting  "cannot use object linking and embedding error" and the microsoft sugestions tells to change to launching user which is not an option for us,Is there any other suggestion to fix this issue by keeping Dcom
    configuration with'This User'
    Thanks in advance
    Pradeep

    Hi
    when excel is opened, a warning pops up saying "Cannot use object linking and embedding" . This
    fix change the DCOM ID to Launching User) does not work for us. We need the Excel DCOM ID to use a particular user "domain\user" in order to access excel from our website.
    Is there any other suggestions
    Thanks in advance
    Pradeep

Maybe you are looking for

  • Error in T-Code: F.5E

    Dear all, I am getting the following errors while executing T-Code: F.5E 01. No postings can be created for company code 4000 02. Errors occur when determining adjustment accounts 03. Correct the error 04. Run report SAPF180K and i didn't get any err

  • Issue with deployment

    We tried deploying the component through JSPM, but JSPM is not working properly, so we are trying to deploy the software components through SDM.      We have started to deploy the all the component together it is getting stuck after some time.      W

  • Can't delete history when using magnifying glass icon on home screen. Anyone know how to? Thanks.

    If I click on the magnifying glass icon to do a search for something - the icon of the place I searched stays in the window and I can't seem to delete it.  Does anyone know how to delete that history? I can delete my browser history by clicking on th

  • OPEN DATASETvery urgent..

    Hi guys, I am published a CSV file in the FTP server using OPEN DATASET..every thing is working fine.. I have the below columns in my CSV file product,location,Quantity.. I want to display in the CSV file with correct alingment,,I mean the Quantity f

  • Cannot Run, Uninstall or Reinstall Palm Desktop for Palm M500 on Windows XP

    I have a Palm M500 and Windows XP Home Edition with service pack 3 installed. Palm deskop was working smoothly, but now every time I try to run Palm Desktop I get the following error message: "Windows Installer: the feature you are trying to use is o