Configuration Component or Application Configuration in PCD?

Hi,
If I develop a self-service application based on FPM, do I have a choice between implementing a Configuration Component and implementing an application configuration in PCD? Or, both of them should exist/be created?
I'm confused between the both.
Is sap.xss.BaseConfigurationID a mandatory parameter for a self-service app?
http://help.sap.com/saphelp_erp2005vp/helpdata/en/43/3b95dab4ab1800e10000000a1553f6/content.htm
Any details are most welcome. I'm looking for a technical explanation (lets say, the initial steps of building a self-service application).
My setup is ECC 6.0, EP7 SP13.
Thanks a lot,
Rajit

Hi thenewmexican62,
Take a look of this pretty useful document of Embedding and importing Flash assets into Flex.
http://livedocs.adobe.com/flex/3/flash_component_kit_flex3.pdf
Thanks,
Bhasker Chari

Similar Messages

  • Package assignment for wd component and application configuration

    Hello,
    Is it possible to change the package assignment for wd component and application configuration?
    Usually it is possible via "Other Functions" but for configurations this option is not show
    Best regards,
    Paul

    Hi,
    For the Web dynpro component there is an option of  other functions,
    but for application configuration  i couldnot find out.
    Priya

  • Component and Application Configuration not working

    Dear Friends,
      I want to disable the reject button in HCM Processes and Forms Webdynpro component HRASR00_PROCESS_EXECUTE and in application asr_process_execute only for some specific roles in Portal. So I tried to use the component configuration followed by the application configuration and passed this configuration id as a application parameter in the Portal, but its not working.Please find below the config steps which I did, let me know if I am missing anything.
    1. Created a new Component configuration ZTEST for the Webdynpro component HRASR00_PROCESS_EXECUTE  and changed the property of the Reject button to "Invisible".
    2. Created a new Application configuration ZTEST1 for the Webdynpro application ASR_PROCESS_EXECUTE and included the component configuration in the application configuration.
    3. Created an Application Parameter WDCONFIGURATIONID for the Webdynpro application ASR_PROCESS_EXECUTE and hard coded its value as ZTEST1(Application configuration ID) for testing purpose.
    4. Tried to test the application from Portal, but didn't work. I don't think the UWL customization is required at this point as we have hardcoded the WDCONFIGURATIONID in the Webdynpro Application.
    Regards,
    Sapient

    Hi,
    We had a same issue....the work around we got was that we had to create an enhancement...we removed the standard button...and created our custom button in place of the standard button....of course...the action method for our custom button was the same as the standard button....now since it is a custom button we were able to control the visibility of it....
    you can try to do it the same way....there is no coding involve in this...only removing the standard button and placing in your own button....SAP does not allow changing the properties of the standard ui elements.....just want to mention that by removing the standard button...you are not actually removing the button....it stays on the layout....but it will not show up when you run the application....but your own custom button will show up....
    If you do not know the procedure of removing the standard ui...it is fairly easy...right click on the ui element under the ROOTUIELEMENTCONTAINER...and select remove element....as i said before do not worry you are not removing it completely...it stays on the layout...and if you want to put it back...just right click on it again and select "undo deletion"....that is all
    once you have your custom button there...you can control it the way you want...depending on the role....
    Thanks..
    AS...

  • Component and application configuration for RPLM_QIMT_NOTIF_MAIN_COMP

    Hi folks,
    I've been enhancing a used component RPLM_QIMT_NOTIF_COMP as part of RPLM_QIMT_NOTIF_MAIN_COMP and I now need to configure the display output for a new application, but it doesn't work??
    I have configured components and used components of a completely bespoke application and all works correctly, but when I configure the enhanced standard components RPLM_QIMT_NOTIF_MAIN_COMP & RPLM_QIMT_NOTIF_COMP the changes don't take effect???
    Am I missing something? Is there something else I need to do to enable the configuration for standard (enhanced) webdynpro components?
    Many thanks,
    Drew

    Hi Drew,
    You have to explicitly load the component configuration using the following:
    data: l_personalization    type ref to if_wd_personalization,
            l_current_controller type ref to if_wd_controller,
      l_config type wdy_config_key.
      l_current_controller ?= wd_this->wd_get_api( ).
      l_personalization = l_current_controller->get_personalization_manager( ).
          l_config-config_id = 'ZCOMPCONF'.
          l_config-config_type = '00'.
          call method l_personalization->load_config_by_key
            exporting
              config_key            = l_config.
    Hopefully this will do the trick !

  • Difference between component configuration and application configuration in webdynpro

    what is the difference between component configuration and application configuration in webdynpro?

    Hi Rohit,
    With the component configuration, you can control the behavior of each individual component within a Web Dynpro application or the user interface of individual views. For each component, several records of configuration data can be created.
    Using the application configuration, it is now possible to assign the configuration required in the current application to all the components used.
    In short : Component Config belongs to WDP Component and Appl'n Config. belongs to WDP Appl'n.
    Check this document for more information.
    Web Dynpro for ABAP - Component and Application Configuration
    Thanks
    KH

  • WD4A Component/Application configuration (urgent! please any comments)

    Hi experts,
    I want to adapt qimt_notification_app. I just want to blank some fields via implicit variant configuration.
    I found out, that RPLM_QIMT_NOTIF_MAIN_COMP is the main component and refers to RPLM_QIMT_NOTIF_COMP.
    I made a component configuration from RPLM_QIMT_NOTIF_COMP and put some UI elements of the views invisible. Afterwards I made an application configuration based on "qimt_notification_app".
    Now I have troubles to bind the component configuration to the application configuration. Can anyone tell me to which Component Usage I have to add the component configuration? I bound it to all RPLM_QIMT_NOTIF_COMP components but when I test the configuration it doesn't work.
    URL: .../sap/bc/webdynpro/sap/qimt_notification_app?sap-language=EN&sap-wd-configId=ZTEST_QIMT_NOTIFICATION_APP2
    but the right click on the GUI --> "more field help" --> shows:
    Application:                     QIMT_NOTIFICATION_APP
    Web Dynpro Component:  RPLM_QIMT_NOTIF_COMP
    Window Information:         NOTIF_MAIN_WINDOW
    View Information:              NOTIF_ENTRY_VIEW
    Configuration ID:               QIMT_NOTIF_                    <-- I supose ZTEST_QIMT_NOTIFICATION_APP2
                                                                                    should be standing here!
    THANKS for your help!

    Looks like there is some problem with the PanelGroup that I have bound to a property of the managed bean. I use this panel group to generate the menu. Since menu changes depending upon various factors, so every time menu changes, I clear the children of the Panel and add new components to it. Perhaps that's the reason I am getting this error...
    but isn't that the purpose of binding a component to backed bean property, so that we can make changes to it from the backing bean.
    Is it a bug or I am doing some thing wrong?

  • Error while creating Application Configuration as given in WDP-tutorial5

    Hi All,
    I'm a beginner to webdynpro ABAP. I tried the example given in
    'Web Dynpro for ABAP: Tutorial 5 u2013 Component and Application Configuration', but got stuck when tried creating  an Appication Configuration.
    ie. in Web dynpro application create/change configuration  after giving the configuration name I clicked on create in the browser, but it resulted in a error message saying
    'Error sending data, session terminated ' of termaination type TH_RES_FREE.
    Please suggest me a solution to resolve this.
    Regards,
    Manoj Kumar P

    That sounds like lower level system problems - like like of available memory.  That doesn't sound like a normal application error or even a short dump.  You should have your Basis administrator look at the system logs for that time period.  Does this happen every time you try this particular action?  Have you checked ST22 to see if there are any other details on the error?

  • E-Recruiting: TEXT change through application configuration

    Hi,
    When i am replacing texts of different text elements through application configuration(Web dynpro context), I find the spaces preceding and following the text matter being ignored while displaying the same on the front end.
    Texts on different lines are shown in a continous  pattern, rather than showing in on different lines.
    I want to show them as i configure in the application configuration.
    Any help is apprreciated.
    Thanks,
    Suresh

    Hello Suresh,
    there are basically two ways of changing e-recruiting texts in web dynpro. As most texts are OTR texts, after implementing BAdI BTFR_CONTEXT, you can create customer contexts on the standard otr texts which will replace them in the ui. This was the only solution in BSP ui and is still very popular. The only restriction is that you can only have one alternative text.
    If you want to change the standard text in different customer texts as you want to have different descriptions for different target groups you can only use the web dynpro configuration. Unfortunately web dynpro configuration seems to change with every basis support package. At least in e-recruitng there are at 3 or more different ways to change the configuration for fields and roadmaps depending on the SP you use. I know that when we started with web dynpro for e-recruiting you could not change texts longer than ~40 characters and clearing an otr text resulted in the display of the technical name instead of an empty text.
    So far I did not met your problem in detail, but it could be a bug. So if you are on an older support package check the service marketplace. If you are on a current sp or cannot find a solution try to open a support message.
    If you need a quick fix, check if you can use the OTR context for a interim solution.
    Best regards
    Roman

  • How to configure oracle 6i report server run time component with application server

    we got oracle 6i report server for developing the web based reports for our undergoing product. we r succesed in developing the web based reports using oracle 6i report server.But we r facing problems while deploying the product with oracle reports at clients place,why because the client does not have the oracle 6i report server. To solve this problem we have to configure the oracle 6i report server run time component with application server at client side , but we are unable to configure this component(that is CGI handler).

    You can run multiple instances of Reports Server in 6i.
    In tnsnames.ora, for each server, have a different name and each listening to different port.
    For example,
    server1.world = (ADDRESS = (PROTOCOL = TCP)(Host = myhost.mydomain.com)(Port = 1949))
    server2.world = (ADDRESS = (PROTOCOL = TCP)(Host = myhost.mydomain.com)(Port = 1950))
    Also, if you want to know about Reports Server Clustering, you may refer to "Publishing Reports" document on OTN:
    http://otn.oracle.com/docs/products/reports/pdf/A73173_01.pdf

  • Multiple application Configurations /Component Configurations.

    Hi,
    I want to know in which scenario we  have to create multiple application Configurations and multiple Component Configurations.
    Plz explain With examples...
    Best Regards,
    dev

    A component config controls the component it self. All views.
    eg a Component when called with config SALES, hides all PRODUCTIN fields.
    Or a Component called with config EXTERNAL automatically switches fields to DISPLAY only. whatever...
    You can see why many configs of 1 component make sense.
    Now you also know   a component can embed other components.
    SO how to you string these all together.
    When you configure an application:
        You simple choose one of the configurations for all embedded components
    that should be used.
    The APPL config tool, looks inside components to find other embedded components.
    You can have a deep selection of component configuration until you reach the lowest level.
    Hence why APPLICATION configuration is required and not just component configuration.
    The application config can have many component config selections inside it.
    Cheers
    Phil

  • Creation of an Application Configuration and corresponding Component Config

    I try to create an application configuration , by going  to the object tree at the left hand side and do right click on the application object and select Create/Change Configuration
    but i get the following error text  : Screen output without connection to user.
    why ?
    any help

    Hi,
    i dont see this problem ever.
    Please check this Article to create Application configuration.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b52e13c3-0901-0010-8fa6-d11a51821b7c
    Thanks
    Suman
    Edited by: suman kumar chinnam on Sep 17, 2008 2:25 PM

  • Custom Application Configuration not pulling the data in E-Recruiting

    Hello,
    My requirement is to make some fields 'required', hide some buttons, change button texts & hide some columns in standard wd component (ERC_A_REQ_MGMT) delivered by SAP. So I created an application configuration and component configuration and did the layout customization. Now in the application I am passing this new configuration name with the parameter (sap-wd-configId)(......sap/bc/webdynpro/sap/erc_a_req_mgmt?sap-wd-configId=ZZERC_A_REQ_MGMT)
    As this is a portal environment, in LPD_CUST, In the application parameters, I've used this parameter (sap-wd-configId=ZZERC_A_REQ_MGMT). The custom application is displayed, however, the data is not being passed to this custom configuration, so when I open a exisiting requisition from dashboard, this is shown as empty screen (like a new requisition), but when I take off this parameter from the lpd_cust, the standard app is working fine. Can you please help me understand why the data is not being passed to the custom application configuration?
    Really appreciate your insights.
    Thank you.

    Hi,
    We faced the same issue in SAP E-recruiting EHP4 solution. The reason is, the configuration which is assigned statically in FPM editor is loaded after the OVERRIDE_EVENT_OIF and thus discards all context nodes which have been already initialized. Afterwards, the context node of has no value anymore and the field on UI doesnu2019t display anything.
    Remove the static component configuration in the FPM editor and use the following code in the wddoinit method of the view V_GEN_JOB_INFO. This assignment happens at the runtime.
      data: lo_api_controller          type ref to if_wd_component,
            lo_pers_manager            type ref to if_wd_personalization,
            ls_configuration           type wdy_config_key,
            lt_config_table            type wdy_config_table,
            ls_config_header           type wdy_config_header,
            lo_fpm                     type fpm_s_runtime_info,
            ls_fpm                     type fpm_s_runtime_info.
          lo_api_controller = wd_comp_controller->wd_get_api( ).
         lo_pers_manager = lo_api_controller->get_personalization_manager( ).
         lo_fpm = wd_comp_controller->go_fpm->get_runtime_info( ).
        ls_configuration-config_id    = u2018ZERU_REG_REQ_MGMT_UIu2019 u201C Your Component configuration name
        lo_pers_manager->load_config_by_key( ls_configuration ).
       Thanks,
       S Rajkumar.
    Edited by: Rajkumar S on Aug 24, 2010 7:54 AM

  • SSO Application Configuration .msc - Unable to load mmc and unable to uninstall/repair

    This tool was installed on a QA server by an ex-employee and nobody knows for sure if it ever worked.  Attempting to uninstall/repair fails with below errors in the event log.
    The description for Event ID 11001 from source MsiInstaller cannot be found. Either the component that raises this event is not installed on your local computer
    or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event:
    Product: SSO Application Configuration -- Error 1001. Error 1001. Company Name is a required field.
    (NULL)
    (NULL)
    (NULL)
    (NULL)
    The description for Event ID 11001 from source MsiInstaller cannot be found. Either the component that raises this event is not installed on your local computer
    or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event:
    Product: SSO Application Configuration -- Error 1001. Error 1001. An exception occurred while uninstalling. This exception will be ignored and the uninstall will
    continue. However, the application might not be fully uninstalled after the uninstall is complete. -->
    Cannot delete a subkey tree because the subkey does not exist.
    (NULL)
    (NULL)
    (NULL)
    (NULL)
    The tool is currently unusable.  And worse, we cannot uninstall and re-install this tool.  Please advise.

    Hi,
    Sadly i had the same issue trying to uninstall the SSO App Con...
    I also could not repair the install due to another 1001 error.
    Instead of uninstalling the program i found the registry file i needed to repair the install and imported it to my registry.
    1 Open notepad and paste the following
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\MMC\SnapIns\FX:{ce255ef6-9e3d-42c8-b725-95ccc761b9d9}]
    "UseCustomHelp"=dword:00000000
    "Type"="Microsoft.ManagementConsole.Samples.ActionsSnapIn, SSOMMCSnapIn, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null"
    "ApplicationBase"="C:\\Program Files (x86)\\Microsoft Services\\SSO Application Configuration"
    "ConfigurationFile"="SSOMMCSnapIn.dll.config"
    "NameString"="SSO Application Configuration"
    "Description"="Allows a BizTalk Administrator to Configure the SSO Configuration Store"
    "Provider"="Microsoft"
    "ModuleName"="SSOMMCSnapIn.dll"
    "AssemblyName"="SSOMMCSnapIn"
    "RuntimeVersion"="v2.0.50727"
    "FxVersion"="3.0.0.0"
    "About"="{00000000-0000-0000-0000-000000000000}"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\MMC\SnapIns\FX:{ce255ef6-9e3d-42c8-b725-95ccc761b9d9}\NodeTypes]
    [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\MMC\SnapIns\FX:{ce255ef6-9e3d-42c8-b725-95ccc761b9d9}\Standalone]
    2 Save file as .reg
    3 Open regedit.exe and import the saved <filename.reg> 
    This should allow you to use the SSO App Conf.. again.
    I hope this helped.

  • I just installed LV2011 and one dll from my vi won't load with the error "application configuration is incorrect"

    I just installed LV2011 and one dll from my vi won't load with the error "application configuration is incorrect", which is Windows lingo for "missing package dependencies".  All the computers at my company with 2010 loaded seem to do OK.  When I do a Dependencies Walk I get missing Visual C debug dll's missing plus IEshims and wer which both have a whole tree of dependencies missing on my machine.  The Windows install is the same "Windows XP version 2002 Service Pack 3" on my PC and the working PC's. So I'm thinking I have to uninstall 2011 and go back to 2010.  Is this correct?  Those VC debug dll's were installed on the machines with 2010 in them but were not installed in mine.
    I've heard the advice to recompile the dll with debug turned off but I don't have access to the source code.
    Thanks in advance.

    u87 wrote:
    Thanks for the reply.  This at least tells me that going back to LV2010 is not likely to solve the problem.  The missing dll's are:
    MFC90D.dll
    MSVCR90D.dll
    IESHMS.dll
    WER.dll
    And, once again, IESHMS and WER have other dependencies.  So perhaps i need to install the Visual C++ development environment.
    IESHIMS.dll is an Internet Explorer DLL that gets usually delay loaded by shdocvw.dll. As delay load it can not cause DLL load errors but only runtime errors. Maybe your DLL has it as direct dependency but that is unlikely since it does not have a documented interface.
    WER.dll is Windows error reporting for Vista/Win7.
    MFC90D.dll is the Microsoft Foundation classes and MSVCR90D.dll is the MS C runtime library, both as debug variant.
    So all the DLLs you mention are actually MS DLLs! You haven't identified the DLL that you try to access in LabVIEW that causes these error messages. IESHIMS and WER are usually delay loaded by any component that needs it and should not likely be used by non MS code.
    What is the DLL you try to load into LabVIEW and by whom? Get the provider of that DLL to provide you a non Debug build of the DLL. Installing Visual C on all the machines just to make the DLL load is not a solution, besides that it is likely not legal since I doubt you have that many licenses.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • ABAP Web Dynpro: Application Configuration vs Admin Personalization problem

    Hi,
    I created an application configuration for the application MT_ORDER_APP with a component configuration on RPLM_MT_ORDER_COMP.  I changed several Labels and UI Element visibility... and saved.
    When I test this application config for viewing an order of type ZX99, I don't see my changes.  If I right-click on the page, I see that the configuration Id used is MT_ORDER_ZX99.
    Why my Z config is overrided by this one???
    By testing in Admin mode, I discovered that I can personalize this MT_ORDER_ZX99 Config.... But then, the changes are visible to all users viewing ZX99 type orders.
    How to manage to make my Application Config highest in priority?

    Hi,
    how did  you  open in administrative mode?
    to open in adminstrative mode do as follows:
    In se80 ,i.e in the menu bar:
    Web Dynpro Application->Test->Test in Administation mode.
    i hope u can see the option "Settings for surrent config" .
    you can refer the thread.
    [Re: ABAP Web Dynpro Application changes in Administation mode]
    Priya.

Maybe you are looking for

  • Need advice on setting up RAID.

    I just purchased a Mac Burly 4 Bay Hard Drive Array with 4 ST31500341AS - Seagate Barracuda 7200.11 1500 GB SATAII 32 MB cache Drives.  I will be using this array to store HD 1080i HD video.  I am working on a Mac Pro I just installed  a LYCeSATA PCI

  • Macbook displays a question mark sign(?) on screen

    I have a 13" Macbook. I had a 250 gb and a 500 gb internal hd's already crashed. I just bought a brand new 250 gb thought that this will work. I was wrong. I inserted this hd and turned on the on-switch. The same screen I saw earlier showed again-a b

  • Why does web printing come out so small

    After selecting from a web page, there's nothing worth printing or saving as PDF, as it's all too small to read.

  • Wrong discount

    Following Problem: 1.     There is a price for an item : 5,00u20AC 2.     There are some BP´s. They have a specialprice for that item: 4,50u20AC 3.     There are Period- and volume- Discounts, where the item only costs 1,00u20AC The program did follo

  • How to invoke OK button in Modal JDialog

    Hi, I have two buttons in a Modal JDialog box OK, Save. The functionalities are written in actionPerformed(). But when I click the OK or Save button, the function is not getting invoked. JDialog jd = new JDialog(); jd.setModal(true); jd.show; Please