FPM Question

Hi!
I am building a WebDynpro ABAP Application using the Floorplan Manager.
I have an OIF with several main views and the FPM creates a tab for every main view. The WD view which corresponds to each main view will be initialized if the user clicks on a tab.
Is it possible to initialize all WD views if the application starts ( or better: if initial screen is leaved)?
Jan

>
Jan Seltitz wrote:
> Hi!
>
> I am building a WebDynpro ABAP Application using the Floorplan Manager.
>
> I have an OIF with several main views and the FPM creates a tab for every main view. The WD view which corresponds to each main view will be initialized if the user clicks on a tab.
>
> Is it possible to initialize all WD views if the application starts ( or better: if initial screen is leaved)?
>
> Jan
I don't think there is a way to force the instaniation of all the sub views at application start.  Why would you want to do that?  I think for performance reasons it would be best to let the view only initialize once it is needed. If the user never navigates to that view, why pay the price to initialize it. 
On the other hand if you want to pre-cache some data, that can be done via a shared data component in the FPM model.  I use this often to pre-load the data that is associated with a particular view - that may not be shown until later.  Often when calling a service you get all the data details at once and you might as well keep them around in case they are needed by one of the views later.

Similar Messages

  • FPM Message Manager message's HyperLink does not work in Table

    Hi FPM experts,
    I use FPM in my application and I want to use FPM Message Manager with hyperlink pointing to cells with errors in a table with report_bapiret2_message. The hyperlink does work when pointing on stand alone input field, but it does not work when pointing on a input field in a table.
    Here is a piece of my code. What's wrong?
      data is_message type bapiret2.
      is_message-type = 'E'.
      is_message-id = 'TEST'.
      is_message-number = '1'.
    wd_comp_controller->mr_fpm_message_manager->
       report_bapiret2_message( is_bapiret2 = is_message
                                             io_component = wd_comp_controller
                                             io_element = lo_el_table_elements " point on the element in my context
                                             iv_attribute_name = 'VALUE' ).  " Name of my attribute in context
    Thanks
    Davy
    Edited by: Davy Veilleux on Jan 4, 2009 4:19 PM

    Any answers to this question?
    I am facing the same issue. Using FPM Message Manager  with the io_element and iv_attribute parameters pointing to an element in an context node having cardinality = "0...n" does not show the hyper link.
    Any Help is Appreciated.

  • FPM - Trying to get it work on Service Pack 13

    I came across the FPM today. Since I had to create a new simple application today I gave FPM a try.
    Basically my application would contain two views:
    1. A tree illustrating a HR organisation structure
    2. A table listing documents based on entry selected in the tree
    I probably need the tree soon again for some other application so I wanted to put the tree and the table into 2 different web dynpro components for reusiability. Without FPM I would have created a 3rd WDA component. The main function of this 3rd component would be to pass the lead selection (an OBJID) from the tree to the table view.
    If I understood the concept of the FPM framework correctly, the FPM_OIF_COMPONENT could help me with this passing of parameters between both WDA components and would even offer a lot more nice features.
    I played around with FPM_DEMO_FLIGHT_OVERVIEW and finally managed to create a configuration that would pass the values. But then things became difficult and maybe someone can help me with my questions (I check already all documents in the library, forums, weblogs and wiki dealing with FPM):
    1. Is a good idea to use FPM without having the Enhancement Package 1? The few tutorials and documents I found contained screenshots which look completely different to mine.
    2. In the example I could see how a button is being defined, but they wont show up in my application: to be more accurate: once a refresh button showed up but just disappeared again. I guess now, that there is some error in my configuration, but instead of telling me, that there is an error, FPM just ignores my button.
    3. Can I never navigate back to the initial screen? In my application that would be a requirement for easy selecting another element of the tree.
    4. In the Flight Demo the DELETE_OBJECT button calls the CONFIRMATION view: how is the button linked to the view? In the component controller of the Flight Demo almost all methods of the interface IF_FPM_UI_BUILDING_BLOCK are empty.
    Regards
    René

    > 1. Is a good idea to use FPM without having the Enhancement Package 1? The few tutorials and documents I found contained screenshots which look completely different to mine.
    I would be more worried bout SP13. I'm not sure the functionality of FPM is really complete on SP13.  I've done FPM application on SP14 but never SP13.  It is true however that the design tools were significantly enhanced and simplified in 7.0 EnhP1; so SAP really recommends that customers wait until the EnhP before doing a lot of FPM development.
    > 2. In the example I could see how a button is being defined, but they wont show up in my application: to be more accurate: once a refresh button showed up but just disappeared again. I guess now, that there is some error in my configuration, but instead of telling me, that there is an error, FPM just ignores my button.
    Hard to say without seeing your application and configuration.  I've never had this happen to me. Once I activated one of the standard buttons in the config. they have always appeared for me. 
    > 3. Can I never navigate back to the initial screen? In my application that would be a requirement for easy selecting another element of the tree.
    Sure - Look at the SDN Mentors' Hands-On Workshop for an example that does this ( SDN Community Day Mentor Hands-On Workshop  and http://code.google.com/p/sdn-mentor-handson-2008/downloads/list ). I use the standard Start Over button.  It fires validation and if passed will return to which ever UIBB you have defined as your Initial Screen.
    > 4. In the Flight Demo the DELETE_OBJECT button calls the CONFIRMATION view: how is the button linked to the view? In the component controller of the Flight Demo almost all methods of the interface IF_FPM_UI_BUILDING_BLOCK are empty.
    Many of the standard buttons will first fire validation methods and then if they haven't received a flag not to continue they will follow their configuration to the next step.  In the case of the delete that would be to go automatically to whatever UIBB is configured for Confirmation.

  • How to replace a field's search help of DDIC in FPM feeder class?

    Hi All,
    I want to replace a field's search help in DDIC structure, for an example, in structure HCMT_BSP_PA_XX_R0009, the field BANKL(Bank Keys) has a search help named 'H_BANKL', I want to replace this search help with other one such as 'H_BANKEY' in the FPM feeder class CL_HRESS_PER_DETAIL, I redefined such method:
    method if_fpm_guibb_form~get_definition.
    field-symbols: <fs_field_description> like line of et_field_description.
    call method super->if_fpm_guibb_form~get_definition
    importing
    es_message = es_message
    eo_field_catalog = eo_field_catalog
    et_field_description = et_field_description
    et_action_definition = et_action_definition
    et_special_groups = et_special_groups
    ev_additional_error_info = ev_additional_error_info.
    read table et_field_description assigning <fs_field_description> with key name = 'BANKL'.
    set search help name of field 'bank key'
    if <fs_field_description> is assigned.
    <fs_field_description>-ddic_shlp_name = 'H_BANKEY'
    endif.
    endmethod.
    I test it and found the search help window was replaced indeed, but all the value of import/export parameters in the new search help was lost, it means, the value of import paramer BANKS(Bank country) and the export parameter BANKA(bank name) were lost. Only the value of BANKL itself can be returned by the new search help window. Can you give me some suggestions about how to maintain the link( value exchange) between structure HCMT_BSP_PA_XX_R0009 and dynamically defined search help 'H_BANKEY' in FPM feeder class?
    I tried to use sap memory ID but it doesn't works well.

    This question was answered at [Webdynpro Forum|how to replace a field's search help of DDIC in FPM feeder class?;:
    That is because for the import and export of DDIC Search help values to work in WDA, not in FPM layer.Feeder Class can do nothing about it.

  • Need expertice opinion on WebDynpro ABAP vs FPM for heavy custom apps

    Hi Experts,
    I have a lot of custom UI development,.for external users in SAP. Most of these applications can be simply developed using WebDynpro ABAP framework. If I do the same development using FPM framework I may need to do lot of reaseach espcially controling the UI behaviours like hiding, changing table cell  colors based on the data, manipulating the UI behavior in the runtime, lot more like this.
    The question I have is , which one is the right tool for my development FPM vs WebDynpro ABAP, what is the value in building the same apps in FPM rather then WebDynpro ABAP? If I develop these apps in WebDynpro ABAP does my client loose any new capabilities in he future releases? are any other drawbacks?
    The challenge i see the FPM Feeder classses doesnt have lot of interfaces other then few like ( IF_FPM_GUIBB_FORM, IF_FPM_GUIBB_FORM_REPEATER,IF_FPM_GUIBB_LIST,IF_FPM_GUIBB_SEARCH,IF_FPM_GUIBB_TREE,IF_FPM_GUIBB_LAUNCHPAD )
    to extend more custom UI functionalities, and the other thing I may need to invest lot of time in reseacrhing and analysing the framework events etc....Please can you shed some light on it and put me in right direction.
    Appreciate your time and help.
    Thanks
    Krishna

    Hello Krishna,
    the whole story revolves around reusability and abstraction, extensibility atleast in this context.
    FPM offers more abstraction than Webdynpro. i am sure we all appreciate the standard webdynpro components for ALV, Value help, as this is something we could reuse and if we build our components that it manipulates itself with the help of configuration, customization and personalization.
    So all the Standard SAP Dev could be enhanced (not modified) by simple, configuration, FPM is built around this concept.
    So if you want to do custom development, which could be extended for your different customers with minimal efforts, you could go for FPM.
    So here are some takeaways
    1) FPM offers more abstraction than Webdynpro
    2) FPM offers more reusability
    3) Say manipulating the UI behaviour and say some customers wants view1 first and other doesnt want view 1 and wants only view 2. so in FPM you could simply do it with different configuration. and with Webdynpro, you need to manage this dynamically based on certain application parameter or you may end up copying certain comp,,or you use different usage,,,,and you could calibrate this.
    Regarding limitation with FPM interfaces, could you explictly share what custom development you intend to do and in worst cases, you could always use freestyle UIBB,, which is webdynpro abap
    in that scenario, atleast wiring, application config(app parameter, combination of webdynpro, with thier respective config),,could be reused.
    Regards
    Anurag Chopra

  • How to modify a VAC in a standard FPM Application

    Hello All,
    I have a requirement in the project where I have to modify the standard SAP delivered FPM application. But this does not involve any creation of new webdynpro iview , but to modify a VAC in the application. It is related to essbensap.com, where I ahve to modify the VAC VcBenifitsPlanSelection.
    Ploblem comes when I try to modify the implementation code of the view PlanSelectionView. It says:
    Checkout is not possible. See below for details.
    The operation requires the writeability of the following Objects:
    View com.sap.xss.hr.ben.planselection.PlanSelectionView
    ======>problem: DTR workspace is not modifiable /DN1_XSS_D~ess~ben~sap.com/src/packages/com/sap/xss/hr/ben/planselection/PlanSelectionView.wdview.xlf
    ======>problem: DTR workspace is not modifiable /DN1_XSS_D~ess~ben~sap.com/src/packages/com/sap/xss/hr/ben/planselection/PlanSelectionView.wdcontroller
    ======>problem: DTR workspace is not modifiable /DN1_XSS_D~ess~ben~sap.com/src/packages/com/sap/xss/hr/ben/planselection/PlanSelectionView.wdview
    My question is :
    Is is possible to modify the standard VAC (VcBenifitsPlanSelection). If so, then my NWDI does not allow me to do so.How to solve this error message?
    Is there any other way to solve this requirement, without any configuration issue?
    Please help, as the requirement is very urgent.
    Thanks,
    Sonali.

    Hi Sonali,
    make sure have proper auths for NWDI.
    Regards,
    Raj

  • FPM: Tooltip for the start button

    Hi FPM experts,
    I have one question/requirement concerning the start button within the FPM GAFfloorplan. I would like to add a tooltip to that button. I know that this button is part of the FPM and can not be influenced during design time.
    Nevertheless I hoped to be able to influence the button during runtime, namely by using the interface  IF_FPM_CNR_GAF and the method DEFINE_BUTTON. According to the Developers Guide for FPM Release 701 this should work for standard buttons. However I did not succeed in using this method.
    When taking a closer look at the signature I also became aware that there is one parameter missing in the signature of the interface that is described within the Developers Guide (IV_SCREEN): To the best of my knowledge this parameter is not available in 7.01/7.1 systems.
    Any help on that topic is appreciated!
    Thanks
    Christian

    Hi,
    Is this your previous thread?
    http://answers.microsoft.com/en-us/windows/forum/windows_7-desktop/how-to-display-tooltip-for-the-start-menu-items/c93e5457-0ac6-4bbd-8a54-ffacbeadf34f
    I have checked with some Windows 7 machines in workgroup, and they are all no infotips from the start menu items, this might by design.
    Besides, please take a look at the below links:
    Start Menu
    Best regards
    Michael
    Michael Shao
    TechNet Community Support

  • FPM Configuration ID Determined by User Role

    Hey All,
    Sorry for the naivete of this question, should be a quick one. I have about 10 hours experience in Webdynpro and FPM. I'm working on just creating a copy of the LO_OIF_MAIN_APP and doing a deep copy of the configuration IDs. Everything works great, easier than when I tried this about five years ago. Now I have a config ID of my own (ZLO_OIF_SDOC_APP_CP) that has my own changes in it. However, when I launch NWBC I get the canned version and not mine. Of course, I'm missing a tie here but I can't seem to find it. What ties this to my user-id? I've deeply searched the likely tie, that being the role of SAP_SR_INT_SALES_REP_5...no luck. My end goal is to create three distinct configurations of the Sales Order Interface for different Sales Order users. One for Returns, one for Credits and one for Orders. How do I tie them to the user-id? What simple component am I missing?
    Thanks for your help!
    Greg

    Hi Greg,
    Please replace the WD object LO_OIF_MAIN_APP with your custom application in role  SAP_SR_INT_SALES_REP_5 as below
    Hope this helps you.
    Regards,
    Rama

  • Picture in the Header in Portal (FPM)

    hello,
    i want know why, I am not getting the picture of the employee in Portal, the application is made with FPM,
    my question is?  Pictures in the portal and Infotypes will be read from which data base? is it TOAHR?
    thank you all

    Thanks for the help Priya... and one more thing is I tried giving the date in the header region with Date:<?xdoxslt:sysdate ('dd-MM-yyyy’)?>. is it necessary that the xml output that we get should be in a specific date to include this tag.... and can i use the insert page numbers in the template directly from the menus in word... does this work in the prod instance... pls help me
    Thanks

  • Does the FPM can be integrated with smart business?

    Hi,colleagues
    There is a system solution like this:
    The data maintain and calculation is done in FPM applications (SAP ECC), while the data analysis is displayed in Smart Business (SAP HANA).
    So comes to the question: In the FPM applications, does the smart business can be presented for end-users? otherwise end-users have to open the smart business in launchpad.
    Thanks a lot in advance!
    Best regards,
    Daniel

    There are few third party Addons for "Project Management" for SAP B1.
    There is an Addon called 'ICON' from Xenolith Technologies, Calcutta, India.
    [http://www.xenolithtechnologies.com/icon.html]
    This addon allows integration between B1 and MS Projects

  • Portal Workprotect in Talent Profile - WebDynpro ABAP FPM application

    We are trying to implement Workprotect in ESS - Talent Profile application (HRTMC_EMPLOYEE_PROFILE). The requirement is that when user had entered data in either Internal work experience, External Work experience or other tabs; before he has saved the data, if the user clicks on some other link in portal or try to close the window, Portal work protect that is enabled should prompt the user to save the data or risk losing data.
    What has been done so far:
    1. Enabled Workprotect on Portal:
    Step 1: In the portal, go to System Administration -> System
    Configuration -> Service Configuration.
    Step 2: In the portal catalog, Select
    application "com.sap.portal.epcf.loader" and open the properties for
    service "epcfloader" for editing
    Step 3: Set property workprotect.mode.default = 3
    Step 4: Save -> Restart service
    Now, Portal Work protect is enabled.
    2. On the Talent application end, I have seen many posts in forum & FPM related workprotect documentation. But, it is not clear as to how this actually works when it comes to FPM application.
    The documents says FPM allows application to make use of work protect
    mode offered by Portal. To achieve this, the application must u2018tellu2019 the
    FPM whether it contains unsaved
    (u201Cdirtyu201D) data. For this, the FPM provides the Web Dynpro Interface
    IF_FPM_WORK_PROTECTION. In the is dirty method, you have to put
    METHOD is_dirty.
    if * component contains unsaved data
    ev_dirty = abap_true.
    else.
    ev_dirty = abap_false.
    endif.
    ENDMETHOD.
    Questions:
    1. If you see the shared application component HRTMC_TP_SHARED_DATA, it implements interface IF_FPM_WORK_PROTECTION. But, the isdirty method in the component controller has already existing code
    METHOD is_dirty.
    ev_dirty = wd_this->mv_is_dirty.
    ENDMETHOD.
    Where should we put the code given below as described in FPM documentation. In shared component or in individual components like HRTMC_TP_WORKEXP_INTERNAL, HRTMC_WORKEXP_INTERNAL, HRTMC_TP_EDUCATION
    etc.
    METHOD is_dirty.
    if * component contains unsaved data
    ev_dirty = abap_true.
    else.
    ev_dirty = abap_false.
    endif.
    ENDMETHOD.
    And, the line "* component contains unsaved data" as described in document- how do we code this for talent profile considering that there are multiple components, shared component etc? My requirement is that if user has entered some data in any of the tabs like internal work experience, external work experience, then work protect should work if
    user tries to navigate away or close browser.
    2. If you see general documentation for Work protect and webdynpro (not for FPM), it says that the application must define a special status (dirty flag), which tells the portal when there is unsaved data. You can set and cancel this status (TRUE, FALSE) using method
    SET_APPLICATION_DIRTY_FLAG in interface IF_WD_PORTAL_INTEGRATION.
    And it goes on to say that one must set application flag dirty
    SET_APPLICATION_DIRTY_FLAG
    exporting
    DIRTY_FLAG = TRUE | FALSE
    and also set work protect mode
    call method L_PORTAL_MANAGER->SET_WORK_PROTECT_MODE
    exporting
    MODE = NONE | APPLICATION_ONLY | BOTH
    3. Which is the correct way to enable Work protect in case of Talent profile applications? Which method of which component should should we add code to? Which of the above ways should we follow ( Interface IF_FPM_WORK_PROTECTION or IF_WD_PORTAL_INTEGRATION) ? Which component and which method should we Set Work protect and  Set isdirty
    Please advise.

    Hi Experts,
    Can you please provide some useful info in implementing work protect in Standard FPM WebDynpro ABAP applications? In this case, as mentioned above, the application is  ESS Talent Profile application (HRTMC_EMPLOYEE_PROFILE).
    Thanks,
    Sandeep

  • Custom FPM Application: application variant and self services config in PCD

    Hello,
    I've created a webdynpro based on FPM framework and created a FPM Application using the Self-Services administrator too.
    My question is, how do I get the application variant so that I can create an iview out of this custom fpm application?
    For example, the perspective of my FPM application has the custom wd FPM View and I'd like to add more fpm views to it.
    If I want to create a page for this FPM app, I need to be able to "see" these added FPM views as application variants while creating the iviews and page.
    For all the delivered SAP components/dcs there already present the FPM Applications in the PCD.
    How about custom developed FPM apps?
    Any help is greatly appreciated.
    Thanks,
    Rajit
    Edited by: Rajit Srinivas on Apr 8, 2008 8:47 AM

    Anybody, please any ideas?

  • How do FPM properties get pulled through to containing iViews?

    I'm trying to figure out something related to the FPM. I can't find anything on this particular issue on SDN, and my colleagues and I are all stumped. You can define properties in FPM views, and read these from within your Web DynPro application, if it uses the FPM. This works fine when you run your application directly - that is, not through SAP portal.
    However, as soon as your application is running in a portal, it doesn't read properties from the FPM application or the FPM view - it reads them from the properties of the iView in which your application is running. That's fine. Apparently, when you create an iView based on a Web DynPro application, if the application uses the FPM, the iView will pull through the appropriate FPM properties. However, it doesn't appear to be that straightforward.
    In particular, often, the FPM properties configured by SAP pull through, but custom ones do not. When I create these properties manually using the PCD inspector, the application still can't pick them up. Also, colleagues have reported that when transporting iViews that contain these generated properties system-to-system, the generated properties disappear from the iView profiles, and the iViews need to be recreated to have them pull through again.
    So, I have some questions:
    1. Exactly how does this mechanism work? If I create an iView based on a particular Web DynPro application, does the runtime actually go and look in the application properties to see if it uses the FPM, then go and look in the specified PCD location to find the FPM application, and then include in the iView the properties of each view? Seriously?
    2. If so, how does this work for the old style Cc-components? What if my application's configuration is not in the PCD?
    3. Why is this procedure not working, then? Is there a special way in which the FPM view properties need to be created in order to pull through?
    4. Are these conventional properties? Is it at all possible that they would disappear in a transport from one system to another? Are they somehow derived from the application/view at runtime, despite the fact that they seem to be in the PCD?
    5. Are the properties in the iView in some way kept in sync with the application? If I remove, add, or change a property in the FPM application, do I need to recreate the iView to update it? If I do a 'reset all properties', will that do it?
    I know there are a lot of questions here, but I'd be tremendously grateful if anyone could shed some light on any of this. The results we're getting from our tests are essentially inconsistent, and we're pretty stumped.
    James

    I do feel your pain, but note that most here are volunteers and dont work for Mozilla.
    No the homepage can't be changed, also note that apps being locked on your phone may be because of things that your mobile carrier (Verizon, AT&T) puts that on the phone.
    SEE: https://support.mozilla.org/en-US/questions/969365

  • Hiding FPM "Close" button in Portal/NWBC

    Hello,
    First some background, when you launch a WDA FPM application in the portal on of the standard buttons that it shows is the "Close" button. This button allows for the closing of the current browser window, When the FPM application is displayed inplace in the portal, this sort of behaviour is not very useful!
    There was a thread : Re: Disable 'Close' button in Standard billing FPM Application in which Thomas Jung gave a detailed explanation of why this button was appearing and a very good suggestion on how to stop it.
    I understand how I can hide this button - albeit a long winded process when the element is not available for personalisation unless you launch the application from NWBC or a portal (and with our dev portal not by default pointing to our configuration master client...) sigh... 
    I also understand that the WDA application is completely unaware that it is in an external portal window, or displayed inplace in the portal (although if it calls a new portal URL it can specify whether it should be displayed inplace or external).
    What I don't understand is why this is the case - The portal has an API - Class AbstractNavigationConnectorNode method getShowType which returns whether the window is external or inplace, surely the WDA handler for the portal could query this and expose it to the WDA frameworkn through the interface IF_WD_PORTAL_INTEGRATION. Then it would be simple to hide the close button for inplace windows and show it for external windows.
    Given that the portal allows users to launch whichever pages they want externally (although I tend to always turn off this option) it is very hard (i.e. not possible) for us to know for sure if the application will be launched inplace or externally - so "hard coding" the visibility of the close button by personalising the application is not a great solution.
    WDJ is aware of the inplace/external nature of the portal window that it is running in and applications do code to support this. It seems to me an omission that WDA does not have this same level or knowledge of the portal environment that it is running in.
    Are there any plans to extend the IF_WD_PORTAL_INTEGRATION interface to support this? Or are WDA applications destined to a less informed life than their WDJ cousins.
    Sorry for the rant like nature of this post - but I hope that someone from SAP might be able to help me understand this problem.
    Cheers,
    Chris

    Hi Chris,
    Sorry about the late reaction. I think that is because of the nature of the question and the person who is asking. You are one of the expert people who are in SDN to help people. If you ask such questions then it is mostly stay not answered :).
    I have encountered this problem earlier this year and also we have had several emails between Thomas Jung. We are not coming further than to follow Thomas suggestion to Disable the close button in Portal.
    regards
    Senthivel

  • Using AcfUpDownload in FPM Application  of WD4A?

    I have a Webdynpro ABAP  appliction running on FPM . I have a requirement to download the mulitiple pdf documents  to the client's pc/laptop location like  C:     emp  silently  .
    For this requirement I gone through Thomas Jung tutorial using cahce service in webdynpro . Link-[Tutorial|http://www.sdn.sap.com/irj/scn/elearn?rid=/library/uuid/109b9b52-bc00-2c10-8786-e4c5e96d7e04&overridelayout=true].
    In this tutorial the webdynpro application created in SICF service is does not belong to any webdynpro or BSP application.
    My question is whether this scernio can be imlemented in Webdynpro components running on  FPM ?(/sap/bc/webdynpro/sap/).

    Thanks for the reply Thomas.
    I have a requirement to download multiple pdf  documents on to users laptop's based on document id of the employee.
    I have encorporated your code and able to download a PDF document of 0 KB.  I have maintained the pdf data in the temporary database table cache along with callback_id , Mime type as pdf , GUID etc.
    Can any one  clarify below questions --
    1. How do i handle the pdf content data in the output?(to dispaly the data instead of 0 KB) ?
    2.Do i need to use IF_WD_ACFUPDOWNLOAD_SCMS~HTTP_PUT to put the data  into cache ?
    3. Need clariifcation in using URLS parameter in  IF_WD_ACFUPDOWNLOAD_SCMSHTTP_PUT  and IF_WD_ACFUPDOWNLOAD_SCMSHTTP_GET  ?

Maybe you are looking for

  • Can no longer delete pictures in Windows Explorer when connected by USB.

    I have in the past been able to plug in my iPhone 6 and older phones by USB to my Windows 7 machine. Then I can go into the phones image folders and move, copy, or delete pictures. I've noticed now that when I'm "moving" pictures its actually just co

  • ACR 5.7 can see camera profiles in Bridge CS4 but not in Lightroom 2.7

    When utilizing ACR5.7 through Bridge CS4 - the cameral profiles are easily applied for my .NEF files (Nikon D300) but when I am in Lightroom 2.7 the camera profiles are not available unless I convert the nef to DNG.  I have tried to search the web an

  • Unable to place order with new credit card.

    I just opened a Best Buy Mastercard. I was under the impression I would be able to shop with it online immediately. That's what your site says and that's what the girl told me that helped me complete the process. I put the appliances I wanted in my c

  • SSO with Apex 4.1.1.00.23

    Hello Apex community, i want to implement a SSO solution between an apex and non-apex application. This solution worked with Apex 4.0 but seems not to work with current 4.1.1.00.23. I've set up a test case on hosted environment. Dev User: Workspace:

  • Windows reboot after start-up

    I installed bootcamp back with the beta version, then put Vista (new, out of the box) on the computer. It worked only after trying to boot several times. I then figured it was a beta issue so I bought Leopard only to have the same problem. Everything