Need where & how to define output determination DB0001

Hi Friends,
I like to know how we configure the DB0001 (sold to party) ,DB0002.. output determination which is assigned at time of creating account grp for the customers.It would be greatly appreciable if anybody can help me in this issue.
Thanks and Regards
Vidyardhi

hi
chk the link below
**================================================
/people/gajendra.bhakuni/blog/2007/03/13/message-control-output-control-for-ale
=====================================================**
http://help.sap.com/saphelp_46c/helpdata/en/30/c6853488601e33e10000009b38f83b/frameset.htm
Reward if Useful
Thanx & Regards
Naren...

Similar Messages

  • How configure Define Account Determination for Real Time Integration

    Hi All,
    I am doing configure of new company just know about how do i configure for Define account determination for real time intergration. what is the use? Pleaes give me some clarity with example.
    Thanks
    Pankaj

    Hi,
    Please go through the below link:-
    http://help.sap.com/saphelp_erp2004/helpdata/en/22/c2cf4031288131e10000000a1550b0/content.htm
    Regards,
    Gaurav

  • How to use output determination: track changes made on the contract

    We have a third party application which is requiring a delta change log of contract from SAP, does anyone know the mechanisms of using output determination to track all the changes on contact level?
    Thanks a lot!

    Hi,
    You can use SAP change documents.
    Please refer to the link below:
    [http://help.sap.com/saphelp_erp60_sp/helpdata/en/18/7e713ae142d65de10000000a114084/frameset.htm|http://help.sap.com/saphelp_erp60_sp/helpdata/en/18/7e713ae142d65de10000000a114084/frameset.htm]
    Cheers

  • Where should handling unit output determination procedure be assigned ?

    Hi
    In logistic execution, where should handling unit out put determination procedure be assigned pls ?
    Thanks In Advance

    A custom output type must be created with the form you would like to print and condition records for HU's must be maintained in VV61.
    You can also use NACE to define the procedures and access sequence.
    Hope that helps
    thanks

  • How to define output types email or external send in the report program

    Hi all,
    now we are using a zprogram for output type printer and standard program RVADOR01 for output type external send. Now i want to modify my zprogram itself to support external send email as well as printer also. What modifications should I have to make in my zprogram. My form is a script.
    Thank you,
    Mallik

    hi all,
    i made the following changes in my code and it worked well.
    thank you for all who tried to share my pain.
    thanks one and all.
    hope this code will help anybode.
    thanks & regards
    FORM OPEN_FORM_EMAIL.
    TABLES: TNAPR,                         "Programs & Forms
            ITCPO,                         "Communicationarea for Spool
            ARC_PARAMS,                    "Archive parameters
            TOA_DARA,                      "Archive parameters
            ADDR_KEY.                      "Adressnumber for ADDRESS
    TYPE-POOLS SZADR.
    DATA: LVF_DEVICE LIKE ITCPP-TDDEVICE,
          LVF_DIALOG(1)     TYPE   C   VALUE ' ',
          LVS_RECIPIENT     LIKE   SWOTOBJID,
          LVS_SENDER        LIKE   SWOTOBJID,
          LVS_SNAST         TYPE   SNAST,
          LVF_PROGRAM       LIKE   SY-REPID,
          LVS_COMM_TYPE     TYPE   AD_COMM,
          LVS_COMM_VALUES   TYPE   SZADR_COMM_VALUES,
          LVS_TITLE LIKE SNAST-TDCOVTITLE.
    reset return code
      RETCODE = 0.
    if there is a communication strategy used ...
    IF NOT NAST-TCODE IS INITIAL AND NAST-NACHA EQ '5'.
      ... use stratagy to get communication type
        CALL FUNCTION 'ADDR_GET_NEXT_COMM_TYPE'
             EXPORTING
                  STRATEGY           = NAST-TCODE
                ADDRESS_TYPE       =
                 ADDRESS_NUMBER     = KNA1-ADRNR
                PERSON_NUMBER      = VBDKA-ADRNP
                  PERSON_NUMBER      = ADDR_KEY-PERSNUMBER
             IMPORTING
                  COMM_TYPE          = LVS_COMM_TYPE
                  COMM_VALUES        = LVS_COMM_VALUES
           TABLES
                STRATEGY_TABLE     =
             EXCEPTIONS
                  ADDRESS_NOT_EXIST  = 1
                  PERSON_NOT_EXIST   = 2
                  NO_COMM_TYPE_FOUND = 3
                  INTERNAL_ERROR     = 4
                  PARAMETER_ERROR    = 5
                  OTHERS             = 6.
        IF SY-SUBRC <> 0.
          RETCODE = SY-SUBRC.
          SYST-MSGTY = 'E'.
          PERFORM PROTOCOL_UPDATE.
        ENDIF.
    ENDIF.
       LVS_COMM_TYPE = 'INT'.
      CLEAR LVS_COMM_VALUES-ADSMTP-SMTP_ADDR.
      CLEAR LVS_SNAST.
            LVS_COMM_VALUES-ADSMTP-SMTP_ADDR = V_CUST_EMAIL.
    convert communication data
       MOVE-CORRESPONDING NAST TO LVS_SNAST.
            LVS_SNAST-ANZAL = 1.
            LVS_TITLE = 'Mail Header Title'.
      MOVE LVS_TITLE TO LVS_SNAST-TDCOVTITLE.
       MOVE SY-REPID TO LVF_PROGRAM.
      CALL FUNCTION 'CONVERT_COMM_TYPE_DATA'
           EXPORTING
                PI_COMM_TYPE              = 'INT'
                PI_COMM_VALUES            = LVS_COMM_VALUES
                PI_SCREEN                 = XSCREEN
              PI_NEWID                  =
                PI_COUNTRY                = ADRC-COUNTRY
                PI_REPID                  = SY-REPID
                PI_SNAST                  = LVS_SNAST
                PI_MAIL_SENDER            = SY-UNAME
           IMPORTING
                PE_ITCPO                  = ITCPO_LS
                PE_DEVICE                 = LVF_DEVICE
                PE_MAIL_RECIPIENT         = LVS_RECIPIENT
                PE_MAIL_SENDER            = LVS_SENDER
           EXCEPTIONS
                COMM_TYPE_NOT_SUPPORTED   = 1
                RECIPIENT_CREATION_FAILED = 2
                SENDER_CREATION_FAILED    = 3
                OTHERS                    = 4.
      IF SY-SUBRC <> 0.
        RETCODE = SY-SUBRC.
        SYST-MSGTY = 'E'.
        PERFORM PROTOCOL_UPDATE.
      ENDIF.
      CHECK RETCODE EQ 0.
    fill structure itcpo
      ITCPO = ITCPO_LS.
    open form
      CALL FUNCTION 'OPEN_FORM'
           EXPORTING
              APPLICATION        = 'TX'
               ARCHIVE_INDEX      = TOA_DARA
               ARCHIVE_PARAMS     = ARC_PARAMS
                DEVICE             = 'MAIL'
                DIALOG             = 'X'
                FORM               = 'ZSDLS003'
                LANGUAGE           = SY-LANGU
                OPTIONS            = ITCPO_LS
                MAIL_SENDER        = LVS_SENDER
                MAIL_RECIPIENT     = LVS_RECIPIENT
              MAIL_APPL_OBJECT   = ' '
              RAW_DATA_INTERFACE = '*'
         IMPORTING
              LANGUAGE           =
              NEW_ARCHIVE_PARAMS =
              RESULT             =
           EXCEPTIONS
                CANCELED           = 1
                DEVICE             = 2
                FORM               = 3
                OPTIONS            = 4
                UNCLOSED           = 5
                MAIL_OPTIONS       = 6
                ARCHIVE_ERROR      = 7
                OTHERS             = 8.
      IF SY-SUBRC NE 0.
        CASE SY-SUBRC.
          WHEN 7.
            RETCODE = SY-SUBRC.
            SYST-MSGID = 'VN'.
            SYST-MSGNO = '096'.
            SYST-MSGTY = 'E'.
            SYST-MSGV1 = NAST-KSCHL.
            SYST-MSGV2 = NAST-KAPPL.
            PERFORM PROTOCOL_UPDATE.
          WHEN OTHERS.
            RETCODE = SY-SUBRC.
            PERFORM PROTOCOL_UPDATE.
        ENDCASE.
      ENDIF.
      SET COUNTRY ADRC-COUNTRY.
    ENDFORM.

  • Output determination for pipeline/ Consignment settlement

    Dear friends,
        I am not able to configure the message determination for the output type KONS for the pipeline settlement.
    Could anybody guide me what config needs to be done for this?
    Senthil

    Hi
    You need to define output determination in
    SPRO --> Materials Management --> Logistics Invoice Verification --> Message Determination
    also you can maintain condition record for KONS in MRM1 Transaction.
    regards
    Srinivas

  • How to define script object for plug-in

    hi all,
    I'm new developer in InDesign Server.
    I'm having a look at the SnipRunner & BasicPersistInterface.
    In the file SnippetRunner.jsx:
    // get the SDKCodeSnippetRunner object
    var snippetRunner = app.sdkCodeSnippetRunnerObject;
    In the file BasisPersitInterface.jsx:
    app.basicpersistinterfacePreferences.bpiData = "default";
    if (app.basicpersistinterfacePreferences.bpiData != "default") {}
    really, I dont understand where & how to define the "sdkCodeSnippetRunnerObject" & "basicpersistinterfacePreferences" in the source code of plug-ins written in C/C++
    so anyone can help me on this?
    thanks

    This is a very basic question. F1 help on statement form will do.

  • Output Determination in Delivery and billing

    Hi Gurus,
    Can anybody tell me how to maintain output determination for delivery. i have maintained Condition record for LDOO but when in delivery i goto Extras-output-header it taked me back to the same setting of LDOO. How do i see the output for delivery.

    Hi,
    Complete the condition technique for output determination for outbound dellivery.
    IMG-logistics execution-shipping-basic shipping functions-output control-output determination-maintain output determination for outbound deliveries.
    Create the condition table, access sequence, condition type, procedure and assig the output type LD00 to the procedure. Assign this procedure to your delivery document type.
    Maintain the condition record for outbound deliveries in VV21. Select LD00, enter Sales Org, customer no. of Ship to party, SH partner function. Select the line item an click on communication, select the printer and save the settings.
    Now you have created the delivery in VL01N. Save the delivery. Now go to VL02N, select the delivery number, In the menu bar in outbound delivery, click on issue delivery output. Her select the output type and click on print preview.
    Reward points if solution helps.
    Regards,
    Allabaqsh G. Patil

  • How to re-run output determination after goods issue through idoc

    Hello,
    i've got a question about output determination. We are currently in a process to automate picking, packing and goods issue through a 3rd party software. The software creates DELVRY03-Idocs including picking, packing and goods issue-information. Picking, packing and goods issue work just find and after submitting the idoc, the delivery is updated as needed.
    The problem arises when it comes to printing the shipping document on the printer belonging to the picking station that just processed the delivery. To determine the correct printer, the external software includes the picking station number inside the idoc. A user exit in idoc_input_delivery puts the number (3 digits) into likp-traid. The customizing for using this field inside output determination is complete and seems to be working.
    The problem is: as the number of the picking station is not known before goods issue, the LD00 message must not be generated before goods issue. I used the appropriate condition insinde the message scheme, the message is not generated until goods issue is complete. After processing the DELVRY03-Idoc, the message should be found and generated, but it isn't. When i take a look at the delivery after submitting the idoc, goods issue is complete, picking and packing is done - and no sign of an header message of type LD00. First i thought about a misconfiguration inside my customizing for output determination, but when i access the delivery via vl02n (change delivery), output determination seems to be processed again and without making any changes or actions, LD00 is generated and waiting for processing. After saving the delivery, LD00 is processed and the shipping document is printed exactly where it should be.
    So, as my customizing seems to work and everything else around idoc processing doesn't make any problems either, i conclude that, after processing the idoc, R/3 just needs a little kick to re-run the output determination, find the now fitting condition for LD00, find the appropriate entry in the condition table and print the document.
    I already tried report rsnast00, but this one just seems to run already created messages.
    Any ideas how to automate this little "kick in the butt"?
    Thanks in advance!

    I'm working on a similar issue with ws_delivery_update. I'm not using the IDOC as you are, but I'm using the function in a program of mine to PGI the delivery, but the output isn't being added to the delivery. I've tried to run the function twice as you suggested, but that doesn't seem to work. Do you have any suggestions or ideas on things to try?
    Thanks,
    Eric

  • How is Output determination done for a PO ??

    Hi
    How is Output determination done for a PO ??
    I need the O/P to the vendor sent in the form of a PDF file.
    is it possible !!
    cheers
    Maruthi

    Hi,
    1. Condition Table
    SPRO > Material Management> Purchasing -> Message -> Output Control->Condition Tables->Define Condition Table for Purchase Order
    Select: 
    Purchasing Doc. Type,
    Purch. Organization,
    Vendor
    2. Access Sequences
    SPRO -> Material Management-> Purchasing -> Message -> Output Control->Access Sequences->Define Condition Table for Purchase Order
    3. Message Type
    SPRO -> Material Management-> Purchasing -> Message -> Output Control->Message Types->Define Message Type for Purchase Order
    *4. Message Determination Schemas*
    4.1. Message Determination Schemas
    SPRO -> Material Management-> Purchasing -> Message -> Output Control->Message Schema->Define Message Schema for Purchase Order-> Maintain Message Determination Schema
    4.2. Assign Schema to Purchase Order
    SPRO -> Material Management-> Purchasing -> Message -> Output Control->Message Schema->Define Message Schema for Purchase Order-> Assign Schema to Purchase Order
    5. Partner Roles per Message Type
    SPRO -> Material Management-> Purchasing -> Message -> Output Control-> Partner Roles per Message Type ->Define Partner Role for Purchase Order
    6. Condition Record
    Navigation Path: SAP Menu-> Logistics -> Material Management -> Purchasing-> Master data->Messages-> Purchase Order-> MN04-> Create
    Now you create PO (ME21N) and save it. Go to ME22N and print the PO by giving output type.
    Output of GR
    After setting table, access sequence and output type for GR,run MB02 transaction, enter material document number. Double click one line item and select messages. Separate screen will be opened to configure outputs. Give the required fields and save the document. 
    Now Run MB90, you can take printout. Output Type: WE03 or WE01 or WE02
    Thanks,

  • Shipment Output Determination: Sold To Party needed in the access seqeunce

    Hi Gurus,
    I need to create a new access sequence for Shipment Output determination including the Shipment Type, Shipping Point and Sold-To party.
    Can someone provide the steps involved to add the Sold-To party in the access sequence and the enhancement which I can use to populate the Sold-To party field.
    Thanks in advance for the help.
    Gajendra

    Murali,
    Thanks for your reponse. The way you suggested I have tried creating a new access table but the issue is Sold-To field is not available as a selection in the field catalog when you are in create access table screen (spro->Logistics Execution->Transportation->Basic Transportation Functions->Output Control-> Maintain Output Determination for Shipments->Maintain Condtion Tables->Maintain Output Condition Table for Shipments).
    When I go to the field catalog maintenance (spro->Logistics Execution->Transportation->Basic Transportation Functions->Output Control-> Maintain Output Determination for Shipments->Maintain Condtion Tables->Field catalog: Messages for transportation) the field KUNAG - Sold To Party does exist in the field catalog. However this doesn't show up on the access table maintenance screen as an available field.
    Could you please explain how to make this field available for access table maintenance?
    Regards,
    Gajendra

  • Function where PO output determination is decided

    Hi,
    Does anyone know the name of the function or equivalent where the PO output determination logic can be found in SRM 5.0?
    Our system started resending POs to vendors if the output medium is XML when the PO is completed.
    Thanks,
    Jerry

    Hi Jerry,
    Please check the IMG settings in the transaction SPRO:
    SAP Implementation Guide -> Supplier Relationship Management - SRM Server
    -> Cross-Application Basic Settings -> Set Output Actions and Output Format
    -> Define Actions for Document Output.
    Thanks,
    Pradeep

  • I lost my iphone in the water I bought a new one 4S now I have 2 back ups in Icloud, the one for the new Iphne and the old Iphone where I have the most info I need. How I can download my old backup?

    I lost my iphone in the water I bought a new one 4S now I have 2 back ups in Icloud, the one for the new Iphne and the old Iphone where I have the most info I need. How I can download my old backup?

    Welcome to the Apple community.
    You cannot download a backup from iCloud, the only way to access it is to restore to the backup with your new phone, which you should have done when you first connected it. If you restore now, you will lose all the new information you have added to your new phone.

  • How to add a field VBKD-IHREZ to field catalog in Output determination?

    The requirement is maintaining the condition table using Sales Org/Sales Doc Type/Your reference in output determination process. But the field 'Your reference(VBKD-IHREZ)' is not in the field catalog. Can someone tell me how to add the VBKD-IHREZ to field catalog?
    Thanks in Advance.

    Hi
    See SAP Note 21040 - Allowed Fields not appearing for condition table
    Regards
    Eduardo
    PD: I forgot, go to IMG and see the documentation in the path: SD/system modifications / create new fields  (using cond.tec) / new fields for output control and read the documentation. It tells us structures and how to populate (exits)
    Edited by: E_Hinojosa on May 6, 2011 5:48 PM

  • Need Information : How can I define Organization as Plant or laboratory

    Dear guru,
    I'm new in OPM. Can you enligth me how to define Organization as Plant or Laboratory? because when I create Recipe, my organization doesn't come up. I migth got clue that I should define it at Product Development Parameter form, but I cannot find this form either in OPM responsibility or Inventory responsibility. So can you navigate me to some solutions? And I am really anxious with the navigation to Product Development Parameter window.
    All reply will be thankfull..

    Dear Friend
    Add the responsibilty from Sys admin as
    "Product Development Security Manager" and once you add this. Go to navigation as follows
    Product Development Security Manager-->Oraganization parameter (here u need to define all the required fields)
    Hope this clear and u can get the solution
    Regards
    Raj
    Sierra Atlantic

Maybe you are looking for

  • How to capture the LOCK and UNLOCK status of an Internal Order

    Hi, I am trying to upload the data for transaction KO02. The order can be in LOCK status or UNLOCK status. Could you please let me know how can we determine whether an order is locked or unlocked. Is this data stored in some table. Help is very much

  • Kuler in Illustrator CC not active

    The Kuler Panel in Illustrator CC doesn't react, it is grey. Can't import Kuler themes. I'm signed in in Illustrator as well as online in Kuler. It is possible to work in the Kuler App online. What's wrong with Illustrator? Thank you for answers

  • After latest update (itunes+QT), Microsoft application doesn't run anymore

    After installing latest upgrade from MAC, my MS Office 2004 and the MS Remote Desktop Connection are stop functionning. I click on the application, but nothing appears (on application folder or on sidebar). I cannot even launch my MS office from the

  • What on earth is going on !!!

    2nd day of loss of channels and still havent been given a reason. 1st advisor said factory settings..that didnt work. 2nd advisor said the same..again didnt work..then he said it was my arial..no it isnt. 3rd advisor said channel scan..again didnt wo

  • 10.4.9 / Airport Extreme 2007-002: Wireless with WPA broken

    I just completed Software Update on my MacMini, and have found that wireless connectivity is broken. I suspect that this is due to either the 10.4.9 update, or the Airport Extreme 2007-002 update. If I disable WPA then the wireless works, but as soon