Advertising:
New pages
From SAP Knowledge Base
- 15:23, 21 December 2024 Get column names of a structure (hist | edit) [1,040 bytes] Unirab (talk | contribs) (Created page with "Kategorie:code_snippets <syntaxhighlight lang="abap" line start="1"> DATA columns TYPE if_fdt_doc_spreadsheet=>t_column. DATA(desc) = CAST cl_abap_structdescr( cl_abap_structdescr=>describe_by_data( struc_from_itab ) ). LOOP AT desc->get_components( ) ASSIGNING FIELD-SYMBOL(<c>). IF <c> IS ASSIGNED. IF <c>-type->kind = cl_abap_typedescr=>kind_elem. APPEND VALUE #( id = sy-tabix name...")
- 15:20, 21 December 2024 Template with comments for code creating (hist | edit) [1,098 bytes] Unirab (talk | contribs) (Created page with "category:Code_snippets <syntaxhighlight lang="abap" line start="1"> *&-------------------------------------------------------------------------* *& Created by company corp, Firstname Surname - Date *&-------------------------------------------------------------------------* *& Here is the description / purpose of the code. *& Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy *& eirmod tempor invidunt ut labore et dolore magna aliquyam erat, se...")
- 15:11, 21 December 2024 Create e-mail with classic classes and methods (hist | edit) [2,908 bytes] Unirab (talk | contribs) (Created page with "Kategorie:Codeschnipsel <syntaxhighlight lang="abap" line start="1"> DATA: send_request TYPE REF TO cl_bcs, document TYPE REF TO cl_document_bcs, sender TYPE REF TO cl_sapuser_bcs, sender2 TYPE REF TO if_sender_bcs, receiver TYPE REF TO if_recipient_bcs, mail_text_tab TYPE soli_tab, subject TYPE so_obj_des, distribution_list TYPE TABLE OF sodlienti1,...") originally created as "Sending e-mail with classic classes and methods"
- 14:53, 21 December 2024 Create wrapper for function modules and BAPIs (hist | edit) [1,191 bytes] Unirab (talk | contribs) (Created page with "Category:RESTful_application_programming_model There are good reasons to wrap a function module (BAPI). On the one hand, to have the wrapped FuBa as Tier 2 code so that it can be exchanged with Tier 1 code if SAP offers a released cloud API or similar or to use the wrapped code to release it as Tier 1 in its SAP S/4HANA, SAP S/4HANA Cloud, private edition system. On the other hand, to be able to use COMMIT-WORK required or causing Fubas (BAPIs) through the BGPF fra...")
- 14:48, 21 December 2024 COMMIT-WORK required or causing FMs (BAPIs) and classes in RAP (hist | edit) [916 bytes] Unirab (talk | contribs) (Created page with "Category:RESTful_application_programming_model Anyone who uses the ABAP RESTful Application Programming Model (RAP) to develop apps encounters the problem of using function modules or classic classes that require a COMMIT WORK, already call a COMMIT WORK themselves or use other non-permitted keywords such as IN UPDATE TASK. With regard to the COMMIT WORK, the RAP framework only allows this in the SAVE sequence, but not in between, where the FuBas or classes with the...") originally created as "COMMIT-WORK required or causing Fubas (BAPIs) and classes in RAP"
- 14:39, 21 December 2024 GitHub gitLabs 3rd party addons (hist | edit) [197 bytes] Unirab (talk | contribs) (Created page with "* ABAP Open Source Projects (https://dotabap.org) * https://raw.githubusercontent.com/abapGit/build/main/zabapgit_standalone.prog.abap * https://github.com/abap2xlsx/abap2xlsx")
- 12:31, 21 December 2024 Solutions for fiori error messages (hist | edit) [1,873 bytes] Unirab (talk | contribs) (Created page with "category:Fiori == Anayltic App shows "App cannot be loaded" == === IFC Node / Service "smart_business_runtime_srv" not activated === <strong>Analysis:</strong> In the debugger browser, a red error message indicates that the ICF node or service for Smart Business Runtime is not available. This is the basis for all KPI tiles. <strong>Solution:</strong> Activate service and ICF nodes under Activate_single_OData_service_and_associated_ICF_nodes_for_fiori_apps|transa...")
- 12:20, 21 December 2024 Activate single OData service and associated ICF nodes for fiori apps (hist | edit) [4,707 bytes] Unirab (talk | contribs) (Created page with "Category: Fiori = Search for an app in the Fiori App Library = When searching for an app, you should make sure that it is available for the desired system. Under "IMPLEMENTATION INFORMATION" you can see whether it is available for on-premise and/or cloud systems with the corresponding versions. Example "Manage Activity Types (Version 2) for Cost Accountant - Overhead": <br /> https://fioriappslibrary.hana.ondemand.com/sap/fix/externalViewer/#/detail/Apps('F1605A')...")
- 11:29, 21 December 2024 Category:Code snippets (hist | edit) [0 bytes] Unirab (talk | contribs) (Created blank page) originally created as "Code snippets"
- 11:13, 21 December 2024 Create application log in cloud development (hist | edit) [3,627 bytes] Unirab (talk | contribs) (Created page with "For T1 / cloud developments the familiar function modules(FMs) or classic classes for creating application logs can no loger be used. For this purpose, SAP offers several released classes for cloud development. The object and sub-object should not be created via SLG0, but via Eclipse with ABAP Development Tools. = How to use the classes = == Create new business application log == <syntaxhighlight lang="abap" line copy> TRY. DATA(lo_log) = cl_bali_log=>create( ). CATCH...")
- 00:37, 21 December 2024 Welcome (hist | edit) [687 bytes] Unirab (talk | contribs) (Created page with "Welcome to unirab. A wiki for helping people in SAP world. All about development and some consulsant topics. Hope you can find solutions for you work.")