AP API package for deleteing AP INVOICE

Dear All
We are looking for AP API package for deleteing AP INVOICE. Can anyone please tell me where can i find that package.
Regards
Musaddaq

We are looking for AP API package for deleteing AP INVOICE. Can anyone please tell me where can i find that package.Please see this thread -- Api Delete ap invoice
Thanks,
Hussein

Similar Messages

  • Find accounting document for deleted incoming invoice document

    Hi all,
    I have few ncoming invoice documents which were deleted. those documents i can see in RBKP table.
    I want to trace the accounting documents for those deleted documents.
    Can any one help me to find the accounting documents for deleted documents.
    thanks in advance.

    Hi,
    this might give you an idea:
    data: l_belnr like bkpf-belnr, l_gjahr like bkpf-gjahr.
    clear: l_belnr, l_gjahr.
    data: l_string(20) type c.
    clear l_string.
    data: l_belnr_2 like bkpf-belnr, l_gjahr_2 like bkpf-gjahr.
    clear: l_belnr_2, l_gjahr_2.
    select belnr gjahr from rbkp into (l_belnr, l_gjahr)
    where rbstat = '2'. "Status = deleted
    concatenate l_belnr l_gjahr into l_string.
    select single belnr gjahr from bkpf into (l_belnr_2, l_gjahr_2)
    where awkey = l_string.
    write: /'FI', l_belnr_2, l_gjahr_2, 'MM', l_belnr, l_gjahr.
    endselect.
    Note that the key here is AWKEY.
    Best regards.
    Edited by: Pablo Casamayor on Apr 13, 2009 3:03 PM

  • API packages for Microsoft Project or Primavera

    Hi,
    I am working on a web project where one of the requirement is, when user completes and submits his project data, the data should be displayed in ms project or in Primavera format in a separate window. Can any body tell me is this feesible, if so do we have any java based API's for this.
    Please advice and thanks in advance
    Regards,
    Kiran Bachu

    we are in the analysis phase, currently i am doing fesable analysis. This is going to be a web application only. My requirement is, project task data such as task name, start date, end date, predecesor, resource name etc., will be available in a database and these data should be shown dynamically in .mpp format or in primavera format, the way we can create .pdf file dynamically. I would like to know whether this is possible or not,if possible how to procee..?
    Thanks again for your response and will be looking for your reply
    Regards,
    Kiran Bachu

  • What Are Some Good API Packages For Bar Code Scanners?

    Hi,
    I am trying to write a program where a user can scan a bar code on a part and it's information will be matched on our database and retrieved from there. My main problem is finding a good package and method to take bar code scanner inputs on a desktop computer.
    If any one could point me in the right direction, that would be very helpful.
    Thank you,
    ~B

    There aren't any classes in the API to do that, but there are 3rd party libraries that can do that. Just google.
    Kaj

  • Need sugetion  for deleting credit card Transaction (i-Expense)

    Hi,
    I have few credit card transaction records in i-expense .
    these records are not required by customer and he want to delete these data.
    is there any API available for deletion of these records or any work arround.
    Thanks in Advance,
    Ajit

    Not aware of any supported methods to delete the Credit Card transactions. Instead you could run the "Credit Card Historical Transactions Management" program with a value for the parameter Process set as "Deactivate Transactions" for a range of posted dates, for a specific card number. This will remove the transactions from the available list of transactions for the user

  • Deletion parked invoice document

    Hi Experts,
    I have company code (ausbk), document number (belnr), fiscal year (gjahr ), using these parameters I need to delete parked document.
    Please suggest how to write code or function module for deletion parked invoice document.
    Thanks & Regards,
    Sridhar

    Hi,
    You can use a BDC for the same. Create a recording using SHDB or SM35 => Recording.
    Best regards,
    Prashant

  • ODI KM for Deleting members in Hyperion Finance

    I am trying to write Knowledge Module in ODI for deleting members in Hyperion Finance. But not finding any API method for delete and no documentation on that. Please share if someone have sample about delete on hyperion finance.
    Thanks

    It is possible using the standard IKM SQL to Hyperion Planning.
    I did it using an Update to the Planning Metadata Dimension and passing a value to the Operation column.
    I got the following information regarding the Operation column from the HAL documentation.
    Operation—takes any of the following values:
    <ul><li>Update - adds, updates, or moves the member being loaded
    </li>
    <li>Delete Level 0 - deletes the member being loaded if it has no children
    </li>
    <li>Delete Idescendants - deletes the member being loaded and all of its descendants
    </li>
    <li>Delete Descendants - deletes the descendants of the member being loaded, but does not delete the member itself</li>
    </ul>
    The default is Update.
    Note: If you delete a member, that member, its data, and any associated planning units are permanently removed and cannot be restored.
    Good Luck, hope this is helpful
    Wayne Van Sluys
    TopDown Consulting

  • Api Delete ap invoice

    Dear Oracle man
    kindly , I want to delete ap invoice from system programmaticaly using api's
    can you send me api's to perform delete ap invoice
    Thanks

    Hello,
    System will not allow to delete any invoice once it is created as it will lose the data integrity. In fact till 11i , there is no API available for creation of AP invoices , we have to use open Invoice interface for the same.

  • API for Delete address

    Hello Group,
    Just want to check any one know if there is an API for deleting the address. I have check the hr_person_address_api there is no procedure known as delete_address
    I am using Oracle 11.5.10.2
    I have opened the hr_delete_person_api and found that oracle is doing
    begin
    delete    from per_addresses a
    where    a.person_id    = P_PERSON_ID;
    exception
    when NO_DATA_FOUND then
    hr_utility.set_location('HR_PERSON_DELETE.DELETE_A_PERSON', 2501);
    end;
    Looking forward for a suggestion before using delete on the database
    Thanks,
    Nitin Singh

    Hi Hussein,
    I have seen that paper before logging the case. I was not able to understand what oracle has asked to do in 4 th step (what should be there in wrapper what api) nothing is mentioned.
    Please can you guide me if possible.
    The first question to ask is why you want to delete addresses.  It is your data and your decision what to keep and what to delete.  However, there are no publicly callable APIs that provide a batch delete function for addresses.  There is a non-public API found in the address form, but before using this there are several things to think about.
    *1. Deleting addresses deletes history from your instance. Is this really what you want to do?*
    *2. Try it in a test instance first.*
    *3. Back up the table before you delete anything. As an example, use this command to create a backup table:*
    create table PER_ADDRESSES_05122005
    AS   select from per_addresses;*
    *4. A wrapper must be written for the API to select the records to be affected. What records do you want to delete? For example, if you want to delete all addresses that are not primary, then you could be deleting some valid secondary addresses. Or, if you want to delete addresses that do not have an end date of 31-DEC-4712, you could be deleting addresses from terminated employees (address date end dates on date of termination). The conditions on what records to delete must be carefully considered.*
    Thanks,
    Nitin Singh

  • Business package for Invoicing clerk

    Hi all
    I would like to know where I can download the Business package for Invoicing clerk for ECC 6. I was looking for it in ContentPortfolio, but I couldnt find any specific package for that.
    I will be very thankful for any guidance I get on downloading, installing and configuring the Business package for Invoicing clerk.
    Regards
    Mui

    Dear experts
    This is very urgent. Kindly help me..
    Regards
    Mui

  • ERP Package for client deletion

    Hi experts,
    I have a problem when I do the client deletion using the process type"ERP Package for client deletion".
    After the first time execution of deleting the datas of table TD09P_*...,
    I received the follows below.
    State of sub-activity  State Sub-activities
    Aborted                                  5
    Completed successfully              10,203
    Completed with warning                   0
    Completed with error                     0
    Running (In process)                     0
    Not yet started                          0
    There are 5 aborted jobs
    (TD09P_T313I
    TD09P_T313J
    TD09P_T313K
    TD09P_T313L
    TD09P_T313LD).
    I checked the logs, which said all these 5 like this:
    Message text
    Job started
    Step 001 started (program /TDM/9_300_90007_02208_C, variant &0000000000007, user ID LEEE03)
    Error while reading cluster CNVMBTCLU, Key 0144703489
    Job cancelled
    I searched in note1175565 and found that it was fixed since I have updated to sp11 already.
    Also I tried to re-run the cancelled jobs manually using sm37, the error is like this:
    Job started
    Step 001 started (program /TDM/9_300_90007_02208_C, variant &0000000000007, user ID LEEE03)
    Session ID C1290007000000000010 is not valid
    Job cancelled
    according to these above, could anyone tell me the reason?
    Thanks& Best Regards,
    Eric

    Hi
    I had the exact same issue, and what i have found was that the tool drop all the authorization data and if you had specified a cust profile that handle the RFC authorization then the RFC connection to the receiver system then no longer works.
    The way I managed to solve the issue was to change the SAP_TDMS_MASTER role and added in object S_RFCACL with all permissions and generated and activated it.
    This allowed the RFC to work again and then you could restart the process from the central system
    Regards
    Alex Tender

  • ODI package - how to watch for delete of records in a table

    Hello,
    Using ODI package, I am using ODIWaitForData on a table. This works for Inserts/Update, but what do I need to do in a package to do Change Data Capture for Delete?
    Thank you.

    If your data store is in CDC and you are setting the property named Journalized data only at the interface level then you can set the IKM property named synchronous_jrn_delete . It will take care of the delete operation .

  • Table API Extension for Oracle SQL Developer

    I just created small project [Table API Generator for Oracle|http://code.google.com/p/tapig/].
    Idea is to only maintain tables and generate table API (TAPI) packages for data manipulation.
    Generated:
    - insert, update, delete, querying procedures
    - documentation based on table columns comments
    Do you think it will be useful to have custom Table API Generator as extension for Oracle SQL Developer?

    Never used them myself and quite legacy, but I'm sure there's still a lot of people using them and the basic idea is quite nice.
    This would also qualify perfectly as a User Defined XML Extension for sqldev; little work but big results. Even if you were the only one using it, it would still pay off.
    Have fun,
    K.

  • Adobe Creative Cloud Packager for macintosh fails

    Adobe Creative Cloud Packager for macintosh fails.
    The error log says "[ERROR] AdobePackageBuilder -  AdobePackageBuilder : SendPacket returned error : -1".
    I tried 4-5 times.
    Everything is downloaded (took about 14 Gb).
    I now have only 12Gb free space on my disk. Can that be the reason (will the packager need to make a copy of the downloaded stuff?).
    When I am done, how do I reclaim the space eaten by the packager?
    Seems like it is caching it at ~/Library/Application Support/Adobe/CCP, but will I manually have to delete that cache?
    I cannot find a menu entrance for doing so.
    Would be nice if the packager could use a mounted network disk as destination, but it seems not to discover these.
    /Peter Andersen

    Wanted to join in and say this has been happening to me too. I wiped every adobe file I could find, and used the cleaner too. Started over from scratch in a brand new user account.
    It's been about 7 days and I cannot get CCP to actually build a package. I've gotten a variety of messages but everything single time something fails. The new thing is that it says it fails on individual applications. So I disable them, and the error jumps to a new app. I can see that the .dmg's are fine and intact in ~/Library/Application Support/Adobe/CCP/
    Given the amount of time this has cost me I really wish I had purchased CS6 Master Collection for every workstation. From my perspective, Creative Cloud has been nothing more then a giant waste of time and effort. It's genuinely bad product from an IT management perspective. Why push off the job of building and installer onto the customer? I should just be able to download the full Master Collection dmg, and then turn on and off the apps I want. Instead I am stuck with a workstation down, and everyone using CC trials to work.

  • Error in code generation for deleting table BUT000_TD

    Hi,
    Did anyone encounter this error while working on EEWB ?
    I created the project extension via EEWB and completed the wizard setting with the package (dev. class) value as $temp as I wanted to test it locally.
    One of the errors, that I got is:
    Error in code generation for deleting table BUT000_TD
        Message no. DA464
    Diagnosis
        This error message indicates that internal inconsistencies exist.
    Procedure
        Please consult SAP.

    Hi,
    As I mentioned in my previous post kindly check the consistency of the structure BUT000_TD.
    Regards,
    Sudheer.

Maybe you are looking for

  • Backups are not being started....volumes do not exist?

    I am having issues where backup jobs are not getting started/completed. I can see in the "jobs" report that there are many attempts (sometimes 50+) to run the job, but it never completes. I believe the OSB software is looking for a volume that does n

  • Adobe Media Encoder CS4 White Overlay after encoding

    For some reason, when converting a .mov to .mp4 in AME, after encoding, the .mp4 video appears to have a white transparent (~50%) overlay after about 3 seconds that persists until the video ends. The beginning looks fine, but the overlay appears and

  • Priority on Destinations in a Broker?

    Hey, I've a bit of a problem with the JMS queue, it goes like .. I've 1 broker with 4queues/destinations in queue 1, 2 and 3 .. the consumer will possibly create a message to be put onto queue 4 If 1 + 2 + 3 are getting alot of traffic, I'm seeing th

  • Map directions won't load unless using current location

    Does anyone else have this problem with the Maps app? If I map a location, then ask for directions to or from my "current location," the routes display immediately. But if I try to use any other location (for example, from my contacts), it displays a

  • Windows can't start so I end up re-install​ing o/s

    Twice in the last week I have had to re-install the windows seven o/s because it would'nt start.  It seems to happen when windows tries to configure updates... How can I prevent this from happening ? This question was solved. View Solution.