[ASK] how to edit URLattachment link in worklist FM SAP_WAPI_ATTACHMENT_ADD

hi,
i have problem when i click URL attachment in my worklist in web-ui
i used fm SAP_WAPI_ATTACHMENT_ADD when i create that URL attachment in BOR ZUS2010020.
i used this code in my method :
   URL1 = 'zcrm_mkt_001/cmpgn_approval.htm?work_item_id='.
   URL2 = lv_work_item_id+6(6).                          
   concatenate URL1 URL2 into URL.                       
ls_Att_header-FILE_TYPE      = 'T'.                     
ls_Att_header-FILE_NAME      = 'Decision Link'.         
ls_Att_header-FILE_EXTENSION = 'URL'.                   
ls_Att_header-LANGUAGE       = sy-langu.                
    CALL FUNCTION 'SAP_WAPI_ATTACHMENT_ADD'              
    EXPORTING                                            
       WORKITEM_ID          = lv_work_item_id            
       ATT_HEADER           = ls_Att_header              
       ATT_TXT              = url                        
       DOCUMENT_OWNER       = SY-UNAME                   
       LANGUAGE             = SY-LANGU                   
       DO_COMMIT            = 'X'                        
    IMPORTING                                            
       RETURN_CODE          = rv_value                   
       ATT_ID               = att_id.                    
that code is succeed and it create url attachment.
but when i click that URL attachment in my worklist, its can't not display the page that i want.
it always go to this link :
http://crmxxx.xxx.xxx/sap(XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX0=)/bc/bsp/sap/crm_ui_frame/zcrm_mkt_001/cmpgn_approval.htm?work_item_id=484152
the link that i want is :
http://crmxxx.xxx.xxx/sap(XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX0=)/bc/bsp/sap/zcrm_mkt_001/cmpgn_approval.htm?work_item_id=484152
without /"CRM_UI_FRAME/"
anybody can help me to solve my problem?
thx a lot.
Edited by: saintmutsu on May 26, 2010 1:40 PM

Hi
Redefine GET_P method of your attribute where you want your attachment link to be working. Put this code:
  CASE iv_property.
    WHEN if_bsp_wd_model_setter_getter=>fp_fieldtype.
      rv_value = cl_bsp_dlc_view_descriptor=>field_type_link.
    WHEN if_bsp_wd_model_setter_getter=>fp_onclick.
Get value of your URL through your logic here
lv_url = 'XYZ'.
rv_value = lv_url .
endcase.
I hope this helps.
Thanks
Vishal

Similar Messages

  • Lightroom won't ask how to edit a file when I select "edit in Photoshop CS6"

    Yesterday Lightroom suddenly stopped asking how I want the file edited when I select "edit in Photoshop".  I opens the file directly in Photoshop without asking do I want to "edit with Lightroom changes", "edit a copy", or "edit original".
    I've tried finding a setting to turn this on or off and found nothing.  I've tried shutting down.  I've even tried removing and reloading both Photoshop and Lightroom.  As far as I can tell it has defaulted to always opening with LR edits.
    I'm using Lightroom 5.3 and Photoshop CS6 extended version 13.0. I ran updates on both after reloading yesterday.  I'm using the Mac versions of the software.
    Please help!
    Message was edited by: Jon Beverly in Homer AK

    Is it possible that you've switched to using Raw (or DNG) files? There is a different process when using a Raw file versus using a rendered file such as Jpeg, Tiff, PSD....and it's only the latter file-types which will prompt the "Edit a copy, Edit original, etc" question. If the ACR levels are compatible (which they will be if your ACR plug-in for PS CS6 is up-to-date) then there will be NO question when using "Edit In...." on a Raw/DNG file, the file is rendered automatically in the background by Photoshop's ACR plug-in, when you then "Save" in PS the now-rendered file (Tiff or PSD, depending on your external editing preference setting) will appear back in Lightroom.

  • How to edit personalize link on desktop

    Hi Experts,
      I have a doubt in desktop customization,can any one tell how to edit the personalize link or remove that personalize link and i also want to know how to add some custom link beside this personalize link.
    Regards
    Rahul

    Hi Rahul,
    Remove the role eu_role assigned to you so as to remove the Personalize link.
    To Add a custom link besides personalize, see the thread
    How to add or remove link in Portal Masthead
    Hope this helps,
    Nikhil

  • How to edit xml link?

    First a few words about my context:
    I received a layout made on a CS3 version of InDesign. Now I am trying to create a procedure to automate the production of several pdf based on this layout. Manually the process would be to open the layout; edit the xml link with each xml source and create a corresponding pdf...
    First issue:
    In CS4 when I want to manually edit the xml link, the opened dialog prevent me (xml files are in gray) to select xml files, is it a well-known issue? How can I avoid it?
    Second question:
    How to edit the xml link from script?
    Last question - applescript question - :
    How to skip application dialogs? Like "This document miss some links, would you continue?"
    If you'd be able to help me, thanks in advance!

    Dear Loic_aigon
       Many thanks!
    But I used what you said!.
    But Still I'm facing the same problem [ not find : "image"]
    Here the below tag I used..
    <Figure id="f0020"><label>Figure 2 </label><caption>Dummy Figure </caption>
    <image href="C:/Program %20Files/VUG/clouds.jpg"></image></Figure>
    Program :
    //============== Start =====================//
    #include "E:/HariharaSudhan/XMDOM_TEST/xml_for_script-3.1/jsXMLParser/xmldom.js";
    var myFile = File("E:/HariharaSudhan/XMDOM_TEST/xml/test.xml");
    myFile.open("r");
    var myXMLString = String(myFile.read());
    var objDom = new XMLDoc(myXMLString, undefined);
    var domTree = objDom.docNode;
    $.writeln(domTree);
    var myImage = domTree.getElements("image");
    var myDoc = app.open(File("E:/HariharaSudhan/XMDOM_TEST/Indd/test.indd"), true);
    $.writeln(myImage);
    for(var i=0; i<myImage.length; i++)
    $.writeln( myImage[i].name);
    myImage[i].getAttribute("href").replace('file:///','');
      var myPage = doc.pages[0].duplicate(LocationOptions.AT_END);
      var myFrame = myPage.pageItems.item("image");
      myFrame.place(File(myImage[i].getAttribute("href").replace('file:///','')));
      app.pdfExportPreferences.pageRange = myPage.name;
      app.pdfExportPreferences.viewPDF  = false;
      myDoc.exportFile(ExportFormat.pdfType, File("E:/HariharaSudhan/XMDOM_TEST/PDF/" +(i+ 1)+".pdf"), undefined, undefined, undefined, undefined);
    myDoc.close(SaveOptions.NO);
    //===================== End ============================//
    So please kindly see the attached xml file, and please send me the solutions.
    Please this is my humble request.
    Thanks & Regards
    T.R.Harihara SudhaN

  • How to edit and link nav. tabs?

    I can edit my navigation tabs on  my first index.html page,  byt on my sencond page (photos.html) My cursor is a circle with a line, and i cant link them.  Here is a video:

    file:///C:/Users/Jared/Documents/Shelbina%20Fire%20Site/Templates/index.html
    <html>
    <head>
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>WEBSITE</title>
    <!-- TemplateEndEditable -->
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <style type="text/css">
    body {
              background-color: #000;
    .main_content {
              font-family: Verdana, Geneva, sans-serif;
              color: #CCC;
              background-image: url(../Images/Index_24.jpg);
              height: 719px;
              width: 836px;
    </style>
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    </head>
    <body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
    <!-- Save for Web Slices (WEBSITE.psd) -->
    <table width="901" height="1001" border="0" align="center" cellpadding="0" cellspacing="0" id="Table_01">
              <tr>
                        <td colspan="5" rowspan="2">
                                  <img src="../images/Index_01.jpg" width="201" height="152" alt=""></td>
                        <td colspan="8" rowspan="3">
                                  <img src="../images/Index_02.jpg" width="601" height="156" alt=""></td>
                        <td>
                                  <img src="../images/Index_03.jpg" width="48" height="48" alt=""></td>
                        <td colspan="2">
                                  <img src="../images/Index_04.jpg" width="50" height="48" alt=""></td>
                        <td>
                                  <img src="../images/spacer.gif" width="1" height="48" alt=""></td>
              </tr>
              <tr>
                        <td colspan="3" rowspan="6">
                                  <img src="../images/Index_05.jpg" width="98" height="187" alt=""></td>
                        <td>
                                  <img src="../images/spacer.gif" width="1" height="104" alt=""></td>
              </tr>
              <tr>
                        <td colspan="5">
                                  <img src="../images/Index_06.jpg" width="201" height="4" alt=""></td>
                        <td>
                                  <img src="../images/spacer.gif" width="1" height="4" alt=""></td>
              </tr>
              <tr>
                        <td rowspan="4">
                                  <img src="../images/Index_07.jpg" width="23" height="79" alt=""></td>
                        <td colspan="2" rowspan="2"><a href="index.html"><img src="../images/Index_08.jpg" alt="" width="133" height="58" border="0"></a></td>
                        <td rowspan="4">
                                  <img src="../images/Index_09.jpg" width="31" height="79" alt=""></td>
                        <td colspan="2" rowspan="3"><a href="Photos.html"><img src="../images/Index_10.jpg" alt="" width="99" height="66" border="0"></a></td>
                        <td rowspan="4">
                                  <img src="../images/Index_11.jpg" width="60" height="79" alt=""></td>
                        <td rowspan="2">
                                  <img src="../images/Index_12.jpg" width="142" height="58" alt=""></td>
                        <td rowspan="4">
                                  <img src="../images/Index_13.jpg" width="56" height="79" alt=""></td>
                        <td rowspan="2">
                                  <img src="../images/Index_14.jpg" width="83" height="58" alt=""></td>
                        <td rowspan="4">
                                  <img src="../images/Index_15.jpg" width="57" height="79" alt=""></td>
                        <td>
                                  <img src="../images/Index_16.jpg" width="103" height="52" alt=""></td>
                        <td rowspan="4">
                                  <img src="../images/Index_17.jpg" width="15" height="79" alt=""></td>
                        <td>
                                  <img src="../images/spacer.gif" width="1" height="52" alt=""></td>
              </tr>
              <tr>
                        <td rowspan="3">
                                  <img src="../images/Index_18.jpg" width="103" height="27" alt=""></td>
                        <td>
                                  <img src="../images/spacer.gif" width="1" height="6" alt=""></td>
              </tr>
              <tr>
                        <td colspan="2" rowspan="2">
                                  <img src="../images/Index_19.jpg" width="133" height="21" alt=""></td>
                        <td rowspan="2">
                                  <img src="../images/Index_20.jpg" width="142" height="21" alt=""></td>
                        <td rowspan="2">
                                  <img src="../images/Index_21.jpg" width="83" height="21" alt=""></td>
                        <td>
                                  <img src="../images/spacer.gif" width="1" height="8" alt=""></td>
              </tr>
              <tr>
                        <td colspan="2">
                                  <img src="../images/Index_22.jpg" width="99" height="13" alt=""></td>
                        <td>
                                  <img src="../images/spacer.gif" width="1" height="13" alt=""></td>
              </tr>
              <tr>
                        <td colspan="2" rowspan="2">
                                  <img src="../images/Index_23.jpg" width="34" height="765" alt=""></td>
                        <td colspan="13"><!-- TemplateBeginEditable name="main_content" -->
                          <div class="main_content">Home</div>
                        <!-- TemplateEndEditable --></td>
                        <td rowspan="2">
                                  <img src="../images/Index_25.jpg" width="30" height="765" alt=""></td>
                        <td>
                                  <img src="../images/spacer.gif" width="1" height="719" alt=""></td>
              </tr>
              <tr>
                        <td colspan="13">
                                  <img src="../images/Index_26.jpg" width="836" height="46" alt=""></td>
                        <td>
                                  <img src="../images/spacer.gif" width="1" height="46" alt=""></td>
              </tr>
              <tr>
                        <td>
                                  <img src="../images/spacer.gif" width="23" height="1" alt=""></td>
                        <td>
                                  <img src="../images/spacer.gif" width="11" height="1" alt=""></td>
                        <td>
                                  <img src="../images/spacer.gif" width="122" height="1" alt=""></td>
                        <td>
                                  <img src="../images/spacer.gif" width="31" height="1" alt=""></td>
                        <td>
                                  <img src="../images/spacer.gif" width="14" height="1" alt=""></td>
                        <td>
                                  <img src="../images/spacer.gif" width="85" height="1" alt=""></td>
                        <td>
                                  <img src="../images/spacer.gif" width="60" height="1" alt=""></td>
                        <td>
                                  <img src="../images/spacer.gif" width="142" height="1" alt=""></td>
                        <td>
                                  <img src="../images/spacer.gif" width="56" height="1" alt=""></td>
                        <td>
                                  <img src="../images/spacer.gif" width="83" height="1" alt=""></td>
                        <td>
                                  <img src="../images/spacer.gif" width="57" height="1" alt=""></td>
                        <td>
                                  <img src="../images/spacer.gif" width="103" height="1" alt=""></td>
                        <td>
                                  <img src="../images/spacer.gif" width="15" height="1" alt=""></td>
                        <td>
                                  <img src="../images/spacer.gif" width="48" height="1" alt=""></td>
                        <td>
                                  <img src="../images/spacer.gif" width="20" height="1" alt=""></td>
                        <td>
                                  <img src="../images/spacer.gif" width="30" height="1" alt=""></td>
                        <td></td>
              </tr>
    </table>
    <!-- End Save for Web Slices -->
    </body>
    </html>

  • How do i edit the links in the top nav bar on an enterprise wiki site?

    I would like to edit and change the links in the top nav bar on my enterprise wiki.
    Currently the links are "About this wiki" and "Recent" a drop down menu with links.
    I would like to change "About this wiki" to a "Home" page link and remove the "Recent" drop down menu and links. I also would like to be able to add more links to the to the top nav bar.
    I there anyway I can do this one an enterprise wiki site?
    Thanks
    James T.F

    Hi,
    According to your post, my understanding is that you wanted to edit the links in the top navigation bar on an enterprise wiki site.
    I try to reproduce the issue, however, my enterprise wiki site don’t have the drop down menu.
    How did you add the Recent link?
    How did you create the drop down menu?
    Did you use the seattle master page or olso master page?
    It will be better if you can descript more detail and provide some screenshots.
    You can use JavaScript to add and remove the items in the drop down menu.
    More information:
    Add items in Drop Down List or List Box using Javascript
    Asim Sajjad: DropDownList Add/Remove Item Using Javascript
    HTML DOM Select remove() Method
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • How to edit linked text in an Indesign long document without it effecting the whole document

    I want to work out how to edit text in indesign without the rest scrolling
    I have a large 200 page book.  The text was supplied in Word and I have placed the whole document automatically and now I am going through each page doing my magic with pics, stylesheets etc.
    When the client comes back with edits, I am concerned that deleted or adding in text will scroll the text to the next chapter, etc etc.  This will be a nightmare.  Not sure how to unlink say 5 pages or so that are in each chapter so I can edit easily without the whole document being effected.
    Apologies I am probably not explaining myself all that well.

    lisalip wrote:
    john the link is broken
    I can see there are scripts but I don't want each page separate rather each chapter (each chapter can go for 2 or 7 pages)
    I am only 35 pages or so into the book and if I have to I can re place the text with some work, ie start again with the text pages.
    seems sily though that I cannot split the threaded stories a few pages at a time.
    The link is now fixed.
    You can split the threaded story into separate stories anywhere in the thread. At the chapter breaks seems logical. There are many users who'll assert all sorts of right/wrong at you when it comes to threading text. For my purposes, I set up long documents much the way you propose; threading articles, stories, or chapters discreetly; rarely would I ever thread an entire long document as one. It's a preference, not a rule. Each way has benefits and pitfalls.

  • My bookmark pull down menu doesn't offer " manage bookmarks". In all the support Ican find this is how to edit bookmarks. How do I find the manage link if it's not in teh pulldown menu?

    Question
    My bookmark pull down menu doesn't offer " manage bookmarks". In all the support I can find this is how to edit bookmarks. How do I find the manage link if it's not in the pull-down menu?

    In Firefox 4, "Organize Bookmarks" has been changed to "Show All Bookmarks" to open the Library window.

  • How to edit the binding wsdl link in SR

    Hello,
    I have created a WS which uses my server name : and port, further service name and ?wsdl.
    well actually my server full name is ???.??.de and I am using my server from laptop. If I use SR from other computer and try to see the wsdl file there by clicking wsdl link. It does not find the server and searches with out ends. I then removed the .domain.de from teh wsdl link. It has find the service. Now I need to permanently removed the domain.de from wsdl.
    To do so, I have also tried to rename the server without using domain.de and publish the service again. But the server full name is still with domain and .de
    Does any one of you have the idea how to edit the wsdl link??
    Regards,
    Naeem

    Hallo Naeem,
    I want to know where did you develop your WS?
    Kind Regards
    Abdel

  • How do I disable linked smart-object auto-update/refresh?

    Working in the CC3D features, I am constantly making changes to my bump map. Every time I step-backwards, or make a significant change to the bump texture (smart object?), CC auto-saves the layer. This specific file is a very very large document (3 gigs in the bump texture layer alone), and the 3D layer has lots of lights and is very complex. This auto-refresh/update really bogs down the time that it would take me to make my changes. I have a very fast machine (I know it's fast, I dont need to list my specs), and I have all shadows disabled.
    How do I disable linked smart-object auto-update/refresh?

    If you do not like a feature like smart objects there is nothing forcing you to use it. Use some other features to do what you want. Please don't ask Adobe to introduce bug into smart object support.
    You could work on your bump maps textures in external files. When your done some time in the future you could edit your project with the smart object layer and use replace smart object. Only then will all smart filters be applied to the smart layer with the replaced smart object.
    Or if by CC Auto save Layer you referring to CC Generate feature you can disable that feature.
    I have no idea what your referring to when you write "CC auto-saves the layer" being a feature. I know CC Generate will write layers out as web files but that more a Web feature then a 3d feature.  Where do you see your layer being saved?

  • How to edit multiple regions in one Piano Roll window

    I edit multiple regions in one Piano Roll window at the same time. (It is very handy way of editing especially in huge orchestra projects.)
    I can see midi contents of all selected regions in Piano Roll at the same time.
    1) But how to choose certain one region of many selected to edit it?
    2) And how to edit all at once?
    Hope the questions are clear enough.
    Thanks.
    Dmitriy.
    iMac (27-inch, Mid 2011) 2,7 GHz Intel Core i5. 16 GB 1333 MHz DDR3.
    OS X 10.10.2

    First of all, the Piano Roll has two mechansim, of what it is displaying.
    Selected Track: This displays all the Regions that you select in the Tracks Window
    One Track: Selecting one Region in the Track Area displays all the Regions of tha tTrack in the Piano Roll. If you select multiple Regions in the Tracks Window, then the last selected Regions counts.
    Whatever Regions are now displayed in the Piano Roll Editor can be edited. Select the MIDI Events and apply the command.
    You can also apply edits directly to the selected Regions in the Tracks Window.
    I explain all those little details in my graphically enhanced manuals ("Logic Pro X - How it Works")
    One thing to be clear about:
    Tracks Window: Any edit is applied to the selected Regions
    Piano Roll Editor: Ay edit is applied to the selected Events
    Hope that helps
    Edgar Rothermich
    http://DingDingMusic.com/Manuals/
    'I may receive some form of compensation, financial or otherwise, from my recommendation or link.'

  • WPC Problem after creation of new Site - no "Edit Page" Link available

    Hello,
    I have a problem with WebPageComposer (WPC) and Edit Page link.
    We are currently on EP 7.01 SP6.
    (I have the wpc_editor_role for my user)
    I am doing the following:
    1) I create a new site, (derived permissions for all folders is wpc_editor_role - Full Control),
    2) I Create some article within its Site Content folder
    3) I create a new web page in its Web Pages folder
    4) assign the article to the web page and publish it
    5) add web page within Site Navigation as a new node
    6) I used Publish Site Navigation
    After clicking on the web page within Web Pages folder it does a preview.
    Our older WPC content does display the Edit Page link - the new one does not.
    What step am I missing here?
    Maybe it is an upgrade issue?
    Best Regards, Thomas
    P.S.: copying one of our older WPC pages into my new site + renaming it via KM + removing old content + assigning new one does display the correct link after publishing it! Any indeas?

    Dear Thomas,
    It sounds like your are doing all the right actions, I don't think that your missing any step in the process, but please consider the following.
    Are you using a custom WPC layout template? The reason I ask is that I have developed a number of WPC custom templates and in some circumstances I have needed to remove/hide the "pageheader" section of the template. This action removed the links from displaying at the top of the page. Try creating and publishing a web page using a SAP standard WPC layout and see if the edit link appears once the page is published.
    The editing and preview page views do not display the "edit" link, they only display the other page header links that can be assigned to a page. The edit link is only visible when viewing the page via the portal, not in edit mode. Another question, was the deployment of KMCWPC successful and without error? I have experienced issues where the deployment did not fully complete, causing some subtle issues regarding publishing of WPC content and redeploying KMCWPC fixed the issue. I hope this helps.
    Best Regards,
    Chris

  • How to get the link of already archived document

    Dear all,
    How to get the link of already archivied document. for example i have a sales order for which subsequent documents have been archived. now i want to get the link of subsequent document.
    please give some solution
    Thanks in advance
    Thanks,
    Hemachandran.

    Hemachandran,
                The archiving object for sales order is SD_VBAK. If you run the program S3VBAKAU by transaction se38 and search based on the document numbers ( as you mentioned it is the preceeding document numbers to the current document), you will be able to retrieve the information regarding the previous sales orders.
    More information on the sales order archiving object can be found at,
    http://help.sap.com/saphelp_45b/helpdata/en/a9/55c7b690a111d1a5510000e82deaaa/content.htm
    Sojan
    <<text removed by moderator>>
    Edited by: Matt on Nov 16, 2008 5:08 PM - Do not request points

  • How to Edit Flash Symbol in Photoshop?

    In Flash CS4, I have a graphic of a long filmstrip with 24 pix in it. I need to edit the symbol in photoshop (to put all new pix in), and then replace the current filmstrip with the new filmstrip. How? This is CS4, not CS5.

    Add an image to a folder with your fla, image folder(with image inside) and then re import image to stage again then try 'EDIT' the file!
    Date: Sat, 24 Sep 2011 13:31:35 -0600
    From: [email protected]
    To: [email protected]
    Subject: How to Edit Flash Symbol in Photoshop?
        Re: How to Edit Flash Symbol in Photoshop?
        created by sneedbreedley in Flash Pro - General - View the full discussion
    Whe nI double click on the image, a Bitmap Properties window opens with no option to edit. When I right-clcik on the image and select Edit With and choose photoshop, an error message appears saying The file G:\web-02\Site\film120902.gif does not exist, uable to launch external editor.
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/3936238#3936238
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/3936238#3936238. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Flash Pro - General by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • How to edit Information of a user in sharepoint 2013.

    hi,
    i am trying to update user information in sharepoint 2013.but the user information form is uneditable ,
    when i click on Edit item link the window pop up with only attachment field.
    how to enable the fields on form?
    any help would be appriciated.
    Thanks !!!

    http://social.technet.microsoft.com/Forums/sharepoint/en-US/53c1e539-891e-4400-83e0-100cd44c52eb/editing-the-user-information-list
    If you disable the my site function, it won’t bring you to the my site.
    For more information about disconnect the USER Profile Service, please refer to
    http://social.msdn.microsoft.com/Forums/en/sharepoint2010general/thread/f012d1b0-3605-4124-8695-9afda112ecd8
    But
    Even though you can go to the display/edit form of the user list, you also can’t edit the information.
    Hope this helps
    Also check
    http://blog.falchionconsulting.com/index.php/2011/12/updating-sharepoint-2010-user-information/
    http://sharepoint911.com/blogs/laura/Lists/Posts/Post.aspx?List=daba3a3b-c338-41d8-bf52-cd897d000cf3&ID=65&Web=dbb90e85-b54c-49f4-8e97-6d8258116ca0
    If this helped you resolve your issue, please mark it Answered

Maybe you are looking for

  • [JS] [CS5] Copy and paste into existing array

    Hi Guys, right now I'm trying to improve the performance of a Script I wrote by copying and pasting a PDF instead of loading it 10 times. And here's the problem: When pasting the copied PDF it doesn't paste it into the array the original PDF is in bu

  • CFolder with Documentum content server

    Hello, We have installed cFolder on WAS which has a RFC connection with ECC6.0 and this ECC6.0 instance uses  Documentum content server. I want to understand , is there any impact in terms of document export/import in between content server and cFold

  • HT1688 can't see the screen

    computer recognizes phone leading me to believe it's working but the screen is black.

  • Running workgroup manager locally on an eMac

    I've installed workgroup manger on a 10.3.9 eMac, and I want to use it to administrate this computer locally. The problem is that when I try to login in using my IP as the address and the username and password it says: The address you entered is not

  • DDL  withour error message

    Hi experts, Please help me , ddl changes are not replicating between source and target for uni directional replication, there is no error message in all the report files. but DML replication working fine. the environment is oracle 11.2.0 and GG versi