Quota Used filed

Gurus
  I have Created a Absence with Quota as Paid leave in Valuation basis table T554c.
Now client want that as unpaid leave. So i have deleted Quota, generation rule.
In deduction rule also Quota removed
In assign counting rule to absence also the tick of Quota deduction is removed
When i create Absecen the field is appraing as Quota used 1 (For One day absence) but there is no Quota for the employee
When i run payroll the deduction is happening perfectly as Loss of Pay.
My issue is how to remove the quota used field.Kindly advise me in this.

Hi
When i see in Overview(Shift+F8) absence is coming as payroll Hours 8.5
When i see through F7 following details are coming as below
Absence type             0008    ESI Leave-CKPL
Time                             -
Absence hours                8.50
Absence days                 1.00
Calendar days                1.00
Quota used                   1.00  Days 
Advance Payment
Off-cycle reason
Payment date
Payroll Identifier
Payroll type
Kindly let me know if any issues.

Similar Messages

  • Time Management Operation to Update Absence Quota Used

    Hi Gurus,
    Is there any standard operation available to update absence quota used. I'm already using UPDTQA to update Absence Quota Entitlement, but is there any standard operation tha i can use to Update Absence Quota used.
    Thanks!!
    Rajiv
    Edited by: rajiv patel on Mar 27, 2008 6:38 PM

    Hi,
            I have many doubts about Quota generation with time evaluation. I need to discount two hours,for example,to a certain quota type at one particular situations and employees.
    I think I can do it using function QUOTA and operation UPDTQ. To do it I have to select the option "Increase" or "Replace" in table V_556A_B,isn´t it? .But my problem is that I need firstly a quota entitlement generated with RPTQTA00,for example:
    •I have to generate a entitlement of 30 hours for all employees of a certain personal division ("No generate" selected in V_556A_B and RPTQTA00 ).
    •After that,when I run time evaluation on fridays for example,I have to discount 2 hours of this entitlement of 30 (Increase or replace in V_556A_B,and use then Quota and UPDTQ).
    My real problem is to generate the quota by RPTQTA00 because I´ve checked "Increase"or "Replace" (V_556A_B) to permit quota generation (modification) with Time Evaluation.
    I hope my explanation was ok and somebody can help me please.
    Thanks a lot

  • Sales order creation with reference to quote using BAPI

    Hi All,
    I am trying to create a sales order with reference to quote using BAPI BAPI_SALESORDER_CREATEFROMDAT2.
    I am passing the Quote number and preceding doc.category (B) at the header level and
    at item level I am passing the quote number and the line item number in the quote for REF_DOC and REF_DOC_IT.
    The order is created but there seems to be some issue with the document flow.
    I do not see the Reference Doc number at the header level from the Sales order document flow whereas I can see the Reference Doc for each line item.
    In VBFA I can see the Ref.Doc number at the header level along with the Ref.Doc at the line item level.
    Why do you think it is not showing at the header level from Sales Document Document Flow?
    Is there any bug in the standard BAPI or is there any OSS note?
    Any answer would be greatly appreciated.
    Thanks
    Sandeep

    hi,
    Are you giving different quotation numbers in the different line items, if that is the case you will not get that in the header document flow, as it cann't point to all the quotations.
    Thanks,
    Mahesh.

  • How to search the location of the single quote using instr func in a string

    I have a string '345634','234'(all 4 single quotes are part of the string) and I want to find the location of the 3rd single quote using the instr function , could sum1 quickly please help me out.
    Regards
    Rahul
    Edited by: Rahul Kalra on Aug 26, 2010 8:58 AM

    Carlovski wrote:
    You really do learn something new every day!
    It really is quite ugly syntax though.Not really. You can use whatever character you want to indicate the start and end of the string, but if you use any of the brackets "[", "(" or "{" you should terminate using the opposing bracket "]", ")" or "}" respectively. It also looks a bit more ugly with data like that, but if you are entering regular text then it looks ok...
    e.g.
    SQL> select q'[This is my string with fred's quotes in it]' as mystring from dual;
    MYSTRING
    This is my string with fred's quotes in it
    SQL> select q'(This is my string with fred's quotes in it)' as mystring from dual;
    MYSTRING
    This is my string with fred's quotes in it
    SQL> select q'{This is my string with fred's quotes in it}' as mystring from dual;
    MYSTRING
    This is my string with fred's quotes in it
    SQL> select q'.This is my string with fred's quotes in it.' as mystring from dual;
    MYSTRING
    This is my string with fred's quotes in it
    SQL> select q'#This is my string with fred's quotes in it#' as mystring from dual;
    MYSTRING
    This is my string with fred's quotes in it
    SQL> select q'`This is my string with fred's quotes in it`' as mystring from dual;
    MYSTRING
    This is my string with fred's quotes in it
    SQL>Well... almost any character...
    SQL> select q'¼This is my string with fred's quotes in it¼' as mystring from dual;
    ERROR:
    ORA-01756: quoted string not properly terminated

  • Line Level DFF for a quote using user hook method

    Hi ALL,
    My requirement is to set default value in line level DFF for a quote using user hook method, so please suggest me how to achive this, i have checked the API "ASO_QUOTE_CUHK.update_quote_pre " but not successed please suggest.
    Thanks

    Hi Dipanjan,
    Thanks for reply, do u have any idea how to achieve thsi through user hooks or any APIs so that i can place the default value to the corresponding DFF field.
    Thanks
    Edited by: user13424229 on Jan 22, 2012 11:52 PM

  • Remove pipe delimited and  quotes USING SAME ctL FILE

    i need to remove quotes and delimited(|) using control file in SQL LOADER. I am able to remove delimited but not able to " "(quotes).Can any one help me?
    "1"|"tom "|"newyork"
    LOAD DATA
    INSERT
    INTO TABLE temp_table
    FIELDS TERMINATED BY "|"
    TRAILING NULLCOLS
    ( id,
    name,
    city
    Thanks in Advance!!!!!!!!!!!!!!!!!!!!!!!!
    Edited by: tom on Apr 23, 2012 3:50 PM

    Use optionally enclosed by '"':
    Control file:
    {code}
    LOAD DATA
    INFILE *
    INSERT
    INTO TABLE TBL
    FIELDS TERMINATED BY '|'
    optionally enclosed by '"'
    ( id,
    name,
    city
    BEGINDATA
    "1"|"tom "|"newyork"
    Load:SQL> create table tbl(id number,name varchar2(10),city varchar2(10));
    Table created.
    SQL> host sqlldr scott/tiger control=c:\temp\tbl1.ctl log=c:\temp\tbl1.log
    SQL> select * from tbl
    2 /
    ID NAME CITY
    1 tom newyork
    SQL>
    SY.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Retrieving stock quotes using concatenate

    I've read most of the posts on downloading stock quotes and I haven't quite found the answer to my question, so here goes a new discussion...
    I have a table of 57 ticker symbols that I follow. The table grows and shrinks regularly as I find new companies to follow and remove ones that don't meet my needs. Each ticker symbol is listed in column A of my DATA table and each row contains all the various data for that symbol. Here's a small section of that table as an example...
    Ticker
    Review Date
    S&P Stars
    Price
    AAPL
    May 17, 2013
    5
    444.95
    ACN
    May 17, 2013
    4
    82.95
    AFL
    May 17, 2013
    5
    55.69
    AMP
    May 16, 2013
    3
    82.12
    ARG
    May 17, 2013
    2
    103.77
    BBL
    May 19, 2013
    3
    58.38
    I've created a CONCATENATE formula to combine the ticker symbols into a single cell (C12):
    =CONCATENATE(Data :: A3,",",Data :: A4,",",Data :: A5,",",Data :: A6,",",Data :: A7,",",Data :: A8,",",Data :: A9,",",Data :: A10,",",Data :: A11,",",Data :: A12,",",Data :: A13,",",Data :: A14,",",Data :: A15,",",Data :: A16,",",Data :: A17,",",Data :: A18,",",Data :: A19,",",Data :: A20,",",Data :: A21,",",Data :: A22,",",Data :: A23,",",Data :: A24,",",Data :: A25,",",Data :: A26,",",Data :: A27,",",Data :: A28,",",Data :: A29,",",Data :: A30,",",Data :: A31,",",Data :: A32,",",Data :: A33,",",Data :: A34,",",Data :: A35,",",Data :: A36,",",Data :: A37,",",Data :: A38,",",Data :: A39,",",Data :: A40,",",Data :: A41,",",Data :: A42,",",Data :: A43,",",Data :: A44,",",Data :: A45,",",Data :: A46,",",Data :: A47,",",Data :: A48,",",Data :: A49,",",Data :: A50,",",Data :: A51,",",Data :: A52,",",Data :: A53,",",Data :: A54,",",Data :: A55,",",Data :: A56,",",Data :: A57,",",Data :: A58,",",Data :: A59)
    Returns to cell C12 the following:
    AAPL,ACN,AFL ...  WMT,YUM
    I then use the next formula to retrieve updated quotes from the Yahoo website:
    =HYPERLINK("http://finance.yahoo.com/d/quotes.csv?s=" & C12 & "&f=snl1d1","Download Prices")
    Once the quotes.csv is downloaded, I copy and past the stock prices into my Data table.
    Now to my question:
    Can the CONCATENATE formula above be simplified so that it's easier to add or remove cells?
    If I add a bunch of new symbols to the Data table then I have to remember to add each new cell to the formula above. Or, if I delete a bunch of symbols then I delete the same number of cells from the formula.
    This is a great example of the need for a range of cells in CONCATENATE.
    Perhaps some programmer can get create and allow =CONCATENATE(Data :: A3:A59,",") where A3:A59 is the range and "," indicates an optional separation character.

    You can implement like:
    The top table is name "Download Link" and is a single-cell table.  The bottom table contains your ticker symbols and has a column which concatentates the previous list with a new sysmbol-- you can hide column B.
    B2=B1&IF(ISBLANK(A2), "", IF(ROW() = 2, "", ",")&A2)
    select B2 and fill down as needed.
    In the top table "Download Link"
    A1=HYPERLINK("http://finance.yahoo.com/d/quotes.csv?s=" & OFFSET(TickerTable :: $B$2, ROWS(TickerTable :: B)-2, 0) & "&f=snl1d1","Download Prices")
    This takes the fully concatenated string from column B of the ticker table.  If you change the name of the tables adjust them in the formulas.

  • Need to get a listing of all users and their corresponding Exchange 2013 Mailbox Quotas using Powershell

    I will be changing the default quota on mailboxes soon, but there are a number of others who have "customized" quotas and I will need to identify them also.
    Charlie

    The following powershell command can get you the mailboxes that are using "custum "quota:
    Get-Mailbox -Resultsize unlimited | where-object {$_.UseDatabaseQuotaDefaults -eq $false}

  • Creating Quote using Quoting APIs

    Hi,
    I am using the following method, trying to create a Quote from OA.
    oracle.apps.qot.core.Quote.create(ControlRecord controlRecord) returns void
    Since the method return void, I could not fetch the Quote details, of the created quote, like quote_header_id, etc.. also am not sure weather the Quote has been created or not.
    Plz help me with this, also what values shoud be assigned to ControlRecord object for creating a valid Quote.
    Thanks,
    Adarsh

    Hi,
    Below is the description obtained in the quoting implementation guide.
    create(ControlRecord) Creates a quote with the attributes populated in this quote
    object. Quote header ID, last update date, and quote number
    will be populated in the quote header after the quote is
    created. This API should be called within a transaction block.
    public void
    create(oracle.apps.aso.quote.ControlRecord
    controlRec)throws FrameworkException, SQLExce
    ption, QuoteException
    As per this description it should populate Quote header ID, last update date, and quote number . So i am trying to fetch the quote header id and it is showing null.
    Is there anything which i am missing in the code?
    Regards,
    Mithun

  • Does increasing Exchange Storgage Quota use more disk space immediately?

    Exchange does not use the space immediately, it just allows each mailbox to grow up to that size.
    I would consider carefully before increasing the quota limit. One of the reasons for having a quota is to keep mailboxes to a manageable size. Every GB of size costs a heck of a lot more than just the GB on the spindle.

    Hi
    The current policy is a 20Gb limit. Thanks to a post I made in this forum, I know that 21 of the users are nearing this limit.
    Now I can increase the limit for those 21. Or I can change the policy to 25Gb for everyone. If I increase it to 25Gb for everyone, does Exchange use the disk space immediately? Lets say I had 1000 Gb free, and 150 users. Does increasing by 5Gb mean that 5x150 = 750Gb is now allocated? Or does exchange use the disk space as required?
    Thanks
    This topic first appeared in the Spiceworks Community

  • Single quote used with in text data renders to inalid display

    I have the following text snipit that is coming from an Oracle database column: ...did not include 'special decontamination'. New ...
    I am putting this into a pretty standard text object.  When the report is previewed and subsequently printed as a PDF each single quote is transformed to the text string &_#_3_9_; code (without the underscores). This also occurs for quotation marks appearing as &_q_u_o_t_; and ampersands appearing as &_;_a_m_p_;
    I've tried changing the text interpretation property from none to rtf and, with a refresh, nothing changed.  It is hard for me to believe that no one else has seen this but since you can not search the forum for this string (as it converts it to the single quote) may not one has asked.
    Thanks in advance.

    Hi Don,
    The CLOB would do it. 
    Not sure there is a way around this aside from how you've already been dealing with it. 
    To simply your formula a bit, you don't need to do a loop just have it check for each of the tags like:
    stringVar TempText := {PPR_Main.CONCERNS};
    TempText := Replace (TempText, '&_#_3_9_;', "'") ;
    TempText := Replace (TempText, '&_;_a_m_p_', "&") ;
    TempText := Replace (TempText, '&_q_u_o_t_;', '"') ;
    TempText
    I agree though that there may be other tags added later on based on other characters so it could be infinite.  Try the common characters like Exclamation and Question marks. 
    Good luck,
    Brian

  • Error while generating quotas using RPTIME00

    Hi ,
    I created the quotas and did configuration in T559E, t559L , t559D. given quomo return value as 01 and also maintained the same 01 in T559L for quota type sel. group .
    but when i tried to run report RPTIME00 i got the error as follows
    STOP: No rule under key $ TMON ****
    Technical error no. 57
    01.06.2008 processing terminated for EE 0009009
    please help me to solve out this error.
    Akhil

    Thanks Gurus...
    Now i am able to run PT60(after i assigned the grouping in emp sub group grouping for PCR and CAP)....but not able to see the absence quota in PT50...
    i maintained 10 leaves in T559E and the same value is refkectd in T559L also...but after running PT60 i am not able to see the quota in PT52
    please let me know the way to check the result.
    Akhil

  • Not able to use filed-get macro

    Hi Experts,
    I am trying to develop a small web aplication in integrated ITS. My web page containes a textarea and a pushbutton . In the PAI of the modulepool i have includede the below code.
    lv_next = 1.
      DO.
        CLEAR   lt_text.
        REFRESH lt_text.
        field-get 'GT_SCR_SPEC_NOTE' lv_next lt_text lv_datalan.
        IF sy-subrc = 0.
          READ TABLE lt_text INDEX 1.
          gt_scr_spec_note-text = lt_text.
          APPEND gt_scr_spec_note.
          lv_next = lv_next + 1.
          IF lt_text IS NOT INITIAL.
            lv_last_not_blank = sy-tabix.
          ENDIF.
        ELSE.
          lv_last_index = sy-tabix.
          EXIT.
      ENDIF.
      ENDDO.
    I have defined all the variables perfectly and in the front end I have included the textarea tag like this
    <textarea style="font-family:courier;font-size:11px;"
                  id="GT_SCR_SPEC_NOTE:132[]" name="GT_SCR_SPEC_NOTE:132[]"
                  cols="40" rows="4" wrap="physical" title="`#AREA_INFO`">`
                  repeat with r in GT_SCR_SPEC_NOTE;write (r, "\r\n");end
                  `</textarea>
    When I reied to debug the program from the front end, when the control comes to the field-get macro it is going to the FM ALEWEB_GET_CONTEXT in that the parameters are passed correctly like
    FIELDNAME = GT_SCR_SPEC_NOTE
    GT_SCR_SPEC_NOTE =   1
    In this FM there is a call to another remote FM ALEWEB_GET_CONTEXT_EXT this FM is raising an exception saying "invalid_index" ( sy-subrc = 2). But the fieldindex field is filled with value 1 when this FM is called. I could not get into this FM as it is a RFC.
    can anybody please let me knoe what might be the problem (or) if you have any sample code for transferring the data from the web to the r/3, please provide me with the sample code.
    thanks
    sankar

    Hi,
    I have a similar issue, with integrated ITS on SRM 5.0 in a migration project. When I try to register the certificate into USREXTID, before was implemented by the next steps:
    1.- field-get '~http_auth_cert' 1 usercert_base64_c_tab certlen.
    2.-  CALL 'SNC_ABAP_INFO'  ID 'OPCODE'    FIELD get_cert_info
                            ID 'CERT'      FIELD usercert_base64
                            ID 'CERTLEN'   FIELD certlen
                            ID 'SUBJECT'   FIELD subject
                            ID 'ISSUER'    FIELD issuer
                            ID 'SNUMBER'   FIELD serialno.
    But, now the call to makro field-get not work whit the param '~http_auth_cert' , and I have to pass the value DN of the certificate (CN=name- NIF xxxxxxxy, OU=xxxxxxx, OU=xxxxxx Clase x CA, O=xxx, C=xx), and works fine executing the next ALEWEB_GET_CONTEXT function. Then the call to system function 'SNC_ABAP_INFO', returns subrc 300.
    In this version, the standar service certmap do it similar.
    Sorry, can anybody help me.
    Tx and regards.

  • How to know if a MRP run element is using Quota Arrangement and lot size?

    Hi all,
    Two questions:
    A) How to determine if a source is actually pulled from Quota Arrangement?
    I am wondering if there is anyway from ABAP table or from Transaction (i.e. Purchasing Order) in which the source is pulled from a Quota Arrangement?
    We use scheduling agreement, PIR and source list, and as well as Quota Arrangement for our purchasing.
    I just want to know how, from system (table and transaction), to find out the source is from quota, not from PIR or others.
    B) Quota Arrangement still can work properly if lot-size procedure's splitting quota indicator not Checked?
    If my the lot-size procedure which I am using for a material does not activate the splitting quota indicator, it means split quota will not work during MRP run.
    But does this also mean that quota arrangement will not be working for this particular material even if I have create a a quota arrangement object (via MEQ1) for this material?
    Thanks
    Daniel

    Tomek,
    If I want to use the split quota, it seems there is some pre-requisite.
    If you go to MEQ1 and press F1's on the "Minimum qty split" column, and you will notice the following message.
    Allocation by quota using splitting quotas is only carried out via a requirement planning run, subject to the following preconditions:
    Through the appropriate entry in the field Quota arrangement usage (on the MRP data screen 2 or Purchasing screen) it must have been specified that a quota arrangement is to be applied in the planning run.
    The indicator for the splitting quota must be set for the the lot-sizing procedure used for materials planning purposes in Customizing.
    Hence, the quota arrangmeent still workable even if the lot-size does not have the spliting quota box checked?
    Indicator: Splitting quota in short-term horizon
    The indicator for splitting is used to determine that in the case of the selected lot size, the quota arrangement is to be applied using the splitting logic.
    Use
    If this indicator has been set, the lot is split up in the planning run according to the following formula:
                                quota for source X
    Quantity for source  X = --------------------- * requirement
                               sum of all quotas

  • When I reply to or forward emails using Horde webmail, the original email is not 'quoted' consistently.

    This started happening about 7-10 days ago. I use Horde to get mail online. Suddenly, when I would hit reply or forward the original email would not be quoted. I had changed nothing in any of my preferences.
    Since then, it has been spotty and intermittent. Sometimes, reply is fine; other times, nothing. Sometimes, reply will not even paste in the person's email or the subject line. Same with forward. Sometimes, it is fine. Mostly, it is not. There are three settings for forward: entire message, Body Text and Body Text with attachment. The original message will often be quoted using Body Text or Body Text with attachment, but not Entire Message. However, at least 50% of the time it will not come up using anything. I had my ISP check this since it seemed to be synchronous with a PHP upgrade they applied to the server. However, the tech could find nothing and there seemed to be no problem using Chrome.
    Any ideas?
    Thanks

    This is an extremely weird issue! I would suggest safe mode.
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

Maybe you are looking for