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

Podcast: Entrevista com Max Gehringer na Livraria Cultura

Acompanho há anos os artigos, palestras, programas de rádio deste excelente profissional chamado Max Gehringer. Suas dicas de carreira e explicações com linguagem simples, de como funciona o mundo corporativo, ganharam minha admiração. Tive oportunidade de vê-lo por duas vezes pessoalmente. Em uma delas, estava em um vôo de Curitiba a São Paulo. Ao descer do avião, logo na rampa de desembarque, fiquei um pouco nervoso por não ter ideia de sua reação ao ser abordado. Me apresentei, disse que era grande admirador de seu trabalho, e acompanhava sua carreira bem antes de seu quadro a época na tv. Ele foi de uma gentileza enorme. Com um sorriso no rosto, agradeceu o elogio dizendo que foi muito amável da minha parte. Nos despedimos e desejei tudo de bom a ele. Abaixo segue um link para o podcast com sua entrevista em 05/abr/2019, na livraria Cultura, São Paulo, SP.

https://cbn.globoradio.globo.com/media/audio/255123/max-gehringer-me-sinto-ate-envergonhado-de-dizer-q.htm