Company Name Starts with ...
#  A  B  C  D  E   F  G  H  I  J   K  L  M  N  O   P  Q  R  S  T   U  V  W  X  Y  Z

IBM SAP SD (Sales & Distribution) Interview Questions
Questions Answers Views Company eMail

how we can reduce the gap according to client requirement ?

2 11405

what is header item condition in sales header data. what is header item condition in schedule line data

2 8228

hai all, i want to know about CIN, and how it is configured.

4 20186

what is userexit?

3 8752

I Recently faced the interview in SAP SD.Interviewer asked the what is the serial no in delivery processing?and also what is the pgi?and what is the configuration for packing? and what is the relation between plant and shipping point?

6 18477

What is the process flow in Logistics execution?

5 41924

What is Sale order processing? Once sale order is created, the processing of S.O means, checking for the materiaal availability using Availability check,shiiping point determination, price determintaion, Back Order processsing, credit check holds removal, but will avaailability check include planned receipts, if planned receipts like prodn order will be considered in Avilability check which is done as Sale order processing, then does it mean that MRP needs to be run for availability check, coz MRP run gives u the qty to be produced and when it needs to be produced. Please clarify.

1664

I need the Solution Manger Document , please send it to me. And one more question,what is unit and integration testing ?

2 2352

how to handle returnable packing material? what is the process involved in it?:

2 8135

plz send how to do testing in sap R/3.... i need the testing process in SAP SD.....

6 20846

What are the 16 steps in the pricing procedure?

3 20660

Who will prepare QABD ?

5 12363

What is business change and impact ? it is a step in project realization stage ? if am wrong,please correct ?

2 5170

1.In third party process am getting an error message (check table 169p entry company code (1111) does not exist) at MIGO step , What should I do to over come this error ?

3 9843

What is the difference between Excisegroup and Series group.

1 9615

Post New IBM SAP SD (Sales & Distribution) Interview Questions


IBM SAP SD (Sales & Distribution) Interview Questions


Un-Answered Questions

What does the function toupper() do?

645


What exactly is PHP?

604


What does session lock () method do in hibernate?

148


How are human voices created?

487


Is PHP an open source software?

572






What are gprs services?

648


Explain the difference between broadcast domain and collision domain?

584


Why meta tag is used in html?

443


1.Identify and discuss the problems which are occurred during data quality verification for the single-source and multi-source problems. 2.Testing has very important role in DWH. In ETL testing phase, how can we perform the integration testing and regression testing? 3.What are the perquisites of system testing and regression testing in ETL phase?

1840


Do you know what are python decorators?

455


How to do authentication in wcf?

469


What is dependency check in spring?

167


What do you know about traits in laravel?

397


I want to use the markerfor playing a video using the jmf.Suppose my video length is of 2 hours.I want it to play ex-15 mintue or 20 mintue and should stop after assigning the time.I am providing my piece of code............please help me.... package com.jha.cdac.lila.praveen; import java.awt.BorderLayout; import java.awt.Component; import java.awt.Container; import java.awt.Dimension; import java.awt.Toolkit; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import java.io.File; import java.net.URL; import javax.media.ControllerAdapter; import javax.media.Manager; /** * * @author vinays */ import javax.media.Player; import javax.media.RealizeCompleteEvent; import javax.media.Time; import javax.swing.JFrame; public class PlayVideo extends javax.swing.JFrame{ Player player; Component center; Component south; // this code is required for playing the video file of mpeg,mp4,mp3,3gp,rm,flv, //wmf,mpv,vob,qt and the asf extension public PlayVideo() { File file = new File("Lesson1.mpg"); try { load(file); // load() } catch (Exception ex) { //Logger.getLogger(LessonNarrative.class.getName ()).log(Level.SEVERE, null, ex); System.out.println("Error while loading file............"+ex); } } //the piece of code given below is used to load the file which user want to play. public void load(final File file) //load the file throws Exception { URL url = file.toURL(); final Container contentPane = getContentPane(); if (player != null) { player.stop(); } // MediaLocator mediaLocator=new MediaLocator (file.toURL()); // DataSource dataSource=Manager.createDataSource (mediaLocator); // player=Manager.createPlayer(url); player = Manager.createRealizedPlayer(url); ControllerAdapter listener = new ControllerAdapter() { @Override public void realizeComplete( RealizeCompleteEvent event) { Component vc = player.getVisualComponent(); player.getVisualComponent(); if (vc != null) { contentPane.add(vc, BorderLayout.CENTER); center = vc; } else { if (center != null) { contentPane.remove(center); contentPane.validate(); } } Component cpc = player.getControlPanelComponent(); if (cpc != null) { contentPane.add(cpc, BorderLayout.SOUTH); south=cpc; } else { if (south != null) { contentPane.remove(south); contentPane.validate(); } } pack(); // //setTitle(file.getName()); //to get the title of Video or Audio File } }; Time tm=new Time(30.4402403); Time tm1=new Time(5.7256199); player.addControllerListener(listener); player.setMediaTime(tm1); player.setStopTime(tm); // player.setMediaTime(new Time(5.0)); //player.setStopTime(new Time(73)); player.realize(); player.start(); } public static void main(String args[]) throws ClassNotFoundException { PlayVideo pv = new PlayVideo(); JFrame f = new JFrame("Lesson1"); f.addWindowListener(new WindowAdapter() { @Override public void windowClosing(WindowEvent e) { System.exit(0); } }); f.getContentPane().add("Center", pv); f.pack(); Dimension screenSize = Toolkit.getDefaultToolkit ().getScreenSize(); int w = 420; int h = 140; pv.setLocation(screenSize.width/2 - w/2, screenSize.height/2 - h/2); pv.setSize(w, h); pv.setVisible(true); }

3854


List some control transfer statements used in swift?

477