Five Ways to Delete Entry from Table

Tip 1. Write the abap program. loop at itab.DELETE FROM “For Single RecordDELETE FROM TABLE ” For Multiple Recordsendloop. 2. Write BDC program.Deletion data should be in flat file and Delete the Entry when required. 3. If data is in Custom tables a. if table Maintenance exits : go to sm30, give the table name … Read more

Work Flow For Beginners-Step1

1:Find a standard business object – which relates to the desired master data. Transaction SWLD Definition Tools àSAP Business WorkflowàDevelopmentàDefinition ToolsàBusiness Object Builder (Transaction Code SW01) Click on the Business Object Builder. The initial screen appears as follows. Either search for an object by name in short description. Or use the IMG structure, which is … Read more

Macros used in Workflow Programming

The include file must have been included into the program in order to use these macros.INCLUDE . Declaring ContainerSWC_CONTAINER . “DeclarationSWC_CREATE_CONTAINER . “Initialization Writing value into containerSWC_SET_ELEMENT .SWC_SET_TABLE . Reading value from containerSWC_GET_ELEMENT .SWC_GET_TABLE . Creating a variable for the object referenceDATATYPE SWC_OBJECT. Create the object reference.SWC_CREATE_OBJECT . To get Object Key and Object TypeSWC_GET_OBJECT_KEY … Read more

Important Function Module of Workflow

Function Modules DescriptionSWU_START_WORKFLOW To start WorkflowSWE_EVENT_CREATE To create EventSWW_WI_DISABLE For locking of work items against executionSWW_WI_ENABLE For enabling of work items against executionSWW_WI_CONTAINER_READ To read the container elements of a particular work itemSWW_WI_DEADLINES_CHANGE To change the attributes of the deadline monitoring for a particular work itemSAP_WAPI_EXECUTE_WORKITEM To execute workitem of another user Other Useul Link … Read more

Important Transaction in Workflow

SWDD Workfow BuilderPFAC Maintain Standard RolePFTC Maintain TasksPFOM Create Organizational AssignmentsPPOME Organization and Staffing ChangePPWFBUF Refresh client bufferSWB_COND Workflow start conditionsSWEC Events for change document overviewSWEL Display Event TraceSWELS Switch Event Trace on/offSWES Consistancy Check for Event LinkageSWETYPV Event Type LinkageSWI1 Selection Report for Work ItemsSWI11 Where used list for TasksSWI13 Authorization to Execute and … Read more

What is the difference between unicode and nonunicode.For what purpose it is used?

Unicode is a character encoding system similiar to ASCII. You can see the definiton for Unicode by Unicode consortium below. Unicode is the universal character encoding, maintained by the Unicode Consortium.This encoding standard provides the basis for processing, storage and interchange of text data in any language in all modern software and information technology protocols”. … Read more