FB60, FB65, FB70, etc - Sales Tax Code goes blank when we hit enter twice

We just implemented some Hot Packs and are encountering the following issue since:
For transactions FB60, FB65, FB70, etc the Sales Tax code drop down values get wiped off when you press Enter key more than once after filling required entries. Has anyone come across this issue.  See steps below:
Step 1.
Execute Transaction FB60 and fill following info also select U1 in the drop down, Note the values in the Tax drop down are there.
Step 2.
Now Press enter
The field u2018INVFO-MWSKZu2019s value (U1) is getting exported here (Include LFDCBI01).
Note both fields INVFO-MWSKZ and SKB1-MWSKZ values are blank.
Note sy-subrc becomes u20184u2019 at the IMPORT STATEMENT (Include LFDCBFS0).
Hence the value for INVF0-MWSKZ is blank.
SINCE THE VALUE OF THE FIELD INVF0-MWSKZ is blank, the drop down becomes blank.
Note: This is happening only when we Press Enter.
Thanks

After upgrade ecc5.0 to ecc6.0 "INVFO-MWSKZ" field its a dropdown list in fb60,after selected value its not appearing in that i/o field place.
For the query is there any customization we should check/any sap notes/any help.
Please do need full.
Regards
Mahesh .

Similar Messages

  • MIDI region - how do I stop it going blank when I hit record!?!?

    Hi
    In Logic 7.2 how can I set it so that when i'm in MIDI region edit view (where i can see the midi notes i've played in) - hitting the record button DOESN'T change the view to a new BLANK region. This is really annoying!!
    I might have a beat i've programmed in, and I perhaps want to add in a missed hi-hat sound - and it really helps to SEE the point at which i need to play it!
    Thx

    To be honest, I would rather that Logic doesn't do this. I'd rather keep each take as a separate object and keep merging under my control. I usually create a new track for the same instrument and record new info there. From there, I comp my changes (or I may leave it alone if it's MIDI data and I'm not going to print a score).
    jord

  • Authorization object for sales tax code (MWSKZ) in FB60

    HI, there is a FI tcode FB60 in FI module. The requirement is that user wants to restrict some users to enter only few sales tax codes from among the list. For example if there are 30 tax codes, then user should be authorised to enter only 5 tax codes from the list. In standard authorization, there doesn't exist an authorization object to restrict tax codes. Kindly tell me the process of making authorization object for this task.
    I have made one authorization object. I think i need to call this object somewhere in user exit of FB60. Is this the way of doing this?? Kindly if someone have done this, mention down the procedure of making authorization object and how to implement it. Thanks

    Hi,
    Instead of creating a authorization obejct and assigning it to the tax code, it will be easy to write the code in a user exit to check whether the tax code is applicable for the user. Suppose if the user enters a non-applicable tax code, you can throw an error.
    Do u want to restrict the number of entries in F4 help for tax code for a particular user?
    Cheers
    ~Niranjan

  • How to or which table i can find Sales Tax Code in CRM

    Hi,
    I need to get Sales Tax Code(mwsk1) in BADI 'CRM_COND_COM_BADI'. if i use CRM_ORDER_READ( ET_PRIDOC) or CRM_PRIDOC_READ_OW it is going into endless loop. So i can't use these Function modules in CRM_COND_COM_BADI.
    Can you help me table or any other way to get sales tax code of Pricing conditions that appear on the sales order in CRM.
    Thanks,
    Praveen

    Hi,
    try by getting header and item guid in et_pridoc->pric_cond.
    Regards,
    Padma.

  • Account Determination for Tax using Sale Tax Code

    Hi,
    We are using TAXINN and sales tax codes. We are using JTX1 condition in our sales pricing procedure for which we r maintaing condition record with correct tax code applied to it. We have assigned account keys in Tax Procedure, so no acct. key is assigned to JTX1 in sales pricing procedure. In record of JTX1 we are maintaining same tax rate (with tax code assigned to it) for eg. 4 % (not 100%) as maintained in tax code.
    Now, we are able to save billing document but while creating accounting document system is giving following error:
    No account is spesified in item 0000001002
    No acct. was specified for acct. type S in item 1002 of the FICO doc.
    The financial acctg. pgm. cannot process the doc.
    A sys. error has probably occured in ther sppln. you called up. Check the data transferred to item 1002 of the FICO doc.
    Pls. help.
    Regards,
    Dipti

    Hi Dipti,
    Hope you are working for Indian Client.
    Since you are using TAXINN procedure, you should not use JTX1(Tax Jurisdict.Code) condition at all. As you are aware after implementation of VAT, we should switch off Tax Jurisdiction at all lelvels.
    SD Pricing Procedure:
    1. Condition Type Settings
    a. Excise conditions (if req'd)
    b. LST / CST Conditions
    c. Freight and Insurance Conditions
    2. Access Sequence Settings
    3. Maintain Pricing Procedure
    4. Assign tax code to Company code
    Therefore, check your IMG settings once again.
    Bye,
    Muralidhara

  • Creating Sales Tax Code

    Hi,
    I have a requirement to create a sales tax code within the SAP B1 database using the DI API but, to be hinest, am confused about how to do this in code. I have searched the SDK help and noted the SalesTaxCodes and SalesTaxCodes_Lines which I think I know how it fits together but what are the SalesTaxAuthorities and SalesTaxAuthorities_Lines objectes and how do they fit into the whole structure? Bascially what i am trying to do is enter the following type of data:
    Tax Code: "R"
    Tax Rate: 10.0%
    Tax Description: "Reduced Rate VAT"
    Is there an easy way of doing this?
    Thanks
    Adrian

    Hi Adrian,
    Ok to start from scratch, the first step is to create a new sales tax jurisdiction type. I created one called Country and it has the type "1" (which I got from querying OSTT). The jusrisdiction type is like a category of tax.
    Next I have to create a new sales tax jurisdiction - So I created one called USA Test with the code USA, with a base rate of 10% and it is of type 1 (country).
    Dim oTax As SAPbobsCOM.SalesTaxAuthorities
                Set oTax = oCompany.GetBusinessObject(oSalesTaxAuthorities)
                oTax.Name = "USA Test"
                oTax.Rate = 10
                oTax.Code = "USA"
                oTax.Type = 1
                oReturn = oTax.Add           
                If oReturn <> 0 Then
                    oCompany.GetLastError oError, errMsg
                    MsgBox (errMsg)
                Else
                    MsgBox ("Sales Tax Jurisdiction Added")
                End If
    This adds a new sales jurisdiction - however, if I want to use it, I now have to add a Sales Tax Code and reference this jurisdiction:
    Dim oCode As SAPbobsCOM.SalesTaxCodes
                Set oCode = oCompany.GetBusinessObject(oSalesTaxCodes)
                oCode.Code = "US1"
                oCode.Name = "USA Region 1"
                oCode.Lines.STACode = "USA"
                oCode.Lines.STAType = "1"
                oReturn = oCode.Add
                If oReturn <> 0 Then
                    oCompany.GetLastError oError, errMsg
                    MsgBox (errMsg)
                Else
                    MsgBox ("Sales Tax Code Added")
                End If
    Now if you go to Administration --> Setup --> Financials --> Tax --> Sales Tax Codes and search for the Tax Code "US1", you will find it there with one line added to it (the country jurisdiction of USA).
    The rates of tax of each of the SalesTaxCode_Lines for a SalesTaxCode are added together to create the overall tax rate for that code. (for example, if you want to create a Tax Code for a city in the US and the United States has a tax of 10%, the state has an additional tax of 5% and the city of 2% you will get an overall rate of 17%).
    Even from reading back over this I think its a bit complicated, but I think if you play around with that code and try creating and modifying a few jurisdictions and codes it should become clearer.
    This is all relevant to the USA localisation. If you are working on a localisation that does not use SalesTaxCodes Jurisdictions it is as simple as this:
    Dim oCode As SAPbobsCOM.VatGroups
                Set oCode = oCompany.GetBusinessObject(oVatGroups)
                oCode.Code = "R"
                oCode.Name = "Reduced Rate VAT"
                oCode.VatGroups_Lines.Rate = 10
                oCode.VatGroups_Lines.Effectivefrom = Now
                oReturn = oCode.Add
                If oReturn <> 0 Then
                    oCompany.GetLastError oError, errMsg
                    MsgBox (errMsg)
                Else
                    MsgBox "Tax Code added"
                End If
    Hope this is useful,
    Regards,
    Niall
    SAP Business One Forums.

  • TCode to see Sales Tax Code of Entire Article

    Hi
    I want to see sale tax code for my entire article in one tableu2026u2026
    Is it possible? If so give table name please
    Regards
    Anis

    Hi Anis,
    The table name is EINE and field name is MWSKZ.
    Regards,
    S.V.ManiKumaar

  • Functional module for determining the sales tax code

    Dear all,
    Kindly help me is there any Functional module to determine the sales tax code?
    My Requirement is Based on the Country, Sales Org and Tax code Pricing should pick up automatically.
    I tried adding the same fields in the table and inserted in the access sequence and created the condition record for the same.
    Created the order but system is not able to get  the Tax code while determining the price?
    Please help ...
    Regards,
    SK

    My Requirement is Based on the Country, Sales Org and
         Tax code Pricing should pick up automatically
    but system is not able to get the Tax code while determining the price?
    Your both the above comments are contradict to each other. In the first statement, you say pricing should pick up automatically whereas, in the next statement, you say tax code is not determining.   Please indicate the requirement clearly.
    thanks
    G. Lakshmipathi

  • How can I un-hide sales tax code in FB01?

    Hi,
    I am trying to create a vendor invoice posting through the intercompany sales EDI process, and am getting error 'field BSEG-MWSKZ does not exist in screen SAPMF05A 0302'.  When I manually try to create a VI posting via FB01, I can confirm that tax code is hidden from the vendor line item screen.  Does anyone know how I can get the tax code back on this screen? 
    I have looked through the field status variant and field status group config, but don't see tax code as one of the fields that can be controlled via this config (I do see withholding tax code, but I'm looking for sales tax code).  Does anyone know how I can un-hide this field?
    Thanks!
    Allison

    Thanks.  I did try that, but found that the tax code isn't controlled by any of the field status stuff.  BUT, I just found the solution to my problem via another forum.  Apparently the tax code, and whether or not it is included on the screen, is controlled by the tax category of the G/L account that you're posting too.  I changed the tax category of my G/L account to '*' (All tax types allowed), and that caused the tax code field to appear and be editable in FB01. Yay!

  • Default Sales Tax Code in transaction F-22

    Guys,
    this refers to accounts receivable.
    I have followed a few threads about defaulting tax codes, but do not find the answer I am looking for.
    When I post with F-22, how can I default the sales tax code?
    Kind regards,
    Rudolf

    hi,
    Try with create a screen variant for the particular transaction.
    in SHD0 transaction code:
    for F-22 create a screen variant and give the default value for sales tax code, now onwards every time you are using F-22 transaction the particular Tax code will be defaulted.
    hope this may help you,
    regards,
    srinivas

  • Tax amount and sales tax code fields not visible in tcode MIR4

    Hi,
    A workflow has been cretaed for cretaing the invoices. Here in SRM invoice, the tax code and Sales tax code fields are not visible in tcode MIR4 though data has been passed while creating it.
    When i am checking the "calculate tax" check box, am able to see these two fields on the MIR4 page.
    Am not able to find the reason for this behaviour. As its working fine for other invoices. This is the case with only SRM invoice.
    Kindly provide your inputs.
    Thanks!
    Regards,
    Razia Shaheen.

    Hello,
    What you are saying is that the Invoice coming from SRM (Via Idoc i supose) is not bringing the tax code? is that it?
    Cheers !

  • Sales Tax Codes Translation

    Hi,
    Can anyone tell me how to maintain Sales Tax Code Descriptions in difeerent languages.
    Kind Regards,
    Nehal.

    Hi Narsi,
    Thanks for your reply.
    Im talking about Sales Tax Code Descriptions and not the GL account one
    Regards,
    Nehal
    Edited by: Nehal Fonseca on Apr 1, 2008 12:25 PM

  • Diagram goes blank when bpel file is outside default dir

    Hi,
    I am using JDeveloper v10.1.2.1.0 and the “Diagram view” goes blank when I take the “.bpel” file from the project root directory (the default location) to some other directory, even though I modify the references accordingly. My suitcase looks like this:
    <BPELSuitcase>
    <BPELProcess id="TaskAssignment" src="../../bpel/TaskAssignment.bpel">
    <partnerLinkBindings>
    <partnerLinkBinding name="client">
    <property name="wsdlLocation">TaskAssignment.wsdl</property>
    </partnerLinkBinding>
    </partnerLinkBindings>
    </BPELProcess>
    </BPELSuitcase>
    The project compiles successfully with “rebuild”, the “Source” tab allows me to see the BPEL source code, but the “Diagram view” remains blank. Why?
    Thanks,
    Manuel

    I have the similiar issue even when the BPEL file is not touched or moved. This happens in I use the email activity.
    <!--
    The 'client' role represents the requester of this service. It is
    used for callback. The location and correlation information associated
    with the client role are automatically set using WS-Addressing.
    -->
    <partnerLink name="client" partnerLinkType="client:AdaptationNotifier"
    myRole="AdaptationNotifierProvider"
    partnerRole="AdaptationNotifierRequester"/>
    <partnerLink name="AdaptationService"
    partnerLinkType="ns3:AdaptationService_PL"
    partnerRole="AdaptationService_Role"/>
    <partnerLink name="NotificationService"
    partnerRole="NotificationServiceProvider"
    partnerLinkType="ns1:NotificationServiceLink"/>
    </partnerLinks>
    <!--
    VARIABLES
    List of messages and XML documents used within this BPEL process
    -->
    <variables>
    <!-- Reference to the message passed as input during initiation -->
    <variable name="inputVariable"
    messageType="client:AdaptationNotifierRequestMessage"/>
    <!-- Reference to the message that will be sent back to the requester during callback -->
    <variable name="outputVariable"
    messageType="client:AdaptationNotifierResponseMessage"/>
    <variable name="Invoke_1_logMessage_InputVariable"
    messageType="ns3:AdaptationService_logMessage"/>
    <variable name="Invoke_1_logMessage_OutputVariable"
    messageType="ns3:AdaptationService_logMessageResponse"/>
    </variables>
    <!--
    ORCHESTRATION LOGIC
    Set of activities coordinating the flow of messages across the
    services integrated within this business process
    -->
    <sequence name="main">
    <receive name="Receive_Notification_Message" partnerLink="client"
    portType="client:AdaptationNotifier" operation="initiate"
    variable="inputVariable" createInstance="yes"/>
    <scope name="Scope_1">
    <scope name="Email_1">
    <bpelx:annotation>
    <bpelx:pattern patternName="bpelx:email"></bpelx:pattern>
    </bpelx:annotation>
    <variables>
    <variable name="varNotificationReq"
    messageType="ns1:EmailNotificationRequest"/>
    <variable name="varNotificationResponse"
    messageType="ns1:ArrayOfResponse"/>
    <variable name="NotificationServiceFaultVariable"
    messageType="ns1:NotificationServiceErrorMessage"/>
    </variables>
    <faultHandlers>
    <catchAll>
    <invoke name="Invoke_1" partnerLink="AdaptationService"
    portType="ns3:AdaptationService"
    operation="logMessage"
    inputVariable="Invoke_1_logMessage_InputVariable"
    outputVariable="Invoke_1_logMessage_OutputVariable"/>
    </catchAll>
    </faultHandlers>
    <sequence name="Sequence_1">
    <assign name="EmailParamsAssign">
    <copy>
    <from expression="string('Default')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:FromAccountName"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:Bcc"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:Cc"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:ReplyToAddress"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:Subject"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:To"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:Content/ns1:ContentBody"/>
    </copy>
    <copy>
    <from expression="string('text/html; charset=UTF-8')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:Content/ns1:MimeType"/>
    </copy>
    <copy>
    <from expression="string('Default')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:FromAccountName"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:Bcc"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:Cc"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:ReplyToAddress"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:Subject"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:To"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:Content/ns1:ContentBody"/>
    </copy>
    <copy>
    <from expression="string('text/html; charset=UTF-8')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:Content/ns1:MimeType"/>
    </copy>
    </assign>
    <invoke name="InvokeNotificationService"
    partnerLink="NotificationService"
    portType="ns1:NotificationService"
    operation="sendEmailNotification"
    inputVariable="varNotificationReq"
    outputVariable="varNotificationResponse"/>
    </sequence>
    </scope>
    </scope>
    </sequence>
    </process>

  • The screen goes blank when I press to enlarge while watching netflix or a TV show.  What have I done?

    The screen goes blank when I press to enlarge while watching netflix or a TV show.  What have I done?

    Have you tried resetting the iPad:
    Reset iPad:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.

  • Lg cosmos touch goes blank when placing VM calls

    My lg touch goes blank when calling vm & i cannot get the dial pad w/o opening the phone.  I've seen other postings regarding resetting the proximity in the service menu but i cant find it on this phones menu.   how / where do i go to reset the proximity settings IF that is what will fix it.  thanks.

    Hello yosmt! I've researched the operation you've mentioned (changing the proximity settings on the Cosmos Touch) and can't find any data on it. I can tell you this: If you're dialing to your voicemail or any other Interactive voice response system, the display should remain illuminated while the phone is held at a distance from the human face for at least 5 seconds. If your phone isn't doing that, then we have to discuss options other than changing settings. If you want, you can send me a personal message through the forum. Please include your name and mobile number. Thanks!

Maybe you are looking for

  • How to read an attribute of an xml tag in jsp.

    hi guys, This is murali krishna. i have a small problem, i have one xml file (books.xml) <?xml version="1.0" encoding="iso-8859-1"?> <library> <book id="1"> <name>Head First Java, 2nd Edition</name> <author>Kathy Sierra and Bert Bates</author> <publi

  • Error of Special Characters in Export to Excel

    Hi, I guess the error you are getting is a Parser error. To solve this problem, before putting the data on the XML file, you have to pass the data through an encoding process. For UTF-8 the code for encoding should be something like.   public java.la

  • Reg:Consolidation Material Step by Step Config.

    Hi Guru's, Anyone can plz forward me Consolidation Step by Step Config. material to this ;;(janab4u(atthe rate of)gmail.com) thanks in advance regards JK

  • Adobe to ditch flash for mobile devices! A few questions

    Just read the news. Have a few questions 1. Is AIR still going to be used for cross platform deployment as that is what I am using now ie: will it be used to deploy html5 apps/programmes? 2. What tool/IDE will adobe be using for html5 - flash? flex?

  • Firefox 17.0.1 windows 7 64-bit, not focused during start

    Hello sir, I recently installed the firefox latest version (This is not an upgrade) on my new laptop running windows 7 premium, 64-bit. When I start the firefox, it's loosing the focus and I need to click somewhere in the firefox to make it focus. Wh