Do we have any functionality to handle stale cheques in sap

Dear Guru's,
I need the functionality to handle stale cheques in sap.  If any configuration is required then plz let me know, it's urgent.
Thanks in Advance,
Kishore

Hi,
You have to void cheques individually.
What we are doing is that we have done a Z program calling FCH9 and created a BDC for mass void
in selection you give the date range so that you can choose a date prior to six months.
Get the help of an ABAPer
Assign points if useful
Sunoj

Similar Messages

  • My Email does not have any functions on the bottom bar?

    My Email does not have any functions on the bottom bar?
    I open an email and there no functions to delete forward or reply with.  Anyone have an idea?

    Hi
    Just to clarify what your saying under menu > settings > Connectivity the only option you can see is Bluetooth? There are no other options to select?
    Because under the connectivity menu you should be able to Network, WiFi, Bluetooth, USB, Settings, Connection manager, Mobile data tracker, Data Transfer, Video sharing, Admin settings and play via radio.
    All the options should be visible on the connectivity menu on a N8 with Nokia Belle installed.
    If you find this post helpful, a click upon the white star at bottom would always be appreciated.
    If it also solves your problem, clicking ACCEPT AS SOLUTION below it will benefit other users!

  • Do I have any function/way to divide the rows into un-equal size buckets?

    Just like the function NTILE divides the rows into almost equal size buckets, do we have any way to divide the rows into un-equal (randomly decide) buckets so that eg. I can get 4 rows in bucket_1, 38 rows in bucket_2, 17 in bucket_3, ..... Only things is that each bucket should have rows from 1 to 50. (fixed limit).

    with source_table as (select object_type, object_name from all_objects where rownum <= 100),
         t            as (select rownum as rn, s.* from source_table s),
         cnt          as (select count(*) cnt from t),
         bucket       as
         ( select bucket_id, bucket_width,
               sum(bucket_width) over (order by bucket_id) - bucket_width + 1 as rn_start
             from
             ( select level as bucket_id, ceil(dbms_random.value(0, 50)) as bucket_width
                 from cnt
                 connect by level <= cnt
    select bucket_id, object_type, object_name from t, bucket
      where rn between rn_start and rn_start + bucket_width - 1
      order by bucket_id
    ;

  • Do we have any functionality in OBIEE that does Rolling Difference

    Hi Gurus,
    In one of my report we have to calculate what is the Projected Available Inventory Quantity. The Report has columns for an Item number how much quantity has been planned for using which is GROSS REQUIREMENTS and the other one gives the BEGINING INVENTORY.
    The pseudo report, pivot view
    2feb 19feb 16feb 23feb
    Item 123 Gross Requirments 1 0 2 5
    Begining Inventory 659 659 659 659
    Projected Available 658 658 656 651
    I need to calculate this Projected available column the way we need to calculate is in the first coloumn we have 659 as Begining Inventory Gross Requirments as 1 so the projected available becomes 659 -1 =658. on 19 feb when i calculate the projected avaiable i should pick it up from the previous weeks projected available and subtract gross requirments from it so wheich will be 658-0=658 and then on 16 feb I have 658-2=656 and so on. How do I calculate this projected available column. Unfortunaetly I dont have access to the RPD :((
    Waiting for your inputs.
    Thanks in advance.
    Chary

    Try using RSUM().
    you can use Running sum in formula for that measure and tweak it to match your requirement.
    Vinay

  • Is there any function like malloc and free in labview?

    Im writing a vi that will handle my memory request.
    Im doing a very high speed video record sessions , and the frames cant be saves on hardisk in realtime), so im saving the frames on memory, and i want to use memory as
    much as i can(~2GB) and to save the maximum frames that i can save (and it depends on bit depth, height, width, total memory).
    VI Operations={
    Allocate Memory (frame width, frame height,TotalMemorySize) ,
    Add Frame(index) ,
    Get Frame (index),
    Free Memory
    In each record session, there will be a different FrameWidth and Height, so the maximum frame that i can save in memory may be different and equal to
    IndexMax=TotalMemorySize/(FrameWidth*FrameHeight)
    Im doing this by allocating a 3D array [FrameIndex , row , column]
    The fact that the width and height change in different sessions indicate  that i need an ability to free the previous allocated 3D array memory and allocate a new one.
    (lets say that i have 2GB total memory..)

    This request really takes the system and the programmer to the limits....
    First of all:
    LabVIEW does not have any functions like malloc and free. LV wants to prevent the user to have to think about stuff like this. On the other hand, the memory management in LV is therefore hard to do or even impossible, at least to such an extend as you request.
    Some thoughts about your application:
    1. If you want to have about 2GB of framedata in RAM during runtime, you will need the large memory awareness active. Otherwise, a 32 bit OS will give you "out of memory" messages. Refer to the LV help "VI memory usage".
    2. Storing the data in an array could be a difficult task. Arrays have to be in memory without any gap. Therefore, you'd encounter "out of memory" messages even if your RAM totals enough free memory (theoretical).
    3. The idea of linked-lists does not compy in LV since you cannot store pointers to structs (since those are abstracted from the user).
    4. Maybe you should take a look into vision. 
    hope this helps,
    Norbert 
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • Any function module for PIC01??

    Hi Guys,
    Could you please tell me, do we have any function module / BAPI for the transaction PIC01 - to create supersession....
    suggest me if any one worked on supersession conversion....
    -Mahesh.

    Hi Ragesh,
    try with requirements (in the VOFM area).
    Cheers,
    Stefan.

  • Any function module to transfer File(Excel)  from Appli Serveto Unix Server

    Hi all,
    Do you have any function module to transfer excel file from application server to Unix server.
    Can anyone have some sample code for the same.
    Thanks in Advance.
    Sreedhar Marri

    Hi,
            There is no function module ,instead use open dataset command.
    Syntax example,
    data: e_file like rlgrap-filename.
    data : txtstr type string.
    concatenate  searchpoints-dirname '/scm/' werks '/' filnam into e_file.
      open dataset e_file for output in text mode encoding default.
    loop at itab.
        concatenate itab ',' into txtstr.
         transfer txtstr to e_file.
      endloop.
    where itab is the contents u want to transfer.
    Pls check for required authorisations with ur BASIS for open dataset command.
    Regards,
    Balakumar.G.

  • Any function module or bapi to get sales order number and invoice number?

    hi all,
    with delivery order number provided, do we have any function module or bapi to get sales order number
    and invoice number?
    thanks.

    Hi,
    Check
    BAPI_SALESORDER_CREATEFROMDAT1
    BAPI_REMUREQSLISTA_CREATEMULT  Agency Business: BAPI Create Invoice Lists from Vendor Billing Documents
    BAPI_REMUREQSLISTB_CREATEMULT  Agency Business: BAPI Create Invoice Lists from Payment Documents
    BAPI_REMUREQSLISTC_CREATEMULT  Agency Business: BAPI Create Invoice Lists from Posting Lists
    BAPI_REMUREQSLIST_CHANGEMULT   Agency Business: Change Invoice List Documents BAPI
    BAPI_REMUREQSLIST_GETLIST      Agency Business: BAPI Determine Detailed Data for Invoice List Documents
    BAPI_REMUREQSLIST_RELEASE      Agency Business: BAPI Release Invoice List Documents to FI
    Edited by: Neenu Jose on Nov 26, 2008 8:53 AM

  • Do we have any kind of iview or workflow in portal

    Hello,
    Our company is trying to build seperate application for New user request goes to manager, then functional team lead, then to security to create a new user. Based on the position of new user, manager will allocate Tcode which he/she can use and functional team specifies the roles. To have this approval process in place, do we have any functionality availble in R3 or portals, to avoid to manage seperate application for this process.
    Thanks in advance for your suggestions.
    Regards.

    Hi,
    To meet the requirement you'd need to create a custom automated process or buy a 3rd party solution for this. This should however be relatively easy to develop with SAP's tools.
    There are two options for the implementation, SAP Business Workflow and Guided Procedures (NW2004s onwards). If you are doing the process company-wide and no other legacy systems are related, I recommned creating a new workflow template for this with Business Workflow. ISR can be used as the data framework as Krishna suggests.
    As ready to be used building blocks, you can use the standard SU01 and PA20/PA30 transactions as parts of the process. The approval and transaction code entry screens would however need to be custom developed.
    Best regards,
    Mikko

  • Any functional module to get financial document based on billing document

    hi all,
    do we have any functional module to get accounting document (bseg-BELNR) based on billing document (bseg-VBELN)?
    i have a requirement to retrieve the clearing document (bseg-augcp) & date(bseg-augdt) from BSEG with billing document.
    billing document is not a key, so i would like to retrieve the accounting document from any function module and use that to get clearing document (bseg-augcp) & date(bseg-augdt).
    thanks.

    hi all,
    i got other option to get this....thanks.
          select single * from bkpf
          where bukrs = <data>-werks
            and AWTYP = 'VBRK'
            and AWKEY = billing doc.
          if sy-subrc EQ 0.
            select single * from bseg
            where bukrs = bkpf-bukrs
              and belnr = bkpf-belnr
              and gjahr = bkpf-gjahr.
            if sy-subrc EQ 0.
              <data>-AUGDT = bseg-augdt.
              <data>-AUGBL = bseg-augbl.
            endif.

  • Urjent-Any function module for finding Sales order, Delivery and Invoic

    Hi Experts,
    I am having selection screen like
    Sales order
    Delivery
    Invoice
    Customer
    If i give sales order
             Delivery and Invoice should pull
    If i give delivery
             sales order and Invoice should pull
    If i give Invoice
             sales order and delivery should pull
    If i give customer
               all customer related data should pull
    Do we have any function modules to meet this reqirement?
    If we have please provide function modules.
    Thanks,
    mahe
    Edited by: Rob Burbank on Mar 30, 2009 4:17 PM
    Edited by: mahahe on Mar 31, 2009 9:12 PM

    You can use VBFA table, right? in the FM also, you can find the same logic, like pulling from VBFA table.
    thanq

  • SAP B1- Can we have the functionality of Indent to purchase?

    Dear All,
    Can we have the functionality of Indent to purchase in SAP B1-Client? If yes, kindly let me know the necssary steps.
    Thanks in advance..!
    Regards
    Rounak

    Hi Rounak.....
    This is your duplicated thread with same doubt so please close this one...
    Any ways.....
    Hi Rounak......
    Purchase Indent is not as such there in B1 but you can get it done by having approval procedure on Purchase Order level.
    Purchase before approval is nothing but Indent....
    Regards,
    Rahul

  • Any function like While in XSLT

    Hi All,
    Do we have any function in XSLT which works like while..
    I mean when some condition is violated it should come out of the loop..
    Regards
    PavanKumar.M

    Hi Shanmu,
    Thanks for the reply..
    I am not trying to do the generation but i am trying to do transformation based on a condition.
    Below one is my requirement..
    we have an XML like below
    <Stops>
    <Stop>
    <RequestStartDTTM>2009-12-09T05:02:02.000Z</RequestStartDTTM>
    <RequestEndDTTM>2009-12-15</RequestEndDTTM>
    </Stops>
    </Stop>
    <Stops>
    <Stop>
    <RequestStartDTTM>2008-12-09T05:02:02.000Z</RequestStartDTTM>
    <RequestEndDTTM>2008-09-13</RequestEndDTTM>
    </Stops>
    </Stop>
    <Stops>
    <Stop>
    <RequestStartDTTM>2007-12-09T05:02:02.000Z</RequestStartDTTM>
    <RequestEndDTTM>2007-09-05</RequestEndDTTM>
    </Stops>
    </Stop>
    <Stops>
    <Stop>
    <RequestStartDTTM>2006-05-08</RequestStartDTTM>
    <RequestEndDTTM>2006-07-23</RequestEndDTTM>
    </Stops>
    </Stop>
    Here the condition is, the first Stop RequestStartDTTM should be less than next stop RequestStartDTTM, if it violates this condition we have to adjust second stop RequestStartDTTM such dat it shd be 1 min grater than first stop RequestStartDTTM.
    So i am checking second stop RequestStartDTTM with first stop RequestStartDTTM... and i am adding 1 min to RequestStartDTTM and assigning that value to RequestStartDTTM.
    Now while checking third stop RequestStartDTTM i have to check with second stop RequestStartDTTM .. but here we have changed second stop RequestStartDTTM (i think which is not possible to get that value which we have changed). How can i compare the third stop RequestStartDTTM with the changed second stop RequestStartDTTM.
    Here we should not use sort because the customer is sending the data in this manner and we have to manipulate and do the transform..
    If i am wrong plz corret me..
    Regadrs
    PavanKumar.M

  • Using a dll function that does not have any inputs from a VI

    Hello all, I'm very new to Labview, I have wraped a dll library using the LVlib wizard and now I am trying to use it in a project.  I have a function that does not take any inputs or return any thing except that a struct is populated with some status information as part of the call.  I am able to draw a StartInterface VI because my void startInterface(const char* configFile, struct status_struct* status) takes the location of a configutation file as an input. But I can not figure out how to connect my Call Library Node to my a function vi that does not have any inputs ( void shutdownInterface(struct status_struct* status)). 
    Note that the status struct is deffined to be only and out put at the creation of the LVLIB.
    Thanks, Mike

    Thanks for the responses guys:
       I think I am aware of the conotations of inputs and outputs when I created the lvlib I specified the argument  struct status_struct* status as only an output instead of the default of input and output.
    I do not think that I am doing anything as complex as function callbacks. My immediate goal is to have an executable (I have application builder) with two buttons and two three text fields one text field for the input of the config file, two text-fields for a cstring that is contained in the status struct; one button to start the interface and one button to stop the interface. 
    This is in all likely hood a case of my self being too dense and missing something fundimental ;-)  I just can't figure out how to wire the shut down method after I've configured the call library node. See the attached pictures:
    Attachments:
    Start.jpg ‏7 KB
    shurtdown.png ‏9 KB

  • Have filter function in iOS' numbers? Any one can teach me?

    Hi, any one know in iOS' number have filter function? I really no idea about this. Who can teach me?
    Thanks....

    You can read the online Numbers guide here: http://help.apple.com/numbers/ipad/2.2/

Maybe you are looking for