FI_AP query cumulation

Hi experts
I have a query on DSO  0FIAP_O03
The data  in DSO looks like Follows
Company code 0FISCPER 0FISCVAR Postng date Clg. date PDate condition C_date condition Amount(dr/cr)
ABC  -
DEC06----- K4 -12/15/06 -15/04/07 -Y--
Y -
$200
ABC -
DEC06----- K4 12/25/0612/31/06Y--
N -
$100
ABC -
JAN07--K401/05/0701/31/07Y N--
$300
ABC-- JAN07K401/05/0704/20/07--- Y Y--
$400
ABC--FEB07--- K402/19/0704/20/07YY--
$500
ABC-- FEB07K4 02/20/07 04/20/07--- YY--
$ 600
My conditions are posting date <= month end date and clearing date is > month end date or NULL. I have created two update routines to fulfil this condtion. if both values are Y and Y I bring the records. The out put iam getting is as follows if user enter fiscper range Jan 07 - feb 07
Company code 0FISCPER Amount(dr/cr)
ABC-- JAN07--
$ 400
ABC-- FEB07--
$ 1100
The out put I want if user enter fiscper Range jan07-FEB 07 should be
Company code 0FISCPER Amount(dr/cr)
ABC-- JAN07-----$ 600
ABC-- FEB07-----$1700
This means posting and clearing date contion following to that perticular month only. It shd apply to previous months too. in this example the entry 200 in december has clearing date in april. That shd add up in Jan 07 and FEB07. same way jan 07 has also an entry 400 where clg date is in april. this too should addup in feb.
Can any body can explain how to achieve this. any suggestions you can mail me [email protected]
Thanks in Aadvance
Rao

Sandeep
following is the scenario I am looking for. Do you have any idea to achieve that
DSO Name: 0FI_AP_O03 & Querry Name: ZFI_AP_Qry
The Issue:
The values in DSO as per the following scenario
Eg.
Comp code--Posting dateClg. date0fiscper-PMNT_TermsPayment Block-----Dr/cr amount
01HC--12/01/06--12/31/062006Z001#--
$100
01HC--12/01/06--04/04/072006Z001#--
$200
01HC--01/01/07--05/07/072007Z002#--
$300
01HC--02/02/07--NULL2007Z002#--
$300
01HC--03/05/07--10/04/072007Z002#--
$300
The result I am getting result based on above is if user enters Fisc period range Dec06 to Nov 07
(Every month Individually)
Comp code--0fiscper--
Dr/cr amount
01HC--DEC 2006--$200
01HC--Jan2007----$300
01HC--Feb2007----$300
01HC--Mar2007----$300
01HC--APR2007---$0
01HC--MAY2007---$0
01HC--JUN2007---$0
01HC--JUL2007---$0
01HC--AUG2007---$0
01HC--SEP2007---$0
01HC--OCT2007---$0
01HC--NOV2007---$0
The required result
Comp code-- 0fiscper-----Dr/cr amount
01HC--DEC 2006--$200
01HC--Jan2007-----$500(Dec $200 + Jan $300)
01HC--Feb2007-----$800(Dec$200 + Jan$300 + Feb$300)
01HC--Mar2007-----$1100(Dec$200 + jan$300 + Feb$300+Mar$300)
01HC--APR2007----$900(Jan$300Feb$300March$300)
01HC--May2007-----$600(Feb$300+March $300)
01HC--June2007----$600(Feb$300+March $300)
01HC--July2007-----$600(Feb$300+March $300)
01HC--Aug2007-----$600(Feb$300+March $300)
01HC--Sep2007-----$600(Feb$300+March $300)
01HC--Oct2007--
$300(Feb$300)
01HC--Nov2007--
$300(Feb$300)
The condition to bring amounts: 1. Posting date =< month end date
2. Clearing date > month end date or NULL
any suggestions to chieve this result welcome
Thanks in advance
Rao

Similar Messages

  • SQL Query statists?

    I'd like to know if there is any easy, and convenient way, for someone to execute an SQL query an calculate, these measurments relative to the query:
    1) The I/O performed
    2)Number Read I/O
    3) Number of Write out I/O
    (such that 2+3 = 1
    4) Number of buffered reads
    5)Query Execution time
    6) Query CPU usage
    I've heard mention of such statisctis in views such as V$OSSTAT, etc.
    But these views give the current values, and not the specific cumulative values. Such as: cummulative CPU usage time since start of the query; cumulative I/O since query begin, etc...
    What is the right approach to this. Is it through the V$SESSION view? Would you about it by storing the V$SESSIOn values before the query, you run the query, and get the new V$SESSION values?

    Well, actually i stayed here a little longer to try you part 2 of the manual.
    It worked fine, following comes the output, originating from a spool file, of my first experiment:
    Connected.
    SQL> set timing on trimspool on linesize 250 pagesize 999
    SQL>
    SQL> -- system environment can be checked with:
    SQL> -- show parameter statis
    SQL> -- this show a series of parameters related to statistics
    SQL>
    SQL> -- this setting can influence your sorting
    SQL> -- in particular if an index can satisfy your sort order
    SQL> -- alter session set nls_language = 'AMERICAN';
    SQL>
    SQL>
    SQL> rem Set the ARRAYSIZE according to your application
    SQL> set arraysize 15 termout off
    SQL>
    SQL> spool diag2.log
    SQL>
    SQL> select * from table(dbms_xplan.display_cursor(null, null, 'ALLSTATS LAST'))
    PLAN_TABLE_OUTPUT
    SQL_ID  b4j5rmwug3u8p, child number 0
    SELECT USRID, FAVF FROM  (SELECT ID as USRID, FAVF1, FAVF2, FAVF3,
    FAVF4, FAVF5   FROM PROFILE) P UNPIVOT  (FAVF FOR CNAME IN   ( FAVF1,
    FAVF2, FAVF3, FAVF4, FAVF5)) FAVFRIEND
    Plan hash value: 888567555
    | Id  | Operation           | Name    | Starts | E-Rows | A-Rows |   A-Time   |
    Buffers |
    |   0 | SELECT STATEMENT    |         |      1 |        |      5 |00:00:00.01 |
          8 |
    |*  1 |  VIEW               |         |      1 |      5 |      5 |00:00:00.01 |
          8 |
    |   2 |   UNPIVOT           |         |      1 |        |      5 |00:00:00.01 |
          8 |
    |   3 |    TABLE ACCESS FULL| PROFILE |      1 |      1 |      1 |00:00:00.01 |
          8 |
    Predicate Information (identified by operation id):
       1 - filter("unpivot_view_013"."FAVF" IS NOT NULL)
    Note
       - dynamic sampling used for this statement
    26 rows selected.
    Elapsed: 00:00:00.14
    SQL>
    SQL> spool off
    SQL>
    SQL> exit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - Pr
    oduction
    With the OLAP, Data Mining and Real Application Testing options
    C:\Documents and Settings\Administrator\My Documents\scripts\oracle\99templates_
    autotrace>my_part2_template.bat
    C:\Documents and Settings\Administrator\My Documents\scripts\oracle\99templates_
    autotrace>sqlplus /NOLOG @my_part2_template.sql
    SQL*Plus: Release 11.1.0.7.0 - Production on Qui Jul 9 22:00:39 2009
    Copyright (c) 1982, 2008, Oracle.  All rights reserved.
    Connected.
    SQL> set timing on trimspool on linesize 250 pagesize 999
    SQL>
    SQL> -- system environment can be checked with:
    SQL> -- show parameter statis
    SQL> -- this show a series of parameters related to statistics
    SQL>
    SQL> -- this setting can influence your sorting
    SQL> -- in particular if an index can satisfy your sort order
    SQL> -- alter session set nls_language = 'AMERICAN';
    SQL>
    SQL>
    SQL> rem Set the ARRAYSIZE according to your application
    SQL> set arraysize 15 termout off
    SQL>
    SQL> spool diag2.log
    SQL>
    SQL> select * from table(dbms_xplan.display_cursor(null, null, 'ALLSTATS LAST'))
    PLAN_TABLE_OUTPUT
    SQL_ID  b4j5rmwug3u8p, child number 0
    SELECT USRID, FAVF FROM  (SELECT ID as USRID, FAVF1, FAVF2, FAVF3,
    FAVF4, FAVF5   FROM PROFILE) P UNPIVOT  (FAVF FOR CNAME IN   ( FAVF1,
    FAVF2, FAVF3, FAVF4, FAVF5)) FAVFRIEND
    Plan hash value: 888567555
    | Id  | Operation           | Name    | Starts | E-Rows | A-Rows |   A-Time   |
    Buffers |
    |   0 | SELECT STATEMENT    |         |      1 |        |      5 |00:00:00.01 |
          8 |
    |*  1 |  VIEW               |         |      1 |      5 |      5 |00:00:00.01 |
          8 |
    |   2 |   UNPIVOT           |         |      1 |        |      5 |00:00:00.01 |
          8 |
    |   3 |    TABLE ACCESS FULL| PROFILE |      1 |      1 |      1 |00:00:00.01 |
          8 |
    Predicate Information (identified by operation id):
       1 - filter("unpivot_view_013"."FAVF" IS NOT NULL)
    Note
       - dynamic sampling used for this statement
    26 rows selected.
    Elapsed: 00:00:00.01
    SQL>
    SQL> spool off
    SQL>
    SQL>
    SQL> -- rem End of Part 2
    SQL> show parameter statis
    NAME                                 TYPE        VALUE
    optimizer_use_pending_statistics     boolean     FALSE
    statistics_level                     string      ALL
    timed_os_statistics                  integer     5
    timed_statistics                     boolean     TRUE
    SQL> quitIf you notice, at the end of the execution I print my statistics session environment. The statistics_level was set to ALL, as you advisied. But the output I obtained seems a lot more incomplete than the one I got from using the autotrace feature.
    Am I missing something. Could it have something to do with the fact that I am running as system and not as sysdba? System shoul have enough permissions to access its session environment statistic values.
    May be it's just a language issue (I'm not a native speaker either) but your understanding of Oracle's read consistency model seems to be questionable.No, you could be right; my understanding is questionable indeed. I am familiar with general concepts of concurrency.
    Things like: Read uncommited data:
    T1 Writes A; T2 Reads A -> Here is a conflict
    This enough for you to not be able to guarantee that the execution is serializable.
    T1 Reads A, T2 Writes A and commits, T1 Reads A - You get another confli, the Unrepeatable read.
    And so on.
    I am also familiar with the different levels of atomicity that databse systems in general give you.
    Conflict Serializable, normally implemented by using the strict phase locking mechanism.
    Repeatable Reads, you lock the rows you access during a transaction. You are guaranteed that those data values you access do not change value; but other entires in the table could be put.
    Unrepeatable reads. Only the data you modify is guaranteed to stay the same. Only you write locks are kept throughout the transaction. And so on.
    But anyway...
    What you explained in your post is more or less what I was saying. In you case much more clear than in mine.
    For instance, if a thread T1 reads A; a thread T2 Writes on A
    In oracle, you could have the thread T1 read A again without geting an Unrepeatable Read error. This is strange: in a normal system you directly get an exception telling you that your vision of the system is inconsistent. But in oracel you can do so, because oracle tries to fetch from the Undo Table Space that same data objects consistent with the view of the system you had when you first accessed it. It looks for a block with an an SCN older than the current version SCN. Or something like that. The only problem is that those modified blocks do not stay indefinitely there. Once a transaction commits you have a time bomb in your hands. That is, if you are working with that is not at its most current version.
    But you are quite right, I have not read enough about Oracle concurrency. But I have a good enough understanding for mu current needs.
    I can not know everything, nor do i want to :D.
    My memory is very limited.
    My best regards, and deepest thanks for your time and attention.
    Edited by: user10282047 on Jul 9, 2009 2:41 PM

  • Error in query due to exc aggregation with non-cumulative KF

    Hi All,
    when i am trying to execute a query I am getting the following errors.
    SAPLRRI2 and form RTIME_FUELLEN_06-01-
    Program error in class SAPMSSY1 method: UNCAUGHT _ESCEPTION.
    I have calculated KF of non-cumulative KF. If I delete the calculated the query is ok.
    I am working on BI 7.Did anybody got this error? any idea?
    I have implemented notes 976550 and 991563
    Thank you

    Hi,
    Any one with any suggestions?
    Mohammed

  • Difference in Cumulative balance amount of ERP and BW query report

    Hi all,
    We have a report to display the Cumulative balance amount based on G/L account.
    The issue we are facing here is, when we check a May month's cumulative balance in ERP side ( using Transaction code FAGLB03 by giving G/L account number, Company code and Year as 2010) we are getting 1000 EUR, and the May month's Balance is 300 EUR.
    When we run our Qury report in BW side for the same conditions( same G/L account, Key due date as 31.05.2010 and same Company code) we are getting the Cumulative Balance as only 900 EUR. we are missing some 100 EUR in our report for our Cumulative balance. But,When I check the Cube on which our Query report runs, I could get the May month's balance as 300 EUR.
    Kindly help me to rectify this issue.
    Thanks.
    Regards,
    Jayaprakash J

    Hi,
    Check is there any restrictions are there . the data must be displayes if the data is there in infocube.
    Regards
    sivaraju

  • Query for Future period on a non cumulative cube

    Hi Colleagues,
    I have a non cumulative cube. It has data till June,2006. When I query on the cube to report the balance with period as "July,2006" it doesnot return anything. What I expected is that it would show me the balance value as of June,2006 which is the last period for which there is data.
    Am I missing anything ?
    Regards,
    priyadarshi

    If you filter by jul06 and there is no data in cube, no matches with selection happens. You need to select any data to apply calculation of balance, try to select a range of months, with an offset.
    Maybe if you put the month in free characteristics instead in filter section ir worked.

  • Cumulative Quantities in a BEx Query

    Hi Friends,
    I have to get the Cumulative Values for a Key Fig Actual Quantity in a BEx Query.
    The scenario is as follows:
    I have the following data in the cube:
    YearWeek       ActQuantity
      200601                     35
      200602                     40
      200651                      30
      200652                      35
      200701                      20
      200702                      35
      200703                      45 
      200747                      30
      200748                      45
      200749                      40
      200750                      25
      200751                      40
      200752                      35
      200801                      40
      200802                      35
      etc.,
    The Report Req is as follows:
       The user will enter any range (Eg: 200748 - 200802)
    and he wants to see the report as follows:
    YearWeek ActQnty  CumQnty
                                   (Cumltd from 1st wk of the year)
    200748                    45             2500  (2455 + 45)
    200749                    40             2540  (2500 + 40)
    200750                    25             2565
    200751                    40             2605
    200752                    35             2640
    200801                    40                40 (since it is 1st week)
    200802                    35               75
    Important thing is the report should show the quantities only for that period (weeks), the user entered. But the cumulative values must be from the first week of that calender year.
    Thanks for any help/suggestion.
    Regards,
    Ranjith

    Hi Rakesh,
       Actually the user enters two values (eg: 200740 - 200748) and he wants to see the actual quantities and cumulative quantities only for the weeks between the user entered i.e., between 200740 and 200748.
      But when I execute the query with user exit variable I defined, I am getting actual quantities and cumulative quantities from 200701 to 200748. The values are correct but I want to restrict this report only to the period between 200740 and 200748.
      The user entry range may also cross between two different years (eg: 200748 - 200812)
    Thanks for your help.
    Ranjith

  • SQL Query to find cumulative values for a Financial Year

    Dear users,
    My requirement is to create a SQL query for a table/view where I have day-wise data. I want to find out cumulative values for financial year by giving any date. It should add the values from start of financial year till that date in the financial year.
    I think creating a view of such type will post heavy burden on resources since accuimulation will be done for each day upto that day.
    Thanks

    Dear users,
    My requirement is to create a SQL query for a
    table/view where I have day-wise data. I want to
    find out cumulative values for financial year by
    giving any date. It should add the values from start
    of financial year till that date in the financial
    year.
    I think creating a view of such type will post heavy
    burden on resources since accuimulation will be done
    for each day upto that day.
    ThanksKumar's solution will serve yours purpose but m not agreed
    I think creating a view of such type will post heavy
    burden on resources since accuimulation will be done
    for each day upto that day. Khurram

  • Cumulative balance (FC) show ****, can perform query?

    Dear Experts,
    Hi,
    In the Chart of Accounts -> Account Balance, the cumulative balance (FC) column shows **** when there
    are multiple foreign currency transactions being posted to the GL account.
    I understand that this is a standard system behaviour but is there a way or any workaround to find out how much balance for each foreign currency in the account?
    Is it possible do in query to add up all foreign currecy amount?
    Thanks.
    Regards,
    Danny

    Dear Danny,
    This is not only a standard system behavior but also the only way to display.  Simply because, the number stand for different values that could not be added together.
    You may create a query based on each individual FC to get separate meaningful totals.
    Thanks,
    Gordon

  • Subsequent use of cumulated value in query

    Hi All,
    We are using BEx Query Designer to create a query having one formula variable “Stock on Hand” as a cumulated value (along the columns).Now we need to use this cumulated value in another formula variable. Is this possible to do? If not could you please suggest an alternate for the same?
    Stock on hand (for any given week) = (Total Receipts – Total Demand) + Stock on Hand (for previous week).
    Inv. Carrying Cost (for any given week) = Stock on hand (cumulated values as above) * Per unit inv. cost
    Data for Total Receipts, Total Demand and Per unit Inv. Cost is present in the infocube at daily level. A sample report template has been given below:
    Product    Location       Week                      W1   W2    W3
       P1                L1        Total Demand           10     10     10
                                      Total Receipts           20      0       5
                                      Stock on Hand          10      0      -10
                                      Per unit Inv. Cost        2       2       2
                                      Inv. Carrying cost       20      0      -20
    Points assigned in advance for your replies
    Regards,
    Bansi.

    Hi PV,
    Thanks for the prompt reply. But we have already created two different formulae variables for the above requirement.
    The formula variable for Stock on hand is displaying the desired cumulative values. But the formula for Inv. Carrying cost is not able to use the display-value (cumulative value) of Stock on hand and it just uses the value corresponding to that particular week. For eg.
    for w2 if stock on hand =20 (cumulative value displayed on screen)
    and the original value of stock on hand for w2 = 0
    then the formula for Inv. carrying cost is using the original value(i.e. 0) but not the display value(i.e.20), whereas we want the cumulative value (i.e. 20) for our calculation.
    Any help in this regard would be highly appreciated.
    Regards,
    Bansi.

  • Urgent : Query on Non cumulative cube

    Dear BI Experts,
    I have a non cumulative cube to help me report Stock Balance. It has stock entries from Jan till June,2006. When I query on the cube to report the balance as of Current Period (July,2006) it doesnot return anything. What I expected is that it would show me current stock balance (from Jan till June,2006) though my selection date is in July where there is new stock update done in July.
    I tried compression on the cubes as well but didnot change the result.
    Can anybody help.
    Kind regards,
    priyadarshi

    Hi Riccardo,
    Thanks for your very useful answer. I have "Company" , "SetOfBooks" , "Material" & "0CALDAY" in my validity table. Here For every combination I see a record in the validity table with "Fixed To Time" set with the last transaction dates for the combination. But I would like to preset the "Fixed To Time" for each record to some value like "31-12-9999" .
    Should this be possible & how ?
    Regards,
    priyadarshi

  • Cumulated amounts in the Query

    Hi Sap Developers,
    I need some hints to create a query. I haven't found any solutions until now.
    I've got an infocube with amounts grouped by day, which are gonna be displayed in the query using the cumulated format as follows:
    1/jan           2/jan              3/jan              4/jan     
    Cube  Cumulated      Cube  Cumulated         Cube  Cumulated         Cube  Cumulated
    10      10                      11      21                         12      33         13      46
    The cumulative period starts on the first day of the month. Only the cumulated values above will be displayed in the query.
    When the user selects 3/Jan - 4/Jan, for example, the query should display only the two columns related to these days, regarding that the cumulated amount of 3/Jan and 4/Jan has to be 33 and 46 respectively.
    Through Bex, I have to select the whole month to get the expected result. If I input 3/Jan - 4/Jan, for example, the query shows 12 and 25, that is, it starts the cumulative period on the first day displayed in the query.
    I've created a customer exit variable tied to a restricted key figure in order to get the cumulated amount from the first day of the month until the day before the date entered by the user. It's worked as far the amounts is concerned, but all the columns are displayed.
    I've tried others alternatives, but without success.
    Before modifying the infocube structure, I would like to confirm with you if there is any solution for this scenario. Suggestions are welcome.
    Regards,
    Tiago

    Hi SDBI,
    Thanks for your reply.
    The problem was finally solved.
    We used a customer exit variable (CEV1) to the 0CALDAY, as you suggested, with the period from the first day of the month to the initial date defined by the user entry minus one. We created a RKF1 to cumulate the amounts of this period by linking CEV1 to it and setting 0CALDAY as "Constant Selection". Thus all the values related to this period were correctly cumulated into a single column.
    After that we needed to establish a way to cumulate the amounts properly along the columns. The following procedure worked fine:
    RKF2 was created to get the amounts related to the period entered by the user.
    CEV2 was created to get only the initial date defined by the user.
    Then we created a formula with 0CALDAY replacement path varible and establish the following logic: if 0CALDAY RPV == CEV2 then formula = RKF1 + RKF2 else formula = RKF2.
    Regards,
    Tiago

  • Finding Cumulative values in Query

    Hi All,
    I am developing one Query in which i have to show plant wise last 12 months status of audit.
    In this audit i am able to show the types of audits say X,Y,Z perfectly.
    But the thiing i want to calculate is the cumulative values of X,Y,Z before the last 12 months.
    For Ex: Audit X Y Z Formula(X+Y-Z)
    month1 10 20 30 0
    month2 10 30 10 30
    month12 20 40 20 40
    month13 ***(X) ***(Y) ***(Z)..till
    Like this i want to develop the report as per the requirement.
    Please help how to resolve this issue.
    Thanks in Advance.

    Hi Sathya,
    one simple solution is to have a result row at the bottom .
    Select appropriate characteristic info object and do not suppress result for it in the query designer.
    Please let me know for further clarifications
    Regads
    Venky

  • Issue in Query to find the Cumulative Values

    Hi All,
    I am developing one Query in which i have to show plant wise last 12 months status of audit.
    In this audit i am able to show the types of audits say X,Y,Z perfectly.
    But the thiing i want to calculate is the cumulative values of X,Y,Z before the last 12 months.
    For Ex: Audit         X         Y       Z       Formula(X+Y-Z)
               month1       10       20      30     0
               month2       10       30      10   30
               month12     20        40     20    40
               month13    ***(X)  ***(Y)   ***(Z)..till
    Like this i want to develop the report as per the requirement.
    Please help how to resolve this issue.
    Thanks in Advance.

    Hi All,
    I am developing one Query in which i have to show plant wise last 12 months status of audit.
    In this audit i am able to show the types of audits say X,Y,Z perfectly.
    But the thiing i want to calculate is the cumulative values of X,Y,Z before the last 12 months.
    For Ex: Audit         X         Y       Z       Formula(X+Y-Z)
               month1       10       20      30     0
               month2       10       30      10   30
               month12     20        40     20    40
               month13    ***(X)  ***(Y)   ***(Z)..till
    Like this i want to develop the report as per the requirement.
    Please help how to resolve this issue.
    Thanks in Advance.

  • Cumulated Characteristic in Query Designer

    I have a query in BEx 3.5 query design that has a characteristic in rows with a property of 'cumulated'.
    I am trying to create similar query using BEx 7.0 Query Designer but don;t see the optino to set property of a characteristic to 'cu,ulative' anywhere.
    (I don;t want to set on KF level.)
    I have tried following correction from OSS note 1450906 but that doesn;t seem to be helping.
    Is this possible in7.0 with latest patches? Where would i set for cumulative characteristic?

    Hello Brad,
    Take a look at the following note:
    1426094   List calculation problem with two structures
    Tks,
    Diego Ferrary

  • Query for Finding the Daily Cumulative Production Total

    Hi Experts,
    I want Query based Report for finding Daily Cumulative i.e Running Production Total
    Suppose Yesterdays Production for Item A0001 is 20 and Todays Prodction is 20 then it will show 50 but it shout be datewise selection.
    Warm Regards,
    Sandip Kokate

    Hello
    Report Scenario as follow
    Item Code    Item name    Todays Producion     Yesterdays Production   Total Productio
    A001           Computer     20                                    20                                  40
    A002           Mouse          10                                    05                                  15
    A003           CPU              15                                    05                                  20
    This is Exact Report
    Regards,
    Sandip Kokate

Maybe you are looking for

  • Lync Server 2010 control panel - Server Error in '/cscp' Application

    Hi everyone, Recently i have installed Lync 2010 with no problem at all. But when i try to open de control panel it sends me this error: Server Error in '/cscp' Application. Could not load type 'System.ServiceModel.Activation.HttpModule' from assembl

  • Partial payment for Vendor down payment request

    Hi Gurus How to do partial payment for vendor down payment request  using F-48 If i enter partial amount next time same request is not appearing in the list. Pls guide me. Reply will be appreciated with full points Thanks in advacne Sneha

  • Who wants to build a mailinglist??

    Hi, Check this out ! SAP(ABAP) CERTIFICATION Regards, Dirk.

  • Spry:detailregion confusion

    So I've manage to adapt what I learnt in my previous question to a web site that I am just messing with (http://pbox.mine.nu/R/MyR.html). I've looked at other examples of how to use the detailregion and using it with spry:setrow() but I think i'm mis

  • Picture saved in Editor does not show up in Organizer

    I recently upgraded from PSE5 to PSE12. The installation went smoothly and my old Catalog was imported without a hitch. After my first test run to edit a file, I did a "Save As" in a version set with the original. I then closed the file, but when I w