Read the screen values


 Read the screen values
DATA :l_t_dynpfields TYPE STANDARD TABLE OF dynpread WITH HEADER LINE.

l_t_dynpfields-fieldname = 'KUNNR'.
APPEND l_t_dynpfields.
CLEAR l_t_dynpfields.

CALL FUNCTION 'DYNP_VALUES_READ'
  EXPORTING
    dyname               = sy-cprog
    dynumb               = '1000'
  TABLES
    dynpfields           = l_t_dynpfields
  EXCEPTIONS
    invalid_abapworkarea = 1
    invalid_dynprofield  = 2
    invalid_dynproname   = 3
    invalid_dynpronummer = 4
    invalid_request      = 5
    no_fielddescription  = 6
    invalid_parameter    = 7
    undefind_error       = 8
    double_conversion    = 9
    stepl_not_found      = 10
    OTHERS               = 11

Project and WBS related BAPI’s


BAPI_BUS2001_CREATE ProjectDefinitionPI.CreateSingle
BAPI_BUS2001_CHANGE ProjectDefinitionPI.Change
this project can change the project def fields which are marked in the table I_PROJECT_DEFINITION_UPD (BAPI_BUS2001_UPD)
BAPI_BUS2001_DELETE ProjectDefinitionPI.Delete
This bapi can delete project and wbs
BAPI_BUS2001_SET_STATUS ProjectDefinitionPI.SetStatus
This BAPI can be used to set and reset user status as well as syetm staus
BAPI_BUS2054_CREATE_MULTI WBSPI.CreateMultiple
This bapi can create multiple wbs for a project id
BAPI_BUS2054_CHANGE_MULTI WBSPI.ChangeMultiple
This bapi can change multiple WBS (work break down structure)
BAPI_BUS2054_DELETE_MULTI WBSPI.DeleteMultiple
This Bapi can delete a number of WBS for Project id
BAPI_BUS2001_SET_STATUS WBSPI.SetStatus
This BAPI can set reset user(SET_USER_STATUS) as well as system status(SET_SYSTEM_STATUS)

Activate more fields of LO-Extractors


Author :Deepthi

Activate more fields of the fields of standard structures of LO-Extractors
LBWE

SAP EXTRACTOR


Enhancing an Extractor


Extractors:
Extractors are used to retrieve data in the SAP source system (i.e. ECC in our case), which can fill the extract structure of a data source with the data from the SAP source system(i.e. ECC).The extractor may be able to supply more fields than the existing extract structure.
Extractors are used to extract data from a source system (i.e. ECC) and transfer it to BI system or BW system. They are also used for direct access to the source data from the BI system or BW system. SAP has provided standard extractors for purpose of extracting data. But in some situations these standard extractors won’t completely meet our business requirements. In such cases we need to enhance standard extractors. For example in some transaction a custom field has been added to meet our requirement. Since this is a custom field it will not be present in standard extractor. Now we need to include this field in extractor we will have to enhance the standard extractor.
 Extractors use the DataSource defined in SAP for the data extraction.

 



/*Newer Posts*/ Older Posts Home