2008 1099INT output

Has anyone successfully created 1099 INT output for 2008? I am trying to create the form for a vendor who received interest income from us. The configuration is done and we have applied the 2008 note (1279366) for the new form. The base amoutn appears in the vendor invoice and in the payment, but does not come over to the form when using the report (S_P00_07000134 - Generic Withholding Tax Reporting) and the correct output form.

http://help.sap.com/erp2005_ehp_04/helpdata/DE/7c/72e046b71abb458c8495720467b385/frameset.htm
New documentation available for 1099INT

Similar Messages

  • Unable to display Crystal Reports 2008 PDF output on smart phones

    Hi Folks,
    I'm not sure if this is the proper forum, but here goes. I am just finishing a large ASP.NET web app which makes extensive use of Crystal Reports 2008 and a CrystalReportViewer control.  My users routinely e-mail the reports in PDF format. This works great, except now they tell me that when the recipient of the e-mail tries to open the PDF on an iPhone or Blackberry, it will not open. The PDF's open fine on desktop computers.
    Here is the code which generates the PDF and attaches it to the e-mail msg.
    //  export to PDF, then mail that
    SmtpClient client = new SmtpClient();
    MailAddress from = new MailAddress(ConfigurationManager.AppSettings["ReportMailFrom"].ToString());
    MailMessage message = new MailMessage();
    message.From = from;
    message.SubjectEncoding = System.Text.Encoding.UTF8;
    message.Subject = "E-mail BackOffice report: " + strReportName;
    MemoryStream memStream = (MemoryStream)rptDoc.ExportToStream(ExportFormatType.PortableDocFormat);
    Attachment data = new Attachment(memStream, MediaTypeNames.Application.Pdf);
    ContentDisposition disposition = data.ContentDisposition;
    disposition.CreationDate = DateTime.Now;
    disposition.ModificationDate = DateTime.Now;
    disposition.FileName = strReportName + ".pdf";
    disposition.DispositionType = DispositionTypeNames.Attachment;
    message.Attachments.Add(data);
    client.Send(message);
    Any ideas on what is happening here and how to make these PDF's visible to smart phones?
    Thanks.
    Dan

    Hi Dan,
    What happens if you export from Crystal Reports designer?
    I just tried if and BlackBerry tells me I am about to download a file that cannot be viewed on the phone. It doesn't say why though.
    Going through the Platforms file it doesn't mention smart phones so it would indicate we don't support them in that format.
    HTML worked but not pretty. You'll have to see what Blackberry does support. I found this one kbase article from them:
    http://www.blackberry.com/btsc/search.do?cmd=displayKC&docType=kc&externalId=KB11245&sliceId=SAL_Public&dialogID=206744335&stateId=1%200%20206742756
    I'm testing more but I believe this is a blackberry limit and not CR.
    Seems they do support it but very limited.
    Thank you
    Don

  • Report works in Crystal Reports, but not when scheduled in Crystal Server

    Hi,
    I have a pretty simple report designed in Crystal Reports 2008. Basically it shows a list of call notes (memo field) from customer activities in our CRM system. The report works fine in Crystal reports, but when run or scheduled in Crystal Server 2008 the output is always blank. Furthermore, the page format etc. is "lost" in crystal server, so that the output is PDF of a quadratic blank sheet (not my standard A4 format)... Exporting to other formats - excel, Word etc. all gives the same result.
    I have tried to strip out various formulas, formatting etc from the report, but nothing helps. Which leads me to thinking that the real problem is that the report contains a memo field? Anyone else had this problem?
    wkr
    Claus
    Edited by: Claus Poulsen on Nov 9, 2010 3:34 PM

    Hi Claus,
    I've had issues between what Crystal does and what the Report Server does.  To resolve this, we found out Crystal Reports 2008 latest service pack has some things that will fix Server 2008 and they aren't in the latest Server update. 
    We updated Crystal Reports 2008 on our machines.  Installed the latest update for Crystal Server and then installed Crystal 2008 on the Report Server and installed the Crystal Reports 2008 update.  A lot of our compatibility issues went away after that. 
    Good luck,
    Brian

  • Variable Range For 0FISCPER

    Dear Experts,
    I am Using Entry Variable as ZFISCPER For FISCALPERIOD
    IF User Enters 003.2008
    The Output of the Report will be:         003.2008 ||| UPTO 003.2008
    UPTO 003.2008 means 001.2008 to 003.2008
    How Can we Get This By using variable Range.
    What Can I Give in FROM :
    where as TO is To : ZFISCPER
    Can Any one suggest me what to DO.
    Regards
    Supraja.K

    Hi,
    You can achieve this by creating a user exit variable and populating the YTD value based on the entry. Restrict the key figures with this variable. Use the sample code below.
       CLEAR ls_range.
      LOOP AT lt_var_range INTO ls_var_range WHERE vnam = 'ZFISCPER'.
       CONCATENATE ls_var_range-low+0(4) '001'  INTO ls_range-low.
       ls_range-high = ls_var_range-low.
       ls_range-sign = 'I'.
       ls_range-opt  = 'BT'.
       APPEND ls_range TO et_range.
      ENDLOOP.
    This code will populate values from 001.2009 to 008.2009 if you enter value for fiscal period year as 008.2009.
    Hope this helps.
    Regards,
    Akhn

  • SQL Help

    Please help ...
    Data Sample:
    A1 B1C1 D1
    01 A 06/30/2008 1
    01 B 06/10/2008 1
    01 C 06/09/2008 1
    01 D 06/09/2008 1
    02 A 06/20/2008 1
    02 C 06/20/2008 1
    03 A 06/20/2008 1
    04 A 06/10/2008 2
    04 B 06/10/2008 1
    04 C 06/09/2008 1
    04 C 06/09/2008 1
    Output Should be:
    01 A 06/30/2008 1
    02 A 06/20/2008 1
    02 C 06/20/2008 1
    03 A 06/20/2008 1
    04 A 06/10/2008 2
    Rules:
    - Top D1 should be selected.
    - If there are tie in D1 per A1, should be looking for C1 for the latest date
         - if there are tie for the D1 and C1 per A1 this data should be selected
         - if there are only one D1 which is the latest then inly 1 record will be selected.

    Hi,
    try this:
    SQL> with t as ( -- "sample data"
      2  select '01' a1, 'A' b1, to_date('06/30/2008','mm/dd/yyyy') c1, 1 d1 from dual union all
      3  select '01', 'B', to_date('06/10/2008','mm/dd/yyyy'), 1 from dual union all
      4  select '01', 'C' , to_date('06/09/2008','mm/dd/yyyy'), 1 from dual union all
      5  select '01', 'D' , to_date('06/09/2008','mm/dd/yyyy'), 1 from dual union all
      6  select '02', 'A' , to_date('06/20/2008','mm/dd/yyyy'), 1 from dual union all
      7  select '02', 'C' , to_date('06/20/2008','mm/dd/yyyy'), 1 from dual union all
      8  select '03', 'A' , to_date('06/20/2008','mm/dd/yyyy'), 1 from dual union all
      9  select '04', 'A' , to_date('06/10/2008','mm/dd/yyyy'), 2 from dual union all
    10  select '04', 'B' , to_date('06/10/2008','mm/dd/yyyy'), 1 from dual union all
    11  select '04', 'C' , to_date('06/09/2008','mm/dd/yyyy'), 1 from dual union all
    12  select '04', 'C' , to_date('06/09/2008','mm/dd/yyyy'), 1 from dual
    13  ) -- "end sample data"
    14  select a1, b1, c1, d1
    15    from (select a1, b1, c1, d1,
    16                 max(c1) over(partition by a1) mxc1,
    17                 max(d1) over(partition by a1) mxd1,
    18                 min(d1) over(partition by a1) mind1
    19            from t)
    20   where 1 = case when mind1 = mxd1 then
    21                  case when c1 = mxc1 then 1 end
    22                 else case when d1 = mxd1 then 1 end
    23                 end
    24  /
    A1 B1 C1                  D1
    01 A  6/30/2008            1
    02 A  6/20/2008            1
    02 C  6/20/2008            1
    03 A  6/20/2008            1
    04 A  6/10/2008            2

  • F.38 # RFUMSV25 # Deffered Tax Clearing Date Issue

    Hi All,
    Good Day,
    When i am trying to run F.38 with Clearing Date  Example 01-05-2008 to 31-05-2008 the output is shows Document which is related to Clearing Date 03-06-2008 and more than 31-05-2008 also...
    Please suggest me how to resolve this issue.
    Expecting your valuable inputs.
    Best Regards,
    KSK

    hello Diana.
    I solve a similar problem wite notes.
    Regards.
    Edited by: Rafael Vazq on Dec 7, 2009 12:13 PM

  • Esb file to file problem

    Hello
    I have a problem I want to transform a CSV file to another file with extension .dat and separated by |, I made an adaptor for reading the original file, a routing service for processing the and an adaptor to write the output file, when running the proccess, the output file only brings a record when the original file is 10, someone can help me, thanks.
    My original file is like this
    aaaaaa,xxxxxxxx,ssssssssss,20/02/2008
    bbbb,xxxxxxxx,ssssssssss,12/12/2008
    v,xxxxxxxx,ssssssssss,12/12/2008
    aeeeeeaaaaa,xxxxxxxx,ssssssssss,12/12/2008
    ssssss,xxxxxxxx,ssssssssss,12/12/2008
    My output file have this format
    20/02/2008,aaaaaaa,sssssssss,xxxxxxxxx
    It's a simple transformation, in fact the transformation works fine but only write the first record,
    Thank you

    Hi
    I did the two actions you recommend me, but still have the problem, in the read adapter file change records delimited by end of file, and transfer the 2 register but only one with the new format, the transformation looks like this
    aaaaaa|xxxxxxxx|ssssssssss|20/02/2008
    vvvvvvv,xxxxxxxx,ssssssssss,20/02/2008
    Thank you

  • Javascript for calculating End Date

    I have two date fields "Start_Date" and "End_Date". User selects the start date. Then the form takes that date and adds 365 days. puts the result in the "End_Date" field. I have attempted a couple of scripts and none have worked. So I attempted to first just get the selected date in the "Start_Date" field to show in the "End_Date" field. When I select a date like, "May 28,2008" the output reads "Object44194500". Using the following script in the "Start_date" field
    ----- form1.Order_Page.Product_Table.Row4.Subscription_Start::change: - (JavaScript, client) -------
    xfa.resolveNode("form1.Order_Page.Product_Table.Row5.Subscription_End").rawValue = this;
    What am I doing wrong. How do it get it show currently while at the same time adding 365 days. So if the user select May 28, 2008 the output in the "End_Date" field is May 27, 2009??? Thanks
    - a frustrated new developer of LiveCycle Designer 8.0...

    I was able to find an answer on the LiveCycle Google Group. Here is what I was given. (for some reason I only got the FormCalc version to work).
    -----------Begin Code--------------
    if(EndDate.rawValue != null && StartDate.rawValue != null)
    if(EndDate.rawValue < StartDate.rawValue)
    xfa.host.messageBox("Please check your End date. It cannot be before
    the Start date!", "Date Checker", 3);
    this.rawValue = null;
    // to set focus to the End Date field so that the user can type his
    new value..
    xfa.host.setFocus(this.somExpression);
    Alternatively.. this must work if it is formcalc...
    if(EndDate.rawValue <>null and StartDate.rawValue <> null)then
    if(EndDate.rawValue < StartDate.rawValue) then
    xfa.host.messageBox("Please check your End date. It cannot be before
    the Start date!", "Date Checker", 3)
    $.rawValue = ""
    // to set focus to the End Date field so that the user can type his
    new value..
    xfa.host.setFocus(this.somExpression)
    endif
    endif
    -------------End Code ----------------

  • Previous and Prior Year Date Values

    How do I get the Previous, Prior year month and Prior year previous month values from a given date?
    Ex: Input would be: 05/01/2008
    The output should be:
    05/01/2008 - Current Month
    04/01/2008 - Previous Month for the Current Year
    05/01/2007 - Prior year current Month
    04/01/2007 - Prior Year Previous Month
    Please let me know..

    Hi,
    Then you'll probably do a self-join. In one copy of the table, you'll get the data from date d1, and in the other copy, you'll get the data from date ADD_MONTHS (d1, -12).
    If, ultimately, you are going to show four sets of figures (from four different rows representing four different dates) on the same output line, then you may find it more convenient to do a pivot rather than a self-join. Search for the buzz word "pivot" and you'll get lots of examples. You might start by selecting four rows:
    WHERE   dt IN
            ( d1
            , ADD_MONTHS (d1, -1)
            , ADD_MONTHS (d1, -12)
            , ADD_MONTHS (d1, -13)
            ) ...and then pivoting that data into four columns:
    SELECT  ...
    ,       MAX (CASE WHEN dt = d1                   THEN val END) AS this_month
    ,       MAX (CASE WHEN dt = ADD_MONTHS (d1, -1)  THEN val END) AS one_month_ago
    ,       MAX (CASE WHEN dt = ADD_MONTHS (d1, -12) THEN val END) AS one_year_ago
    ,       MAX (CASE WHEN dt = ADD_MONTHS (d1, -13) THEN val END) AS thirteen_months_ago
    ...

  • A logic problem help

    hello experts,
    i have a problem with a logic
    here I have to pass the VBRK-WAERK and VBRK-FKDAT into TCURR-FCURR and TCURR-GDATU, but here the FKDAT and GDATU are of not the same data type and another specification is that
    >GDATU is in the inverted date format i have to convert it to date format but how ? and another problem is even if i convert it , i have one more specification given my functional consultant is that the FKDAT will be in some precise date like ( 23.10.2008) where as the GDATU will be in the starting date of the month like (01.10.2008 means it denotes the whole) , so here i have to make the FKDAT to the starting date of its months but how?.
    please kindly help me with some detail explaination , here this is the specification given to me.
    "To get the value part
    Pass VBRK-WAERK and VBRK-FKDAT into TCURR-FCURR and TCURR-GDATU for TCURR-KURST=ZCUS. Get UKURS for corresponding entry in INR"
    please kindly explain me with 'for all entries' and the complete logic joining the two tables to achive the specification.
    Thanks in advance

    Hi,
    for date conversion you can take help from this..
    CONVERSION_EXIT_PDATE_OUTPUT
    Eg: input = 24012008 and output = 24.01.2008
    CONVERT_DATE_FORMAT
    Eg: input = 20080201 and output = 01.02.2008
    CONVERSION_EXIT_SDATE_OUTPUT
    Eg: input = 20070201 and output = 01.FEB.2007
    CONVERSION_EXIT_IDATE_INPUT
    Eg: input = 01.02.2008 and Output = 20080201
    CONVERSION_EXIT_LDATE_OUTPUT
    Eg: input = 20070301 and output = 01. March 2007
    CONVERSION_EXIT_PDATE_OUTPUT
    Eg: input = 20070301 and output = 03.01.2007
    now to match the data type you can use the function module...
    CONVERSION_EXIT_INVDT_INPUT    Conversion exit routine for inverted date (INPUT)
    CONVERSION_EXIT_INVDT_OUTPUT   Conversion exit routine for inverted date (OUTPUT)
    Regards,
    Arunima

  • Validations with date(Adding zero's)

    Hi,
      can anyone tell me regarding this:
    if the date is 5/5/2008 - the output should be 05/05/2008, means 0 should be concatenated in month and date.
    else if date is 5/12/2008 - the output should be 05/12/2008
    means 0 should be concatenated only in front of 5.
    please help.

    Hi,
    I cant get your requirement clearly. Anyway I give you some solution below:
    1. Declare the variable of TYPE SY-DATUM, so that automatically concatenate zero in front.
    OR
    2. You need to declare one variable as STRING and assign the input date to the string and split it at '/' then store date and month in two other variables and check those two variables are less than 10. If so then concatenate '0' in front else leave as it and finally concatenate as per your requirement.
    Regards,
    Raghu

  • Query Design Problem

    I have the following requirement:
    Cube A has CHAR1, CHAR2, CHAR3, VALUE1, VALUE2, CALDAY
    For a query I want:
    Rows: CHAR1, CHAR2
    Columns: VALUE1, VALUE2, X
    X should be equal to the number of different occurences of CHAR3 (for each CHAR1, CHAR2 combination). I can have for the same CHAR1,CHAR2,CHAR3 combination a lot of records (with diferent CALDAY), but I only to count each different CHAR1,CHAR2,CHAR3 combination. For example with facts table:
    A, B, C, 20, 10, 01.01.2008
    A, B, D, 10, 20, 02.01.2008
    D, E, F, 5  , 15, 01.01.2008
    D, E, F, 10 , 20, 02.01.2008
    G, H, I, 5, 20, 01.01.2008
    The output should be:
    CHAR1    CHAR2        VALUE1       VALUE2           X
        A             B                 30                 30              2
        D             E                 15                 35              1
        G             H                  5                  20              1
    Can I do this with a query?
    Tks

    Problem is solved by adding a counter key figure X with exception aggregate on 0CALDAY.

  • Month end date in RPD

    We need to show month end date for a given date in a table.
    Say the date is '03-25-2008', then output should give me '03-31-2008'.
    I want to create a new derived column like this in rpd.
    I believe variables cannot help me here, because we will need to have month end date for each value the date column will hold.
    Please let me know how can we achieve this.

    Hi....
    Better go for creating view by writing the direct function.
    if db is: ORACLE, then LAST_DAY(<date column>) is the function to get the last day of the date column.
    but in creating view you also fetch the key column of the particular date column table and the above function too... it's like
    select key column, LAST_DAY(<date column>) as LastDate from TableNameA
    now you create a physical join between the TableNameA and the view, which maintains 1to1 relation ship.
    So that we can use the LastDate column in our BMP layer in particular TableNameA logical table.
    I think it works out probably....
    If not sorry...
    Thanks & Regards...

  • Search for columnName and Split data based on that column name

    Hi All,
    I have a table with one column, lets say Notes of datatype varchar(max).
    Source Date:
    Notes
    ABC:123:XYZ Dept:IT NameID:1 Name:Tom Hummer Date:04/12/2004
    456789:CDEF:ADEF
    CBD:12/12/2000:ZXCV Dept:HR NameID:1 Name:Sam Dope Date:06/17/2005
    I want Output should look like below. It should split data at 'Dept:' and 'Name:' I need SQl code  for SQL Server 2008 R2
    Output:
    Notes
    Dept:IT Name:Tom Hummer
    Dept:HR Name:Sam Dope
    Thanks,
    RH
    sql

    Hello,
    Please refer to the following statements:
    create table notes (note varchar(max));
    insert into notes values
    ('ABC:123:XYZ Dept:IT NameID:1 Name:Tom Hummer Date:04/12/2004'),
    ('456789:CDEF:ADEF'),
    ('7890:RST:QWER Dept:Sales NameID:2 Name:Mike Kule'),
    ('CBD:12/12/2000:ZXCV Dept:HR NameID:1 Name:Sam Dope Date:06/17/2005')
    select case
    when charindex('Name:',note)>0 and charindex('Date:',note)>0
    then SUBSTRING(note,charindex('Name:',note)-1,charindex('Date:',note)-charindex('Name:',note))
    when charindex('Name:',note)>0 and charindex('Date:',note)=0
    then SUBSTRING(note,charindex('Name:',note)-1,len(note)-charindex('Name:',note))
    end as name
    from notes
    where charindex('Name:',note)>0
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • How to get min/max price to be captured from last 6months

    Hi friends,
    I'm confusing about my report requirements can anybody suggest about the below comments.
    1) I want to generate report min/max price to be captured for last 6months based on query selection given values e.g: material, calmonth.
    2. Query date/Query month is based on Purchase order creation date.
    3. When we execute query for given 0material, 0calmonth e.g: 10000 , 12.2008 report output should be last six months min/max price for materials.
    How can i get this type of report.
    Anybody suggest me on this.
    Thanks lot
    Siri

    Dear Siri,
    I understand that your report should be like:
    Material     CalMonth    Min Price    Max Price
    Have you explored the option of using the Price field with the properties set to Min for one column and Max for another?
    Regards,
    Nitin S.

Maybe you are looking for