When you go into SE78 transaction there is already button of transport on top left side. Just press this button and then it will ask you for creating a new transport or use the existing one. You can choose one option of them and just add the graphics in that particular transport. Click Here to Read More !!!!
ABAP,ABAP report,Interactive Report,ALV grid,ALV list,IDOC,User Exit,RFC,Smartform,sapscript,ABAP Performance,Remote Function Module( RFC ),Function Module,Modularization techniques,ABAP tools,ALV report Generator,ABAP Interview Questions,BDC,BAPI,ALE,BADI, EDI,InternalTable,DataStructure,LSMW,Domain,DataElement,Basis and Administration ,ABAP HR development,ABAP Debugger,BW,ExceptionHandling,Download FI, CO, MM, PP, SD, PM, PS, QM, SM, HR, BW, APO,ABAP Tutorial
Search on this Website
Saturday, June 23, 2012
How to transport SE63 translation for smartforms ,script and workflow
For Transporting the SE63 translation maintained for smart forms, sap script or workflow.
Go to SE38 and execute the program RS_LXE_RECORD_TORDER.
On a selection screen Enter the target language, Short Description for the transport request, object type as SSF.
Sunday, October 21, 2007
Sample ABAP Code - How to Call PERFORM from SAPSCRIPT
/: PERFORM BIN_LOCATION IN PROGRAM Z_SAPSCRIPT_PERFORMS
/: USING &RESBD-MATNR&
/: USING &CAUFVD-IWERK&
/: USING &RESBD-LGORT&
/: CHANGING &MARD-LGPBE&
/: ENDPERFORM
------------------------------------------------------------------------------------------------------------------
REPORT z_sapscript_performs.
*----------------------------------------------------------------------
* SUBROUTINES FOR CALLING FROM SAPSCRIPTS
*-----------------------------------------------------------------------
* AUTHOR: Sheila Titchener -
* DATE: September 2005
*
*-----------------------------------------------------------------------
FORM bin_location TABLES in_tab STRUCTURE itcsy
out_tab STRUCTURE itcsy.
*-----------------------------------------------------------------------
* get default bin location from MARD for this material/plant/storage *
* location
*-----------------------------------------------------------------------
DATA: l_matnr TYPE matnr, "material
l_werks TYPE werks, "plant
l_lgort TYPE lgort, "storage location
l_lgpbe TYPE lgpbe. "bin location
* Get first parameter in input table.
READ TABLE in_tab INDEX 1.
WRITE in_tab-value TO l_matnr .
* Get second parameter in input table
READ TABLE in_tab INDEX 2.
MOVE in_tab-value TO l_werks.
* Get third parameter in input table
READ TABLE in_tab INDEX 3.
MOVE in_tab-value TO l_lgort.
* read bin location
SELECT SINGLE lgpbe INTO l_lgpbe FROM mard
WHERE matnr = l_matnr
AND werks = l_werks
AND lgort = l_lgort.
IF l_LGPBE IS INITIAL.
l_LGPBE = 'NONE'.
ENDIF.
* read & update only parameter in output table
READ TABLE out_tab INDEX 1.
out_tab-value = l_lgpbe.
MODIFY out_tab INDEX 1.
ENDFORM.
Other Related Link :
Learn SAP Script Online and get Sap Script Code
Click Here to Read More !!!!
Monday, May 21, 2007
Learn SAP Script Online and get Sap Script Code
To Learn SAP-Script and get SAP-Script Code here :
SAP SCRIPT DOCUMENTS AND ABAP CODE
Click Here to Read More !!!!
