abap dup 7

Embed Size (px)

DESCRIPTION

hi

Citation preview

e: How to Delete an LSMW Projcet, Subproject and Object.nswer# 1 run transaction LSMWthen GOTO R choose which project subproject orelse object needs to be deleted and then click on delete butto------Re: how many types of windows are there in SMARTFORMS?not in scripts?Answe# 4 we have four types of windows in smartfors.1.main windo2.secondary windo3.copies window4.final windw -------Re: what is the use of _CODE in BDC?Answer# 1 BDC_OKC0DE will store all the ok codes in the BDC program, when you pass the Fields to a scrren after filling the fields we need to click any button to move other screens, so here the Button will be have a OK_CODE internally to know this we do the recording of the Program, after that we will store this OK code in the BDC_OKCODE field to trigger the next operation.RegardsMallesh ------------- Re: which command is used to flushes the database buffer?Answer# 3 $tab is command which flushes database buffer. -------Re: how to change the package of an object?i.e a report stored in ymadhuri package.now it should be changed to ysaruAnswer# 2 GOto SE38-->Goto-> Object dictionary entry->Click on change button->Remove previouis package name.Enter your new package name.Click on save.If you want a new request you can create. ------------ Re: what is need of function group for function modules whereas there is no need of f.group for subroutines?Answer# 1 Hi FriendPlz go through these 3 points , carefully absorb and itmight be clarified your doubts.1)Need of function modules is to avoid the lengthy andfaster accessing data,how means,suppose for example: i wantthe previous month first day and last day based on Todaydate(means day Sunday or Monday or etc)Actually today dateis 19Apr2008,Saturday. I want previous month first day andlast day, ie first day is 1Mar 2008 it is Sunday or Mondayor Tuesday etc and like last date 31Mar 2008 is Monday orTuesday etc. Generally you need to write lengthy coding , soto avoid lengthy coding just u use date function module incoding and pass the parameters, it will give the out put tou(just few lines of coding)2)Function groups means, some related function modules aregrouped in to one function group.For Example: For date lot of different date function modulesare available in SAP R/3, so these function modules aregrouped in to one Function group.3)Subroutines are used in only with in the program.Frequently used part of program is keep in to subroutines. Globally not available. But where as Function modules areavailable in central library of R/3 and global access.If any doubts plz contact me via mail : [email protected]: If i work in an implementation project will i have to register with SAP?What is the process of blue printing?What is the role of an abapper in implementatin project? Regards,Answer# 2 Hi above answer is wrong. This is correct oneu don't want to register with sap, just u can work only thatproject. everything do company.register with sap is company'swork. that is not developer. blue print meals, suppose one company wants to start sap,ie. newly development. at that time technical managersprepare some blue prints, means how many developers need todevelop project (for abap,sd,mm etc)that blue print contains the what are the aims and goals ofcompany. in implementation project abapers will do developthereports,scripts,bdcs etc according to there requirement.regardsMalli=============Re: What is the role of an abapper in support project?What is the ticket concept in support project?Who raise the ticket and who resolve it?Let me know the complete procedure?Answer# 1 In support project, abaper role is to support project. howmeans support people will raise tickets(problems occur inreports etc) and send to abapers with some id. abapers willdo the work. and they contact to support people that id.In support project there should a SAP Support Team and theTeam members had given an ID , If the user gets any errors he can issue the tickets to that iD for a particular Consultant.------------Re: what is cardinality?how it works in ABAP?Answer# 1 The cardinality (n:m) describes the foreign key relationship with regard to the number of possibledependent records (records of the foreign key table) or referenced records (records of the checktable).The left side (n) of the cardinality is defined as follows: n=1: There is exactly one record assigned to the check table for each record of theforeign key table. n=C: The foreign key table may contain records which do not correspond to any record ofthe check table because the foreign key field is empty. This can occur for example if thefield of the foreign key table is optional, in which case it does not have to be filled.The right side (m) of the cardinality is defined as follows: m=1: There is exactly one dependent record for each record of the check table. m=C: There is at most one dependent record for each record of the check table. m=N: There is at least one dependent record for each record of the check table. m=CN: There may be any number of dependent records for each record of the checktable. ------------Re: can labels generate in smartforms?if yes how?Answer# 1 Labels generation is not possible in smartforms. ---------- Re: what is manue table field in NAST table?what is its purpose in sap scripts?Answer# 1 NAST used for message status of script that whether form is executing correctly or there are any issues,is form is ready to print,whether it is revised , changed ,saved etc. -------- Re: whai is the transaction code or table to see all print programsAnswer# 2 USING STANDARD TABLE NAME TNAPR.-------- Re: what is the transaction code to create LOGO in sap scripts?Answer# 4 HiThere is no transaction code for creating Logo in scripts.butU can create the logo with color or black and white, and save this one with tiff or jpeg file format. After creating u can upload it through se78 or by run thetransaction RSTXMLDC from abap editor --------Re: How to create Reports with Radio Buttons, which gives sales information, Delivery information and Billing information. plz mention the detail coding Tahnks, RahulAnswer# 1Hisee the exampleParameter: sales_information radiobutton group g1.Delivery_information radiobutton group g1.Billing_information radiobutton group g1.u write it for selection criteria.then u write the eventat selection-screen on radiobutton group.u write query for each one here.when u select first one, first query is executed, thensecond executed for second etc. ----------Re: How to Create an Interactive List based on the selection criteria specified for the customer number for displaying the customer information on the basic list, their corresponding order details on the secondary list. Plz specify the coding details. Regards, RahulAnswer# 1 Hi rahul, i think u r newer and also learning abap.i am giving the idea to u. u just follow my points.in selection criteria u use select-options statementeg: select-options for here is name of field and is name of table filed( ur field customer no)u write a query for basic list in start-of-selection block.and u must write hide statement after first sql query only.hide is mainly used to display secondary lists. then u writewrite At line-selection event for secondary lists.in this event u write sy-lsind=1 for first secondary listand for second secondary list sy-lsind=2. so on. up to u canwrite 20 secondary lists, but only one basic list.----------Re: What is the process of project flow n sap?In context to project flow what are the role of an abapper?Answer# 1 Project flow contains 5 Phases. These 5 Phases are calledASAP methodology.Phase 1: Project PreparationPhase 2: Business BlueprintPhase 3: RealizationPhase 4: Final PreparationPhase 5: Go Live and SupportPlz go through this link for detailed information.http://training.saptechies.com/category/sap-asap-documentation/Mainly Abaper is involved in Phase:3. He/She developing the objects according to Business blueprints(Tech Spec). --------Re: What is the role of an abapper in developement process? What is the process of technical specification and how it is carried out?Answer# 1 Abaper main role is to develop the objects according toTechnical Spec. Functional people develop the Functional Spec according tothe client requirement. they will send to technical people.Tech lead is changed the Functional spec to Technical specand forward to Abapers. Abapers will develop the objects byusing spec ---------Re: What is the role of an abapper in developement process? What is the process of technical specification and how it is carried out?