Fuego Object Documentation

Where can I get a detailed description of all of the Fuego Objects and their methods?

Your question has 2 possible answers:
1) if you refer to the BPM Objects (ex Fuego) that you defined in the projects:
a) you can write documentation for each one in the "doc" flap as david mentioned
b) you can generate a project report and get a html report of all of them
2) if you refer to the built-in components:
a) they should have some documentation in the flap.
b) there is no report on them.
Hope it clarifies
MAriano
Benitez/BEA/BPM/Beautiful

Similar Messages

  • XI object documentation

    A few months ago i have been reading about the option to store all XI object documentation in  a way that it can be used in the portal with the KM module.  there is a config setting if i am right for this. Can anybody help me out here because at the moment accessing the xi object documentation at the different levels is very difficult.

    Hi Frank,
    You can use the HTML editor to enter simple documentation for an object. If this object requires comprehensive, complex documentation, you can record this documentation externally. You can then set a hyperlink from the documentation editor of the Integration Builder to this documentation. An internal company Intranet or the SAP Knowledge Warehouse can be used for external documentation storage.
    Also you can refer to link posted by Michal.  This will give more info.
    Regards.
    Praveen

  • Scripting.encoder object documentation

    Greetings,
        I need to encode a vbscript (actually in a HTA). Someone has srcenc but it only runs on win xp.
       I have found a script which does the encoding which uses the "Scripting.encoder" object that works fine on windows 7.
       However, I cannot find any documentation on the properties and methods of this object. Does it exist anywhere?
    Thanks
    David Z

    Sorry all of these things are obsolete.
    In case you missed it,  this is the 21st century.
    ¯\_(ツ)_/¯
    and sarcasm is still the lowest form of wit....
    Funny how that object can still be used in Windows 8.1 Update 1.
    It is still the 21st century and HTAs are obsolete which is why you cannot easily fid documentation.
    What script ing options might there be?  How about the name of one of the script languages installed.  Perhaps "vbscript" or "jscript".
    In  way I was trying to shy you away from trying to use this as it does not work well on Vista and later systems. It has never worked correctly for HTAs.
    There are many third party tools which can obfuscate a script.  Look into these.
    Here is one obsolete blog on the encode:
    http://blogs.technet.com/b/heyscriptingguy/archive/2006/03/09/how-can-i-encode-scripts-within-an-hta.aspx
    The encoder control does not work well with HTAs.  Try it.  You will see that it fails in strange ways.
    Microsoft has not supported this control for almost 10 years.  Now that XP is gone it will disappear.  It currently will not workon mist implementations of Windows 8.1 and 2012.
    I first warned people about this control back in 2006.  The same people are now coming back wanting fixes that do not exists.
    Use PowerShell or XAML for GUIs.  They are not likely to be an issue fro the next few years.
    If you search for information ou will find that the information was pulled by Microsoft in about 2003.  No one should be attempting to use this control anymore and it has been included only for compatibility with no support.  If it work OK. 
    If not - too bad.
    The arguments are simple:
    Set se = CreateObject("Scripting.Encoder")
    se.EncodeScriptFile(strExt,byte_stream,cFlags,bstrDefaultLang)
    cFlags is 0 for all but "ASP"
    bstrDefaultLang is not needed
    strExt is the file extension for the language which is either "vbs". "js", "asp" or the extension of any installed scripting languages that support the  encoder.
    Search and you will find many examples along with discussions on the failures and some fixes.  You will see dozens of answers from me back to at least 2003.  I started using the script encode and control in about 1995 when it was first distributed
    with Visual Studio.  I still have the CDs with the SDK.  I will sell them to you if you really want documentation.  I will not even attempt to find the docs in that stack of about 30 CDs.
    Take my advice please.  Do not use obsolete software.  If you really want to I have licensed copies of Windows ME that you can have.  I even have an old TRS 80 - do you want to buy that?
    ¯\_(ツ)_/¯

  • Authorization Object Documentation

    Dear Colleagues,
    in earlier SAP versions there was on opportunity to download the documentation for all authorization objects in one docuemtn via
    execute transaction SU03 -> Information -> Object List with Documentation -> Download
    Does anyone know, where this function has gone to?
    Help is appreciated
    Helmut

    With the help of a collegue I followed your advice.
    The feature was availbale in SAP-Release 4.7, however got deprecated in ECC6.0. It was based on function module LIST_USER_DATA .
    A workaround is as follows:
    In order to obtain the documentation for all authorization objects (e.g. fields, activity codes and the corresponding explanations)
    select from table DOKTL (Documentation: Text Lines) where ID (Documentation Class) = u201EUOu201C and LANGU (Language) = u201EENu201C and TYP (Document Type) = u201EEu201C fields OBJECT (Docu. Object), VERSION (Version of Document Modul) , DOKTEXT (Text line in documentation)
    In a second step select all records from the resulkt set, where VERSION is highest.
    If specific versions are required, refer to table DOKHL (Documentation: Headers).
    Regards
    Helmut

  • Busines Objects Documentation

    Hi,
    I have a question from one of our trainers:
    According to some documentation from a Business Objects User Conference with regard to advanced query writingu2026
    u201CSequential queries are like sub queries but allow you to use different data sources.  A sub query is an essential technique, but requires all of your information to be in one universe.  A sequential query allows you to use the same concept but for different sources of data.u201D
    Is this correct under Business Objects terminology or is this just a loose description.
    I thought that Sequential Query Techniques worked across all data regardless of its location.
    I also thought that sub queries where queries that were contained in other queries regardless of the origin of the data?
    Has anyone got any ideas?
    Many thanks

    Neil,
    Falk's suggestion to look at the end-user documentation is valid, however, if I may, I'd like to jump in slightly to help you see something that perhaps you're overlooking:
    I also thought that sub queries where queries that were contained in other queries regardless of the origin of the data?
    Sub-queries can sometimes be called nested queries.  Nested queries is a common technique in SQL where you want to know something about the dataset (table(s)) you're working with and in comparison to another factor, whether it's the same dataset or another dataset.  You must recognize whether all of the data resides on the current instance of the database or elsewhere.  In typical processing, the nested query points to "local" data, but in some vendor's offerings, they can allow you to "connect" to another database using special capabilities provided (Oracle has one such capability but its name for it I can't remember right now).
    The other portion that you list in your posting, I think that Business Objects is talking about ensuring you know where your data resides before trying to think of ways to use it.  The Designer tool is limited in its ability to "reach out" to other databases, so the solution is to create another query (and use another data provider) and link the data using "Merged Dimensions" (a WebI solution).  When you are dealing with multiple data sources (or nested queries) it takes an understanding of the SQL you have in mind, and how you're going to achieve it using Designer and universes.
    Best wishes,
    John

  • Fuego BPM object mapping in PAPI

    I am currently using ALBPM 5.7 version. My ALBPM process is using one Fuego BPM Objects as instance variables. I need to access the process via PAPI. What is the equivalent Java object type for typical Fuego BPM objects, per say that has few attributes with String, Time and Int types in order to pass that Fuego Object type from instance arguments.
    -- Deha Peker
    Edited by dpeker at 05/07/2008 11:05 PM

    Hi Avishek,
    There is workaround for this...you can save the instance as Object/DynaObj then go for toString() call that will give your biusiness object as XML msg in string format..from there you can extract a xml node value using x-path....i tried this once and worked for me....but i m not getting the code snipetnow ..else i would have pasted here....:(
    Rgds,
    Biltu

  • Using JSP, how to add new items to Fuego Business Object "Group" ?

    Given the classic Fuego Business Object (FBO) example of an Order, which has a few attributes (orderNumber, customerName, Order Date) and a GROUP attribute called OrderItems (ItemName, ItemPrice, etc.), I want to use a JSP to allow user to submit order. My JSP has a form and uses the Fuego Tag Library. There are FORM INPUT elements for Order.orderNumber, Order.customerName, Order.OrderDate, and a table using dynamic HTML to add rows and INPUT elements for new items to add to the GROUP attribute OrderItems - ItemName, ItemPrice, etc.)
    But when the user wants to add "OrderItems" to the order, I don't know how to get Fuego to create OrderItem Objects to add to the array (aka GROUP).
    Thx in advance.

    ###### below is the response I response I received from a BEA Engineer. From looking at the html source of fuego presentations that implement desired functionality, it appears as though they handle it using the first suggested workaround below ######
    Hi,
    The short answer to your question is that there is no out of the box feature to support directly what you are asking for.
    The problem is that JSPs receives a Fuego Object that is accessed at rendering time (JSP compilation/ HTML rendering). And then all the updated values are sent back to the engine in a new request when you hit the submit button of a FOR tag that has the postResult tag in the action attribute. At this point all these values are automatically taken from the request and the Fuego Object instance variable in the screenflow is updated.
    After saying this you will notice that it doesn’t make sense to update the Fuego Object instance on the JSP. Because you only could do this ate rendering time and because this instance is not going back to the engine (just the values).
    Fuego Object tag Library was designed basically to be able to show Fuego Object data and invoke runs-on-server FO methods.
    I see 3 different approaches to solve the problem you have:
    1)Use JavaScript to call a runs-on-server method that recive the required arguments to extend the group and set the values. You should use the new tag called invokeUrl that allows you to use AjaX, in this way you could update the page with partial rendering.
    2)Use JavaScritp to submit the form when the user click the add row button. And have a loop in the Screenflow with an automatic activity that will extend the group and the go back to the component activity that now will show the page again but with one more row. The drawback is that each time the user wants to add a row, it will require the entire page to be refresh.
    3)Handle the table and values using JavaScritp and DHTML, and put all the new values in the request (input element), then in the Screenflow use an automatic activity to set this values to the Fuego Object.
    Look at the Samples of using Fuego Tag Lib and AJaX
    albpm5.7\studio\samples\Integration\Portlets\PFoodDelivery.fpr
    albpm5.7\studio\samples\Integration\ThirdParty\AJaX.fpr

  • How to translate ABAP report documentation

    Hi to everybody
    Today I've applied a OSS note, where was required also to create a Report documentation using SE38 transaction.
    Of course I've applied the note and create the required documentation in EN language.
    Now because teh Report it's an Italian FI localization I need to translate teh Report in IT language.
    Using SE38 is possible translate all Text-elements, but is not possibible provide a transaltion of Report documentation.
    I've tried to use SE63 as suggested in many discussions, but when I try to translate the RE object documentation  instead the long text
    I can see this instruction:
    /: INCLUDE ZRFIDITBLIST OBJECT DOKU ID TX LANGUAGE E 
    Can somebody explain how is possible to provide a transalation of this object in another language ?
    Thanks for your help.
    Claudio 

    Hi Claudio,
          Firstly make sure your abap documentation is in active version for English language. Then go to SE63 > Translation -> ABAP Objects -> Long Texts -> L5 -> Choose Reports, Function Groups, Logical Databases and proceed the translation.
    Thanks
    Hock Lin

  • Info about Crystal & Business objects

    Hi,
    I am currently working as BI consultant and have executed one project in BI 7.0 version (by Bex). And now I want to update myslef with Crystal reports and BO.
    I have explore in BO forum before publishing this queries, pls answer all these quereis.
    1) I have training server (BI 7.0) can I down load Crystal reports and integrate with SAP to get hands on experiecne.
    2) I have downloaded trail verison (Crystal reports 2008) but not able to install,pls forward any installation guide.
    3) How crystal reports is different from BO.
    Best Regards,
    Venkat.

    All Business Objects documentation can be found here:
    http://help.sap.com/content/bobj/overview/index.htm
    For information about integrating SAP, please log a post in this forum:

  • Business Objects and OBIEE

    Hi,
    Can some one please explain me what are Oracle Business Objects and how is it different to Oracle Business intelligence Enterprise edition.
    Also please point me to Oracle Business Objects Documentation.
    Appreciate your help on this.
    Thanks,
    Kiran

    Kiran,
    Jokes aside, Theres a few documents on how Oracle partner with Business Objects but there is no "Oracle Business Objects" BI product, at least up until end of last year before I left Oracle Consulting BI practice.
    Yes SAP Business Objects connects and supports Oracle 10G database functionality, but that would be Oracle DB, not Oracle BI EE.
    I seriously doubt they would launch ANOTHER BI tool with the same application name as a competitor?
    I hope you can get the information you are seeking.

  • Documentation transaction code

    Hi
    I need to edit a object documentation. can anyone give some idea,what is the transaction code for documentation?
    the  program id Program ID 'LIMU 
    object type is and  'DOCU'
    plz  help me here

    Hi,
    If you want to change the documentation of that object then.
    Follow this steps:
    Press F1 keeping the cursor on the object that you want to change.
    Opens the performance assistance window in which 5th buton from left you will have EDIT DOCUMENTATION. Click that and proceed with the changes.
    If i am wrong correct me.
    Hope my answer help you!!
    Cheers!!

  • Credit Memo in MIR7

    Hi Guys,
    I wanted to know if there is a way to restrict the creations of credit memos in MIR7.  I see the object M_RECH_CPY when I do a trace, but when I deactivate that object a user is still able to create credit memos.  Is there an object(s) that controlls this?
    Thanks,
    Tiffany

    Have a look in SU24 and see if you can use something. And look up the object documentation for M_RECH_CPY in SU21, It may be a custom object, as I dont see this object. If you cant find something in SU24, You might very well have to create an object yourself and have it programmed for Authority-Check.
    Best Wishes,
    Chinmaya

  • Restrict the user   based on document type on migo transaction-prepare GRN

    Hi,
    We are running ECC6.0 R/3 system.We had a requirement as follows
    In MIGO transaction , we want to restrict the user on document type i.e. we want that a particular user can  prepare GRN for document type  STO only. He cannot prepare GRN for other document type.
    We checked  SU24->maintain check indicators for transaction codes->enter migo->execute->check indicator.This returned us the authorisation objects present in Migo transaction.We checked the help of all these objects,but none of them we found suitable for above mentioned requirement.We were planning to find out the proper authorisation object to add to Profile generater.
    The following is the objects which we have checked for.
    A_B_ANLKL-->     Asset Postings: Company Code/Asset Class
    A_B_BWART-->     Asset Postings: Asset Class/Transaction Type
    B_USERSTAT-->     Status Management: Set/Delete User Status
    B_USERST_T-->     Status Management: Set/Delete User Status using Process
    C_AFKO_AWK-->     CIM: Plant for order type of order
    C_CACL_DSG-->     Interface Design
    C_DRAW_BGR-->     Authorization for authorization groups
    C_DRAW_DOK-->     Authorization for document access
    C_DRAW_TCD-->     Authorization for document activities
    C_DRAW_TCS-->     Status-Dependent Authorizations for Documents
    C_KLAH_BKP-->     Authorization for Class Maintenance
    C_STUE_BER-->     CS BOM Authorizations
    C_STUE_WRK-->     CS BOM Plant (Plant Assignments)
    C_TCLA_BKA-->     Authorization for Class Types
    C_TCLS_BER-->     Authorization for Org. Areas in Classification System
    C_TCLS_MNT-->     Authorization for Characteristics of Org. Area
    F_BKPF_BUK-->     Accounting Document: Authorization for Company Codes
    F_BKPF_BUP-->     Accounting Document: Authorization for Posting Periods
    F_BKPF_KOA-->     Accounting Document: Authorization for Account Types
    F_FICA_FOG-->     Funds Management: authorization group of fund
    F_FICA_FSG-->     Funds Management: authorization group for the funds center
    F_FICB_FKR-->     Cash Budget Management/Funds Management FM Area
    F_KNA1_APP-->     Customer: Application Authorization
    F_LFA1_APP-->     Vendor: Application Authorization
    F_SKA1_BUK-->     G/L Account: Authorization for Company Codes
    G_GLTP  -->       Spec. Purpose Ledger Database (Ledger, Record Type, 
                                   Version)
    J_1IDEP_SL-->     Authorization object for depot sale transaction
    J_1IEXC_OT-->     Authorization object for Other Excise Invoice Create
    J_1IEX_PST-->     Autorization object for posting Other Excise invoice
    J_1IGRPT1-->     Auth. for PART1 at GR
    J_1IINEX  -->            Incoming Excise Invoice
    J_1IRG23D-->     Authorisation object for Depo Transactions
    K_CCA-->                     CO-CCA:  Gen. Authorization Object for Cost Center 
                                    Accounting
    K_CSKS     -->                CO-CCA:  Cost Center Master
    K_CSKS_SET-->     CO-CCA: Cost Center Groups
    K_PCA-->                    EC-PCA: Responsibility Area, Profit Center
    L_TCODE-->                    Transaction Codes in the Warehouse Management System
    M_ANFR_BSA-->     Document Type in RFQ
    M_ANFR_EKG-->     Purchasing Group in RFQ
    M_ANFR_EKO-->     Purchasing Organization in RFQ
    M_ANFR_WRK-->     Plant in RFQ
    M_BEST_BSA-->     Document Type in Purchase Order
    M_BEST_EKG-->     Purchasing Group in Purchase Order
    M_BEST_EKO-->     Purchasing Organization in Purchase Order
    M_BEST_WRK-->     Plant in Purchase Order
    M_MATE_CHG-->     Material Master: Batches/Trading Units
    M_MATE_STA-->     Material Master: Maintenance Statuses
    M_MATE_WRK-->     Material Master: Plants
    M_MRES_BWA-->     Reservations: Movement Type
    M_MRES_WWA-->     Reservations: Plant
    M_MSEG_BMB     -->Material Documents: Movement Type
    M_MSEG_BWA-->     Goods Movements: Movement Type
    M_MSEG_BWE-->     Goods Receipt for Purchase Order: Movement Type
    M_MSEG_BWF-->     Goods Receipt for Production Order: Movement Type
    M_MSEG_LGO-->     Goods Movements: Storage Location
    M_MSEG_WMB-->     Material Documents: Plant
    M_MSEG_WWA-->     Goods Movements: Plant
    M_MSEG_WWE-->     Goods Receipt for Purchase Order: Plant
    M_MSEG_WWF-->     Goods Receipt for Production Order: Plant
    M_RAHM_BSA-->     Document Type in Outline Agreement
    M_RAHM_EKG-->     Purchasing Group in Outline Agreement
    M_RAHM_EKO-->     Purchasing Organization in Outline Agreement
    M_RAHM_WRK-->     Plant in Outline Agreement
    Q_TCODE     QM -->         Transaction Authorization
    S_ADMI_FCD-->     System Authorizations
    S_ALV_LAYO-->     ALV Standard Layout
    S_BDS_DS-->     BC-SRV-KPR-BDS: Authorizations for Document Set
    S_BTCH_ADM-->     Background Processing: Background Administrator
    S_BTCH_JOB-->     Background Processing: Operations on Background Jobs
    S_CTS_ADMI-->     Administration Functions in Change and Transport System
    S_DATASET-->     Authorization for file access
    S_DEVELOP-->     ABAP Workbench
    S_DOKU_AUT-->     SE61 Documentation Maintenance Authorization
    S_GUI-->                     Authorization for GUI activities
    S_OC_DOC-->     SAPoffice: Authorization for an Activity with Documents
    S_OC_ROLE-->     SAPoffice: Office User Attribute
    S_OC_SEND-->     Authorization Object for Sending
    S_PACKSTRU-->     Internal SAP Use: Package Structure
    S_PRO_AUTH-->     IMG: New authorizations for projects
    S_RFC-->                     Authorization Check for RFC Access
    S_SCD0     -->                Change documents
    S_SPO_DEV-->     Spool: Device authorizations
    S_TABU_DIS-->     Table Maintenance (via standard tools such as SM30)
    S_TCODE     -->                Transaction Code Check at Transaction Start
    S_TRANSLAT-->     Translation environment authorization object
    S_TRANSPRT-->     Transport Organizer
    S_WFAR_OBJ-->     ArchiveLink: Authorizations for access to documents
    V_LIKP_VST-->Delivery: Authorization for Shipping Points
    V_VBAK_AAT-->Sales Document: Authorization for Sales Document Types
    V_VBAK_VKO-->Sales Document: Authorization for Sales Areas

    Have you executed a trace while a functional user executes the transaction code for the specific parameters? (i.e. document type). The trace will then show which objects are being checked; then look at the object documentation in txn Su21 to determine if there are any ways to restrict on the particular value; in some cases, if the authorization group field is being checked, additional configuration is needed in order to implement the security (Su21 will explain in detail for the particular object).

  • What are the different type of projects

    i mean how many different type of projects are there in sap implementation..
    what do you mean by,
    enhancement project
    rollout project
    development project
    support project
    is there any thing else other than this?
    please clear my doubt.
    points would be rewarded.
    thank you.

    Check the link:
    http://help.sap.com/saphelp_sm40/helpdata/en/ba/38c93a37c59122e10000000a114084/content.htm
    Implementation Project
    Project to implement business processes in an SAP landscape.
    Create a project structure from the business processes. You can either create a new project structure, or base it on one of the following:
    One or more user or partner templates
    An existing project
    Scenarios and configuration structures delivered by SAP 
    An existing production solution landscape
    Template Project
    A project to create a template.
    A template makes your project structure, or parts of it, with its assigned objects (documentation, test cases, IMG activities), available to other projects.
    You can lock templates, completely or partially, against changes when they are used in other projects. To use templates in other systems, transport them.
    Template projects are especially suited to SAP partner solutions or global rollout.
    Upgrade Project
    A project to upgrade existing systems.
    In an upgrade project you can:
    Upgrade customizing: Upgrade existing functions
    and/or
    Delta customizing: Copy additional functions
    Optimization project
    A project to optimize the flow of business processes, or the use of a software solution.
    You can use optimization projects, for example, in SAP Services.
    Safeguarding project
    A project to resolve a critical situation in the implementation or use of an SAP solution.
    Safeguarding projects show the reasons for a critical situation and coordinate the steps required to resolve the problems.
    Maintenance project
    A project to maintain a solution
    in Change Request Management. The project contains all maintenance activities and urgent corrections of a solution.
    in Check-In/Check-Out Business Processes from the Solution Directory
    Regards
    Edited by: Sravan Prakash.V on Dec 28, 2007 12:25 PM

  • Assigning BW Reports to Roles

    Hi, I have 200 BW Reports that I need to Assign to 13 Roles. At present the only way I can think of doing it is by trawling through each query one-by-one and publishing to the role from Query Designer.
    Can someone tell me if there is a much quicker way of doing this. I cant believe that this is the only way to do this.
    Regards
    Matt

    Hi Tajinder,
    Have a look @ S_PROGRAM.
    Though you have the report attached to TCODE its good you attach the report to Auth Group.
    With the help of  the auth group you control who runs the report in SE38 or SA38.
    For variant modification, you can achieve that as well using auth group.
    S_PROGRAM.,
    User action ABAP program.,
    SUBMIT - Start the program
    BTCSUBMIT - Schedule the program to run as a BG job
    VARIANT - Maintain variants (The SUBMIT authorization is necessary here as well, since programs are executed during variant maintenance)
    Authorization group ABAP program
    Value VARIANT will allow to maintain variants for only those programs in Auth Group.
    Read the object documentation for more information.
    Thanks.
    Regards,
    Muthu Kumaran KG

Maybe you are looking for