How to put bsp application mime object path in WAD 7.0?

hi all.
I'm already know 'bwmimerep:///sap/bw/mime/Customer' will be changed to /sap/bw/customer/  mime repository path when it's published in WAD7.0.
but is there any way get mime path custom BSP Application?
for example If I made test.jpg in 'ZBW' bsp application
I should use full url   'http://domain:8000/sap/bc/bsp/sap/zbw/test.jpg'  instead of relative url '/sap/bc/bsp/sap/zbw/test.jpg' if I include url in WAD7.0
is there any idea put relative url in WAD 7.0 certianly I don't want include full url because develop and product server domain is different.
thanks.

it looks like bwmimerep:/// prefix is the only one available which points to SAP->BW under mime repository.
the standard help states (http://help.sap.com/saphelp_ppm400/helpdata/en/44/5001d197c01193e10000000a155369/frameset.htm) to use custom images in WAD
"You can store your MIME objects anywhere in the MIME Repository under SAP->BW"
May be we need a mechanism to create bcmimerep, publicmimerep, etc.
Regards
Raja

Similar Messages

  • How can i reference a MIME object within a correspondence format through...

    how can i reference a MIME object within a correspondence format through TX oofo or se71?
    Hi, I need to put a MIME object within a correspondence's format that i've already done through Tx oofo. My problem is, that i don't know exactly how can i make the reference of that MIME object in the format? and What structure type do i have to use in order to make appear the MIME object in my correspondence's format? Does anybody can help me with this?   
    Regards    Hector

    Frank,
    I tried to find some examples/samples on how to create CollectionModel for a table component but not successful.
    Can you clarify the following ?
    1. "CollectionModel" is referenced only by af:table attributes "value", "selectedRowKeys" and "selectionListener".
    The rest of af:table attributes such as "rows", "fetchSize" used to reference the iterator binding in the binding container via the EL expression "#{bindings.VOIteratorBinding.xxx} .
    What should I replace that EL expression with?
    2. I heck out the bean method to create the CollectionModel as following, is it close to what you mean?
    public void initBusinessDataDashboardView() {
    OperationBinding operation = BeanUtils.getOperationBinding("getPanelBusinessData");
    Map params = operation.getParamsMap();
    Key panelKey = getPanelInfoView().getKey();
    params.put("panelKey", panelKey);
    params.put("maximizedView", false);
    panelView = (ViewObject)operation.execute();
    // Heck code to create CollectionModel
    RowSet rowSet = panelView.getRowSet();
    ArrayList rowList = new ArrayList();
    while (rowSet.hasNext()) {
    rowList.add(rowSet.next());
    model = new ChildPropertyTreeModel(rowList, null);
    // To be used to set up af:table value, selectRowKeys, selectionListener via EL expr #{backingBeanScope.MyBean.model.xxx}
    public CollectionModel getModel() {
    return model;
    Am I on the right track?
    Edited by: Pricilla on May 4, 2010 2:20 PM

  • How to give the application server file path in the module pool programming

    Hi,
         Could somebody help me how to provide the application server file path in module pool programming once the logo is uploaded to sap system.
      For eg I have imported a logo name ‘owens’ into sap system by using transaction ‘se78’; now I need to call the path in the below url,
    if container2 is initial.
    CREATE OBJECT CONTAINER2
      EXPORTING
        CONTAINER_NAME              = 'PICTURE_CONTAINER2'.
    CREATE OBJECT PICTURE2
      EXPORTING
        PARENT = CONTAINER2.
    CALL METHOD PICTURE2->SET_DISPLAY_MODE
      EXPORTING
        DISPLAY_MODE = CL_GUI_PICTURE=>display_mode_fit_center
      EXCEPTIONS
        ERROR        = 1.
    CALL METHOD PICTURE2->LOAD_PICTURE_FROM_URL
      EXPORTING
        URL    = " ? "
      EXCEPTIONS
        ERROR  = 1
        Others = 2.
    endif.
    Thanks in advance
    Deepu

    hi Deepu,
    Use FM '/SAPDMC/LSM_F4_FRONTEND_FILE' for fetching the data from the application server path/presentation server path
    Regards,
    Santosh

  • How to clear cache after mime object is updated?

    Hi Expert,
        I create a mime object (such as "test1.jpg") in mime repository.
       In web dynpro, I add two UI elements: a formatted text edit and a File-Upload "Insert Image",
       after I click the File-Upload "Insert Image",
       I select an image file (such as test2.jpg) from local directory, and upload the content of the image file to mime object(test1.jpg) in mime repository.
       at the same time, I insert a line into formatted-text-edit as "<img src="/SAP/Public/.../test1.jpg" />".
       I double click the mime object (test1.jpg), its content has changed as test2.jpg,
       however, formatted-text-edit still displays the content of test1.jpg.
       When I mannually clear the cache of IE, and refresh the web, Formatted-text-edit display the content of test2.jpg.
      It's obvious that the cache of http server isn't cleared.
      How to clear cache after mime object is updated?
      Any suggestions are welcomed.
      Thank you.
    Best Regards,
    Derek
    P.S. the source code:
    lv_url = '/SAP/BC/WebDynpro/SAP/ZENHANCE_IA/test1.jpg'.
      lo_mine_rep = cl_mime_repository_api=>get_api( ).
      lo_mine_rep->put(
        EXPORTING
          i_url     = lv_url
          i_content = lv_file_string ).
    Edited by: Derek Zhao on Sep 20, 2010 6:21 AM

    Hi Derek,
    Have you tried the method INVALIDATE_ICM_CACHE of class CL_MIME_REPOSITORY_API ?
    Regards,
    Anand

  • How to Reuse BSP Application in CRM UI

    Hi All,
    I have a custom BSP Application which was used in PCUI as part of search help display. After migration of the system we would like to resuse this BSP application for the search help for the same field. Can anyone let me know what are the steps involved for this?
    Objective: Steps involved for how to reuse BSP application in CRM UI.
    Regards,
    Harish P M

    HI Harish,
    There is one idea to use transaction lancher.
    1. Check the relevant URL parameters that you need to define. You can find the parameters at the end of the URL.
    2. Define those paramters at IMG -> CRM -> Interaction Center WebClient -> Basic Functions -> Define URLs and Parameters
    3. Assign the values of the relevant parameters in the Transaction launcher wizard that can be accessed through IMG -> CRM -> Interaction Center WebClient -> Basic Functions -> Transaction Lancher Wizard at the step "Transaction parameters".
    Best,
    Levente

  • How to keep an application level object running with SunIDM?

    We are working on intergrate a gmail project with SunIDM. We need an application level object running with SunIDM so it will maintain a token generated from Gmail side. In anther servlet project, I had this object saved in the attribute of the ServletContext, then other session level servlet could share this attribute anytime. Is there a way to store attribute in Servlet Context and have it shared by different user session in SunIDM? I have been reading documents and searched this forum, haven't find any topics related how to maintain an application level object live. Hopefully that I can get some hint here.
    Thank you so much.

    Paul, Thank you so much for the further explaination. I don't think it will work since the token generated from gmail will expire every 24 hours.
    We are using the gdata library published from by gmail people, and I create a new UserService object and have it run in the application level. The UserService object will generate a token and renew it every 24 hours behind the scene. Here is how I implement it in my Servlet project:
    //to have a UserService object running at the application level:
    public class GmailUserService extends HttpServlet {
    public void init(ServletConfig config) throws ServletException{
    super.init();
    userService = new UserService(myApplication);
    config.getServletContext().setAttribute("gmailUserService", userService);
    //to access this UserService object from other servlet in each user session:
    UserService userService = (UserService)servletContext.getAttribute("gmailUserService");
    Gmail will trigger an error if we create a new UserService object for each user. They recommend to have all the user to share one UserService object. I am looking for similar approach in SunIDM.
    Thank you again, Paul, for trying to help.

  • BSP css & mime objects not found when accessed via iView in the Portal

    Hi
    A locally developed BSP Application has defined it's own CSS and MIME objects.
    This works well when accessed via the Integrated ITS in ECC6.
    However, when we access this the BSP application from an iView in a Portal (NW04S), the css and MIME objects do not appear to be loaded.
    What are we missing?
    Thanks
    Doug

    Hi Doug,
      have you found out the reason for this issue, i encountered the same problem when i access the HCM_LEARNING bsp, would you  please give some addvice if you have any idea?
    thanks,
    billy

  • HAP_Document BSP Application "Enter Objective Here "

    HI All BSP Expert and PMS Expert.
    BSP Standard application "HAP_DOCUMENT" Copy as a Z application. In Standard application "Enter Objective Here" Coming As Label but In Z Application i had changed as Input Field , That Input Field Values it  Does not save to R/3 System.
    So , Please it is urgent , Suggest me How to save that value to R/3 System.
    IF you have any document Related To this Query Please Mail  Me.
    id : pappu21198mehta @ gmail.com
    Thanks & Regard.
    Pappu Mehta.

    No need to email you the document related to this query. You can find it right [here|http://wiki.sdn.sap.com/wiki/display/HOME/Rules%20of%20Engagement?bc=true].
    Cheers
    Graham Robbo

  • How to call bsp application in workflow and process it...

    The requirement is ...
    HR as (admin) -- in standard workflow selects apprasiee for 360 degree apprasial process(bsp application developed by me)..
    aprasiee selects 10 employees and sends to HR
    HR checks the employees list and their relationships
                            if
                      HR satisfies and clicks ok .. email will go to all 10 employees selected by apprasiee with a link
                  of 360 degree application developed in bsp..
                      else
               HR says to reselect the employees to apprasiee.
    when apprasier completes the form and submits both HR and appraisee gets a note that particular
    employee as filled your application..
    for this process ... there r standard ones and i have to creare new ones ..
    tell me which standard workflows  i can use for this and which one to and also how to create a new one...
    i hope i can use HR and apprasiee selected by HR can be used as standard ones, which i want to copy and create a new one.

    Hi,
    If you want to use a BSP in your workflow, this can fairly easy be done by incorporating your BSP as a webactivity in your own flow or into an existing one. Things to consider when creating webactivitysteps in your workflow are:
    - Making settings in WF_HANDCUST.
    - Make settings in SICF: here you have to activate the WSHANDLER (pad /default_host/sap/bc/webflow/wshandler) and your own BSP which is somewhere under pad /default_host/sap/bc/bsp/&name_of_your_bsp&
    - Make settings in WF_EXTSRV: here you can make settings between the import and export parameters of your BSP and the (future) parameters in your workflowtask. When all these settings are made correctly, you can generate a WF-task with the corresponding button in this transaction (a wizzard will be started). The connection between the task and your BSP will be stored in table SWLWPTSSID.
    Try if you can figure it out with these transactions. Good luck!
    Kind regards,
    Joost van Poppel

  • Urgent:How to run BSP Application on Emulator Pocket PC2003 (mobile device)

    Hii Experts
    We are developing a BSP application on BI in HTMLB.When we run this application on Emulator Pocket PC2003 (mobile device), it is just showing the header,and rest of the page is blank.It is not showing any data.
    Can there be any problem with the used HTMLB tags?
    If HTMLB file not converting properly to HTML file,how can i locate the error?
    Where and how can i find solution to this problem?
    Please help me in solving this problem ASAP.
    Thanx to experts in advance.
    Regards
    Varun

    Hi,
    Have a look at the mobile extension:
    http://help.sap.com/saphelp_nw04/helpdata/en/e6/103b3b4c003416e10000000a114084/frameset.htm
    Alternatives are Web Dynpro or create you own HTML which needs to be conform http://www.vnunet.com/vnunet/news/2159256/w3c-drafts-mobile-web
    Eddy

  • How to add bsp application in workflow

    Hi .. Experts..
    i am new to workflow
    i want to add bsp application in workflow..
    this is a another task in apprasial process.. there is workflow for standard apprasial process..
      but i have created a new bsp application..
    apprasiee selects minimum 10 apprasiers . to all the 10 people selected bsp application should go to them to thier outlook..
    once thy complete the filling of  application  and submit it, email should trigger in apprasiee outlook that this apprasier has completed your application filling..
    please help in this as i am new to this .. i would be thankful if u explain me in detail..

    Hi Subramanyam,
    To add the fields in the field group, follow the below mentioned sequence. However, this method is used to add predefined SAP fields into Field Group. We are not talking about adding Z-Fields into the Field Group.
    a) Goto Transaction CRMC_BLUEPRINT_C.
    b) Click on Application Elements - You will see hierarchy of PCUI Objects viz. Applications, Views, Field Groups, Tab Page Groups, Toolbar Groups, Events.
    c) Open Field Groups. Go to the desired Field Group. The desired field group can be found by expanding the Applications Hierarchy.
    d) For the Given View within the Field Group - You can Right Click and add the desired pre-defined SAP Field.
    Regards
    Tushar Kansara

  • How to create BSP application

    I have created abap report. I want to convert it to BSP application. Could you please provide some guidelines or sample sites to create BSP or to convert abap report to BSP applicaton
    thanks

    To start with check this:
    http://help.sap.com/saphelp_nw04/helpdata/en/7a/b86041397211d5992200508b6b8b11/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/16/ac1e3a0088e042e10000000a11402f/frameset.htm
    And here the complete section:
    http://help.sap.com/saphelp_nw70/helpdata/en/e9/bb153aab4a0c0ee10000000a114084/frameset.htm
    Also refer to these threads :
    Creating (view, add, delete, modify) bsp application
    How to disable column in tableview
    after creating your BSP application into SE80 transaction you can refer to this useful thread:
    Re: How to update the tableview
    Here is showing how to read data in a BSP application from a DB table and how to updating lines from BSP application
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/4fbe7b8e-0a01-0010-b69b-b7e717378f22
    Full Demos:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/d46b9b90-0201-0010-ef92-9964c1bc98e1
    IC Web client
    Reward Points..

  • How to secure BSP applications for external users on the internet?

    I posted this question under Enterprise Portal forum but got no response. I am hoping some of you experts in this area can help.
    We have developed BSP applications and set them up as iViews in Enterprise Portal 6. Our portal implementation will be used by external users.
    We have security concerns that the access to the BSPs  allows external users direct access to the R/3 system. We were told that we should use ITS application instead of BSP application for external users.
    Do any of you have any insight into how we could work around the security problem with BSP applications, or BSP applications in EP6? Your help will be greatly appreciated.

    In sense they are correct as to whether it is more secure or not would have to be a call by people who are more of an expert than myself.
    But I can see there point the BSP runs directly on the system and uses the system security where as the ITS is basically just an RFC call. However for us we use a 620 server with BSP's and make RFC calls to our R/3 systems thus keeping people of the R/3 directly - however we are not opened to the Internet.
    If your message is answered please remember to mark it solved so others searching in the future can find the solved ones quicker - just click on the yellow star.

  • How to Migrate BSP applications into WDA

    Hi,
      We have some BSP application,is it possible to migrate BSP application into WDA or we need to

    There are no automated translation tools from BSP to WDA.  Although similar in structure (both MVC and Unified Renderer based), the technology implementation is very different. BSP uses MVC - and has Model and Controller objects. However these ABAP classes are in no way compatible with what Web Dynpro generates.  WDA also has the concept of Context which doesn't exist at all in base BSP (although CRMUI does have a context, this is just a wrapper around the BSP model class and isn't compatible with the WDA context either).
    The view becomes even more problematic.  Although the HTMLB, XHTMLB, and PHTMLB tag libraries are similar to the standard UI elements in Web Dynpro, the WDA versions are much more advanced. You probably could map most of the properties and tags to WDA, but not everything.  However the fact that in BSP you can inject any custom HTML and JavaScript becomes an issue because there is no way to do the same in WDA.
    Overall, you should just start from scratch and redesign the application as WDA.

  • How to generate BSP application automatically

    Hi, BW experts,
        I get some web interfact from transport, for example: Z1, Z2. I failed to run them on the web, then I check the BSP application in SE80 are not generated.
        I use BPS_WB to generate the web interface, selected "save customizing", "Generate BSP Application (Again)" and "Generate Class (Again)".
        then I got the log with green color said "Activity terminated"  , I go to check BSP application but it still not generated.
    anyone can help ?
    Regards

    Jie Miao,
    Which version of BPS are you on?  I worked through an similar issue last week on SEM-BPS 6.0 on NW04S where introduction of a new authorization object S_ICF_ADM gave me false positive on generate and we had issues also with transports even thought no error since the transport id did not have that new object.  This client had security locked down pretty tight.

Maybe you are looking for

  • Importing clips from iMovie HD to FCE4

    Hi. Have read with interest a couple of questions on this same issue, with the advice from Tom Wolsky seemingly being to not mix the two applications and just get stuck in with FCE. However, i'm finding FCE difficult to like/get to grips with. But mo

  • Clearing Host Name from Dynamic DNS set up - Home ...

    I changed my DNS provider due to poor performance. Since then I have been trying to change the host name and it stays with the original.  Do I have to rest teh home hub back to default settings and set it up again? If so this is very poor...!

  • Can't get Simple button to Load Movie Clip

    Hi I've looked around for the answer to my question on this forum but havent found it so here it goes. I am working on this company's Flash site that was built by an outside studio. I am using CS3. The url to the site is http://www.bubbakeg.com. (thi

  • Problem during Add row in View Object : View Row of Key Not found

    Hello, I'm facing this problem during insert of new row in the view object. I'm having 2 entities that belong to the same DB table (I need this because one is required with the composition assoc and the other one without it). I have three tables, COM

  • Problem with Consuming ABAP Server Proxy WSDL in InfoPath

    Tried to design a InfoPath (MS Office 2003) form from a WSDL file of a web service generated from an ABAP Server Proxy in a NW2004s SP10 system.  InfoPath rejected this WSDL with error “InfoPath cannot use the selected Web service method for receivin