Field DLN1.OpenCreQty not disposable via DI API

Hello,
I don't find the field in the subject.
Isn'it present or does it have another name?
I have to obtain only the Open Qty net from Return.
How is it possible?
Thank you
Andy

Maybe check here:
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/c5f5dbcc-0a01-0010-5d82-f25f2bee715e
HTH,
Frank

Similar Messages

  • Corrupt Credit Note created via DI API

    Hello,
    when i try to create a credit note via di api i get the error message "one of the base documents has been closed", even if the source document is not closed. But this is not the main problem. After this i have a corrupt credit memo in my system, that means a credit memo with out any detail lines. The error occurs only on one customer systems, on a lot of other systems the creation of credit notes works fine. Had anybody the same effect or clue what causes this problem.
    Regards

    Hello we found the problem, i can reproduce it on a belgium database.
    I want you to inform about a critical error in the SBO_SP_TransactionNotification.
    If you check the line data of a document and send an error for this data the front end works fine. But if you use the DI-API the header data of document will be saved and the lines will be not saved.
    if @object_type in ('14','19') and @transaction_type = 'A'
    begin
    declare @corrCRD as varchar(8)
    if @object_type = '14'
    set @corrCRD = (select distinct(correction) from ovtg where code in (select vatgroup from RIN1 where docentry = @list_of_cols_val_tab_del) and correction = 'N')
    else if @object_type = '19'
    set @corrCRD = (select distinct(correction) from ovtg where code in (select vatgroup from RPC1 where docentry = @list_of_cols_val_tab_del) and correction = 'N')
    if @corrCRD = 'N'
    begin
    set @error = 1
    set @error_message = 'You have entered a regular VAT Code on the document, this is not allowed'
    end
    end

  • Newly created Image not listed via REST API

    Hi,
    I have created a image in azure console .Its created successfully and i could see the created image under "Image" tab in console.Also, the image created with the name appending current date, it was not before.But when I am trying to list images by
    using the below REST API its listing images except the newly created images that have the  name appended with current date.
    https://management.core.windows.net/5f2fe4c3-23b3-45c0-a70c-9560b79dcf56/services/images
    header values:
    x-ms-version : 2012-03-01
    Content-Type : application/xml
    Host: management.core.windows.net
    This makes me fail to launch new VM via REST api.I got the response as follows
    <Error xmlns="http://schemas.microsoft.com/windowsazure" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"><Code>BadRequest</Code><Message>The image vmyffdd-20140605-813455l does not exist.</Message></Error>
    Please look into this.

    hi,
    From the error, your request parameter was incorrect. I guess your image name may be wrong. How did you write your Image name and url? I suggest you don't forget the '.VHD'. Also,if you use the
    VMImageName element which is only available using version 2014-02-01 or higher
    And I suggest you could try this code sample about how to using REST api to create VM :Simple Windows Azure REST API Sample Tool
    Please try it.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • MISSING FUNCTIONALITY-The field "VatIdUnCmp" is not exposed in DI API & DTW

    The field "VatIdUnCmp" (Unified Federal Tax ID) is not exposed by the
    DI API and therefore not available in DTW.
    This is a missing functionality.
    In order to have this non-legal requirement, as request in the note 1028874, I send this development request
    Thanks for your cooperation.
    Fabio Fambrini

    Maybe check here:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/c5f5dbcc-0a01-0010-5d82-f25f2bee715e
    HTH,
    Frank

  • Acl Entry is not removed via KM API

    Hi,
    I want to update or remove an ACL Entry for a user on a certain resource.
    For ex. If for a resource A, User "User1" has READ permissions, now if I want to remove these read permissions for user "User1" on this resource A, I am not able to do so using KM API.
    The code which i am using for this is
    resourceInfo is of Type IResource.
    // Get the Acl Security manager.
    IAclSecurityManager aclSecurityManager = (IAclSecurityManager) returnResourceInfo.getRepositoryManager().getSecurityManager(resourceInfo);
    // Get the resourceAcl manager.
    IResourceAclManager resourceAclManager = aclSecurityManager.getAclManager();
    // Get the resource Acl
    IResourceAcl rACl = resourceAclManager.getAcl(resourceInfo);
    Here i am not having any method which remove the Acl entry for the specific user ex. "User1".
    Edited by: Lokesh Malik on Nov 13, 2008 9:57 AM
    Edited by: Lokesh Malik on Nov 13, 2008 12:13 PM

    HI Lokesh,
    this might help,
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/1070413a-29e7-2a10-cc81-cdc92cdd231b
    but you have to take into account that the resource can inherit the acl from the folder, so
    if the ResourceAcl is null, you can create an acl and assign the permissions you want for the resource.
    IResourceAcl ra = ram.getAcl(resource);
                   if(ra == null){
                        //"inherited permissions from the folder";
    // instead of taking from the folder
    //ra = ram.getInheritedAcl(resource);
    // create your own acl                    
    ra = ram.createAcl(resource);
    ra.addOwner(resource.getContext().getUser());
    // or whatever you need for this resource....
    ra.removeOwner(<IUMPrincipal>);
    Hope this helps
    Regards
    DV

  • How to determine host status in a task via python api

    Hello all,
    using the python api I am having some issues trying to determine the status of a host within a task. For example I have a job, with one task and 10 hosts associated with that task. Eight hosts finish the task, 2 fail. However via the api I can only seem to determine the status of the job and the task. What I want is to be able to generate a report that basically matches what you see via the gui (ie 8 hosts ok, 2 hosts failed). The data structure OnStageTaskData gives me a status and a list of hosts, but not a status for each host. (Note I am not using any of the depricated functions/data structures). Currently my code looks like (minus the api init, etc)...
    # list all the jobs for last week
    joblist = api.GetJobs()
    for job in joblist:
    # if the job occured in the last week
    if job.c_time > reportstarttime:
    print "\nJob name %s Time %s " %(job.name, time.ctime(job.c_time))
    try:
    jobdetails = api.GetOnStageJob(job.id)
    except COsApiJobNotFoundException:
    print "Can't find job %s details" %job.name
    continue
    for tasks in jobdetails.job_data.tasks:
    for hostid in tasks.task_data.target:
    try:
    hostinfo = api.GetHostGroup(hostid)
    except OsApiHostNotFoundException:
    print "Can't find host details %s" %tasks.task_data.name
    print "Hostname %s Status %s" %(hostinfo.name, tasks.status)
    which generates output like...
    Job name chg233146-sol9 Time Sun Jan 13 10:31:42 2008
    Hostname tacnomsrv02 Status Failed
    Hostname tacpthsrv01 Status Failed
    anyone have another way to doing this or suggestions? Or is this kind of info not available via the api? Thank you.

    Hi ConnectSolutions,
    As you correctly pointed out, there is some bug in our code
    that keeps the room active and you dont receive any events or
    notification if you are entering as guest and waiting and the host
    arrives. Also, since you havent entered yet i.e your role is still
    5 i.e. UserRoles.LOBBY , you can't access any of the UserManager's
    collections and will get a length of 0 always. We will be fixing
    this with priority .
    But you can get around the problem as of now, by having a
    small shared model of yours ( any collectionNode or sharedModel
    will do) where you create a node and publish a message on it from
    the Owner's side whenever the owner/host enters to notify everyone
    that he has entered. Just remember to set the accessmodel of
    NodeConfiguration of node on which you are publishing to LOBBY ie.
    role = 5 , and make the publishModel = 100 so that only owners can
    publish on this node. In this way , any users waiting will be
    receiving this message and will know the host has arrived. If you
    can't get this sharedModel concept to work, let me know. I will try
    to run on my side.
    And as of our side regarding actual fix, we will fix this use
    case and put in the next drop of SDK and also update in forum about
    it.
    On the host side though, he is always notified when he enters
    if there are pending users knocking to enter. See the KnockingQueue
    example in case you want to explore that.
    Thanks
    Hironmay Basu

  • Retrieve contact list  via the API not with the last updated date but created date?

    I can connect via the API and retrieve a list of contacts  but it seems that the only paramater i can pass is to search since the last Update  Date.
    Is it possible to search on the Created date and to have a date range as well?
    I found the xml result is slow to come as it gives all entries since the "lastUpdateDate" entered.

    A change in score does not cause the Date Modified field to change on the contact record. This field only changes when some data in one of the fields has changed.
    However, some of the confusion can come from the fact that lead scores have a Profile and Engagement portion. So if you have certain fields on the profile section being modified, that would cause a rescore at the same time. Engagement criteria such as form submits often cause the contact record to be modified while website visits and email clicks/opens do not.
    Hopefully this helps clarify,
    Bojan

  • PO from SO via DI API:Base document card and target document card do not ..

    HI All,
    I am trying to create Purchase Order from Sales Order. This is possible by GUI (on Sales Order on logistics tabs Click On Purcase Orders CheckBox.
    I got the error message: -5002-Base document card and target document card do not match.
    The message itself can be understandable, because the Customer and Supplier has a different CardCode.
    I am sure I am using a correct code
    oPo.Lines.BaseType = BoObjectTypes.oOrders
    oPo.Lines.BaseEntry = sDocEntry
    oPo.Lines.BaseLine = iLineNum
    Where oPo is a Purchase Order document.
    sDocEntry is a Sales Order docentry and iLineNum is a Line number of Sales Order
    For other A/R to A/R and A/P to A/P documents are working fine.
    Has anybody found this error or has anybody created application like this?
    I am using sbo2007PL46
    Regards,
    J.

    Hi guys,
    this is still on the suggestion page:
    Link existing Purchase Orders to (Sales) Orders via DI API : View Idea
    I tryed with 9.1 PL 4 and it didn't work.

  • How can one get/set ReplyTo field in mail message via GW API?

    Hi!
    Can anyone help me with that, please?

    You can not with the Object API.
    There is no plan to add the support to the Object API.
    You would have to use the SOAP API.
    >>> On Monday, October 26, 2009 at 9:14 AM, Vladimir
    Iofik<[email protected]>
    wrote:
    > Hi!
    >
    > Can anyone help me with that, please?

  • Add UDF to OPOR ,OINV ... via DI API

    Hello...
    i want to add a User Defined Field to Documents via DI API. Is this possible? And if its possible, please show me a way to do it thx
    best regards
    Matthias

    this is just what i have tried.
    But i found the mistake.
    The function always puts an "@" before the tablename if there is none. And thats not good
    thx
    Matthias

  • Extract image and Features from the Catalog via JAVA API

    Hello,
    I would like to Extract image from the Catalog via JAVA API, Can anybody help on that? I also tried to extract the Features field form the Catalog but results in the error "Features field not found" Any ideas what could have wrong?
    Many thanks,
    Dharmi

    Hello,
    Can anybody tell me where i can find the latest JAVAAPI reference guide? I found the one for MDM 5.5 SP 1 but that also refers to the last parameter of the CatalogCache.Init as int and not string.
    I looked up in service.sap.com/instguides -> SAP Netweaver -> Release 4 -> Installation and there only following 3 files are there for MDM 5.5 SP2
    MDM 5.5 SP02 - Configuration Guide  SAP MDM
    MDM 5.5 SP02 - Installation Guide   SAP MDM
    MDM 5.5 SP02 – ERP-MDM Field Mapping and Check Tables
    Regards,
    Dharmi
    Message was edited by: Dharmi Tanna
    Message was edited by: Dharmi Tanna

  • "This field name is not known" issue

    Hi SAP TechSupport Team!
    I have unresolved issue related to "This field name is not known" error while running my report via ReportDocument's function Export(). Before that I correctly gave all required parameters. This report work fine if I am using it with ReportViewer. I could not understand reason of that error. Please help to resolve this.
    CrystalReports is being used is the 10.5 version, in VS 2008. That report was created in CrystalReport 8.5 old version
    Thanks in advance
    Vasil Avagyan

    Hi Vasil,
    CR 8.5 uses old DB drivers. In CR 9 we completely re-wrote the DB drivers so likely what is happening is you either may have CR 8.5 on the same PC and VS is finding the drivers located in \windows\crystal folder or you simply need to update those CR 8.5 reports to CR 9 or above.
    FYI's:
    CR 8.5 still supported a CR Native SQL server driver, that driver is no longer shipped or supported, need to convert to ODBC or OLE DB.
    Parameter API's completely changed also, may be issue with Parameters too.
    CR 8.5 is not side by side compatible with any other version, remove CR 8.5 or put VS 2008 on a different PC that has never had CR installed on it.
    Don

  • DI: Stock Transfer error (Unique field value does not match the system ...)

    Hi
    I made an add-on that makes stock transfers via DI API. The add-on has been running for two months with more than 10,000 stock transfers with almost no problems.
    The company that is using the add-on have all their products managed by serial/batch numbers.
    But just with one transfer Im getting the error in the stock transfer Add() method:
    "Unique field value does not match the system serial number [(----)29-52]"
    And I tried to debug it without success, I checked that the system serial numbers exists in the origin warehouse and are available. And I really can't find where is the problem.
    If somebody knows what this error means, please let me know.
    Thanks in advance,
    Regards,
    Allan

    Hi János, thanks for your answer.
    I found what was the problem, it was not exactly what you told me, but you gave me some insights to found the problem.
    The thing is that Im using UDT's to store the information of stock transfers (before creating a real SAP stock transfer), because of the funcionality of the add-on. After some user have done some steps or validations, the add-on actually does the real SAP stock transfer.
    The problem here was that my tables had some InternalSerial for some Item, for example the serial A-234, and before the real SAP stock transfer was made, they changed the serial from A-234 to A234 (in the serial number management). So the add-on was trying to create the transfer with the serial A-234, but the serial A-234 no longer exists.
    I have to create a validation that if they change the serial number for an item, I have to change it in my UDT's.
    On the other hand, Im not sure, but I think that I read before that you made a Warehouse Management add-on. This add-on that Im working now is a kind of warehouse management.
    Im having a lot of headaches because the poor accessibility to the user fields in the OSRI and OIBT tables. Im sure that you have faced problems with this. If you have any tips or advices about this it would be greatly appreciated.
    Thanks again,
    Regards
    Allan

  • Creating a purchase document based on a sales document via DI-API ?

    Hello evrybody!
    I would like to create a PurchaseOrder based on an existing SalesOrder.
    I do that by copying and setting the propertys of those DI-API Document-Objects.
    I also set the Document_Lines.
    BaseEntry-
    BaseLine-
    BaseType-
    propertys to the type and corresponding numbers of the base document.
    But I get an error of the DI-API when adding the document, which tells me that the CardCode of the new document does not match the base documents CardCode.
    Thats true: the CardCodes do not match. But that's what we want when purchasing some items for a customer
    In the database (DocLines) I found a field "BaseCard". This is set to the CardCode of the source document when creating a purchase order by a sales order with standard SAP-functionality.
    But "BaseCard" is not exposed through DI-API and I can't test if it works if I could set this value.
    So isn't it possible to use the base***-propertys when copying from Sales- to PurchaseDocumnets?
    Thanks in advance,
    Roland

    Hello Roland,
    This is not possible. You cannot create PO from SO by DI ÍAPI.
    You can create only Via GUI, Using the Purchase Orders chekcbox
    Regards,
    J:

  • How do you reorder the pages in a PDF ie back to front (not individually via Page view)

    Sorry if this is in the wrong place or if this has been answered elsewhere but I couldn't seem to search "the database"
    How do you reorder the pages in a PDF ie back to front (not individually via Page view). The manual solution of course is to scan or import them in the correct order in the first place. However, this did not happen, and we have many PDF's which are 100% in the wrong order. So we would like to press a button and have them in the right order.
    Many thanks in advance for your help...

    Got it to work. It returned a completely different path of course just to make life interesting and required a FN+OPTION ENTER in order to return the path. I now have the FLATTEN option in the edit menu.
    Just trying it checking all the Flatten options except the fields seemed to work on the first pass. I'm going to try and load a copy of the original complete document. I assume that is the proper way to use this at this point since I created the form ***-backwards?
    I've used Adobe layout programs since the Aldus days but Acrobat seems to work differently than any other program I've used.
    If I understand what you're saying I should:
    1. Design the layout of the form leaving spaces for the fields
    2. Open Acrobat, import the document
    3. Auto-add and correct, or manually add the fields
    4. Fix tabbing
    5. Add any additional comments or annotations
    6. Flatten everything but the fields?  (If the fields are flattened I can't fill out the form unless it's supposed to be a printed form only, right?)
    Might just have to break down and RTFM.  Acrobat is a really different animal.

Maybe you are looking for

  • Converting from RGB to CMYK

    A client gave me a PNG made in Fireworks, and I need to pretty much convert this over to a CMYK file that I can send to a printer. SOme pointers would be greatly appreciated...

  • Boot camp displays "the installer disk could not be found"

    I have burned the Windows 8.1 .iso image 3 times and for some reason when I try to start the bootcamp utility I get the message "The installer disc could not be found"... I have the Win 8.1 Pro disk in my superdrive and nothing happens! Very frustrat

  • Bought new computer, transferred iTunes but lost all playlists

    I recently "upgraded" from an HP desktop with Windows XP to a Dell Studio XPS with Windows vista. I saved iTunes to an external hard drive from my old computer and then tried to transfer to my new computer. Ended up having to re-download iTunes and t

  • Can I have my apple purchases in two different iTunes library's on two of my separate Macs?

    I have two Mac computers, and I have one of them logged in with one of our apple ID's. Is there anyway I can also have the purchases from that apple ID put on my other Mac, while still keeping them on the computer that they are on?

  • Yosemite shutting down at loading screen

    Hi, I installed Yosemite a month ago and it has worked without any issues until now. The computer works fine and just this morning when I turn it on and log in my account it goes to the loading bar screen and when it reaches like 40% of the progress