ByD Studio // Extension // Find modal window

Hi everybody,
I use ByD Studio.
It is possible to add extension (field) to a BO of the public solution model.
It is also possible to add this field in the user interface via :
- adapt mode in the UI
- the ByD Studio.
My issue is to add the extension field also in the "Find" modal widows. (the windows that opens when you have to select a product in a purchase order for exemple)
It is possible to do this in the UI or the Studio ?
Thanks.
Charles PAULET

These are called Object Value Selectors. You can create an OVS for a custom BO but you cannot extend an existing OVS with extension fields (as of 3.5; no idea if this will change in the future)

Similar Messages

  • Adobe Form NOT getting displayed in WebDynpro Modal Window  (Pop Up)

    Hi,
    I am trying to display the table data in a Interactive Form. I have used TABLE UI element in Interactive Form. When the user clicks on a EXPORT button this form is displayed in a pop up window (Modal Window). This form is not getting displayed for most of the users. In some PC's it is getting displayed, strange is all their browser versions and OS versions are same.
    Portal Version: NW04s SP8
    NWDS Version : NW04s SP8
    Adobe Live Designer: 7.1
    Acrobat Reader: 7.0.8
    I tried changing the display type (property of Interactive Form Element) to NATIVE, it is not working at all. If i change it to "activeX", then it works in some PC's.No logs are found in the server as well as in the client PC as well.
    Please let me know if you have come across this problem, looking forward to your solution.
    Thanks
    Senthil

    Hi,
    It seems to be available only for ABAP version. I cant find it in the java version.. check this..
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/656442a1c4de54e10000000a155106/frameset.htm">Help SAP Link for Java Reference</a>
    And even in ABAP , the pre-requisite seems to be installation of ACF,
    The exact words
    <i>
      Adobe Reader (>= 7.0) and, if you are creating interactive forms, also the ActiveX Control Framework (ACF) installed on your computer. Also see SAP note 834573.</i>

  • ByD studio \ Sale order \ Changes

    Hi everybody
    I want to do a report where I can see who and when Sale order credit limit has changed.
    Is there a BO in ByD studio where you can get info from pane "Changes" in the "Sales oder" form ?
    Thanks,
    Charles.

    Do mean a report that displays the person changed the credit limit by date?
    In response to your last question, I can't be of much help. Each BO has identity management that identifies the user when a change is made.
    So what you could do is do
    - create custom BO that contains the relevant reporting fields: SO ID, ID of user making change, Credit limit
    - create a Data Source for this BO
    - create a BO Extension to the Sales Order BO that contains the fields above
    - create an AfterModify script for the extension that populates the custom BO (possibly removing duplicate rows)
    - create report from above data source
    Good luck!

  • Use of identifier in ByD Studio business objects

    As Wed Feb 2nd in VQ3), we introduced a new identifier data type for partner BOs.
    ByD Studio contains 2 identifier:
    element ID                 : ID;                  // identifier 2 (SAP "best practiceu201D)
    element Identifier   : Identifier;           // identifier 1 (u201CCCTS compliant")
    As the CCTS-complient  data type u201CIdentifieru201D has various difficulties, we recommend urgently to use the data type "ID". The differences between the two data types is explained below:
    1. Length
    The DT Identifier has a length of 255 char.
    The DT ID has a length of 60 char.
    2. Upper case conversion
    The DT ID supports upper case only. User entries with lower case characters are automatically converted to upper case. This is the same behavior as almost all ByD identifier data types (e.g. BusinessTransactionDocumentID, ProductID, BusinessPartnerID, etc.)
    The DT Identifier supports lower case letters as well.
    3. Alpha conversion
    The DT ID supports alpha conversion. User entries which contain number characters only are filled with zeros from the left side (leading zeros). On the UI the leading zeros are suppressed automatically. This is the same behavior as almost all ByD identifier data types (e.g. BusinessTransactionDocumentID, ProductID, BusinessPartnerID, etc.) The DT Identifier does not support alpha conversion. This leads to an u201Cunexpectedu201D sort order on the UI.
    This leads to the following sort behavior:
    Sort order ID     Sort order Identifier:
    .1.1                           .1.1
    1                            1
    5                            1.1
    10                            10
    15                            100
    50                            15
    100                            5
    1.1                            50
    ABC                            abc
    (no lower case)       ABC
    4. Structure
    The ID data type is flat. There is no need for the u201C.Contentu201D suffix any longer.
    The Identifier data type is structured (contains supplementary components), so the  u201C.Contentu201D suffix  is needed (although the supplementary components are disabled in the BO).
    5. Behavior in ByD script coding:
    The following coding works fine:
    import ABSL;
    var x = 1;
    if (this.ID == "") {
    // is true if ID is initial
    this.ID = x.ToString();
    this.ID = "1";
    if (this.ID == "1") {
    // is does not work, because u201C1u201D was filled with leading zeros
    if (this.ID == "000000000000000000000000000000000000000000000000000000000001") {
    // is true now because u201C1u201D was filled with leading zeros
    raise IDMessage.Create("I", this.ID);
    // leading zeros are suppressed on the UI: u201CID: 1u201D
    6. Restrictions in Extensibility and Analytics:
    Only the ID data type will be supported in extensibility and analytics:
    Extensibility: It will be possible to add an extension field in an BO extension (planned for FP3.0).
    element ID                 : ID;                  
    Analytics: Analytics supports only character fields with a maximum length of 60 characters & alpha conversion.
    Consequence: the u201CIdentifieru201D DT cannot be used in Extensibility and Analytics.
    7. Adoption
    If you have used the data type "Identifier" before and want to change the BO to "ID", the following adoption tasks are necessary:
    a)     Business Object: change the BO definition file (see point 1)
    Note: During my tests I got a activation error. In this case I solved the problem by Clean -> Save -> Activate. In this case, test data are lost
    b)     Business Object: Implementation: remove the u201C.Contentu201D suffix
    c)     UI: After the BO change, the following runtime error occurs in the affected UI. In the error text the following text occurs: u201CMapping of proxy name of attribute  failed.u201D
    Solution: Open the UI Designer,
    (1)     Tools -> Update Meta Data
    (2)     Go to the data model and do u201CUnbindu201D and u201CBindu201D again for the affected field
    (3)     Save & Activate
    d)     MDAV, Forms, Web services -> not analyzed. Assumption here is that the dependent objects have to be cleaned and activated.

    OK, I have found your code in your previous post.
    It works in 9.2.0.1.0 and 8.1.7.0.0.
    SQL> CREATE OR REPLACE TYPE t_assoc_agents_address AS OBJECT
      2  (V_CONTACT_NAME VARCHAR2(120),
      3  V_ADDRTYPE VARCHAR2(80),
      4  V_ADDRESS_LINE1 VARCHAR2(50),
      5  V_ADDRESS_LINE2 VARCHAR2(50),
      6  V_ADDRESS_LINE3 VARCHAR2(50),
      7  V_CITY_STATE_ZIP VARCHAR2(100),
      8  V_PHONE VARCHAR2(50),
      9  V_ADDRESS_FAX VARCHAR2(30),
    10  V_ADDRESS_EMAIL VARCHAR2(80)
    11  )
    12  /
    &nbsp
    Type created.
    &nbsp
    SQL> CREATE OR REPLACE TYPE nt_assoc_agents_address AS TABLE OF t_assoc_agents_address
      2  /
    &nbsp
    Type created.
    &nbsp
    SQL> var c refcursor
    SQL> col v_address_fax format a15
    SQL> col v_address_email format a15
    SQL> declare
      2   lv_assoc_agents_add_out nt_assoc_agents_address
      3   := nt_assoc_agents_address(
      4     t_assoc_agents_address(null,null,null,null,null,null,null,
      5     'New Fax', 'New Mail')
      6   );
      7  begin
      8   open :c for select V_ADDRESS_FAX,V_ADDRESS_EMAIL from
      9   table(cast(lv_assoc_agents_add_out as nt_assoc_agents_address));
    10  end;
    11  /
    &nbsp
    PL/SQL procedure successfully completed.
    &nbsp
    SQL> print c
    &nbsp
    V_ADDRESS_FAX   V_ADDRESS_EMAIL
    New Fax         New MailWhat is your Oracle release and how are you using ref cursor (if I interpret your example right) ?
    Rgds.

  • Studio 21" CRT with Windows

    I'm not an Apple user - but it's not my fault - I was raised up that way, honest! Hopefully someone will take pity on me and answer my question.
    I recently aquired an Apple 21" CRT Studio monitor (so far haven't dislocated any vertebra, and no hernia as yet) and would like to use it with my PC. I connected it, but the image is very narrow. Of course no physical controls on the monitor for adjusting properties.
    I'm wondering if this is possibly because I don't have the software required to adjust the display settings, or if this monitor should be compatible without the software and I just have a bad unit.
    I see that "Apple Displays Software (AppleVision)" is downloadable, but can it be installed on Windows XP?
    Appreciate any help!

    Hi and welcome to Discussions,
    I also was a pure PC user for over 20 years until I finally had the 'guts' to cross the line
    I couldn't find any Windows software for the Display.
    To my knowledge the Apple Displays Software is for Mac OS only.
    Maybe these specifications and the Timings Table can help you adjusting: http://support.apple.com/specs/displays/AppleStudio_Display21.html
    Depending on what graphics card you have installed, maybe by adjusting the timings in the 'Control Center' of the graphics card driver, you can get the full size.
    Good Luck
    Stefan

  • Modal Window to external Url

    Hello all!
    I found some forum posts but I couldn't find a solution on that.
    We are having two WDJ applications, running in portal. In application "A" I want to call application "B", whilst App "A" needs to be unmodifieable. I would prefer a pop up window of App "B" while "A" is locked as long as "B" is active (not finished).
    Portal eventing won't work, because it will not be shown next to each other but in two different windows.
    Best would be a modal window wherein App "B" is shown. but I can't figure out how I can show a wdj window popUp pointing to  another url.
    If anybody knows how to open a model pop up pointing to a url would be great, if anybody knows how to pass the event "finished" from that window to the other application would also be great
    We use 2004
    Thanks in advance
    Stefan

    Hi stefan..
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sapportals.km.docs/library/webdynpro/wd%20java/wd%20tutorials/inter-application-navigation%20in%20web%20dynpro.pdf
    URs GS

  • How to Install/UnInstall Visual studio extension using PowerShell

    Hi all.
    I try to install / uninstall visual studio extension use PowerShell script
    But I just can find the Install like: start-process $visualextendsionpath.
    I can't not find the way to uninstall the extension.
    Do I use this command to install is correct? And please suggest me the way to unInstall the extension by PowerShell script.
    Thank

    Hi Bruce,
    In addition, Since I'm not familar the VSIX, however, to uninstall package with powershell, these cmdlets are for your reference:
    Removes an app package (.appx): Remove-AppxPackage
    To get the installed package :
    Get-AppxPackage
    Or if you want to uninstall app listed in 'Add or Remove Programs', please also check this script:
    $app = Get-WmiObject -Class Win32_Product | Where-Object {
    $_.Name -match "Software Name"
    $app.Uninstall()
    If there is anything regarding this script, please feel free to post back.
    Best Regards,
    Anna Wang

  • Calling parent's view inbound plug from modal window?

    Hi,
    I have a window A with a view ("the parent") that calls another window B as a modal one. This window B uses own buttons for actions, no standard ones (OK, Yes, No ...). The problem is that the actions in window B are changing the content in window A. I want  that after closing the modal window B a specific inbound plug of the view of the other window A is called (where a refreshing mechanism is available). How to do that? I tried with the - at other posts - suggested method of exit-plugs, but that didn't work (because outbound and requested inbound plug belong to different windows ???).
    Thanks for your help,
    Alexander

    Hi,
    thanks for your reply. My problem was that in my popup window no standard buttons are available, so that the SET_ON_CLOSE_ACTION can't be used (cf. documentation it only works with the CANCEL-Button). But with this hint I was able to find another solution (which was by the way explained in another thread answered by you 8-) ): I have to create an event in the component controller and fire this event from my window B. Then I have to subscribe a method of window/view A to that event which does the required refreshing. [trigger event from "child" webdynpro;.
    Best regards,
    Alexander

  • Modal window staying on top

    I've got another question concerning JDialog: I use a class extending JDialog for displaying a window in modal state on top of my main window. Normally the modal window remains on top, but if i switch to another application in windows and then come back to my java-app, i only see the main window, which i can't access, since the JDialog-window theoretically sits on top, but i can't see the JDialog-window and can therefor neither close the JDialog window, nor the main window.
    I guess I have to set the main Window as the parent of the JDialog, but i couldn't find out how.
    I would be thankful if you could help me.

    Hi,
    this was a known bug - search the bug database - it is stated closed,fixed - but I also found this behavior in JDK 1.4.0 - it is still there - if another application covers the modal JDialog and you switch back to your application, the JDialog is missing and the application seems to be blocked. You can get arround that by iconizing the application and reopen it again - the JDialog will show up again. I cannot see, what was tried to fix this, but it does not work (under Windows 95/98).
    greetings Marsian

  • Print out the contents present in Modal Window on a paper

    Hi,
    Can anyone suggest me how to take print out the contents of a HTML Modal Window.
    Any Inputs on this can be appreciated.
    Thanks
    Ram

    I tried this Finder drag method & discovered that it is very important to set the blank TextEdit document to plain text before the drag (from the format menu or with Cmd-shift-t). If you don't, TextEdit attempts to load the content of the files!
    Once I discovered this, I tried the method with Find (Cmd-F) results & it works for that, too. This means that by choosing the right combination of search location(s) & search criteria, you can extend the method to filter the list to just about any files you want, which could be very handy.
    For instance, set the "Kind" criteria to "QuickTime Movie" & location to "Computer" & you get a list of every QT movie. Or set the search location to the folder containing the movies of interest & you get all of them, including ones in subfolders. You could also use the 'date created' or other search criteria to filter the list to a specific subset of movies (or whatever).
    If you need to do this often, you could create one or more 'Smart Folders' with the criteria preloaded for each search.
    The only drawback I see for either Finder based method is the full path one. If you are getting results from just one or a few folders, Find & Replace can delete any of the path name fairly easily, but it becomes a chore if there are a lot of different ones. Some other text editor, like TexEdit Pro, that supports grep searches would be handy here, but since I'm not up to speed on grep, someone else will have to explain how to use it for this, if they want.

  • Cannot open PDF in Modal window

    Hi,
    I am trying to execute the reports and open the pdf file in a showModalDialog window, but I get only blank screen. Basically, I want to open the PDF in modal window so that the URL value is not stored or displayed in the screen..
    Is there any setting required or is pdf not supported in modal windows?
    Has anyone faced such problem.
    Thanks & Regds,
    Nandakumar

    As others have said.....first, go to Finder > Preferences and make sure the checkbox is deselected for "open folders in tabs instead of new windows".
    Any folder can be opened in a new window by holding down the Command Key while double-clicking the folder. But sooner or later you will forget to hold down that key, and then a folder will open in a tab (which will probably resize the window and cause much aggravation and cursing).
    If you're like me and don't like tabs very much, there is a way to make folders always open in windows with a simple double-click. (I'm using Mavericks 10.9.5).  Go to any folder on the Desktop, open it, and select View > Hide Toolbar. After that, all folders within that folder will open in a new window. I tried this with the Macintosh HD Folder (which I put on my Desktop) and all folders within it open in new windows with only a double-click.
    Of course, you will lose the sidebar and the toolbar, so it's not a perfect solution, but at least you'll be done with tabs.

  • Is there a profiler in Visual Studio Express 2013 for Windows Desktop?

    Is there a profiler in Visual Studio Express 2013 for Windows Desktop?  I can't seem to find the option anywhere.

    Hi gnychis1,
    I install it in my Environment, It doesn't have the profiler tool in this express version.
    My suggestion is that you could use the VS2013 Community version, it is also free, but it has the profiler tool in this version.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Consuming Visual studio extension SDKs in a remote build (CI).

    Hi All,
    I am new to .NET and developing an universal Windows application.
    I am using Visual Studio extension for SQLite for WinRT and Windows Phone.
    http://www.sqlite.org/2015/sqlite-wp81-winrt-3080801.vsix
    http://www.sqlite.org/2015/sqlite-winrt81-3080801.vsix
    I can perfectly install the extensions and work with locally.
    My question is about the remotely building (continuous integration) of my application through msbuild in TFS.
    Does the build machines need to have the same version of SQLite SDKs installed manually in order to resolve the dependency ?
    There can be multiple project in my TFS collection which can refer to separate version of VSIX files . Both versions can not co exist together. What happens then ?
    Can I somehow upload the vsix file to our package management software (Nexus) and refer from there.
    We have been building other dependencies as Nuget packages from Nexus.
    There might be number of packages required for different architecture and other component's packages.
    Any help will be hugely appreciated.
    Thanks and Best Regards,
    Saurav

    Hello Saurav,
    Welcome to the MSDN forum.
    The dependency problem should depending on your MSBuild process in my mind. I'm not sure how you will load your dependency about SQLite on your remote machine. Please share more details about it. If the build process actually need the load the dependency
    in the remote environment, I'm afraid you have to install it on the remote machine.
    For the question"There can be multiple project in my TFS collection which can refer to separate version of VSIX files . Both versions can not co exist together", I think it's better for you to consult TFS forum since I'm not familar with TFS scenarios:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=tfsgeneral
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Extend studio extensions do not work right in DW CC

    I have Flexi Layouts Pro 2 and JQuery Media Pack installed within the latest Adobe Extension Manager CC and I cannot edit them or get them to work properly, it's like some of the menus/dialogs are missing or cannot launch. They are licensed products however, it shows a BUY bar on the top of each application bar as if they are trials. The editing function does not work in any of the JQuery Media Pack apps.
    Windows 8.1
    I have re-installed the DW CC software and updated the CC Manager
    reinstalled the extension and air components
    I have reset licenses
    Anyone have a solution or have the same problem?
    I really need help here --- these apps are not cheap

    Seems with CC 2014.1, you must disable (uncheck) "Live View" option. Once I did that, the dialogs worked
    extend studio extensions do not work right in DW CC 

  • Adobe Form not getting displayed in WebDynpro Modal Window

    Hi,
    I am trying to display the table data in a Interactive Form. I have used TABLE UI element in Interactive Form. When the user clicks on a EXPORT button this form is displayed in a pop up window (Modal Window). This form is not getting displayed for most of the users. In some PC's it is getting displayed, strange is all their browser versions and OS versions are same.
    Portal Version: NW04s SP8
    NWDS Version : NW04s SP8
    Adobe Live Designer: 7.1
    Acrobat Reader: 7.0.8
    I tried changing the display type (property of Interactive Form Element) to NATIVE, it is not working at all. If i change it to "activeX", then it works in some PC's.No logs are found in the server as well as in the client PC as well.
    Please let me know if you have come across this problem, looking forward to your solution.
    Thanks
    Senthil

    Hi,
    even though this is quite an old post, it still could be worth for someone to have a look at Note 1342716.
    Michal

Maybe you are looking for