EGRKZ EU taxcode with value 4 not displayed on RFIDESM340

Hi,
We have configured a tax code with the value 4 in the filed EU code (EGRKZ). By executing the report RFIDESM340 for VAT declaration, the documents with this tax code are not been displayed.
I have reviewed the performance assistent help with F1 but is not very useful. It is saying that "From 2010, there is an EU ruling that stipulates that the service location for a service is the country of the service recipient if the service recipient is a company. The service provider issues the invoice with 0% output tax. The service recipient pays the input tax in his or her country and can deduct it at the same time (reverse charge). These transactions are portrayed separately in the EC sales list. The EU codes "4" and "5" are used for this purpose."
Do anyone know why the report RFIDESM340 excludes the documents with this setting?
Kind Regards

Hi Niraj ,
Although you have checked various options, moreover some points from my side
1) In GV, on the front screen there is field 'Validity Area' . System will not consider the validity area entered here. System will consider the Validity area entered in 'Rating/validity' section. Make sure you maintain both - Rating & Validity Area with proper sort sequence. do maintain language. . I presume.. issue must be at this level only.
2) You must have assigned the Label Stock to GV via 'Applicaiton Objects'
3) In Label Stock also, there is one tab of 'Validity Area'- do maintain it with same as GV
4) In order to make more precise, in Label stock, do maintain the "Label Category' the same which you have used in 'Label Data' View of Material Master
5) Validity area of Label Stock, GV and Specification should be in sync or inclusive.
Pls do let me know the result....
Regards
Amol

Similar Messages

  • Value not displaying in report whereas it returns in plsql developer

    HI

    Duplicate post.
    value not displaying in report whereas it returns in plsql developer
    value not displaying in report whereas it returns in plsql developer

  • Value not displayed correctly when sent through a Java POJO datasource, but is perfect when used with MySQL.

    I have this strange problem - A field value is displayed correctly in the crystal report when pulled from MySQL table (field is Varchar(25)). But the same field when loaded into a Java POJO and set the POJO as new datasource the value is garbled up.
    Any ideas?
    Thanks,

    Early implementations of the POJO Factory set the default display size to 12, which caused corruption in the display starting from the 12th character when the size exceeded the display size.
    Would you try specifying the MemberColumnDisplaySize property for that column in POJOResultSetFactory to reflect the actual size?
    Sincerely,
    Ted Ueda - Developer Support

  • Null values not displaying in the LOV on the parameter form.

    My report works perfect while in Oracle Reports 10g, however when I move it to our menu (Oracle Forms 10g) it does not display the null in the LOV on the parameter form.
    This report allows the the user to select by inspector or district or everyone for certain dates.
    Ex: I have 4 parameter fields. The user must enter the start & end dates and either the Inspector or the district or leave the inspector or district null to run for everyone.
    The district LOV is :
    select dnr_section_code, description from dnr_section_code where dnr_section_code in ('29', '38','52')
    UNION
    select null, 'All' from dual
    order by 2 asc ;
    The inspector LOV is:
    select null , 'All' from dual
    UNION
    select person_seq, first_name||' '||last_name inspector from vw_eng_inspectors
    order by 2 asc
    In my Data Model query I use the :
    My select
    from tables
    where clause
    +
    ----by inspector
    and (prod_fac_inspections.person_seq_inspector =
    nvl(:inspector,prod_fac_inspections.person_seq_inspector))
    ---by district
    and
    (d.dnr_section_code = nvl(:district,d.dnr_section_code)
    and d.person_seq = prod_fac_inspections.person_seq_inspector)
    Again, it works perfect in Reports! It eliminates having 3 reports on the menu. This one report gives the user the option of selecting dynamic parameters.
    Also, I got so frustrated, that I went a different route of using a default where.
    I am stuck with the error of ORA:00933 SQL command not ended properly
    1=1
    I set the initial value to 1=1 and it does not like it.
    I am stuck!
    DB = Oracle Database 10g Enterprise Edition Release 10.2.0.2.0

    Hi Krishna,
    I'm not sure I understand the probelm.
    A progress bar control only displays numeric values. When do you mean by "unassigned values"? What would you expect to be presented?
    Best regards,
    Udi

  • Total Amount value not displaying while executing print progrm for PO form.

    Hi All,
               I created the PO form, for this i written a print program.After executing this print program everything s displaying & populating, but only the Total Amount  not displaying r not populating.
              But, if i run the PO n tcode ME23N the Total Amount is displaying, after assigning the form n NACE.
    So help me to get the Total Amount to be displayed n main window, while executing the print program.
    Like this i declared n smartform,                    Total net value excl. tax           &is_ekko-waers& &is_pekko-netwr&......
    The print program as follows,
    report zpo.
    tables: ekko,pekko,ekpo,ekpa,eket,ekkn,ekek,komk,nast.
    data: fm_name type rs38l_fnam.
    data: is_ekko type standard table of ekko with header line.
    data: is_pekko type pekko occurs 0 with header line.
    data: it_ekpa like standard table of ekpa,
          it_ekpo like standard table of ekpo,
          it_pekpo like standard table of pekpo,
          it_eket like standard table of eket,
          it_tkomv like standard table of komv,
          it_ekkn like standard table of ekkn,
          it_ekek like standard table of ekek,
          it_komk like standard table of komk.
    selection-screen: begin of block b1 with frame title text-001.
      parameters: pr_ebeln like ekpo-ebeln obligatory.
    selection-screen: end of block b1.
    select * from ekpo into table it_ekpo where ebeln = pr_ebeln.
    select * from ekko into is_ekko where ebeln = pr_ebeln.
    endselect.

    code as follows,
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
        FORMNAME                 = 'ZPURCHASE'
    *   VARIANT                  = ' '
    *   DIRECT_CALL              = ' '
    IMPORTING
        FM_NAME                  = fm_name
    CALL FUNCTION fm_name  "'/1BCDWB/SF00000060'
      EXPORTING
    *   ARCHIVE_INDEX              =
    *   ARCHIVE_INDEX_TAB          =
    *   ARCHIVE_PARAMETERS         =
    *   CONTROL_PARAMETERS         =
    *   MAIL_APPL_OBJ              =
    *   MAIL_RECIPIENT             =
    *   MAIL_SENDER                =
    *   OUTPUT_OPTIONS             =
    *   USER_SETTINGS              = 'X'
        IS_EKKO                    = is_ekko
        IS_PEKKO                   = is_pekko
    *   IS_NAST                    =
    *   IV_FROM_MEM                =
    *   IV_DRUVO                   =
    * IMPORTING
    *   DOCUMENT_OUTPUT_INFO       =
    *   JOB_OUTPUT_INFO            =
    *   JOB_OUTPUT_OPTIONS         =
      TABLES
           it_ekpo                   = it_ekpo
           it_pekpo                  = it_pekpo
           it_ekkn                   = it_ekkn
           it_ekpa                   = it_ekpa
           it_ekek                   = it_ekek
           it_komk                   = it_komk
           it_eket                   = it_eket
           it_tkomv                  = it_tkomv.
    * EXCEPTIONS
    *   FORMATTING_ERROR           = 1
    *   INTERNAL_ERROR             = 2
    *   SEND_ERROR                 = 3
    *   USER_CANCELED              = 4
    *   OTHERS                     = 5
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • Header condition type value not displayed in sales order output

    Hi gurus,
    I have observed a strange issue regarding a header condition in a sales order.
    we have a set up like following:
    1. If the Header condition XXXX is used in sales Order then this value should be printed on sales order output.
    2. If the Header condition mentioned in above point is not maintained in sales order it should print the total price of all line items.
    Though i have maintained the header condition value in Sales Order Header its not displayed in SO output.
    That is , I have a sales order and it has one HEADER condition type entered with 3500 USD.
    In fact this value is used for some business purpose and is being printed on the sales order output for a specific output type.
    But where as in a sales order this header condition value is not getting printed on the output though I am using same data as of the sales order which is having the header condition value printed on its output.
    According to business,we must have the header condition value printed on  sales Order output.
    Please suggest how to proceed.
    Thanks in advance.

    Not sure if you are using costom smartform to print invoice, if yes then ask developer to debug and find the root cause and fix it.
    You might need to give him condition when it shuld be printed and when not.
    You can take reference of another output type for which it is printing

  • Stock in warehouse report - value not displayed.

    In the "Stock in warehouse report" I selected this option: Price source = Last purchase price.
    In the report, for an item, the value in the field "Item Price" is not displayed.
    This item has a good receipt (with value) in this year.
    Why the value is not displayed?
    Thanks
    Paolo

    Paolo...
    1.  Did that receipt get paid for with an AP Invoice (when last purchase price is updated)?
    and
    2.  Did you run an Inventory Audit Report before running the Inventory in Warehouse Report?
    To see this maybe you can go into SAP OEC DEMO and create a new item, then create a PO - run the two reports, copy to Goods Receipt PO - run the two reports, and then copy to AP Invoice - run the two reports.  You will see the difference.
    Accounting point - an item is not really valued until the AP Invoice is processed.  Only then do you know what the actual purchase cost is for a product.
    Regards - Zal

  • Table values not displayed properly

    Hi,
    I am trying to display the data from a bapi in a table. But my problem is that it is truncating the 0s from the values. Like if the values in the column Amount are 145.50, 85.00, 74.20,61.88 in the Bapi, the values are displayed as 145.5, 85,74.2,61.88 in the table.I want to display the values along with the 0s.
    Can anyone please tell me why it is displaying like this and how to resolve this?
    Regards,
    Padmalatha.K

    Hi,
    My Requirment was to display values in specific format i.e. 12,555.55. coz for long value i m getting exponetial format of data.
    i have used this code to achieve this
    /******format for Calculated value********/
    public String formatCal(double val,IwdMessagemanager mgr) {
    String dd2dec = null;
    try {
    DecimalFormat df2 = new DecimalFormat("#,###,###,##0.00");
    dd2dec = df2.format(val);
    } catch (NumberFormatException e) {
    return dd2dec;
    in that case context data type need to be string.
    Hope that may help you.
    If not then try to work on the data type for the context.
    Regards,
    Deepak

  • Ecess and SEcess value not displaying in PO

    Dear Experts,
                             in PO the BED is displaying correctly but Ecess(JEC1) and SEcess(JSEP) value its not displaying in PO  ,were could be the problem?
    regars
    rj

    Display the condition record maintained.
    There are two fields namely Valid from and valid to.
    Please compare these dates with PO creation date. PO creation date must lie within these validity periods maintained.

  • Fileter value not displaying in web

    Hi all,
    I have a issue with selecting the filter value for a unit.
    The problem is I can find the value when I run the query in BEx, but same value is not displaying in webreport.
    Can anyone tell me, what might be the problem.
    (Actually I have to filter on a perticular unit value. In the masterdata I have 30 values.when I exicute the report in BEx I can find all 30 values.But when the same report in web I can see only 29 values)

    Hello Madhu,
               whats happening there is java script code in ur webtemplate  is desined to pull only those value go to ur webtemplate and click on the html look at he code there and do changes required to get the value you want.Hope this helps.
    Thanks & Regards
      Jai

  • COOIS- Report  Grid Value not displaying

    Hi Experts,
                   In COOIS report Prd Order item details , the grid values and stock category are not displaying values. we created the production order with AFS grid but while seeing report of item details the grid values and stock category are showing null values.
    initial screen,
    Report
    but production order contains grid values.
    any one guide me to resolve it.
    Regards,
      Thangam.P
    Message was edited by: Thangam Perumal

    Hi ,
         my requirement is need to show the grid value and stock category of AFS production order based on item details. i think that alv reports is working based on view. it is possible to add  custom view for that report? . if possible mean to any one guide me to fix the problem.
    Regards,
      Thangam.P

  • Display extra values not displaying extra value

    Hi,
    I have a SQL query that returns a LOV. I have "Display Extra Values" set to Yes. However, I don't see my "extra value" in the Select List. ?? Yet, when I check the session state, the value in the session state is the extra value. So how come I don't see it in my Select List?
    Thank you.

    This is from the on-line docs:
    To define a value that does not display in the list of values:
    a) From Display Extra Value, select Yes.
    The extra value is used if the actual column value is not part of the LOV. In that situation, the actual value is shown. If you do not display extra values, you may end up with the wrong value and unintentionally update your data incorrectly.
    b) In Null Value, specify the value that displays.
    c) If you have not selected a Named LOV, enter the query used to display a select list in the LOV Query field.
    Hope that helps.
    Thanks,
    Joe

  • Filter value not displaying

    Hi all,
    I have a issue with selecting the filter value for a unit.
    The problem is I can find the value when I run the query in BEx, but same value is not displaying in webreport.
    Can anyone tell me, what might be the problem.
    (Actually I have to filter on a perticular unit value. In the masterdata I have 30 values.when I exicute the report in BEx I can find all 30 values.But when the same report in web I can see only 29 values)

    You can display values& texts for variables using menu button where you can display the text elements.
    Regards
    Pradip

  • ADF - Collections with Arrays Not Displaying

    I am using JDeveloper 10.12.
    Within the applicaiton I am developing I have the following:
    nominalRecord - Java Bean
    nominalRecordCollection - Collection of nominalRecords
    I have generated a data control from the nominalRecordCollection. The data within each of the nominalRecords is being populated correctly - I know this as I have written a sperate test class to display the data to screen.
    I have tried to display this collection using ADF by dragging and dropping the nominalRecordCollection data control onto a data page. Unfortunately this does not seem to be displaying the data correctly.
    Some of the data within the nominalRecord is contained within Arrays as there are multiple values. For Example:
    String surname;
    String firstname;
    String[] descriptionCode;
    String[] descriptionText;
    This is necessary because an individual may have more that one descriptive features - I need to store them like this because an individual can have any number of descriptive features. e.g.
    01 - Tattoo
    02 - Beard
    03 - Wig
    etc etc.
    When the applicaiton is executed the data that is stored within the String variables within the nominalRecord classes are displayed correctly BUT the data stored within the arrays is not displayed at all.
    I've speant the afternoon looking into this but have not managed to find a suitbale solution. Can ADF in fact render Collections that have Arrays in them?
    I'd appreciate any help/assistance with this matter.
    Thanks in advance for your help
    David.

    What do the JSTL expressions look like where you're trying to access the nested array values?
    See example #45 on my Not Yet Documented examples page of my blog for an example based on your setup here.
    http://radio.weblogs.com/0118231/stories/2004/09/23/notYetDocumentedAdfSampleApplications.html

  • Problem with data not displaying in website

    Hello All,
       I am having a problem with one of our applications. It is written in ColdFusion and uses SQL server. The problem that we are having is when we use the URL Http://bma.com (that is not actually the site name)  we cannot see all the data that it is suppose to pull in. I get an error on page and when I select to view the error this is what I get
    Message: 'WddxRecordset' is undefined Line: 184 Char: 2 Code: 0 URI: http://bma.com/user_maintenance.cfm and Message: 'jsusersTLV' is undefined Line: 3208 Char: 6 Code: 0 URI: http://bma.com/user_maintenance.cfm
    If I put the IP address in the URL for example http://165.83.109.246/bma/login.cfm all of the data is displayed as it should.
    Any thoughts or sugguestios on how to correct this?
    Thanks

    Yes, the user_maintenance.cfm is one of the forms that the data is not displaying on. There are multiple forms in the application and that just happens to be one of them. the login.cfm is just the login screen. Once you select your name and enter your password to the application then you can select the user maintenance form. If you select someones name the application should pull in all of that persons information. That is the problem, it is not pulling in any information on the user. We get a blank screen where data should be. When we use the IP address in the URL and select someones name in the user manintenance form, it pulls in all the data from that user as it should.

Maybe you are looking for

  • How to go back to the same directory after opening one bookmark instead of having to browse the directory tree again to open another bookmark from the same dir

    I regularly need to check several bookmarks that are stored in the same directory, which usually is a couple of clicks from the main bookmarks menu. When I select a bookmark in the tree that I created to organize my bookmarks and it does not give met

  • Import from a DVD

    Everytime that i put a DVD in the player opens and won't let me do anything else. I want to import from the DVD. There are no chapters on this particular DVD which was copied from a 60 min minidv tape

  • Help me, my credit card was hacked to shop at apple store

    Dear Sir, I'm a master card holder in China, but now i'm on business trip in Bellevue, US,  and I found my credit card has been hacked this morning. Then I called the bank to freeze my card and asked the stuff where did the card had shopped, then you

  • Spotlight fails to find files with search items

    I just did a Spotlight search on Japanese English は Spotlight found more than 3500 items, but the two sample Word files I looked at didn't have は in them. This is really frustrating. Is there a way to ensure Spotlight only finds files with the input?

  • Error on Bootup

    Hi guys, I have been having the same issue issued posted in a different section of these forums (Link to the post: https://bbs.archlinux.org/viewtopic.php?id=187921) however, mine is slightly different. As you can see someone suggested in his post to