Sales order Header Credit status showing as Approved

Hi all,
My User created a Sales order with 200 tones with around 5700 USD but while saving it did not block sales order for credit but the customer was over their credit limit.in FD32 it already exceed 152 % Further orders have blocked with other customer is was blocking
i check in FD32 it showing Cred.limited used 152%
and the sales order header status showing as - Approved
when the sales order status shows as approved
can any one guide me what could be problem
Thanks
Rajesh

Hi
CHeck with the order, see who has changed it
salesorder- goto - environment- click changes and check it for that.
Check on - how it is released
who has changed
take the log and time
if all the congi
config
fine...then check the change log
or go to table CDHDR
Revert if you have further queries.

Similar Messages

  • What's the name of FM for getting Sales Order Header / Item Status info

    Hello All:
    Do you know what's the name of Function Module for getting Sales Order Header / Item Status Overview ? Any sample code will be very much appreciated.
    Basically, I am trying to create a Webpage where user can enter the Sales Order document number and will return the Sales Order: Status Overview.
    Thanks,
    Dipankar Biswas

    Thanks everybody ! Appreciate for your prompt response. I was also looking for some sample code, and I did find some on. And here is one. I still have to try the code, but here is for all your reference:
    *& Report ZBAPI_SALESORDER_GETSTATUS *
    *& Read and Display the Sales Order Items and Status of the Order *
    REPORT zbapi_salesorder_getstatus NO STANDARD PAGE HEADING LINE-SIZE 200 LINE-COUNT 33(3).
    TABLES: vbap. "Sales Document Item Data.
    DATA: wa_bapireturn TYPE bapireturn,
    wa_bapisdstat TYPE bapisdstat,
    it_bapisdstat LIKE STANDARD TABLE OF wa_bapisdstat.
    TYPES: BEGIN OF ty_mat_name,
    matnr TYPE makt-matnr,
    maktx TYPE makt-maktx,
    END OF ty_mat_name.
    DATA: wa_mat_name TYPE ty_mat_name,
    it_mat_name LIKE TABLE OF wa_mat_name WITH KEY matnr .
    PARAMETERS: p_vbeln LIKE vbap-vbeln DEFAULT 5573.
    START-OF-SELECTION.
    SELECT matnr maktx FROM makt INTO TABLE it_mat_name.
    CALL FUNCTION 'BAPI_SALESORDER_GETSTATUS'
    EXPORTING
    salesdocument = p_vbeln
    IMPORTING
    return = wa_bapireturn
    TABLES
    statusinfo = it_bapisdstat.
    IF wa_bapireturn IS INITIAL. " Successful Execution.
    WRITE: / 'Document No: ' COLOR 1, 20 'PO Number : ', 40 'Status' , 50 'Delv.Stat',60 'Item No', 80 'Material', 90 'Material Description', 130 'Net Price' COLOR 2.
    ULINE.
    LOOP AT it_bapisdstat INTO wa_bapisdstat.
    WRITE: / wa_bapisdstat-doc_number. " Sales Document Number.
    READ TABLE it_mat_name INTO wa_mat_name WITH KEY matnr = wa_bapisdstat-material.
    WRITE: /20 wa_bapisdstat-purch_no, " Customer Purchase Order Number
    40 wa_bapisdstat-prc_stat_h, " Processing Status
    50 wa_bapisdstat-dlv_stat_h, " Delivery Status
    60 wa_bapisdstat-itm_number, " Item Number
    80 wa_bapisdstat-material, " Material
    90 wa_mat_name-maktx, " Material Description
    130(10) wa_bapisdstat-net_price. " Net Price
    CLEAR wa_bapisdstat.
    ENDLOOP.
    REFRESH it_bapisdstat[].
    ELSE.
    WRITE: wa_bapireturn-message.
    ENDIF.

  • Sales Order Header wise status.

    Hy expert,
    i going to make Sales order Status Reports. It run successfully fetch data form header wise, but it display all so, that is already closed or completed.
    i wnt to which Sales order it is pending or partially deliverd.
    Please help me regarding this.
    Report in ALV.
    Please read this code for fetch Data. if u like change pl do.
    Thnks
    Bhavesh Panchal
    baroda
    FORM data_retrieval.
    SELECT VBELN  NETWR KUNNR FROM VBAK INTO (ITAB-VBELN,ITAB-NETWR,ITAB-KUNNR) WHERE VBELN IN VBELN .
    SELECT NAME1 FROM KNA1 INTO (ITAB-NAME1) WHERE KUNNR = ITAB-KUNNR .
    SELECT BSTKD BSTDK FROM VBKD INTO (ITAB-BSTKD,ITAB-BSTDK) WHERE VBELN = ITAB-VBELN.
    SELECT VSNMR_V FROM VBAK INTO (ITAB-VSNMR_V) WHERE VBELN = ITAB-VBELN.
    *SELECT EDATU FROM VBEP INTO (ITAB-EDATU) WHERE VBELN = ITAB-VBELN.
    SELECT LFSTK FROM VBUK INTO (ITAB-LFSTK) WHERE VBELN = ITAB-VBELN and lfstk not like 'C'.
    APPEND ITAB.
    ENDSELECT.

    Hi,
    Try this out.
    SELECT vbeln auart spart audat netwr
          FROM vbak INTO TABLE it_vbak
           WHERE spart IN so_spart
           AND audat IN so_fkdat
           AND auart IN rg_auart
           AND vbeln IN so_vbeln.
    SELECT vbeln posnr spart werks matnr arktx kwmeng kbmeng abgru pstyv netwr matkl
       INTO CORRESPONDING FIELDS OF TABLE it_vbap
        FROM vbap
           FOR ALL ENTRIES IN it_vbak
             WHERE vbeln = it_vbak-vbeln
              AND posnr LIKE '%'
              AND werks IN so_werks
              AND matkl IN so_matkl
              AND matnr IN so_matnr .
    IF it_vbap IS NOT INITIAL.
    "Get all delivery details
    SELECT vbelv posnv vbeln posnn vbtyp_n vbtyp_v rfmng matnr          " vbfa_j for All Delivery details
             FROM vbfa INTO TABLE it_vbfa_j
              FOR ALL ENTRIES IN it_vbap
               WHERE  vbelv = it_vbap-vbeln AND
                posnv = it_vbap-posnr AND
                vbeln LIKE '%' AND
                posnn LIKE '%' AND
                vbtyp_n = 'J'.   
    ENDIF.
    LOOP AT it_vbap INTO wa_vbap WHERE abgru EQ space.  
    "Get cumulative confirmed qty
    wa_final-kbmeng = wa_vbap-kbmeng.
    READ TABLE  it_vbfa_J INTO wa_vbfa_j WITH KEY vbelv = wa_vbpa-vbeln
                                                posnv = wa_vbfa-posnr.
                                              "      BINARY SEARCH.
        IF sy-subrc = 0.
           wa_final-delivery_qty_total = wa_vbfa-rfmng.
        ENDIF.
    IF wa_final-delivery_qty_total NE wa_final-kbmeng .
           wa_final-pending_order = wa_final-kbmeng - wa_final-delivery_qty_total.    "(pending order = Order_qty - total delivery qty)
    ENDIF.
    CLEAR wa_final.
    endloop.
    Hope this will help.
    Thanks,
    Archana

  • How the sales order header status update?

    Hello,
    In the sales order header "STATUS" tab is there, under this status tab we can find OBJECT status if we click that object status it shows the Object number,Object category,status profile and status with status no. on which bases this status will update in the sales order header?
    my case is Status "10-xxxx" set automatically for some orders.
    Could you plz let me know on which bases, the status will be updated in the sales order?
    Regards|KS

    Hi
    SAPu2019S GENERAL STATUS MANAGEMENT FUNCTIONALITY
    General Status Management replaced order status management functionality in recent SAP releases (4.6C).  This discussion will address general status management, as this is how SAP allows user statuses for controlling objects in this and future releases.
    General Status Management applies to internal orders, project definitions, WBS elements, production orders and many other objects in SAP.  For the purposes of this discussion we will concentrate on status management for internal orders and WBS elements.  A list of all objects relevant for status management will be made available upon request.
    A status is an indicator that fulfills two functions.  First, it informs you that a particular status has been reached.  For example, an internal order has been created and released; a settlement rule has been entered; a particular business transaction has been executed, etc.  Second, it influences the business transactions you can perform for a particular status.  A status can allow a business transaction; allow a business transaction but issue a warning message; or prohibit a business transaction altogether.  If a warning message is issued it is up to the user whether the business transaction is carried out or not.
    Statuses can be used to control and communicate.  Statuses can be used in reporting (show me a report of all internal orders with a status of TECO, or technically complete).  Statuses can be used as selection criteria (select all internal orders with a status of CLSD, or closed).  Statuses can communicate the state of an object (ready for archiving, not ready for settlement execution).
    There are SAP standard delivered statuses that apply to all object types.  These are known as SYSTEM STATUSES.  CRTD, REL, SETC, TECO are examples of SAP standard system statuses.  SAP standard system statuses cannot be removed from use.  You cannot override the SAP system status with a user status.  You cannot change the behavior of an SAP system status.
    User statuses (or user defined statuses) exist in addition to SAP standard statuses.  User statuses are intended to augment or refine SAP standard statuses, not replace them.  There is no limitation to the number of user statuses that can be created.  Both system and user statuses influence business transactions in the same way.
    An object can have multiple statuses active at the same time.  A plant maintenance order can have released, preliminarily costed, work order printed and confirmed statuses all at the same time.  For SAP display purposes only one status can be displayed on the status line in master data screens, but it is possible to see all active statuses for an object at one time by drilling down into the master data screens.
    A STATUS PROFILE, or user status profile, contains individual user statuses and the business transaction rules defined for those statuses.  There is no limit to the number of user status profiles that can be maintained in SAP.  A user status profile is assigned to an order type or a project profile in configuration.  This user status profile is then defaulted into all objects that reference that order type or project profile.  A users status profile can be overwritten (or deleted) in an individual object (via native master data screens), but only if a user status has yet to be activated for that particular object.  Once a user status has been activated for that object the user status profile cannot be changed.
    HOW STATUS MANAGEMENT WORKS
    When an object (internal order, WBS element, production order) is created SAP assigns the system status CRTD.  MIT automatically releases the order, so the system status REL is also activated.  If there is a user status profile defined in the order type (or project profile) this is carried over into the internal order (or WBS element).  If not, only the SAP system statuses will apply to this object.
    When a user executes a business transaction for this object, SAP checks the user status to see if that business transaction can be executed without any additional influence from a user status, can be executed but with a warning message being issued, or cannot be executed at all.  SAP also checks whether the business transaction sets or deletes any other user statuses within the user status profile.
    A user status may also be maintained directly in the object master data.  Accessing the master data screens allows a user to manually maintain user statuses.  If necessary, an authorization code can be assigned to a user status to ensure that no unauthorized persons can change the status of an object.  Once changed, the new user status is fully active and acts no differently than if a business transaction set the user status.
    Status management and business transaction control only work with standard SAP transactions.  Z transactions will not show up on the business transaction list for an object.  The business transaction table is configurable, but SAP strongly recommends not changing that table.  SAP directly updates that table via support packs and it is often impacted during upgrades.
    Authorization codes / keys are available in user statuses.  The authorization code is checked only when user statuses are being set manually, from within the objectu2019s master data screens.  This ensures the user has the proper authorization to set that status for that particular object.  However, it is important to understand that SAP sets a user status in reaction to a business transaction it does not perform an authorization check.

  • *Credit Control Data reome form sale order header data*

    Hi
    have any option for remove credit data from sale order header (VBAK-KKBER)?
    Thanks
    L.C

    Hi Lalith,
    Its not possible to delete KKBER Data from Sales Order.
    because it carries out from customer master XD01 and FD32
    if you want remove, if the sales order is open status delete the same and delete it from customer master and again raise the sales order and check the same,
    Thanks and Best Regards,
    Muralidharan S

  • How to cancel the sales order - header and line status are in Entered Stage

    Dears,
    I have some sales order to be cancelled in which the header and line status are in *"Entered"*. I am not able to cancel these sales order.
    Also note that these orders are for maintenance service.Once i book these orders the lines will change to closed status.
    So it is not possible to book and cancel the lines.
    Kindly me to resolve this.

    926530 wrote:
    Boss,
    If i do Action-->cancel on header, it just makes the qty to zero.But the header and line status still showing as entered.It will not cancel the order.
    The problem for me is that these lines are coming in my monthly reports. This is what your question says...be more specific as what is your issue..which in turn is your problem
    How to cancel the sales order - header and line status are in Entered Stage
    Coming to your Action-->cancel...as far as i know ...the header status will change to canceled..
    unless until you have some processing constraints in place...which is stopping you...
    HTH
    Mahendra

  • Sales order header status

    Dear Gm,
    I want see sales order header status for "n" number (Mass) of sales order,From the Sales order header status i want the details abt ("Incomplete header data"/Partially rejected),Please guide me how to get the same,
    now i am taking From VA03 ,But it consume more time
    Regards
    Arun kumar K

    incomplete doc - header data
    Use Table VBUV - Sales Document: Incompletion Log
    Where, Table-Field VBUV-TBNAM maintain Tables as VBAK
    Partially rejected
    Header level
    VBUK-ABSTK as B - Partially processed
    Item Level
    VBUP-ABSTA as B - Partially processed
    Regards
    JP

  • User Status update on Sales Order Header

    Hi all,
    I need to update the "User Status" on sales order header when a sales order is saved. As user status reside in JEST, what available user exits are there to change/insert new user statuses? I don't believe the common exits like MV45AFZZ would do.
    To clarify, to get to these user statuses, you go to the header of the sales order, select on the 'Status' tab, then click on the "Object Status" pushbutton.
    Any help would be greatly appreciated in the form of points!
    Thank you.
    Liam

    Hi Liam,
    In the Program MV45AFZZ in the FORM userexit_save_document
    you use the following fn module to change the user status
    'STATUS_CHANGE_EXTERN'
    Example
    IF t180-trtyp = 'H'.  "Only creation time
      READ TABLE xvbap WITH KEY matnr = c_matnr.
      IF sy-subrc = 0.  "If above material exist then change status
        LOOP AT xvbap WHERE cuobj NE space
                       AND  matnr =  c_matnr.
          l_objnr = xvbap-objnr.
          CALL FUNCTION 'STATUS_CHANGE_EXTERN'
            EXPORTING
              objnr               = l_objnr
              user_status         = 'E0013'  "Send ej IDOC
              set_chgkz           = 'X'
            EXCEPTIONS
              object_not_found    = 1
              status_inconsistent = 2
              status_not_allowed  = 3
              OTHERS              = 4.
        ENDLOOP.
      ENDIF.
      sy-subrc = 0.  "Restore the previous condition
    ENDIF.
    Reward if helpful *********

  • Function Module to update the sales order header status

    Hi,
      I am looking for a function module to update the Sales order header status.
      Pls. let me know if anybody has used any FM to update the SO status.
    Thanks,

    By mentioning status do you mean Object status or Document status??
    For Object status you may use FM: STATUS_MAINTAIN
    For document status it changes according to flow.
    Regards
    Eswar

  • Link between sales order to Credit management

    Where can we link between sales order to Credit management?

    HI Gopala rao.,
                       In VOV8 sales document type there is <b>credit limit & Credit group</b> Where we asign the credit mage,ment data to Order
    The configuration part of credit managemnt is
    CREDIT MANAGEMENT:
    A credit limit may be a customer’s credit limit, which is the permitted limit of value of open items, such as invoices not yet paid, plus the value of open sales orders.
    The credit limit is the total combined value of the following documents:
    Net value of sales order
    Open Sales order: order created, but not delivered
    Open deliveries: delivered, but not invoiced
    Open billing doc: value of billing doc, which has not yet been forwarded to accounting
    Open items: forwarded to accounting, but not settled.
    Types of Credit Check
    • Simple Credit Check
    • Automatic Credit Check
    o Static
    o Dynamic
    Simple Credit Check:
    SPRO- IMG- SD- Basic Functions- Credit Mgmt/ Risk Mgmt- Simple Credit Check- Assign Credit Check to Doc Types.
    • Based on sales doc types
    • It will check all the above-mentioned docs & if the credit limit exceeds, the system responds in the way defined by you in the configuration menu.
    • Cannot differentiate according to customer
    3 ways to Control the Simple Credit Check:
    A: warning
    B: error message: the doc cannot be saved
    C: warning message with delivery block: the doc can be saved but is automatically blocked for delivery.
    Automatic Credit Check:
    This credit mgmt control is maintained by using the automatic credit control functionality. The automatic credit control divides the sales doc types, the delivery doc types, & goods issue into specific credit groups. It also uses the customer’s risk category as assigned to the CMD of the payer & assigns an outcome proc to the combination of the above 2 objects, i.e. the credit group & customer risk category along with the credit control area. The definition of customer’s risk category is carried out in the fin accounting module.
    A customer’s risk category is a grouping category that controls the credit check when automatic credit control takes place. Thus one can assign high-risk customers to risk category for e.g. A01, medium risk to B01 and low risk to C01.
    Automatic credit check divides customers in to 3 categories:
    • High-risk customers,
    • Low risk customers &
    • Medium risk customers.
    A credit check &#61614;can only occur at 3 places: Credit Group
    Sales order: for high risk customers
    Delivery: for medium risk customers
    Goods Issue: for low risk customers
    Credit Control Area (CCA): highest organizational element in credit management. A credit control area is an organizational unit that is comprised of one or more company codes. A company code can have no more than one credit control area. Defined by FI.
    Menu Path to create Credit Control Area: OB45: FI people.
    SPRO- IMG- Enterprise Stru- Definition- Fin Accounting- Define Credit Control Area
    Credit Control Area Description
    0001 Credit control area 0001
    1000 Credit control area Europe
    Menu Path to Assign Company Code to Credit Control Area: OB38: FI people.
    SPRO- IMG- Ent Stru- Assignment- Fin Accounting- Assign Comp Code to CCA
    • It is possible to assign Credit Control Area to a Sales Area. This is more specific assignment than the assignment to Company Code.
    Company code Company name City Credit Control Area Over write CCA
    Menu Path for Defining Risk Categories: OB01: FI people
    SPRO- IMG- Fin Accounting- Account Receivables & Payables- Credit Mgmt- Credit Control Account- Define Risk Categories.
    Risk Category CCA Name
    001 4500 Low risk
    002 4500 Medium risk
    003 4500 High risk
    Menu Path for defining Credit Groups: OVA6
    SPRO- IMG- SD- Basic Function- Credit Mgmt/ Risk Mgmt- Credit Mgmt:
    • Define Credit Groups: OVA6
    • Assign Credit Groups to Sales Doc’s & Delivery Doc’s
    o Credit Limit check for Order Types: OVAK
    o Credit Limit check for Delivery Types: OVAD
    • Define Automatic Credit Control: OVA8
    Define Credit Croups: OVA6
    One merely creates a credit group for each differentiation in the doc type. You enter the credit groups when you configure the sales doc types for credit management & define the automatic credit check. The following credit groups are contained in the standard R/3 system:
    • 01: credit group for sales order
    • 02: credit group for delivery
    • 03: credit group for goods issue
    CG (Credit Group) Doc Credit Group
    01 Credit group for sales order
    02 Credit group for delivery
    03 Credit group for goods issue
    Assign Sales Documents & Delivery Documents:
    Sales Doc Type Descp Check Credit Credit Group
    OR Std Order D 01
    Delivery Type Descp Del Credit Group GI Credit Group
    LF Delivery 02 03
    Define for each sales doc type whether a credit check should be carried out. Enter ‘D’ if an automatic credit check should be carried out.
    Specify a Credit Group
    Specify a Credit Group for the Delivery Type for which you want to carry out a credit check
    Specify a Goods Issue Credit Group for the Delivery Type for which a credit check is to be carried out for goods issue.
    SIMPLE CREDIT CHECK CANNOT BE ASSIGNED TO DOCUMENTS.
    Define Automatic Credit Control:
    One can now assign settings to the combination of the Credit Control Area, the Customer Risk Category & the Credit Group.
    CCA Risk Cat Credit Group Credit Control
    4500 001 01 Low risk sales orders
    4500 001 02 Low risk deliveries
    4500 001 03 Low risk goods issue
    4500 002 01 Medium risk sales orders
    4500 002 02 Medium risk deliveries
    4500 002 03 Medium risk goods issue
    4500 003 01 High risk sales orders
    4500 003 02 High risk deliveries
    4500 003 03 High risk goods issue
    Select line item and go to details, you can decide whether to do Static or Dynamic Credit Check. Credit Horizon can also assigned here. Additional function checks can be performed here:
    • A credit check when the maximum document value is exceeded.
    • A credit check when changing critical fields.
    The risk category assignment occurs in the same place as the customer’s credit limit, which is the customers credit management screen. That is, the risk category is assigned to the customer by the Finance in transaction code FD32.
    The customer credit master record is divided in to 5 views:
    • Overview Screen: gives an overview of credit settings in relation to the customer, including his credit limit, credit exposure, the %tage of credit limit used, his payment data & his risk category.
    • Address: view gives the customers address details as they appear in CMD
    • Central Data: is a view that shows the total credit limit the customer can receive across all credit control areas as well as the maximum limit he can receive in one credit control area.
    • Status: view shows the customer’s actual individual details according to particular CCA being investigated. This includes his credit limit, percentage used, credit exposure, risk category, whether he is blocked due to credit or not.
    • Payment history: view displays the payments made by the customer for a particular credit control area where a comp code is assigned.
    Static Credit Check Dynamic Credit Check
    Net Doc Value Net Doc Value
    Open Order Open Order
    Open Delivery Open Delivery
    Open Billing Open Billing
    Open Item Open Item
    Compares the total combined values of the above-mentioned documents to credit limit. Plus credit horizon. Compares the values of the following documents to credit limit + credit horizon.
    Credit horizon has an attached time period that states that the system is not to include sales orders in the total of outstanding items created after that specified period i.e. for the purpose of evaluating credit, you want the system to ignore all open orders that are due for delivery after the horizon date. Maintained for low & medium risk customers.
    Update Groups
    Basically it is a info structure where system stores all the data about credit limit. The credit relevant data is updated in a info structure, where it is accessed & updated. Thus each automatic credit control must be assigned an update group.
    • Update Group 000012
    • Update Group 000015: delivery & billing
    • Update Group 000018: sales order, delivery & billing.
    Update group 000012, updates at:
    • Sales doc: increased order value
    • Delivery: decreased order value & increased delivery value
    • Billing: decreased delivery value & increased billing amount
    • Invoice: decreased billing amount & increased open item value.
    Release Blocked Sales Order/ Deliveries:
    • VKM3: sales order
    • VKM5: delivery
    • VKM4: both
    One can see the offending document. Note on the right hand side, the ‘Status Field’. This shows the check, the doc failed. If this field is empty, the doc did not fail a credit check, even though it may be in the list of SD documents that are “required to be released”.
    To release the doc, one indicates the doc to be released and then clicks on the ‘Release Button’. The result is the offending doc entry, highlighted green. One then proceeds to save, after which you are informed the doc number has been released.
    • Net value with sub total ‘A’, in pricing proc, will be the basis for credit limit.
    REWARD if helpfull
    Thanks & Regards
    Narayana
    Message was edited by:
            manam narayana

  • Return Sales Order - And its Status

    Hello Experts,
    I have a question in the sales returns scenario.
    Step 1: I Create a sales order ( With two items and delivery full ) and perform steps till billing ( invoice ).
    Step 2: I Create Return sales order with reference to the first sales order but i take Only one item to return.
    Now the status of the return sales order is Being Processed.
    Step 3: I create a complete ( deliver full quantity of the item ) return delivery with reference to the return sales order and save the document. Now still the return sales order is in status Being Processed. Ideally i should have been Completed.
    Step 4: I do the Goods receipt for the return delivery. Now also the status of the returns sales order is Being Processed instead of Completed
    Kindly suggest any way to control the status of sales document or is this the ideal way( if so what's the functional purpose behind this ? ).
    Is this because the billing block is still set in the Return sales order ?

    Do you mean that only after credit memo creation or clearing of the credit memo from FI the status of return order is set to completed?
    If this is an ideal scenario, in one of our systems the status of return sales order is set to completed immediately after returns delivery creation.
    This behavior is same as that of normal sales order scenario, where the sales order status is set to completed once the delivery happens.
    Kindly suggest, if there is any customizing to control the oeverall status update for specific sales order types or based on the type of sales scenario.

  • Sales tab in Sales order header

    Hello Gurus
    When i create a sales order and delivery number for my warehouse. the the 'Delivery status' field of Sales tab in the sales order header data is automatically getting updated 'Fully delivered' .If i create a sales order with out saving the entry and if i go to 'Delivery status' field to check for the delivery status it says 'Not delivered'
    Can you please let me know how this field is getting updated .Is there a config where i can control this .
    Thanks

    Hi,
    Once you create a delivery for the respective line item for same qty  the delivery status will be change to fully delivered.
    But when you create a sales order in VA01 and before saving you see the status its " Not delivered" because the line item deliver has not been donr ( delivery document not created). Its an standard SAP behavior.
    Also check the copy control in VTFA  in update document flow field at item category level
    Hope this will help you to resolve your query!!
    Regards,
    Krishna O
    Edited by: Krishna O on May 28, 2010 7:16 AM

  • Copy control from Sales order to Credit memo-VTAA

    Hi
    We have a below requirement..
    While copying from sales order to Credit memo order type,defualt payment terms in credit memo order type should be always change to NT00(payable immdtly due date)
    So we had written a routine under sales order copying .VOFM-901
    In VTAA we have set 901 instead of 101 under Copying requirements for transferring business data-under change header view..
    But while creating sales order type CR with reference to normal sales order,it is not copying the NT00 payment term..
    Can u tell us whether any other settings required in VTAA.
    Note:We had copied existing 101  to 901 with addition logic -
    IF VBAK-AUART = 'CR'.
       VBKD-ZTERM = 'NT00'.
    ENDIF.
    Regards
    Sudha

    Hi Sudha,
    The coding added in 101 is not enough to achieve your requirement, because of the fact that the VBKD-ZTERM will be filled again with the original value from CVBKD in the copy routine on the item level. (For example 102 for OR to OR in standard system)
    Could you please create another routine 902(adding the addition coding to 102) and replace it on copy control for item level?
    It should work then.
    Regards,
    Smile

  • OM Sales Order Header should be Closed Immediately after Lines are closed

    Hi,
    OM Sales Order Header should be Closed Immediately after Lines are closed.
    Could you tell me how to modify the header workflow, if anyone has done this...could you please share.
    Thanks

    Thanks Mano, it worked.
    I have one question in workflow, let me create new thread.
    Could you please check my other question at below.
    OM Notable able to capture Approver Rejected comments from the Note field in WF
    OM Notable able to capture Approver Rejected comments from the Note field in WF

  • Sales Order Header texts

    Hi All,
    I am getting 3 texts from 850 IDOC on to Sales order header texts. I created 3 new textid's for them. This is working properly in Dev system and I moved them to Test system.
    In Test system I checked the header texts, only the following text id's are comming. They do not have any data and remaining textid's are not comming.
    DEV
    Form Header
    Header note 1
    Header note 2
    Shipping instructions EN
    SAC code C000
    SAC code I410
    SAC code E740
    Carrier requested by customer
    PST EN
    PED EN
    ZTR EN
    TEST
    PST
    PED
    ZTR
    I went to VOTXN and checked sales order header texts ->  Textprocedure -> Z1-Order Text Procedure, Text Id's in this procedure, I see 11 ID's there in Dev and in test system I see only PST, PED and ZTR. I created these three in text object VBBK sales docu header. It is working fine in Dev and when I move these to Test system only these 3 id's are showing up. I wrote the code for this in ZXVEDU06. How come the remaining Id's are not showing here and values are not comming for these 3 Text Id's.
    Can Someone please help me with this.
    Thanks,
    Veni.

    Hi Bhasker and Bill,
    Thankyou for your valuable information.
    Bhasker, I added all texts again and trasported. Now in test system I can see all of them.
    I commented out all the code in ZXVEDU06 and created a sales order, as you said it picked up all the texts automaticaaly. This is the first time I am doing this work, so by someone's suggestion in SDN I created the include and wrote the code in ZXVEDU06.
    It is working fine for this customer but if I try to create sales orders for other customers then I am getting the following error.
    I/O error for text VBBK 0023 EN
    I/O error for text &1 &2 &3 &4
    Message no. TD607
    Diagnosis
    You want to read a text from the database, delete it, or save it to the database.
    System Response
    An error occurred when the database was accessed.
    Procedure
    Try repeating the procedure. If the error recurs, contact your system administrator.
    Can someone please help me with this problem.
    Thanks,
    Veni.

Maybe you are looking for

  • QuickTime movie in Keynote 3 want to export Keynote as QT

    So I have a Keynote presentation. It is mostly images but 3 slides play small Quicktime movies. Interviews I did on DV, converted to 320x240 using Sorenson V3 and IMA 4:1 audio. In Keynote 3.0, they now have controls. They play great. But I need to e

  • JS CS3 import external data into Dialog.

    I would like to create a dropdown in a dialog that is populated by either an XML or txt file. Can this be done? First an xml or txt file would be created listing all the current products we do. This would sit on a server. The InDesign script would re

  • I'm trying to update apps on my ipad

    I'm signed into itunes but app is signed in to a different user. how to I sign out of app store to sign in correctly?

  • Issues opening attachments 800w

    I have a 800w with Windows mobile 6.1 connecting to a 2003 Exchange SP2 server.  Everything is syncing just fine with active sync but when I try to open a attachment I get nothing.  It looks like its downloading but never turns the icon to a real ico

  • Spinning Ball and cannot see my harddrive

    I'm having a problem seeing my hardrive when I log into the main user account. All of the other accounts work fine,"I see the harddrive in the other accounts". When I'm in the main account I don't see the hardrive or the Finder windows. I do see the