Adding colums in S_ALR_87012357

Hi,
We have requirement to add some new colums in the report as S_ALR_87012357 in the output.
I did try the BADI as FI_TAX_BADI_014, but that did not help.
I need to add the m/l number in the output for the Document.
Could you please help me in this case.
Regards,
Sandeep Garg

Hi,
Try this 2 BADI to insert your fields tn that program.
FI_TAX_BADI_014
FI_TAX_BADI_011
Regards,
Goutam

Similar Messages

  • BI-IP - Bex Analyser - Adding colums / rows in workbooks

    Hi experts,
    In BI-IP (BW 7) in Bex Analyser we are facing the following problem:
    In the workbook if the user inserts a column nearby the input ready columns and inputs values at the time of transfer / save values, the system automatically copies these values to the next input column. The same if they insert rows and add values, at the time of transfer values the system deletes the row but adds the values in the above row.
    Is it how Bex Analyser (workbook) works or we are having a problem?
    Thanks and regards,
    MA
    Edited by: Maria Almeida on Apr 30, 2008 1:16 AM
    Edited by: Maria Almeida on Apr 30, 2008 1:17 AM

    Hi Maria,
    Please do not take it offesive.
    The issue you guys are encountering is due to lack of Training to Users.
    Planning is an intelligent activity. Planners are expected to do their home work before they embark on planning and layouts help capturing values in an orderly manner.
    It would be wonderful if you restrict the access to queries, else train the users on the impact and relevance.
    As you are aware adding a row is possible in WAD.
    Regards
    Srinivas

  • Adding Colume in the Table and display result in it.

    Hi Guru's ,
    I have a requirement to add column in existing Table. and Display the result after calculation.
    Thanks,
    Rutu

    Hi,
    Please used this code snippet for reference:
    OAApplicationModule am = (OAApplicationModule)pageContext.getApplicationModule(webBean);
    OAViewObject vo = (OAViewObject)am.findViewObject("<VO Name>"); // Give VO Name attached to the Table Region.
    if (vo != null)
    vo.addDynamicAttribute("<Att_Name>"); //Adding ViewAttribute to VO
    vo.reset();
    vo.next();
    //Do calculation that you want
    //Setting the calculated value in the created VO Attribute
    vo.getCurrentRow().setAttribute("<Att_Name>", <Value to assign>);
    I hope this will gives you a proper Help.
    Please feel free to ask if any more Question
    Thanks,
    Shrikant

  • Adding Colums

    Hi,
    I have a Component with a RichEditable text and I want to display the text in two colums.
    I found this example code here:
    private function changeColumnCount(newCount:String):void
         if (_textFlow && _textFlow.interactionManager is IEditManager)
         var cf:TextLayoutFormat = new TextLayoutFormat();
             cf.columnCount = newCount;
             IEditManager(_textFlow.interactionManager).applyContainerFormat(cf);
             _textFlow.interactionManager.setFocus();
    When I try to apply it to my RichEditableText.textFlow nothing happens.
    Even the if condition is not true?
    I tried it like this:
    private function changeColumnCount(newCount:String):void
         if (myEditor.textFlow && myEditor.textFlow.interactionManager is IEditManager)
              var cf:TextLayoutFormat = new TextLayoutFormat();
              cf.columnCount = newCount;
              IEditManager(_editor.textFlow.interactionManager).applyContainerFormat(cf);
              myEditor.textFlow.interactionManager.setFocus();
    What do I miss?
    Is there somewhere a simple Flex4 example for a 2 Colum Rich Editable Text?

    Hello Alan,
    that"s funny, I havent even looked it up since I thought way to complicated since I knew that there is a colum feature in the TLF.
    But its even more simple than setting a style:
    <s:RichEditableText id="_editor"
                     columnCount="2"/>
    Thank you very much !
    Marc

  • Reg : Adding colums in MP01 tcode

    Good Morning Experts,
    I want to add a column (Zfield) to the Tcode MP01, for this I am using Exit as AMPL0001.
    whenever I double click on the FMexit or Screen exit it is asking for Access key.
    can anyone suggest me what is the problem and how to achive the above functionality.
    Regards
    valluru

    Hi
    Do this steps:
    1. Create a project with tcode CMOD.
    2. Set this enhancement (AMPL0001)
    3. Save, activate it.
    4. Create the ZX* includes in the FM EXIT_* in your own packages.
    5. Activate this ZX* includes.
    6. Set a break-point and test if the tcode trigger this enhancement. You will know it if tcode stop in the break-point.
    I hope this helps you
    Regards
    Eduardo
    PD: I forgot, use a user-ID with a developer key.
    Edited by: E_Hinojosa on Aug 8, 2011 8:49 AM

  • HOW TO LOAD R/3 DATA INTO SAP BI USING PROCESS CHAINS?

    Hi,
    Can we load R/3 data into BI using process chains?... I loaded data from R/3 into Infocube using generic extraction using view... took 2 tables EBKN and EBAN and ceated view.
    In PSA I can find all the 2388 records but when I load into datatarget in transferred tab there are 2388 records but in added colum i could find only 2096.....
    I deleted the request and want to load through process chains....... but  how to do ?????? without flat file ...can we laod using process chains?
    I appreciate any inputs.......
    Regards,
    Prasanthi.

    did you even bother looking at the links in my previous posts???
    read the docs...try yourself...if you encounter specific issues, you can post them on the forum...
    if you're really expecting somebody to post a step by step for process chain, i think you can wait a long, long time...

  • New columns and tables

    Hello All,
    I need to know the new created tables on my database and the added columns:
    I used the below query so i can get the NEW created tables
    select * from dba_objects d where to_date(d.created,'dd/mm/yyyy') = to_Date(sysdate-1,'dd/mm/yyyy')  and d.object_type = 'TABLE'and owner = 'MyOwner';
    Is there any way to know what are the new added columns to a table, in the below i can know the last DDL, but what i need is to know the added colums
    select * from dba_objects d where to_date(d.Last_Ddl_Time,'dd/mm/yyyy') = to_Date(sysdate -1 ,'dd/mm/yyyy') and owner = 'MyOwner';
    Thanks in Advance.

    consider:
    SQL> alter system set audit_trail='db_extended' scope=spfile;
    System altered.
    SQL> startup force
    ORACLE instance started.
    Total System Global Area  431038464 bytes
    Fixed Size                  1375088 bytes
    Variable Size             301991056 bytes
    Database Buffers          121634816 bytes
    Redo Buffers                6037504 bytes
    Database mounted.
    Database opened.
    SQL> audit alter table;
    Audit succeeded.
    SQL> conn ami/ami
    Connected.
    SQL> create table a as select * from dual;
    Table created.
    SQL> alter table a add b date;
    Table altered.
    SQL> select sql_text  from dba_audit_trail where sql_text is not null;
    SQL_TEXT
    alter table a add b dateAmiel Davis

  • Defining resource allocation

    Standard use of the tool would be when it's not clear exactly who is going to be doing a piece of work, use a role allocation - when it IS clear, use the specific resource.
    Is there any way of defining resource allocations a little further to say - 'we think it's going to be Jim, but it's not been agreed yet'
    Resource managers will be using the Web interface for P6 release 6.1 - which AFAIK is not customisable in terms of adding colums to the resource views that are avaialble, so we can't create a user defined code there.
    the problem is quite simple - people not following process and going over resource manager's heads to source their own resource. Presumably we could turn off the ability to assign resources to activiites, but i'd be interested in other options / suggestions, however simple or clever.
    David

    glad i could help. just to be on the safe side.. look up resource security in the application help (desktop/ web clients) for details. quite different from user security profiles for global & project data.
    basicly, resource security restricts user access to a resource node (such as a dept, team, etc) and all resources (individuals) underneath for direct assignment. it is off by default for new users. if you so choose, by activating it (the checkbox) for any/all users without assigning them access to any resource node, they can no longer assign resources onto their project activities (just roles).
    if user discipline is a serious issue, you may want to re-check global profiles and deny certain privileges on global data as well.
    best of luck
    btw, you should really consider upgrading at least to P6v7. i remember even 6.2.1 had a few nice new features and bugs fixed compared to 6.1. not to mention P6v7 (with or without SP1 or 2). as you probably know current version is now 8.1. this is even more relevant for you as web-based collaboration features have picked up pace after 6.1 and you seem to need and use them.
    Edited by: Tibi on Jun 2, 2011 6:13 PM

  • S_ALR_87012357 (RFUMSV00): Adding field  to report

    Hi
    How can i add field Name1 on the output list Layout on the report. At the moment only Name2,Name3 and Name4 are on the layout selection.
    How can i configure it to add the Vendor description(Name1)?
    Transaction code : S_ALR_87012357 - Advance Return for Tax on Sales/Purchases

    hi Giovanni Baumann  .,
             will u please tell me how u added NAME1 field to on the output list Layout on the report . please guide me on this.
    Regards.,
    S.Sivakumar

  • Adding a new colum in SBWP.

    Hi All,
    I have a requirement of adding one more colum to the inbox of
    the users.The workitems are directed to the users via workflow,
    In that I need to add one more colum there,so that the users can see one more detail.Can anyone please suggest and help me hw to go for that....
    Thanks
    Raju
    Edited by: Raju Nair on Jun 29, 2008 12:05 PM

    Hi Raju,
                 U can add a dynamic column in ur business Work Place it can be done in transaction SWL1. But at the max u can add six such columns.
    Can u be more specific what to do so that i can giver u a clear solution wether to add a new column or change settings in SBWP and customize an existing business work place.
    <inappropriate content removed by moderator>
    Thanks & Regards.
    Dheepak
    Edited by: Mike Pokraka on Jun 30, 2008 1:23 PM

  • Adding fields to ALV output list in Tcode S_ALR_87012357

    Hi,
    I need your help to insert new fields in output at standard t-code S_ALR_87012357 for GST Report.
    Report name is RFUMSV00.
    The add/insert columns are
    1)Vendor Description,
    2)SGD Gross Amt(100% tax Reporting  curr)
    3)SGD Tax Base Amt(100% Tax Reporting curr),
    4)SGD Input Tax(7% Tax Reporting curr) and
    5) Value(100%Vendor Curr)
    Could anyone help me how to do this.
    Thanks,
    Shabareesh

    Changing the field catalog should not add the new fields required in internal table (e.g. structure RFUMS_TAX_ITEM for items)
    You could try to append a structure to those, and fill its value with FI_TAX_BADI_011 ?
    Regards,
    Raymond
    PS: List of BAdI for this report
    FI_TAX_BADI_010
    RFUMSV00: Events for List Output Using ALV
    FI_TAX_BADI_011
    RFUMSV00: Event 'APPEND' for Line Item Lists
    FI_TAX_BADI_012
    RFUMSV00: Event 'GET bkpf LATE' during Selection
    FI_TAX_BADI_013
    RFUMSV00: Set Parameters for DME Tool (Tree Type UMS1)
    FI_TAX_BADI_014
    RFUMSV00: Field Catalog of Output Lists for ALV
    FI_TAX_BADI_015
    RFUMSV00: Event "END-OF-SELECTION" before Data File Creation
    FI_TAX_BADI_016
    RFUMSV00: Transfer of All Tax Data

  • Tax Reporting Date for Cz Republic in report S_ALR_87012357/RFUMSV00

    Hi All,
    We activated Tax reporting date as per SAP Note 1023317. However we are not able to see in the report "S_ALR_87012357 / RFUMSV00" tax reporting date column which should show which document has which date assigned to it. I executed the report with tax reporting date.
    Please help me to find out how to get the column in this report.
    Regards,
    Abishek

    hi Giovanni Baumann  .,
             will u please tell me how u added NAME1 field to on the output list Layout on the report . please guide me on this.
    Regards.,
    S.Sivakumar

  • Issue in the standard report - S_ALR_87012357

    Hi Team,
    Could you please explain what is the purpose of this report. for the t code: S_ALR_87012357 and how it will work  means after executing t code: S_ALR_87012357  any document will post in the back ground session for foreground session with reference of any g/l code.
    Regards
    Sangeetha

    Dear expert
    Example :
    In Italy, you are required to register all you customer and vendor invoices about your company's sales and purchase activities within the country, in the European Union, or outside the European Union. According to the legal requirements, you need to create value-added tax (VAT) reports based on your customer and vendor invoices on a monthly basis. Depending on the size of your company, you can create the tax reports on a quarterly basis as well.
    You can use the Advance Return for Tax on Sales/Purchases (RFUMSV00) program to create tax reports (tax books) according to VAT types. It enables you to maintain your VAT registers per VAT types. You can create separate input and output tax reports about your sales/purchases activities in the country, in the European Union, or outside the European Union according to VAT types. The program enables you to save your reports with a report number (for example: 1/2008, 2/2008), and it generates a summary per VAT code at the end of the report. The program ensures the correct progressive page numbering of tax reports and calculates the debit and credit balance for the given VAT type. You can carry forward the credit balance to the following month.
    SE38 :RFUMSV00 =S_ALR_87012357
    PATH
    Accounting ® Financial Accounting ® General Ledger ® Reporting ® Tax Reports ® General ® Advance Return for Tax on Sales/Purchases ® Advance Return for Tax on Sales/Purchases.
    Under
    Set the following indicator(s)
    Output control :Read address data
    Output lists
    Output tax: Line items
    Input tax: Line items
    Regards
       Ajeesh.s

  • Issue in the standard report - S_ALR_87012357 outcome result

    Dear Friends,
    I am facing issues in the standard report S_ALR_87012357 "Advance Return on tax Sales/Purchases" where I am trying to pull the tax posting report for the current period.Here I would like to see the tax postings which are done with the custom t code ZFB01L (mass upload of data) which is the replica of FB01L. The issue here I see is, any postings done via custom t code with tax code does not appear in the standard report t code S_ALR_87012357. Please advice whether is there any alternative transaction code or program where in I can get all tax postings similar to this standard report or do we have to create a custom t code to get such report with the help of ABAPer.
    Kindly advice.
    Regards,
    Siri

    Dear expert
    Example :
    In Italy, you are required to register all you customer and vendor invoices about your company's sales and purchase activities within the country, in the European Union, or outside the European Union. According to the legal requirements, you need to create value-added tax (VAT) reports based on your customer and vendor invoices on a monthly basis. Depending on the size of your company, you can create the tax reports on a quarterly basis as well.
    You can use the Advance Return for Tax on Sales/Purchases (RFUMSV00) program to create tax reports (tax books) according to VAT types. It enables you to maintain your VAT registers per VAT types. You can create separate input and output tax reports about your sales/purchases activities in the country, in the European Union, or outside the European Union according to VAT types. The program enables you to save your reports with a report number (for example: 1/2008, 2/2008), and it generates a summary per VAT code at the end of the report. The program ensures the correct progressive page numbering of tax reports and calculates the debit and credit balance for the given VAT type. You can carry forward the credit balance to the following month.
    SE38 :RFUMSV00 =S_ALR_87012357
    PATH
    Accounting ® Financial Accounting ® General Ledger ® Reporting ® Tax Reports ® General ® Advance Return for Tax on Sales/Purchases ® Advance Return for Tax on Sales/Purchases.
    Under
    Set the following indicator(s)
    Output control :Read address data
    Output lists
    Output tax: Line items
    Input tax: Line items
    Regards
       Ajeesh.s

  • Report Structure based CKF percentage total colume Error

    Dear Guru's
    In Report Created structure in Rows structure created formulas for sub total, CKF using in colume for finding percentage on sale,
    where formula used in structure, percentage also adding instead of average. Applied exception aggregation for plant but no result
    Example scenario : Zone1 created with selection of plant, division and region.same as a UCWL and internal total Zone1+UCWL used formula
    percentage CKF working as addition. Red colour highlighted are wrong totals
    Month
    Target
    Prorata
    Target
    Actuals
    Today
    Actual
    Todate
    %Age
    Achiev
    Target
    PPC % age
    PPC %Age
    Actual
    Rajasthan Zone1
    45,000
    36,000
    1,276
    27,473
    76
    67
    54
    UCWL
    25,000
    20,000
    952
    18,183
    91
    100
    76
    ZONE1+UCWL Total
    70,000
    56,000
    2,228
    45,656
    167
    167
    129
    Rajasthan Zone 2
    60,000
    48,000
    1,722
    34,746
    72
    65
    10
    Rajasthan Total
    1,30,000
    1,04,000
    3,950
    80,403
    240
    232
    140
    Gujarat-Sirohi
    1,12,000
    89,600
    2,555
    85,877
    96
    42
    Gujarat-Kalol
    60,000
    48,000
    1,644
    34,945
    73
    75
    30
    Gujarat- P Pur
    8,000
    6,400
    247
    6,035
    94
    100
    Gujarat Total
    1,80,000
    1,44,000
    4,447
    1,26,857
    263
    217
    30
    Treat this most urgent, report is pending due to percentage total.
    Regards
    ramesh

    I applied this:
    If([Process Category] InList("Process01") And IsNull([Date]);[Percentage];Max(Date)))
    [Percentage] = (Count([Date])/Count([Operation]))*100.
    but, this is not becoming true - even when Operation has one Date
    Showing result as:
    List#,Process01,Process02
    100, 11/12/2010, 11/15/2010
    But result should be
    100,50%,11/15/2010
    Can anyone help me achieve the right result!
    Thanks in advance.

Maybe you are looking for

  • IPod Touch Video Recording

    I was just wondering if anyone here knew about how to or if there is video recording for the iPod Touch. I'm talking about recording the actual screen of the iPod. I know there are ways to do it with a jail broken iPod touch, but jail breaking messed

  • Inconsistency with AND operation.

    Hi, When an AND operation is used in mapping, both the inputs should have equal rows, so that it performs X+Y operation. But in one my mapping, Input Queues are of Varying Lengths. 1st input has 2 rows and second input has 10 rows. Output shows 10 ro

  • Why would anyone use gstreamer legacy? and Firefox x264 HTML5 support

    https://wiki.archlinux.org/index.php/Gstreamer The wiki says gstreamer legacy is... "Legacy but widely used". On top of that every single linux tutorial on gstreamer I've seen talks about gstreamer0.10 i.e. the legacy one. Including the arch wiki pag

  • Mac mini (intel) vs iMac G5 1.8 GHz

    Hi all, I'm thinking of changing my Apple Computer from a 20" iMac G5 1.8 GHz 1.2 GB RAM to a Mac mini Core Duo 1.66 GHz with 2 GB of RAM with a Apple 23" Cinema Display. Does someone know if that is a "downgrade" in performance? Thanks for your answ

  • Can't assign a rip to folder in windows media player

    Cannot rip cd music in media player. Cannot assign a folder to rip music to. Clicking on the change tab for a choice of location does nothing. Have uninstalled WMP and reinstalled it. Need a way to tell WMP where to send ripped music.