Connect to company

Hai,
Im creating a web Portal using VB.Net.When user login, it first connects with SAP B1.Once I connected in one Web Page and when I move to next Web Page, the connection does not exists. So, I have to connect again. What to do to solve this issue?
Is there any simple way to connect once and the connection may persist as long as the user log out?
Thanks.

Hi
Try this
Imports System.Web.Services
<System.Web.Services.WebService(Namespace:="http://tempuri.org/DISSample/Sample")> _
Public Class Sample
    Inherits System.Web.Services.WebService
    Const sRem = "|Empty Node|"
    ' Login to DI Server
    <WebMethod()> Public Function Login(ByVal DataBaseServer As String, _
                                        ByVal DataBaseName As String, _
                                        ByVal DataBaseType As String, _
                                        ByVal DataBaseUserName As String, _
                                        ByVal DataBasePassword As String, _
                                        ByVal CompanyUserName As String, _
                                        ByVal CompanyPassword As String, _
                                        ByVal Language As String, _
                                        ByVal LicenseServer As String) As String
        Dim DISnode As SBODI_Server.Node
        Dim sSOAPans, sCmd As String
        DISnode = New SBODI_Server.Node
        sCmd = "<?xml version=""1.0"" encoding=""UTF-16UCS-4""?>"
        sCmd += "<env:Envelope xmlns:env=""http://schemas.xmlsoap.org/soap/envelope/"">"
        sCmd += "<env:Body><dis:Login xmlns:dis=""http://www.sap.com/SBO/DIS"">"
        sCmd += "<DatabaseServer>" & DataBaseServer & "</DatabaseServer>"
        sCmd += "<DatabaseName>" & DataBaseName & "</DatabaseName>"
        sCmd += "<DatabaseType>" & DataBaseType & "</DatabaseType>"
        sCmd += "<DatabaseUsername>" & DataBaseUserName & "</DatabaseUsername>"
        sCmd += "<DatabasePassword>" & DataBasePassword & "</DatabasePassword>"
        sCmd += "<CompanyUsername>" & CompanyUserName & "</CompanyUsername>"
        sCmd += "<CompanyPassword>" & CompanyPassword & "</CompanyPassword>"
        sCmd += "<Language>" & Language & "</Language>"
        sCmd += "<LicenseServer>" & LicenseServer & "</LicenseServer>" 'ILTLVH25
        sCmd += "</dis:Login></env:Body></env:Envelope>"
        sSOAPans = DISnode.Interact(sCmd)
        ' Parse the SOAP answer
        Dim xmlValid As System.Xml.XmlValidatingReader
        Dim sRet As String
        xmlValid = New System.Xml.XmlValidatingReader(sSOAPans, System.Xml.XmlNodeType.Document, Nothing)
        While xmlValid.Read()
            If xmlValid.NodeType = System.Xml.XmlNodeType.Text Then
                If sRet = "" Then
                    sRet += xmlValid.Value
                Else
                    If sRet.StartsWith("Error") Then
                        sRet += " " & xmlValid.Value
                    Else
                        sRet = "Error " & sRet & " " & xmlValid.Value
                    End If
                End If
            End If
        End While
        If InStr(sSOAPans, "<env:Fault>") And (Not (sRet.StartsWith("Error"))) Then
            sRet = "Error: " & sRet
        End If
        Return sRet
    End Function
    ' This function returns a list of Business Parnters in an XML format
    <WebMethod()> Public Function GetBPList(ByVal SessionID As String, ByVal CardType As String) As Xml.XmlDocument
        Dim DISnode As SBODI_Server.Node
        Dim strSOAPans, strSOAPcmd As String
        Dim xmlDoc As Xml.XmlDocument
        xmlDoc = New Xml.XmlDocument
        DISnode = New SBODI_Server.Node
        strSOAPcmd = "<?xml version=""1.0"" encoding=""UTF-16UCS-4""?>" & _
        "<env:Envelope xmlns:env=""http://schemas.xmlsoap.org/soap/envelope/"">" & _
        "<env:Header>" & _
        "<SessionID>" & CStr(SessionID) & "</SessionID>" & _
        "</env:Header><env:Body><dis:GetBPList xmlns:dis=""http://www.sap.com/SBO/DIS"">" & _
        "<CardType>" & CardType & "</CardType>" & _
        "</dis:GetBPList></env:Body></env:Envelope>"
        strSOAPans = DISnode.Interact(strSOAPcmd)
        xmlDoc.LoadXml(strSOAPans)
        Return (RemoveEnv(xmlDoc))
    End Function
    ' This function removes all the empty nodes from an XML document
    Private Function RemoveEmptyNodes(ByVal n As Xml.XmlNode) As Xml.XmlNode
        Dim nAns As Xml.XmlNode
        nAns = MarkEmptyNodes(n)
        Dim nc As Xml.XmlNodeList
        Dim sSelect As String
        sSelect = "//*[text()="""
        sSelect += sRem
        sSelect += """]"
        nc = nAns.SelectNodes(sSelect)
        For Each nN As Xml.XmlNode In nc
            nN.ParentNode.RemoveChild(nN)
        Next
        Return nAns
    End Function
    ' This function marks all the empty nodes with special text.
    ' The "RemoveEmptyNodes" function uses it to select the nodes to be deleted.
    Private Function MarkEmptyNodes(ByVal n As Xml.XmlNode) As Xml.XmlNode
        Dim MainNode As Xml.XmlNode
        MainNode = n
        Dim nI As Xml.XmlNode
        Dim i, Removed As Integer
        i = 0
        Removed = 0
        For i = 0 To MainNode.ChildNodes.Count - 1 - Removed
            nI = MainNode.ChildNodes(i)
            If nI.InnerText = "" Then
                nI.InnerText = sRem
            ElseIf nI.HasChildNodes Then
                nI = MarkEmptyNodes(nI)
            End If
        Next
        Return MainNode
    End Function
    ' This function adds a Business Parnter
    <WebMethod()> Public Function AddBP(ByVal SessionID As String, _
                                        ByVal xmlBPObject As String) As Xml.XmlDocument
        Dim n As SBODI_Server.Node
        Dim d, pXML As Xml.XmlDocument
        d = New Xml.XmlDocument
        n = New SBODI_Server.Node
        Dim AddCmd As String
        Dim netoXML As Xml.XmlNode
        pXML = New Xml.XmlDocument
        pXML.LoadXml(xmlBPObject)
        netoXML = (RemoveEmptyNodes(pXML))
        AddCmd = "<?xml version=""1.0"" encoding=""UTF-16UCS-4""?>" & _
        "<env:Envelope xmlns:env=""http://schemas.xmlsoap.org/soap/envelope/"">" & _
        "<env:Header>" & _
        "<SessionID>" & CStr(SessionID) & "</SessionID>" & _
        "</env:Header><env:Body><dis:AddObject xmlns:dis=""http://www.sap.com/SBO/DIS"">" & _
        netoXML.InnerXml & _
        "</dis:AddObject></env:Body></env:Envelope>"
        Dim res As String
        res = n.Interact(AddCmd)
        d.LoadXml(res)
        Return (RemoveEnv(d))
    End Function
    ' This function removes the SOAP envelope
    Public Function RemoveEnv(ByVal xmlD As Xml.XmlDocument) As Xml.XmlDocument
        Dim d As Xml.XmlDocument
        Dim s As String
        d = New Xml.XmlDocument
        If InStr(xmlD.InnerXml, "<env:Fault>") Then
            Return xmlD
        Else
            s = xmlD.FirstChild.NextSibling.FirstChild.FirstChild.InnerXml
            d.LoadXml(s)
        End If
        Return d
    End Function
    ' This function returns an XML document of an empty Business Partner object
    <WebMethod()> Public Function GetEmptyBPXml(ByVal SessionID As String) As Xml.XmlDocument
        Dim n As SBODI_Server.Node
        Dim s, strXML As String
        Dim d As Xml.XmlDocument
        d = New Xml.XmlDocument
        n = New SBODI_Server.Node
        strXML = "<?xml version=""1.0"" encoding=""UTF-16UCS-4""?>" & _
        "<env:Envelope xmlns:env=""http://schemas.xmlsoap.org/soap/envelope/"">" & _
        "<env:Header>" & _
        "<SessionID>" & CStr(SessionID) & "</SessionID>" & _
        "</env:Header><env:Body><dis:GetBusinessObjectTemplate xmlns:dis=""http://www.sap.com/SBO/DIS"">" & _
        "<Object>oBusinessPartners</Object>" & _
        "</dis:GetBusinessObjectTemplate></env:Body></env:Envelope>"
        s = n.Interact(strXML)
        d.LoadXml(s)
        Return (RemoveEnv(d))
    End Function
End Class
Thanks
Kevin
Edited by: Kevin Shah on May 9, 2011 4:57 PM

Similar Messages

  • Problem in loading images when i am connected on company network

    Hi friends, I am using firefox since last 4 months on my windows 8 pro laptop.but since last month I am facing problem in loading images when i am connected on company network but same time it is working fine with ie10. But all these thinks are working well at my home when I am using broadband.

    I don't completely understand your issue. Does this issue occur on 1 network and does not occur on another? Have you tried clearing cache and cookies and making sure your plugins are up to date?
    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!
    Please check if all your plugins are up-to-date. To do this, go to the [http://mozilla.com/plugincheck Mozilla Plugin Check site].
    Once you're there, the site will check if all your plugins have the latest versions.
    If you see plugins in the list that have a yellow ''Update'' button or a red ''Update now'' button, please update these immediately.
    To do so, please click each red or yellow button. Then you should see a site that allows you to download the latest version. Double-click the downloaded file to start the installation and follow the steps mentioned in the installation procedure.

  • Can't connect to company using B1DE

    Hi
    I have just installed B1DE for SAP 2005 SP1.
    The problem I have is that when I run the addon wizard and the connection screen comes up, I get an error - 'connection to database failed - connection to sbo-common has failed '
    I get this with the sdk if I don't have a valid period set up. The periods are set fine.
    Can anyone suggest anything please ?
    Thanks
    Regards Andy

    Hi,
    Can you please take a simple addon and replace the DI connection by the following code?
    You only have to replace all strings with the corresponding datas you want to use:
    diCompany.Server = "localhost";
    diCompany.CompanyDB = "YourCompany";
    diCompany.UserName = "manager";
    diCompany.Password = "manager";
    diCompany.DbUserName = "dbusername";
    diCompany.DbPassword = "dbpassword";
    int ret = diCompany.Connect();
    if (ret != 0)
            int errcode;
            string errmsg;
            Globals.diCompany.GetLastError(out errcode,out errmsg);
            Cursor.Current = Cursors.Default;
            MessageBox.Show("ERROR - Connection to company failed: " + errmsg);
    Please let me know if it works or not
    Regards
    Trinidad.

  • Unable to connect to Company.

    Dear All,
         I have created AddOn and trying to Install it in SAP B1 2004. But it gives me error 'Not connected to Company' while running AddOn.
         Can you pls. let me know how to salve this problem?

    Archana,
    There are a few different reasons for this.  The typical is that you do not have the login properties set correctly in your add-on code.  You may want to review the SAP SDK Help Center and specifically look at "Connecting to SAP Business One Database" for the DI API and/or "Single Sign-on".
    HTH,
    Eddy

  • In how many ways could I connect different company for telepresence?

    Hello everyone, 
    I'm new in the video conference and telepresence field. 
    I'd like to know how many ways there are to connect different company to make a telepresence session.
    Currently I'm managing a telepresence infrastructure in which all the different location are 30 Km distant and are all part of the same intranet.
    Obviously we have a VCSc and VCSe and a MCU.
    If I don't have an intranet and I'd like to connect different location, how could I do? VPN? Is it possible to use just the public internet?
    for example, if I have 3 location (200 km distant) and every location has an SSDL connection (down 4 Mb/s up 4 Mb/s), can I connect them?
    I was thinking to use for example a VCS Espress starter pack in one location and 3 codec SX20.
    Is it possible to have a 720p call considering the distances?
     

    Yes, you can, but it does become a trial and error scenario.
    We've been doing that for years to some very remote sites (+800kms), however, we've had to keep the b/w to 384kbps, and we do see some packet loss at times, but this mainly involves older endpoints such as MXPs, whereas the C-series and the SX endpoints handles it much better.
    We're now in the process of moving these sites on to a managed 10/10Mbps connection which will allow us to implement QoS.
    We also have another very remote island site where we only have a 2/2Mbps connection, and we restrict b/w to a max 512kbps to/from this site, and we haven't had any issues at all.
    And these links are not used exclusively for video, but these remote sites use them for all their internet traffic.
    Just on a side note, I run HD videconferences from home, but then I have a 100/40Mbps fibre connection, but it still goes across the public internet - and I haven't had any issues yet. :)
    As I said at the top, it's trial and error; stress test the link at various times without VPN first, then move to VPN if needed. It's not as simple as a "yes" or a "no".
    /jens
    Please rater replies and mark question(s) as "answered" if applicable.

  • My laptop is connected to company LAN on wire and I have another active wifi connection provided by a router. Can I use the wifi connection for mozilla connection and the wired for everything else? I'm on Win7.

    I have 2 simultaneous active connections:
    no1: wired connection to company lan; private IP 172.19..
    no2: wireless connection to unrestricted traffic router; private IP: 192.168...
    my question: can I use the wireless connection for mozilla traffic and the wired for everything else?
    I'm on Windows7 Prof, all security updates installed.

    Go to Control Panel > Network and Internet > Network and Sharing Center >
    Click Change adapter settings from left panel > Open the network connection you want to change the DNS servers for by right click and select Properties > Select
    Internet Protocol Version 4 (TCP/IPv4) and click Properties button > Choose the
    Use the following DNS server addresses > enter the IP address for a
    Preferred DNS server as well as an Alternate DNS server.
    Primary DNS: 8.8.8.8
    Secondary DNS: 8.8.4.4
    This IP belongs to Google public DNS.
    Note: Wired connections are usually labeled as Ethernet, while wireless ones are usually labeled as
    Wi-Fi or Wireless Network Connection.
    Uncheck Internet Protocol version 6
    Mark as Answer if it's worked. Thanks. Balamurugan_Subramaniyan

  • Loose of email connection to company server

    I am periodically loosing email connection to company email server on both my iphone and ipad.  Happens randomly.  Reconnection occurs right after.  Have gone thru and deleted email account in settings and re-established to no avail. Any thoughts?

    You are allowing slack or losing tightness in your email connection?
    are you connected to the server by string?
    If you meant you are losing the connection, what troubleshooting have you done?
    have you checked with the IT department for outages or if it is a widespread issue?
    What kind of Internet connection do you have during these outages-wifi, cellular?

  • -103 Failed to Connect to Company

    That's good to know but now why ?
    What do I do to know why it doesn't connect ?
    I've looked everything, dll's versions, and everything seems all right !

    You may check these threads if you haven't try them yet:
    Re: B1DIEventService:  DI Event Server and Client on the same machine (win2003)
    Not connecting to the selected company database
    8020Failed to initialize lenguage Failed connect to the company's database
    Thanks,
    Gordon

  • Unable to connect to company - Bad company version

    Hi members,
    I have a add-on and  on running it the add-on is unable to connect to a particular company. It shows an error named as "Bad Company Version". The add-on however, connects to other company in B1.Anyone please help me in this regard.
    Thanks,
    Venkatesh.R

    Hi,
    you need to update the company.
    this message comes when you upgraded your business one but you didn't upgrade the company.
    make a backup, log in your sap with manager and upgrade the company.
    than you can connect !
    regards
    David

  • Connect To Company Code

    Hi...
    What will be the code in C Sharp with which i can connect to the SAP B1 company both in UI API and
    DI API ? where no hard coding will be there for company details or server details. Please help

    You should check the samples and SDK help before coming to the forums - normally you can solve your issue much more quickly! But you are lucky this time, I was just checking when you posted
    C:\Program Files\SAP\SAP Business One SDK\Samples\COM UI DI\CSharp\New UI DI Connection
    SAPbouiCOM.SboGuiApi SboGuiApi;
    string sConnectionString;               
    SboGuiApi = new SAPbouiCOM.SboGuiApi();          
    //InDebug mode use this:
    sConnectionString = "0030002C0030002C00530041005000420044005F00440061007400650076002C0050004C006F006D0056004900490056";
    //In Release mode use this:
    //sConnectionString = Environment.GetCommandLineArgs().GetValue(1).ToString();                              
    SboGuiApi.Connect(sConnectionString);               
    SBO_Application = SboGuiApi.GetApplication(1);
    oCompany = new SAPbobsCOM.Company();
    oCompany = (SAPbobsCOM.Company)SBO_Application.Company.GetDICompany();

  • Cannot make update - user connected to company

    Hi experts,
    I am trying to update the number of decimals in Quantity. I am getting the error message: "Cannot make update - another user is logged into the company". HOwever, I checked under License Administration and noone else is logged in.  The administrator has also killed all existing connections.
    Any help please on how to make the update in the number of decimals?
    Thanks,
    Jane

    Hi Jane.......
    Do this.....
    Disconnect all the addons and keep it on Manual first.
    Disconnect DIAPI service and other services in SAP except License service and also ask all the users to disc from server.
    Log Off the server and then try to make changes in decimal.
    Once your problem is solved then start all the services and keep your addons on auto mode if you want....
    Please try and let me know......
    Regards,
    Rahul

  • Observer.dll version Mismatch with DI API when connecting to company

    Please help!
      I recently upgraded to patch 47 from 45, I entered the company through the di api, and I got an error that said something about external component threw an exception, I closed my program and tried to enter again, now I'm getting this Observer.dll Mismatch, when trying to connect to the company.
    I saw another post, and verified the DI API dll SAPbobsCOM with THE SCAB table in SBO-COMMON, and both are 800181.
    Iam using the SAPbobsCOM dll that its under C:\Program Files\SAP\SAP Business One\DI API\2007, although I have to say, I was using another dll from the examples folder in the SDK, when I started getting the error I changed to the one above. Ive tried deleting the SBO-COMMON database and then executing the upgrade patch 47 to rebuild, but Im getting the same error.
    More Info: I took a look at this temp folder:
    C:\Documents and Settings\username\Local Settings\Temp\SM_OBS_DLL\800148
    Ive noticed that the version is diferent, but where does it come from?
    Thank you!
    Edited by: Josu00E9 Inu00E9s Cantu00FA Arrambide on Mar 31, 2009 7:51 PM
    Edited by: Josu00E9 Inu00E9s Cantu00FA Arrambide on Mar 31, 2009 8:02 PM

    My Bad, I was connecting to the wrong server.

  • Trouble with VPN and Verizon MI424WR router - not connecting to company intranet

    I need to connect to my work intranet and via VPN.  There was no problem accessing both when I had Verizon DSL.   Since I switched to FIOS, I can access email via VPN but not my Company's internet and various internal company websites.  I saw a previous forum with a similar problem using the Actiontec router, but wanted to make sure I tried a correct fix for my router.  My router is connected via both Coax ad Ethernet to the ONT since I signed up for FIOS internet first and then added TV later.  I don't know if both are active.  I have a spare Linksys wireless G router I can add to the network  if needed.  My router firmware is 20.10.7.
    Solved!
    Go to Solution.

    Thanks to all for the suggestions.  I could not see how the VPN software was the culprit since it worked at various hotels, Panera bread ... but decided to try to uninstall and re-install the latest version.  Viola, I am now working.  I plan to leave the linksys router in the system since the speed is significantly faster. 

  • VoIP connection to company server

    Hi there,
    When reading the specs of the IPhone 3G I was interrested in its capability to connect to VoIP servers. I noticed there are lots of apps around which let it connect to skype like services. In other words: services for which you need an account and you place calls via the Internet.
    This is not what I am looking for.
    What I need is a replacement for the Nokia E series.
    With the Nokia E series I can make a VoIP profile connecting to our company VoIP server. The profile becomes an intergral part in the phones methodes of placing and receiving calls.
    This way I can place and receive calls through our company VoIP server when in range of our Wifi network. When out of range it switches to the network of the telecom provider (like Vodafone).
    Is this posible with Apple IPhone?
    Peter

    Seems it is called ISip nowadays.... looks good.
    Now all I need is an IPhone to actually test it .... thanks

  • After installing Leopard I cannot connect onto company server

    After installing Leopard I am unable to connect to our company server. I was able to see the server when I was on tiger. I tried to connect the server manually but it seems I can't even do that. What to do next ? Server connects both PCs and Mac in the office.
    I went into finder preference and click connect to server. I don't see any of our three servers that I saw on tiger. Not sure what to do next.
    I get the message
    The server does not exist or it is not operational at this time. Check the server name or IP address and your network connection and try again.

    I wish I was writing with an answer, but all I can really offer is that "I feel your pain". In my case, after upgrading to Leopard, I can see many, but nowhere near all, computers on our network, and there's no obvious explanation for who appears and who doesn't. Worse, I can see the one I most need to see (my administrative assistant) but there is no option to file share through drop boxes or any other mechanism we've found (despite enabling those options in preferences) and the only option listed is to "share screen" -- which is interesting since my assistant's computer is running Tiger, and selecting it on my end fails every time!
    What gives!?! It's tough being the local mac evangelical when s**t like this goes down!

  • Cannot connect to Company in SAP 8.81

    Hi everyone,
    I hope someone can help me out with this problem because I don't know what else to try!
    I have a DLL that connects to SAP Business One using the DIAPI (doesn't use the UI).
    This DLL used to work when when the system was SAP B1 2007 PL39.
    Now the costumer is upgrading to SAP B1 8.81 PL10 and the DLL doesn't connect anymore when launched from the client.
    This is my configuration:
    Computer A (Server): SQL Server 2008 R2 / SAP B1 Server 8.81 PL10
    Computer B (Client): SAP B1 Client 8.81 PL10
    My DLL connects to the company using the following code:
    SAPbobsCOM.Company aCompany = new SAPbobsCOM.Company();
    aCompany.Server = "aaaaa";
    aCompany.DbServerType = BoDataServerTypes.dst_MSSQL2008;
    aCompany.UserName = "manager";
    aCompany.Password = "xxxxx";
    aCompany.CompanyDB = "yyyyy";
    iErr = aCompany.Connect();
    Now.... if i execute this code in the server (Computer A) the DLL connects to the company.. if i execute the same code in the client (Computer B) the DLL remains "stuck" in the connect() instruction and never connects. There is no error code or exception but it just won't connect.
    Apart from the DLL everything else works in the Client: i can open SAP B1, connect to the server, etc....
    What am i missing? I also tried setting the following properties in the company object but nothing works:
    aCompany.language
    aCompany.LicenseServer
    aCompany.UseTrusted
    Hope someone can help me...
    Thank you!
    David

    Hi David,
    I've not had any problems connecting solely via the DI API on a SBO 8.81 Patch 10 installation (with a SQL 2008 backend). You do need to specify the license server for the connection (but you've mentioned in one of your posts that you are including this property so I'm going to assume that this isn't an issue).
    Can you connect any addons within the SBO client on the workstation?
    Have you tried deleting the SM_OBS_DLL folder (search the forum for that folder name if you aren't sure how to do this)?
    Finally, you can check the DI API log to see if there's any error message being logged. By default, the path will be:
    C:\Documents and Settings\<profile>\Local Settings\Application Data\SAP\SAP Business One\Log\DIAPI
    on a Windows XP workstation.
    Kind Regards,
    Owen

Maybe you are looking for

  • How to retrieve data from a DB

    Hi I need to retrive data from a DB but I know nothing about DB structure and data type. I've been reading tutorials and writing code and I've all ready except I dont figure out how to know which data type I'm retrieving to use corresponding class to

  • Should I use And or OR in the Where Clause?

    2 Databases have been merged, and in the purge some data was omitted, so I am running clean-up.  Now I need a query to show me if item1 is null, then check olditem1 if both fields are null then ignore the record completely.  But If either field has a

  • Migration from BW 3.x to BI v7.0 Analysis Authorizations

    Hi All! We are converting our security from BW 3.x Reporting Authorizations to BI v7.0 Analysis Authorizations. My questions are as follows: We you make the IMG change in BI v7.0 in IMG transaction RSCUSTV23, does your old BW Reporting security disap

  • Progressive monitor export

    Saw this thread but didn't exactly answer my question. I'm exporting video shot in SD 60i to present on an HDTV (720p). What's the best export? I usually do the "DVD Best Quality 90 minute" with Mpegs and Dolby 2.0. Is there any fine tuning I need to

  • Wrong ATP check when modifying VA02 ( Flexible Planning)

    Hello Gurus, I encounter a problem in checking material availiabilty for client as below: + Firstly define the Planning for customer with MC94 For example : material MAT1 Base unit of measure : PC ( Piece) Unit of sale : Carton ( 1 carton = 10 PC) (B