SAP Adobe LiveCycle Tips

See below a few tips abou Adobe forms.

AIFMaterial reference
Overview Overview
PDF-Based Print Forms PDF-Based Print Forms
PDF-Based Print Form PDF-Based Print Form
Designing Forms with Form Builder Designing Forms with Form Builder
Calling Forms in an Application Program Calling Forms in an Application Program
Form Output Form Output
Performance Aspects Performance Aspects
Handling Errors and Problems Handling Errors and Problems
Delivery and Translation Delivery and Translation
Tools Associated with Form Development Tools Associated with Form Development
Interactive Forms Interactive Forms
Interactive Forms in Web Dynpro for ABAP Interactive Forms in Web Dynpro for ABAP
Creating Forms for Integration with Web Dynpro and ZCI Creating Forms for Integration with Web Dynpro and ZCI
Check and Update Functions for Zero Client Installation (ZCI)  Check and Update Functions for Zero Client Installation (ZCI) 
Restricting Changes in a PDF Restricting Changes in a PDF
Check and Update Functions with the Report FP_CHK_REPORT Check and Update Functions with the Report FP_CHK_REPORT
Program-Driven Generation of Form Templates Program-Driven Generation of Form Templates

SAP ABAP HCM: Test and Upload Data to Decoupled Infotype

Below is sample program to test and upload a record in a decoupled infotype. Methods ‘test_infty9000_entry’ and ‘execute_infty9000_entry’ will have code specific to handle the decoupled infotype.

Continue reading SAP ABAP HCM: Test and Upload Data to Decoupled Infotype

ABAP: Release 740 new features

Below is the list of ABAP new commands and syntax available from version 740.

TYPES:
    BEGIN OF ty_tab,
      pernr TYPE persno,
    END OF ty_tab.

  DATA: tab TYPE STANDARD TABLE OF ty_tab.

  DATA wa_tab TYPE ty_tab.

  wa_tab-pernr = '00000001'.
  INSERT wa_tab INTO TABLE tab.

  wa_tab-pernr = '00000002'.
  INSERT wa_tab INTO TABLE tab.

  wa_tab-pernr = '00000003'.
  INSERT wa_tab INTO TABLE tab.

  LOOP AT tab ASSIGNING FIELD-SYMBOL(<tab>) FROM line_index( tab[ pernr = '00000002' ] ) .
    IF <tab> NE '00000002'.
      EXIT.
    ENDIF.
    WRITE: / sy-tabix, <tab>.
  ENDLOOP.

  "Retrieve WA where field meets condition
  DATA(lw_wa) = tab[ pernr = '00000003' ].

  "Retrieve field field meets condition
  DATA(lv_pernr) = tab[ pernr = '00000003' ]-pernr.

  "Update lines with '99999999' where field meets condition.
  tab[ pernr = '00000003' ]-pernr = '99999999'.

Additional links


http://scn.sap.com/docs/DOC-68458

http://zevolving.com/tag/abap-740/

https://scn.sap.com/community/abap/blog/2013/06/22/abap-news-for-release-740–new-internal-table-functions

SAP transactions Related to Authorization

TCODEDESCRIPTIONFUNCTIONAL AREA
PFCGRole MaintenanceBasis – ABAP Authorization and Role Management
SU53Evaluate authorization CheckBasis – User and Authorization Management
SU24Maintain authorization DefaultsBasis – ABAP Authorization and Role Management
RSECADMINManage Analysis authorizationsBW – OLAP Technology
SU21Maintain authorization objectsBasis – User and Authorization Management
ST01System TraceBasis – Low Level Layer
SUIMUser Information SystemBasis – User Information System
RSSMauthorizations for ReportingBW – OLAP Technology
RSD1Characteristic maintenanceBW – Data Basis
SU22Maintain authorization Defaults(SAP)Basis – User and Authorization Management
SU20Maintain authorization FieldsBasis – User and Authorization Management
PA20display HR Master DataPersonnel Mgmt – Personnel Administration
SU02Maintain authorization ProfilesBasis – User and Authorization Management
SU03Maintain authorizationsBasis – User and Authorization Management
SU56Analyze User BufferBasis – User and Authorization Management
OOSBUser (Structural authorization)Basis – Organizational Management
OOACHR: authorization main switchPersonnel Mgmt – Personnel Administration
SU25Upgrade Tool for Profile GeneratorBasis – ABAP Authorization and Role Management
OOSPauthorization ProfilesBasis – Organizational Management
CV03Ndisplay documentCross Application – Document Management System
PFUDUser Master Data ReconciliationBasis – ABAP Authorization and Role Management
RSCSAUTHMaintain/Restore authorization GroupBasis – System Audit Information System
RSCUSTV23BW Customizing – View 21BW – OLAP Technology
CV02NChange DocumentCross Application – Document Management System
RSECAUTHMaintenance of Analysis Auth.BW – OLAP Technology

ABAP program that “speaks” through local desktop speaker

ABAP program to output words through speaker in local desktop.

REPORT  zspeak.

INCLUDE ole2incl.

DATA objectvar1 TYPE ole2_object.
DATA objvoice   TYPE ole2_object.

PARAMETERS strtext TYPE string DEFAULT 'Hey man! Are you crazy?'.

START-OF-SELECTION.

  CREATE OBJECT objvoice 'SAPI.SpVoice'.

  IF strtext IS INITIAL.
    strtext = 'Hey! Hey! I am talking to you, do not do it! do not do it! this is your first warning, please pay attention!'.
  ENDIF.

  CALL METHOD OF objvoice 'Speak' = objectvar1
    EXPORTING #1 = strtext.

  FREE: objvoice,objectvar1.