SAP 2007 B PL07

Hi all experts
I am using SAP 2007B Patch Level PL07.
My problem is when i am adding the delivery i am getting the message that CENVAT CODE IS NOT ALLOWED [DELIVERY ROWS-TAX CODE] LINE 1.
I Had checked my item is excisable. and i had taken BED+Cenvat taxcode. But from the form setting  Excisable is disable. even if i had enable the excisable. it is grayed in the delivery document.
This Issue come only when i upgrade my Patch level 04 To 07.
Can anyone guide me on this issue.
Ashish Gupte

Dear Ashish,
If you were not able to reproduce this issue in 2007 B pl 4 but it happens in 2007 B pl 7, I would suggest you to login a messages with SAP about this issue.
This might be a bug or settings changed.
Regards
Arshdeep

Similar Messages

  • Error in creating DLN on SAP 2007 01 PL07

    Hi Experts,
    Our profuct has been used by multi clients for years, and everything is working fine until one client upgrades to SAP 2007 01 PL07. The user was working properly at beginning, and got a error in creating DLN, then the user will not be able to create DLN any more, then the user has to logout and login the SAP to create DLN agian. the error will be trigger pretty often,and error msg is: the requested action is not support this object.
    the error is only hapened on one of our clients, and we struggled for long time, but could not fix it out.
    Any suggestion or recommandation will be more then welcome!
    Thank in advance.
    Austen

    You may check these:
    The requested action is not supported for this object
    Errors not listed in the documentation...

  • Table Creation taking a lot of time in SAP 2007...

    I have an SAP Addon which is created in SAP2005...Right now i changed the code to SAP 2007...But the Problem i am facing is, it takes a lot of time to created the usertabels thorugh SAP 2007 code...Around 5 minutes it takes....But i created the usertables through SAP 2005 less than 2 minutes....I ahve to create 18 usertables thorugh this code....
    can anyone help me to solve this issue.. as well as i want to know whether any change is there in codes in SAP 2005 or SAP 2007.for creating Usertables....
    My Code:
    Private Sub AddUserTable(ByVal Name As String, ByVal Description As String, ByVal Type As SAPbobsCOM.BoUTBTableType)
    Try
    oUserTablesMD = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oUserTables)
    If oUserTablesMD.GetByKey(Name) = False Then
    oUserTablesMD.TableName = Name
    oUserTablesMD.TableDescription = Description
    oUserTablesMD.TableType = Type
    lRetCode = oUserTablesMD.Add
    If lRetCode 0 Then
    'oCompany.GetLastError(lRetCode, sErrMsg)
    'MsgBox(sErrMsg)
    End If
    End If
    Catch ex As Exception
    'pEve_Application.StatusBar.SetText(ex.Message, SAPbouiCOM.BoMessageTime.bmt_Short, SAPbouiCOM.BoStatusBarMessageType.smt_Error)
    Finally
    System.Runtime.InteropServices.Marshal.ReleaseComObject(oUserTablesMD)
    End Try
    End Sub
    Waiting for Positive Reply...
    Thanks
    Hari

    Hi hari,
    I suggest you create you user tables, fields, keys, permissions through XML.
    Here's a sample:
    <?xml version="1.0" encoding="UTF-16"?>
    <BOM>
         <BO>
              <AdmInfo>
                   <Object>153</Object>
              </AdmInfo>
              <OUTB>
                   <row>
                        <TableName>TABLE_ID</TableName>
                        <Descr>TABLE_DESCRIPTION</Descr>
                        <ObjectType>1</ObjectType>
                   </row>
              </OUTB>
         </BO>
         <BO>
              <AdmInfo>
                   <Object>152</Object>
              </AdmInfo>
              <CUFD>
                   <row>
                        <TableID>@TABLE_ID</TableID>
                        <AliasID>FIELD_NAME</AliasID>
                        <Descr>FIELD_DESCRIPTION</Descr>
                        <TypeID>A</TypeID>
                        <EditType></EditType>
                        <Dflt></Dflt>
                        <EditSize>100</EditSize>
                   </row>
              </CUFD>
              <UFD1>
              </UFD1>
         </BO>
    </BOM>
    If you have already created the fields before (through code or through B1 UI), you can query the OUTB, CUFD and UFD1 tables to check what values you need to put in the XML file.
    You can use the following function to process a single XML file with the definition of tables, fields, keys and permissions.
        Public Function LoadBDFromXML(ByRef oCompany As SAPbobsCOM.Company, ByRef oApplication As SAPbouiCOM.Application, _
                ByRef Directory As String, ByRef FileName As String) As Boolean
            Dim sXmlFileName As String
            Dim iElementCount As Long
            Dim iCounter As Long
            LoadBDFromXML = False
            Try
                '// Inicializar a barra de progresso, caso seja nada.
                If BarraDeProgresso Is Nothing Then
                    BarraDeProgresso = oApplication.StatusBar.CreateProgressBar(UpdatingDB, 1, False)
                End If
                sXmlFileName = Directory & "" & FileName
                iElementCount = oCompany.GetXMLelementCount(sXmlFileName)
                BarraDeProgresso.Maximum = iElementCount
                BarraDeProgresso.Value = 0
                For iCounter = 0 To iElementCount - 1
                    oCompany.XmlExportType = BoXmlExportTypes.xet_ExportImportMode
                    Select Case oCompany.GetXMLobjectType(sXmlFileName, iCounter)
                        '// Tabela de Utilizador
                        Case BoObjectTypes.oUserTables
                            Dim oTable As SAPbobsCOM.UserTablesMD = oCompany.GetBusinessObjectFromXML(sXmlFileName, iCounter)
                            Try
                                BarraDeProgresso.Value += 1
                                BarraDeProgresso.Text = "UDT: " & oTable.TableDescription
                                If oTable.Add <> 0 Then
                                    oApplication.MessageBox(TranslateStr(oApplication, ErrAddUDT) & vbCrLf & _
                                    TranslateStr(oApplication, Error_) & oCompany.GetLastErrorCode.ToString & ", " & _
                                    oCompany.GetLastErrorDescription & vbCrLf & TranslateStr(oApplication, Element) & _
                                    iCounter & ", " & oTable.TableDescription)
                                    Exit Function
                                End If
                            Catch ex As Exception
                                oApplication.MessageBox(TranslateStr(oApplication, Error_) & _
                                TranslateStr(oApplication, ErrUDT) & ", " & ex.ToString)
                            Finally
                                System.Runtime.InteropServices.Marshal.ReleaseComObject(oTable)
                                oTable = Nothing
                                GC.Collect()
                            End Try
                            '// Campos de Utilizador
                        Case BoObjectTypes.oUserFields
                            Dim oFields As SAPbobsCOM.UserFieldsMD = oCompany.GetBusinessObjectFromXML(sXmlFileName, iCounter)
                            Try
                                BarraDeProgresso.Value += 1
                                BarraDeProgresso.Text = "UDF: " & oFields.TableName & "." & oFields.Name & " - " & oFields.Description
                                If oFields.Add <> 0 Then
                                    oApplication.MessageBox(TranslateStr(oApplication, ErrAddUDF) & vbCrLf & _
                                    TranslateStr(oApplication, Error_) & oCompany.GetLastErrorCode.ToString & ", " & _
                                    oCompany.GetLastErrorDescription & vbCrLf & TranslateStr(oApplication, Element) & _
                                    iCounter & ", " & oFields.Name)
                                    Exit Function
                                End If
                            Catch ex As Exception
                                oApplication.MessageBox(TranslateStr(oApplication, Error_) & _
                                TranslateStr(oApplication, ErrUDF) & ", " & ex.ToString)
                            Finally
                                System.Runtime.InteropServices.Marshal.ReleaseComObject(oFields)
                                oFields = Nothing
                                GC.Collect()
                            End Try
                            '// Chaves de Utilizador
                        Case BoObjectTypes.oUserKeys
                            Dim oKeys As SAPbobsCOM.UserKeysMD = oCompany.GetBusinessObjectFromXML(sXmlFileName, iCounter)
                            Try
                                BarraDeProgresso.Value += 1
                                BarraDeProgresso.Text = "UDKey: " & oKeys.KeyName & "(" & oKeys.TableName & ")"
                                If oKeys.Add <> 0 Then
                                    oApplication.MessageBox(TranslateStr(oApplication, ErrAddUDK) & vbCrLf & _
                                    TranslateStr(oApplication, Error_) & oCompany.GetLastErrorCode.ToString & ", " & _
                                    oCompany.GetLastErrorDescription & vbCrLf & TranslateStr(oApplication, Element) & _
                                    iCounter & ", " & oKeys.KeyName)
                                    Exit Function
                                End If
                            Catch ex As Exception
                                oApplication.MessageBox(TranslateStr(oApplication, Error_) & _
                                TranslateStr(oApplication, ErrUDK) & ", " & ex.ToString)
                            Finally
                                System.Runtime.InteropServices.Marshal.ReleaseComObject(oKeys)
                                oKeys = Nothing
                                GC.Collect()
                            End Try
                            '// Árvore de Autorizações
                        Case BoObjectTypes.oUserPermissionTree
                            Dim Tree As SAPbobsCOM.UserPermissionTree = oCompany.GetBusinessObjectFromXML(sXmlFileName, iCounter)
                            Try
                                BarraDeProgresso.Value += 1
                                BarraDeProgresso.Text = PermTree & Tree.Name
                                If Tree.Add <> 0 Then
                                    oApplication.MessageBox(TranslateStr(oApplication, ErrAddUPT) & vbCrLf & _
                                    TranslateStr(oApplication, Error_) & oCompany.GetLastErrorCode.ToString & ", " & _
                                    oCompany.GetLastErrorDescription & vbCrLf & TranslateStr(oApplication, Element) & _
                                    iCounter & ", " & Tree.Name)
                                    Exit Function
                                End If
                            Catch ex As Exception
                                oApplication.MessageBox(TranslateStr(oApplication, Error_) & _
                                TranslateStr(oApplication, ErrUPT) & ", " & ex.ToString)
                            Finally
                                System.Runtime.InteropServices.Marshal.ReleaseComObject(Tree)
                                Tree = Nothing
                                GC.Collect()
                            End Try
                            '// Objectos de Utilizador
                        Case BoObjectTypes.oUserObjectsMD
                            Dim oUDO As SAPbobsCOM.UserObjectsMD = oCompany.GetBusinessObjectFromXML(sXmlFileName, iCounter)
                            Try
                                BarraDeProgresso.Value += 1
                                BarraDeProgresso.Text = "UDO: " & oUDO.Code & "(" & oUDO.Name & ")"
                                If oUDO.Add <> 0 Then
                                    oApplication.MessageBox(TranslateStr(oApplication, ErrAddUDO) & vbCrLf & _
                                    TranslateStr(oApplication, Error_) & oCompany.GetLastErrorCode.ToString & ", " & _
                                    oCompany.GetLastErrorDescription & vbCrLf & TranslateStr(oApplication, Element) & _
                                    iCounter & ", " & oUDO.Name)
                                    Exit Function
                                End If
                            Catch ex As Exception
                                oApplication.MessageBox(TranslateStr(oApplication, Error_) & _
                                TranslateStr(oApplication, ErrUDO) & ", " & ex.ToString)
                            Finally
                                System.Runtime.InteropServices.Marshal.ReleaseComObject(oUDO)
                                oUDO = Nothing
                                GC.Collect()
                            End Try
                    End Select
                Next iCounter
                If Not BarraDeProgresso Is Nothing Then
                    BarraDeProgresso.Stop()
                    BarraDeProgresso = Nothing
                End If
                LoadBDFromXML = True
            Catch ex As Exception
                If oCompany.InTransaction = True Then oCompany.EndTransaction(BoWfTransOpt.wf_RollBack)
                oApplication.MessageBox("LoadBDFromXML(" & FileName & "): " & oCompany.GetLastErrorCode.ToString & ", " & ex.ToString)
            End Try
        End Function
    Note: BarraDeProgresso is my progress bar.
    You can also register UDO's through XML, but I prefer to do it by code.
    Regards,
    Vítor Vieira

  • Payment Engine for SAP 2007

    Payment Engine for SAP 2007 does not produce the bank file as per normal. They are on Patch 35.
    Quote from the client
    "The new version requests to export the bank file to specific destination (the previous one needs two runs u2013 one for test, another for production).
    After having clicked the Export button, thereu2019s no error message. And, thereu2019s no bank file been created into the destination folder."

    Hi
    please check user with Windows Admininstrator
    rights is able to create the File or not.
    If only user who owns Windows Admininstrator rights can create bank file but other normal user cannot create bank file
    even though they have the full permissions to the B1i_SHR folder, for this problem,our developer is working on it and plan to fix it in 2007APL36.
    Now the workaround is,
    you have to make the user who login into client as windows
    administrator.
    Regards,
    Eleven
    SAP Business One Forums Team

  • XL Report in SAP 2007

    Sir,
    I am getting problem in xl report which is inbuild in SAP 2007 the message i am getting is as follow
    " Class does not support Automation or does not support expected interface "
    Kindly guide me
    Thanks
    Rajesh B K

    Hi!
    Check these threads
    XL Class does not support application or does not support expected interfac
    Sol. Required for error : Class does not support Automation or does not sup
    Run time 430 error Class does not support automation
    Re: Error in XL Reporter

  • SAP 2007 CheckBox Click Event

    Hi Pro,
       I created a checkbox in a Matrix on a form and set up a click event for the checkbox.  If I click once at a time slowly, the click event triggered as noraml.  If I click it twice fast, it only triggered the click event once, not twice.  Is it a bug in SAP 2007?
       One more thing, put a focus on that checkbox column in a matrix, then press the "UP" or "DOWN" arrow key, the focus goes to previous or next row, it works perfect, except why it triggers the click event as well?  Do you think this is wrong?
    Chris

    Hi Chris,
    When you click twice (fast), this translates to et_DOUBLE_CLICK event. Of course, et_CLICK is also fired.
    When you press the "UP" or "DOWN" arrow key, along with et_CLICK event, other events are also fired e.g. et_GOT_FOCUS, et_LOST_FOCUS etc.
    You can use Event Logger tool (part of B1DE) to look at all the events fired when a certain action is performed. This will help you determine which events you want to handle in your code.
    Regards
    Aravind

  • SAP 2007 upgrade - does not allow to change old documents

    We have recently upgrade to SAP 2007 from SAP 2005 and now it does not allow to change any of the old documents which was already in the system before upgrading.
    Error message
    Another user modified table [Message 131-183]
    It gives the same error even after restarting the SAP server where SQL is runing and in all the user accounts including manager.
    Thank You
    Sanjaya

    Hi,
    Check the Note No. : 1301335 regarding the issue mentioned by you.
    You probably need to get the issue investigated on the support side.
    Regards,
    Jitin
    SAP Business One Forum Team

  • Add query to Main menu in SAP 2007

    Hi all!
    Can i add query to main menu in SAP 2007. Now, i only add done query to My menu.
    Thank you!

    Hi Tien,
    You cannot add the Query to the main menu.you can try the other way round. Paste the query in the crystal report and then check the report is comming OK. Then add it to the main menu via crystal Reports.
    Regards,
    Raj

  • Upgradation error SAP 2007 B to patch 11

    Hi experts,
    i have been trying to install "SAP 2007 B client" at one of our PC, with operating system as Windows XP sp 2.
    Installation get completes successfully, but while upgrading SAP 2007 B from patch 8 to patch 11 gives in an error.
    The error says
    " ERROR : Error accessing Parser Dll -
      C:\Docume1\ADMINI1\LOCALS~1\Temp\{3B7CBDC4-20D1-4E0F-8E36-ADFED7E767E5}\CreatorDll.dll "
    If anyone of you have face similar issue please help.
    Regards,
    Narendra

    Hi,
    I could find the solution for installation....i tried installing  SAP 2007A in one of many PC having "Windows XP sp2" ....i got successful with one of them having able to upgraded the patch level to 11. I dont know how it hppened but was able to get through the patch upgradation.
    Next i again installed the SAP 2007 A patch 8 to the earlier Windows XP client PC, this time not running up gradation "patch 11".
    Next i copied the C:-> Program Files-> SAP---> SAP Business One folder from the working client PC to the PC which was giving me the error....Its strange but worked for me!!!
    Thanks for all ur replies.

  • SAP 2007 A and SQL 2000

    I understand that SAP no longer supports SQL Server 2000, but could someone confirm whether I can still still install and run SAP 2007 with a SQL Sevrer 2000 database?

    Hi John,
    please have a look at the 'Product availability' landing page (Channel Partner Portal -> Solutions -> SAP Business One -> Product Availability):
    Apr 17 | Microsoft Has Retired its Mainstream Support for SQL 2000 as of April 8, 2008.
    For SAP Business One users still running their installation on SQL 2000, this means no new functionality or Service Packs. Microsoft will continue to provide bug fixes and security fixes on demand only. We therefore recommend that customers upgrade their SQL installation to 2005 as soon as possible. Refer to SAP Note 928839 for additional information.
    You will also see in the 'server' section that SQL 2000 is not supported for SAP Business One 2007.
    All the best,
    Kerstin

  • Error in connection SAP 2007 B PL 11 client to SQL server

    Dear All,
    I am using SAP 2007 B PL 11. Whenever i am doing change server on client systems and entering the SQL server name and pwd the system gives error:
    Connection failed:
    SQLState: '08001'
    SQL Server Error: 0
    [Microsoft][SQL Native Client]Unable to complete login process due to delay in opening server connection
    If i directly punch the IP address of the server then it immediately shows me the company lists. When i select a company and then enter the sap user name (manager) and pwd then it takes almost 3-4 minutes to connect to the company.
    Can anybody please help me out on this issue.
    Regards,
    Rahul

    HI,
    I checked it out from SAP. They said that this problem is caused when multiple network card are installed on the sap server. They gave the below mentioned solution as a workaround:
    SAP Business One client (not installed on the same machine as the
    license service) might take several minutes to log you on successfully due to a delay in establishing a connection with the license server.
    After logon, SAP Business One functions as expected.
    This is due to the fact that the server or PC on which the license server is installed has more than one network card, or there is a dial-up & VPN interface-configured server.
    Note: This can happen when you install the license service on a machine with more than one network card ALREADY installed.
    Installing additional network cards on a single network card machine with a license service already installed might not produce this issue.
    Other terms
    SAP Business One, slow, login, log-in, delay, license, server, NIC, VPN, connection.
    Reason and Prerequisites
    Application error.
    Solution
    This issue is a candidate to be resolved in a future release.
    Until then, you can use one of the following workarounds:
    1.Disable additional network cards in the Network Connections. Also make sure there is no dialup interface or VPN interface set up, and restart the server. Note that you can re-enable the additional network card after the restart. This will resolve the issue until the next restart.
    2.Install the license server on a machine with a single network card.
    3.Disable all network cards, restart the license server and then enable the network cards again.

  • SAP 2007 B and SAP 2005 B

    Hi all,
    What are the extra features and functionality added in SAP 2007 B than 2005 B.
    What is the difference between SAP b1 2007 B and SAP b1 2005 B.
    Thanks,
    Neetu

    hi neetu,
    Check this link for new features in 2007B.
    https://websmp110.sap-ag.de/~form/sapnet?_SHORTKEY=01100035870000680297&_SCENARIO=01100035870000000183&_ADDINC=011000358700002837782005E&
    Jeyakanthan

  • B1iSN Configuration with SAP 2007 PL 13 Issue

    Hello to All,
    1.  I have installed SAP 2007 B PL 13.
    2. Now i want to configure B1iSN with SAP 2007 PL 13.
    3.for this configuration i have download three zip file from SAP Portal.
        1 .B1ISN2007CONTNTP_13-10008366
        2 .B1ISN2007SIMP_13-10008367
        3. B1ISN2007TECHP_13-10003854
        we also have installed B1iSN Server at the time of sap 2007 B installation.
        I also have Yatsea Li document release in Aug 2009 ,but i am unable to understand that what will be exact configuration for B1iSN.
    Help me on this configuratiion becouse at that time i have a new project for R/3 and B1 data integration.
    With warm regards and thanks
    Manvendra Singh Niranjan
    Edited by: Manvendra Singh Niranjan on Apr 21, 2010 10:42 PM

    Solved with my office team.

  • SAP 2007 B and Window 7

    Dear All,
    I would like to know, can we run (install) SAP 2007 B version under window 7 operating system?
    Thanks and Regards,
    Lailus

    Hi Lailus,
    you can always see what platforms are supported on the SMP under the 'Product Availability' heading.
    As for Windows 7:
    "Support will only be confirmed some time after the currently scheduled official release date of Windows 7 (October 22, 2009) as set forth by
           Microsoft® Corporation."
    In the matrix it states that is is PLANNED for 2007A/B & 8.8. Therefore, it's not supported at this time.
    All the best,
    Kerstin

  • SAP 2007 B

    Hi Experts,
    How many peoples successfully implemented SAP 2007 B. and if u faced any issues or problems while implementation pls mention it clearly .....
    karthi.
    Edited by: Philip Eller on Jun 26, 2008 10:43 AM
    Edited by: Rui Pereira on Aug 6, 2008 4:22 PM

    Hi Shamseer,
    Actually i had updated SAP B1 from 2005B to 2007B.
    after updation i have noted that assigned Approval procedures,alerts are automatically deactivated without any warning, even  Query with parameter  are not executing properly..
    Could u tell me the reason...
    Karthi.
    Edited by: Rui Pereira on Jul 8, 2008 4:08 PM

Maybe you are looking for

  • AWR on a RAC Environment

    Hello Knowledgeable Guys of Oracle Forums... Finally, our management has bought a license for AWR (after years of using the system!!!) because the database performance has been degrading for quite a while....goodbye to statspack! I have a question on

  • Illustrator will not open certain files

    Certain files that I created in Illustrator will not open when I try to open them. I try to open the file and the AI application opens but the file itself does not. If I right click on the file and select properties, under security it says I have no

  • Mutiple readings from Express DAQ Assistant VI

    Hello All! First I'm a fresh noob to LabView and although I understand most of the basic concepts, I'm also new to programming in general. I'm working on a project to remotely monitor several different parameters of a system. Right now I'm working on

  • Justified alignment not working

    Hi, I can't seem to justify a block of text. After selecting it, I can align it to the left, to the right and center it but the button for justified alignment does not light up to clik. So what can I do? Is it a bug? Thanks Katherine

  • Resetting my Pages' Status With Mobile Me (?) H E L P

    Hey guys, I think I did something stupid and went into my iDisk and deleted all of my site files from the proper folder including index.html and now, iWeb still thinks thinks I have published websites. Any idea how to reset the status of a page in iW