Identify the source of Creating a Draft Document

Hi Everybody,
                    Anybody know how to identify a Draft generated by the wizard than other generated by the user (creating a document as a Draft) in the ODRF table, property DATASOURCE???
Thanks!!

Datasource field only identifies whether an  entry made through user interface or by some add on etc, since you are using the user interface, i dont' think any field exactly identifies, if the record was created by user or through some wizard.
Though in some particular transactions, it does stores that the record was created by a wizard. For example, in production order, it does identifies that the record was created by MRP wizard.
If you can be more elaborate regarding which documents you're trying to check, perhaps some exact way could be find out.
Rahul

Similar Messages

  • How can i stop the Action Wizard from putting the original file into the Source folder with my changed documents?

    How can i stop the Action Wizard from putting the original file into the Source folder with my changed documents?

    [discussion moved to Creating, Editing & Exporting PDFs forum]

  • How to identify the user who created the variant

    Hi All,
    Can anyone tell me how to identify the user who created the variant ?

    Hi Dear,
    For the same go to SE11 and view the table "VARID". This table give the details of the program,user,variant etc.
    From this table u can know which user created the variant. Hope this solve your purpose.
    Regards

  • How to Identify the Source System in a Transformation Rule?

    Hi,
       In a 3.x system if I needed to identify the source system, the interface had a parameter SOURCE_SYSTEM LIKE RSUPDSIMULH-LOGSYS. I do not see the same in a Transformation Rule. Can anyone tell me how can I make a decision in my transformation rule depending on the Source System?
        Say for instance I want to change the following Update Rule from a 3.x System to a Transformation in BI7:
    IF SOURCE_SYSTEM = 'ABC'.
       RESULT = 1.
    ELSEIF SOURCE_SYSTEM = 'A11'.
       RESULT = 2.
    ELSEIF SOURCE_SYSTEM = 'AZ1'.
       RESULT = 3.
    ELSE.
       RESULT = 0.
    ENDIF.
      Can anyone help? Points will be rewarded.
    Regards,
    Kazmi.

    Hi Siggi,
       But how would I know the Request ID within a transformation ? REQUID is the key of the table rsbkrequest ? The interface of the transformation method has the following parameters:
      IMPORTING
        request     type rsrequest
        datapackid  type rsdatapid
        SOURCE_FIELDS
       EXPORTING
         RESULT
    So all I can be aware of is the Request Name and the Data Packet Number. For instance when I took your approach, I got the Request Name as "DTPR_8E3VKVN0RJPDNXAKMP0PZJ99B" now I cannot look up with this against the key of the table because REQUID is a number field. Now, if I look up against the field "Data Transfer Process ID (DTP)" I do not find any entry in this table.
       Any more info?
    Regards,
    Thanks.

  • How to identify the source column and source table for a measure

    Does anyone have a query that I can use to positively identify the source column and source table for a cube measure in an SSAS cube?  Visual Studio shows ID, Name, and Source, but it is nearly worthless in a large cube and database.
    Also - the same for a dimension would be great.
    If no query exists for this, can someone please explain how to find the source column/table for a measure and for a dimension?
    Thanks.

    DMVs don’t expose the DataSourceView content. AMO is much better suited for object model operations like
    this than the DMVs. PowerShell is also sometimes an option, but in this case C# code would be much easier because analyzing the contents of the DataSourceView is much easier using the .Net DataSet class.
    Hope this helps.
    Reeves
    Denver, CO

  • Problems while saving the tax values in a Draft Document to AP Invoice

    Hi All
    I have an interface .net where I use a DIAPI to enter values in B1 2007 B (8.60.039) PL 15.
    I have the following cases:
    First case
    - I create a document type oPurchaseInvoices, where I set the tax values for IRPF, INSS, ISSQN (Brazil).
      When i execute the code that inserts this A/P Invoice in SAP, it works perfectly, including by setting the values of the taxes correctly.
    Second case
    - I create a document type oDrafts, and say that this draft is the type oPurchaseInvoices.
      After that I follow the same steps to launch a note entry, laying the tax values(IRPF, INSS, ISSQN) and everything else.
      When i execute the code that inserts this values in the draft, the tax values are not entered and that everything else works perfectly. 
    You can tell me whether the taxes really are not inserted when I issue a draft or I'm leaving to score some parameter.
    I am in the look of your response
    Regards
    Luis Felipe

    Hi Gordon.
    You can see below the part of the code to add the Draft Document.
    oAPInvoice = oCompany.SapCommand.GetBusinessObject(BoObjectTypes.oDrafts)
    oAPInvoice.DocObjectCode = BoObjectTypes.oPurchaseInvoices
    With oAPInvoice
        .Lines.TaxLiable = BoYesNoEnum.tYES
        .Lines.ItemCode = Itemcode
        .Lines.Quantity = Quantity
        .Lines.UnitPrice = Unitprice
        .Lines.TaxCode = Taxcode
        .Lines.WTLiable = BoYesNoEnum.tNO
        .Lines.Usage = "Consumo"
        If oDTO.IRRF > 0 Or oDTO.INSS > 0 Or oDTO.ISSQN > 0 Then
            If oDTO.WtLiable = "Y" Then .Lines.WTLiable = BoYesNoEnum.tYES
            Add tax values
            For i As Int16 = 1 To 3
                vlrImposto = 0
                addTax = False
                If IRRF > 0 And Not addIR Then
                    codImposto = CodeIRRF   (tax code)
                    vlrImposto = IRRF             (tax value)
                    addIR = True
                    addTax = True
                ElseIf INSS > 0 And Not addINSS Then
                    codImposto = "F501"  (tax code)
                    vlrImposto = INSS       (tax value)
                    addINSS = True
                    addTax = True
                ElseIf ISSQN > 0 And Not addISSQN Then
                    codImposto = CodeISSQN  (tax code)
                    vlrImposto = ISSQN            (tax value)
                    addISSQN = True
                    addTax = True
                End If
                If addTax Then
                    (If include more one tax then add line)
                    If i > 1 And vlrImposto > 0 Then .Lines.WithholdingTaxLines.Add()
                    .Lines.WithholdingTaxLines.WTCode = codImposto                     (tax code)
                    .Lines.WithholdingTaxLines.TaxableAmount = Unitprice              (base value calculation)
                    .Lines.WithholdingTaxLines.WTAmount = vlrImposto                   (tax value)
                End If
            Next
        End If
        .CardCode = Cardcode
        .CardName = Cardname
        .HandWritten = BoYesNoEnum.tNO
        .DocDueDate = DueDate
        .DocDate = DocDate
        .TaxDate = TaxDate
        .SequenceCode = -2      '-1=Manual  -2=External
        .SeriesString = "RCB"
        .SequenceModel = 37
        lRetCode = .Add()
    End With
    Regards
    Luis Felipe

  • Identify the Source System in CRM BADI

    Hi,
    I need to write the code in ORDER_SAVE BADI in CRM based on the source system. For example, When i create the quotation in PCUI i need to validate few fields. Suppose i have created quotaton in R/3 and it gets transfer to CRM and i need validate few more fields.
    How do i findout in BADI whether the source system is PCUI or R/3? I have checked the SYST table but no difference in both the case. Anyother way to findout this.
    Thanks in advance.
    Regards,
    Bala.c

    Hello Bala,
    In the ORDERADM_H structure of the CRM_ORDER_READ or in the CRMD_ORDERADM_H table you find a field called LOGICAL_SYSTEM. In that field the RFC destination of the source system (source system = where the order/transaction was created) will be stored.
    For PCUI this field will have the RFC destination of the CRM server itself.
    For R/3 it will have the RFC destination of the R/3 system.
    Hope this helps,
    Reward points if useful!
    Regards,
    Joost

  • Getting error Can't read from the source or disk when moving documents from one folder to another folder in the library

    Hi,
    When we try to move documents from one folder to another folder in the document library using "Open with explorer" getting beloe error.
         Can read from the source file or disk.
        The user having below permission for the Library as well as site.
    Fullcontrol,Limited access--->Given directly
    Read,Limited access--->Givin through the all Test grp
    Contribute,Limited Access-->given through test members grp
    Read,Limited access---> givin through The group grp
    Could you please help me anyone....
    Thanks

    Hi Reddy,
    If you are moving files in two libraries in different sites, then the error will occur and it is by design that there are limitations on the DAV move commands that the DAV client is respecting.
    https://social.msdn.microsoft.com/Forums/en-US/6245f332-c609-4a7b-8e00-c8b5e46f7759/cant-move-files-using-windows-explorer-cant-read-from-source?forum=sharepointgeneral
    If you are moving files in the same library, I recommend you to use Wireshark to reveal the error message and enable IIS
    Trace Logging for Failed Requests to examine the IIS log file for troubleshooting.
    https://social.msdn.microsoft.com/Forums/en-US/47cd569d-98f2-4cca-b78e-fd178c097285/cant-read-from-the-source-file-or-disk?forum=sharepointgeneralprevious
    To narrow down the issue scope, I recommend you to test with another library and see if the copy in explorer can work.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Identifying the line items on a posted document

    Hi guys!
    I am doing a program  Acounts Payable Voucher. On fb01, I made a transaction and posted it. After the document has been posted, Input Vat and Witholding Tax are included in the line item. The amount is already been calculated.
    My problem is how will I separate <b>Input Vat and Witholding Tax</b> from the other line items? I have identified the other line item <i>Vendor</i> from the others using posting key. But the rest may have the same posting keys.
    Thanks!

    yes it'll populate the received quantity (which you would have generally entered in the Quantity tab). There is a field for Recipient as well (which is what I think you refer to as receiver). You may need to scroll right for this, but as you are the receiver in all cases, just copy paste from Excel
    You can enter all of this at one go. Try it out and let me know.

  • How to identify the source of matched songs?

    This happens quite often. When I click the arrow next to one of the songs in my library to show in iTunes store, frequently I will be taken straight to the homepage of iTunes or iTunes will prompt the message this song is not available in your country. I understand why this happens; however, is there a way to identify what country the song is currently available in iTunes? I could Google the song and find it manually but a way in iTunes would be nice. Secondly, I have iTunes Match and I’d like to be able to identify where my matched songs were matched from. For example, I have lots of matched songs in my library where the track and artist names are completely blank. This was an issue I had when my laptop was stolen a few years ago and I stupidly hadn’t backed up my music library and the only source I had left was my iPod. When I transferred the music files from my iPod to my current laptop, all of the song file names were encoded which resulted in my library to lose all of its song names, artist names, album names etc... Ideally I would like to be able to click the arrow next to my matched songs and have the option to select matched song in iTunes store and have it take me through to the album is was matched from. This would encourage me to potentially purchase more songs from the album but more importantly in my case, identify the song and artists names to my blank library! Any help will be much appreciated

    At this time it is not possible to do what you want. If you are not taken to a song or album in the iTunes Store then most likely the particular item is not publicly available. This is simply how it works at this time. Nor is there a feature to apply ID 3 tags from the iTS. You'll need a third party app for that.

  • How to identify the source field you jumped off in rri-exit

    Hello Forum,
    I need your expertise regarding the following problem:
    We want to fill target fields in the RRI-Exit depending on the source field you called a report.
    When we jump from report 1 to report 2 in BEx Analyzer, we'll get the mdflag in the i_thx_sender table.
    Is there any way to get the same information by calling rri in web? Or is there any workaround to get the information from which field the rri started?
    Many thanks in advance for any idea.
    Kind regards,
    Tobias

    Hi,
    One simple way is goto CMOD and give project names with Z* or Y*. First findout the naming convensions following in  your project and see.
    Then gibe projects one by one and select COMPONENTS option and click on Display, if you find the following Function Exits means it is our DataSource project
    EXIT_SAPLRSAP_001
    EXIT_SAPLRSAP_002
    EXIT_SAPLRSAP_003
    EXIT_SAPLRSAP_004
    Thanks
    Reddy

  • Identifying the Inspection lot created automatically and manually

    Dear all,
    An Inspection lot can be created automatically or manually. Can anyone please tell how the Inpection lot can be identified as manual created or automatically created one? Please advice, thanks.
    Regards,
    Brijesh

    Hi,
    You can  create inspection lots manually for all inspection lot origins except
    the following
      10   Delivery to customer with sales order
      11   Delivery to customer without sales order
      12   General delivery
      13   Repetitive manufacturing
      14   Plant maintenance
    When you create an inspection lot manually, you cannot reference an original document (for
    example, a goods receipt document, an order, or a delivery note)
    Regards
    Hari

  • Identifying the source number

    Using commands in our router I'd like to identify who is originating the call, but I can see only the destination number. The following command is an example:
    sh call history voice last #
    GENERIC:
    SetupTime=932828628 ms
    Index=94959
    PeerAddress=05107721089
    I see the destination number: 7721089 but i'd like to identify who orinated this call.
    How could I identify this information using router's commands?
    #sh ver
    Cisco Internetwork Operating System Software
    IOS (tm) 3600 Software (C3640-DS-M), Version 12.2(12), RELEASE SOFTWARE (fc1)
    Copyright (c) 1986-2002 by cisco Systems, Inc.
    Compiled Tue 20-Aug-02 23:38 by pwade
    Image text-base: 0x60008930, data-base: 0x6121C000
    Thanks in advance,
    Marcelle.

    I used the command sh call history voice brief , but I cannot see who originated the call either. In the following example someone is calling the number 2609257(destination number), but I cannot see from which number this person is calling from(source number).
    1E74 : 939924394hs.95806 +481 +1815 pid:0 Answer
    dur 00:00:13 tx:428/8560 rx:369/14760 10 (normal call clearing.)
    IP 13.136.249.17:18882 rtt:172ms pl:10480/0ms lost:0/1/0 delay:69/69/70ms g729r
    8
    1E74 : 939924395hs.95807 +480 +1826 pid:2 Originate 2609257
    dur 00:00:13 tx:365/14600 rx:428/8560 10 (normal call clearing.)
    Telephony 1/0:1 (95819): tx:14840/856/0ms g729r8 noise:-84dBm acom:-120dBm

  • What is the minimum permission level that allows users to view draft documents, other peoples' draft documents?

    What is the minimum permission level that allows users to view draft documents, other peoples' draft documents?
    Normally a person creates a draft document and when they are ready they publish it and the Approver approves it. However, what if a power user needs to be able to see all draft documents. Not just their own but other peoples'. What is the minimum permission
    level that allows then to do this?
    Cheers,
    Mark
    Learning SharePoint

    Hi Mark,
    Per my knowledge, there is no minimum permission level that allow users to view their own and other people’s draft documents.
    This is based on the Draft Item Security setting you choose for your list in Versioning Settings:
    You can follow the detailed steps in the link provided by Avni.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Create draft document of stock transferences

    I created a draft document of transferences of stock with SDK.
    Code header:
    Dim sboTransferDraft As SAPbobsCOM.Documents             sboTransferDraft = SBOCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oDrafts)
    sboTransferDraft.DocObjectCodeEx = "67"
    sboTransferDraft.CardCode = "C00001"
    sboTransferDraft.DocDate = Now
    sboTransferDraft.TaxDate = Now
    sboTransferDraft.Comments = "Comments"
    Line code
    sboTransferDraft.Add
    But I do not obtain to modify the warehouse origin.
    somebody can help me?
    thanks

    Hi Sérgio ,
    I have tried your problem and also couln't solve it. It looks like the Warehouse value is written to the Filler field in the drafts table (ODRF), but that field does not seem to be exposed via the documents object.
    Hope it helps,
    Adele

Maybe you are looking for

  • Open folders in same window (in toolbar control button mode)

    Hi, when I set a finder window to hide the toolbar from view, using the toolbar control button in the top right, the folders open a new window when clicked. Is it possible to set them to open in the same window? Thanks

  • About changes in PI 7.1

    Hi experts, I am not sure why few things keep changing all the time in PI in each version. Generally we add more options and enhance existing components. Collaboration profile, collaboration agreements were seen in 7.0, XI has become PI. service wito

  • [SOLVED] incoming email stopped syncing

    Hi,  Just thought I would let you know Ive solved a long standing problem with email (nokia email) on my phone. Problem: After going away for a week or so and not using my phone, new updates would not come to my phone Solution: I had "full message" s

  • FND_PRODUCT_INSTALLATIONS TEMPORARY_TABLESPACE IS NULL FOR CUSTOM MODULE

    We have 11.5.10 ERP system for production use. But FND_PRODUCT_INSTALLATIONS TEMPORARY_TABLESPACE IS NULL FOR CUSTOM MODULE. All seeded modules are using TEMP. What are the ramifications for this. We have 'Change control' process in place. We can not

  • Windows 8 nokia lumia 620 update provide windows8....

    Will you provide windows8 updte to windows8.1