Is there any documentation regarding the fuego.fdi.* libraries

Is there any documentation regarding the fuego.fdi.* libraries
thanks

Hey lloyd,
It looks like there is!
Within Studio, click on the 'Documentation' flap on the bottom of the screen.
Then, open the project flap, and navigate to Catalog -> Fuego -> Fdi
Double click on any of the individual components, and its documentation will appear within the documentation flap on the lower portion of the screen.
If you don't see any documentation, check the tabs at the top of the documentation flap - the tabs allow you to switch between the documentation for the current method you're working on, and the component you've selected.
-Noel

Similar Messages

  • Is there any documentation on the BC Data Centre's?

    Hi,
    I have been a premium reseller of BC for over two years but I am struggling to find any documentation about the BC Data Centre's. I have not been asked before but I am launching a delegate Registration Microsite for Symantec and as with all larger companies their procurement process requires evidetiary documentation to be supplied.
    Specifically they are asking for specification or documentation on:
    ISO 27001 certificate and Network Penetration test information.
    Any help or guidance to this information would be greatly appreciated.
    Cheers
    Rob

    Hi Sidney,
    Thanks for the helpful responses. I have had some progress with my queries and have now recieved PCI compliance documentation that BC sent through after your suggested ticket. Moving forward, I think that the shift to AWS will resolve all certification and compliance issues - I imagine this doesn’t come up too often with a product that is aimed firmly at SME’s.
    My issue arose as I work for SME’s who in turn work for Blue Chips. Companies like Symantec, Sony & Canon all have extremely stringent procurement procedures even though they are budget conscious and the inference of documentation falls down the chain to us the technical supplier – the National Account Managers and Product managers just set up the deals and promotions and the legal/financial teams then throttle everyone with paperwork. They have simply been told that any websites which contain staff information must reach a very high standard of security and auditory compliance which is understandable but cannot be answered with ‘well its Adobe… of course they are secure!’.
    I will follow up to the community when I have finished my research and have a result!
    Thanks
    Rob

  • Is there any tutorial regarding the berkeley db C# API

    I am a C# programmer , and install the new bits of v 4.8, there is one C# library. and help doc of each objects. But there isn't one system get-started doc , where can find those docs?

    What version of Berkeley DB are you using?
    I don't see any evidence in your sample code that you are following the procedure for a primordial startup. The very first time that you start your first replication manager site, you need to configure it as DB_GROUP_CREATOR as well as DB_LOCAL_SITE. You need to do this to create the initial version of our internal group membership database. Later startups for this site do not need to configure DB_GROUP_CREATOR, but if it is specified it is ignored. I suspect that your later restarts are returning DB_REP_UNAVAIL because they are looking for our internal group membership database and not finding it.
    In your case, you should start again from scratch with an empty environment directory. Add a second call to dbsite->set_config() to also configure DB_GROUP_CREATOR before you call db_env->repmgr_start(). See if this changes the behavior when you later try to restart your master site.
    You can find more information about the primordial start procedure in the Berkeley DB Programmer's Reference Guide section "Managing Replication Manager group membership".
    Paula Bingham
    Oracle

  • Is there any documentation on Database parameters?

    Hi
    We are trying to plan for future growth and make sure that our current structure is optimal. I am looking for some documentation on testing done by Oracle to get some guidelines. I have looked through a couple of Oracle white papers ('0Building Scalable and Performant..........' and 'Page Generation ..........'). I have also looked at some of the white papers regarding architecture.
    My questions
    Has Oracle done any testing for the database? Have there been any tests as to SGA, Multithreded vs dedicated, etc.. ?
    Is there any documentation?
    Thanks

    Mukesh,
    When we ran our load tests, we found that database settings were simply not the bottleneck, at least for the overhead of generating Portal pages and running a Portal instance. Of course, if you're using the database for other purposes, then you need to tune the database as you would for any other application. The type of tuning you do is totally dependent on your unique configuration and application mix. I suggest you refer to the Oracle8i Designing and Tuning for Performance manual.
    Regards,
    Jerry
    null

  • Is there any documentation on Peoplesoft CRM 9 HelpDesk SLA's?

    Hi,
    Is there any documentation available on Peoplesoft CRM 9.0 HelpDesk about Service Level Agreements for internal employees?
    We are looking into implementing Service Level Agreements on the Help Desk module for internal clients (employees). I am looking for any sort of documentation which would help me understand the current out of the box functionality of Service Level Agreements relating to how t functions for internal clients. Any assistance would be appreciated
    Thanks
    Elana

    Please verify the below online PeopleBook help for CRM9.
    http://download.oracle.com/docs/cd/E12341_01/crm9pbr0_run2/eng/psbooks/index.htm
    Thank you!
    Best Regards
    Soundappan

  • Is there any restriction on the length of all Primary keys in a table

    Hi all,
    Is there any restriction on the length of all Primary keys in a data base table?
    i have some 10 fields as primary key in a DB table and length exceeds 120 and getting a warning.
    Please let me know will there be any problems in future with respect to the same?
    With regards,
    Sumanth

    Well actually there are constraints like
    Total of internal lengths of all primary key columns        1024 Bytes
    Number of primary key columns per table                     512
    For other information about SAP database please refer to http://sapdb.org/sap_db_features.htm  
    Thanks & Regards,
    Vivek Gaur
    Alwayz in high spirits

  • Is there any documentation for filter routine in Data Transfer Process?

    I am trying to create a filter routine in the Data Transfer Process to select different billing types depending on what date the Data Transfer Process is running....
    I have searched through SDN and found some examples, but some formal documentation would help.
    Is there any documention on filtering in a Data Transfer Process using a routine?
    I am in 7.0

    data: l_dow TYPE I,
          L_S_RANGE TYPE rssdlrange.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'F2'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'G2'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'L2'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZCDD'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZCDI'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZCR1'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZCR2'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZDR1'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZEDI'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZMD'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZRE'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZRE1'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZRED'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZSMP'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZUSD'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZUSI'.
    APPEND L_S_RANGE TO l_t_range.
    CALL FUNCTION 'DATE_COMPUTE_DAY'
      EXPORTING
        date = sy-datum
      IMPORTING
        day = L_DOW.
    IF l_Dow EQ 5.
      l_s_range-iobjnm = '0BILL_TYPE'.
      l_S_range-fieldname = 'BILL_TYPE'.
      l_S_range-sign = 'I'.
      l_S_range-option = 'EQ'.
      l_S_range-low = 'S1'.
      APPEND L_S_RANGE TO l_t_range.
      l_s_range-iobjnm = '0BILL_TYPE'.
      l_S_range-fieldname = 'BILL_TYPE'.
      l_S_range-sign = 'I'.
      l_S_range-option = 'EQ'.
      l_S_range-low = 'S2'.
      APPEND L_S_RANGE TO l_t_range.
    ENDIF.

  • Is there any documentation for iBooks Author.

    Is there any documentation for iBooks Author.

    Apple has a FAQ article at: support.apple.com/kb/HT5071
    You can also go here for information: www.apple.com/support/mac-apps/ibooksauthor/
    Google also has a lot of third party information with a simple search.
    And of course you can always to to the iBooks Author forum here on Apple Support Communities. The link for that is here: discussions.apple.com/community/ibooks/ibooks_author

  • Is there any update regarding Apple maps from Apple...?

    is there any update regarding Apple maps from Apple...? I live in sydney. I Know there are lots of issues with Apple maps but i reported more than 3 issues and i could see there is no resolution for those issues ?

    Apple does not broadcast anything.   The audio encoding options selected for content is controlled by the services the content comes from.  Apple just distributes content they are provided with.  I am not 100% sure but I believe the current ATV only supports 5.1 so it is pretty likely 7.1 could not be supported with out a new ATV device update, and they have not updated ATV in about four years now.   Starting to wonder if they are going to.   They used to own this market and now have pretty much lost it.   You might check Amazon Fire.   I think it might support 7.1.   I finally gave up on waiting on Apple and bought one and am mostly happy with it.

  • Is there any documentation which throws light on how data aggregation happens in data warehouse grooming? what algorithm exactly it follows in different aggregation type (raw, hourly, daily)?

    Is there any documentation which throws light on how data aggregation happens in data warehouse grooming? what algorithm exactly it follows in different aggregation type (raw, hourly, daily)?
    How exactly it picks up a specific data value during Hourly aggregations and Daily aggregations?As in  How the value is chosen. Does it say averages out or simply picks  value at the start of the hour/day or end of the hour/day ??

    I'll try one more time. :)
    Views in the operations console are derived from data in the operational database. This is always raw data, and typically does not go back more than 7 days.
    Reports get data from the data warehouse. Unless you create a custom report that uses raw data, you will never see raw data in a report - Microsoft and probably all 3rd party vendors do not develop reports that fetch raw data.
    Reports use aggregated data - hourly and daily. The data is aggregated by min, max, and avg sample for that particular aggregation. If it's hourly data, then you will see the min, max, and avg for that entire hour. Same goes for daily - you will see the
    min, max, and avg data sample for that entire day.
    And to try clarifying even more, the values you see plotted on the report are avg samples. If you drill into the performance detail report, then you can see the min, max, and avg samples, as well as standard deviation (which is calculated based on these
    three values).
    Jonathan Almquist | SCOMskills, LLC (http://scomskills.com)

  • Is there any documentation on creating basic paper reports?

    Hi - I have just started to try to create a report. We have 9i reports but don't need any of the web stuff. I only need to create reports off of our database, run them on my workstation, and print out hardcopies to give to 1 or 2 managers.
    Is there any documentation that would just teach me how to create simple reports without all the web functionality? I was trying to follow along in the Reports Builder 6i, but it seems a lot has changed since 6i and I am having trouble just trying to find the corresponding buttons in 9i.
    I need to learn how to create reports, triggers, and especially I want to learn how to rearrange the report output after it has been created. It seems very confusing to me how to do this on Paper Layout or Paper Design screen.
    Thanks for any help. I would even go buy a book if there were a good one.

    Links to all reports docs
    http://otn.oracle.com/documentation/reports_dev.html
    Oracle9i Reports Building Reports ( very extensive )
    (PDF version ) http://download.oracle.com/otn/other/general/B10310_01.pdf [ 8 MB ]
    (HTML version ) http://otn.oracle.com/products/reports/htdocs/getstart/docs/B10310_01/title.htm
    Thanks
    The Oracle Reports Team

  • Is there any documentation on how to nest IF or IFThen in Fin Reports

    I'm trying to nest now but can't find any documentation on the proper syntax.
    Here is my logic. I'm in column D in my grid.
    IF C < 0 and B = 0 then -1
    ELSEIF C = 0 then 0
    ELSEIF B < 0 then ( C / B ) * -1
    ELSE C / B
    Can you help? I'm stumped and on deadline.

    Thanks... Got me on my way: Here's what final solution was
    IFTHEN ( ( ( [ A ] + 0 < 0 and [ B ] + 0 < 0 ) and ( [ B ] < [ A ] ) ) , EVAL ( ( ( [ A ] - [ B ] ) + 0 ) * - 1 ), IFTHEN ( ( ( [ A ] + 0 < 0 and [ B ] + 0 < 0 ) and ( [ A ] < [ B ] ) ) , EVAL ( ( ( [ A ] - [ B ] ) + 0 ) * - 1 ), IFTHEN ( ( ( [ A ] + 0 = 0 and [ B ] + 0 > 0 ) or ( [ A ] + 0 > 0 and [ B ] + 0 = 0 ) ) , EVAL ( ( [ B ] - [ A ] ) + 0 ) , EVAL ( ( [ B ] - [ A ] ) + 0 ) ) ) )
    Had to put cheasy + 0 in there to force a 0. I couldn't find a way for it to treat #Missing as a zero. Anyways it worked and that's what matters I guess :)
    Appreciate the help.

  • JPA and CAF BO - are there any editors of the JPA data (like CAF)?

    Hello!
    As you know SAP invented some layer above JPA and called it CAF. There is a very convenient way to edit data in CAF.
    But now I have to create a complex database scheme, also with CAF doesn't allow us to work with objects. So we can't use someObject.getChildren().
    So my question is are there any editors of the JPA data (like it is done in CAF)?

    Hi Kirill,
    at the beginning of our project at the end of 2009, we did a deep analysis of CAF since our architect vehemently suggested to use this framework.
    First about the history and purpose of CAF: Initially, CAF was never meant to be a layer above CAF since CAF was invented in the time before EJB 3.0 and JPA standard where writing persistence with EJB 2.x CMP forced the developer to write pages of boiler plate code. This background was approved by SAP.
    With upcoming of JPA, CAF ist mostly useless (except for very simply structured data) and prevents you from writing good software.
    It is easy just to write @Entity, @Id and @OneToMany (for complex database schemes) and CAF forces you to use an ugly, imperformant database scheme (e.g. CAF uses mapping tables even for 1:n relationships, a clear antipattern!)
    The CRUD-services generated with CAF are a pain, too. Usage of pessimistic locking is not up to date for web applications.
    With your complex database schemes, you exceed the limit of CAF.
    (We decided not to use CAF and did never regret this.)
    Concerning your question: There is an "JPA Details" view in NWDS that might help you. It needs JPA Persistence facet on your project to work. Developed by SAP. For JPA beginners, it is a good cheat sheet for JPA annotations and their attributes.
    You do not need more since a JPA POJO is easy to code.
    Regards,
    Rolf

  • Is there any Documentation frame work for OAF development

    hi
    Is there any Documentation frame work for OAF development like AIM Documentation for RICE components ?
    Hence , it is very clear that, MD50 and MD70 template is not for the OAF java development.
    Is there any need to document the oaf development, hence it is using MVC architecture and all the components of the OAF development is very transparent.
    thanks

    You can extra sections if needed based on the customizations / extensions / personalizations.
    Cheers
    AJ

  • Where do I - in Callmanager 7x - change a department name and do this have any downside regarding the phones?

    Hi,
    In my Cisco Unified CM Administration System version: 7.0.1.11000-2, I have a lot of different department names and they are all in use.
    Last year one of our departments changed their name, and now I would like to update the old department name to the new department name.
    I have looked everywhere, but I can not find anywhere where I can rename a department, where can I do this? And does it have any downsides regarding the phones and their usage? I can not think that I need to restart or reset all the phones in the department, but I want to be sure before I do anything.
    I know that I can search individual users and phones and rename these, but there must be an automatic approach to rename a department for some 200 users and phones?
    Kind regards,
    Carl-Marius

    Bulk Admin tool.
    Export all users to CSV file.
    Edit the CSV file.
    import the CSV file to CUCM
    run the user import in BULK admin tool.
    It will then update the departments.

Maybe you are looking for