Remove automatic credit block in sales order

Gurus,
How can I remove credit block in sales order for specific sales organization/sales area?
Thanks in advance
Raj

Hi,
The path is:
SPRO>Enterprise Structure>Assignment>Financial Accounting>Assign company code to credit control area.
T.Code is OVA8.
Hope these helps you.
Regards,
Krishna.

Similar Messages

  • Removing of billing block in Sale Order through workflow

    Hi all,
    I want to remove  the billing block in sale order when the person approves suing user decision step  in workflow .
    ANy idea would be great ...
    Regards,
    Venki

    Hi Surjith,
    task is not for the billing process ....
    and here my big problem is that i was unable to call the custom method in worklofw ....
    So attachment is not working in workflow only it works while testing if i pas the key value .
    Here my requirment is to remove  the billing block if the person approve in decision step ...
    Deepa,
    Can u tell me how to call a custom method here i am using standard BUS2032 in my task.
    already i  have BO with custom method but i dont know how to call it when the transaction get executed ....
    Thank u for ur reples...
    Regards,
    venki

  • Credit Block released Sales order report

    Hi Experts,
    My client is given few sales orders (around 4)no and requesting us, to prepare the credit block released sales orders report (include released person user ID).
    *.No change logs is existing for all sales order and deliveries.
    For above requirement I am using CDHDR table data but I am not getting credit block released sales order report.
    Below fields I am using in CDHDR Table.
    Change doc.Object (objectclas) : VERKBELEG
    Document No (CHANGENR): Sales order no XXXXXXX
    Transaction no (TCODE) : VKM1,VKM2,VKM3
    Date(UDATE) : 25.09.2011 to 09.11.2011
    Experts, Can you please help me out for this.
    Thanking you!!!!
    Regards,
    Vijaykumar Kola
    *.I'm already aware of this is a new development.

    Try this, simple report... Here we check the new value of credit  status field VBUK-CMGST and if it is 'D' we know that someone used VKM* transaction to release the document. Also you need to format the sales order number with leading zeros so it occupies all 10 digits and pass it to CDHDR-OBJECTID field (and not CHANGENR field). In the below code I am using select option for sales order number, so I know it will be formatted with leading zeros and so select on CDHDR will be successful.
    *& Report  ZTV_TEST
    REPORT  ztv_test.
    TABLES: vbak, cdhdr.
    SELECT-OPTIONS: s_saldoc FOR vbak-vbeln OBLIGATORY,
                    s_udate FOR cdhdr-udate.
    RANGES: r_objid FOR cdhdr-objectclas.
    DATA: ls_cdhdr TYPE cdhdr,
          ls_cdpos TYPE cdpos.
    IF NOT s_saldoc IS INITIAL.
      LOOP AT s_saldoc.
        MOVE-CORRESPONDING s_saldoc TO r_objid.
        CONDENSE: r_objid-high, r_objid-low.
        APPEND r_objid.
      ENDLOOP.
    ENDIF.
    CHECK NOT r_objid[] IS INITIAL.
    SELECT *
      INTO ls_cdhdr
      FROM cdhdr
            WHERE objectclas = 'VERKBELEG' AND
                  objectid IN r_objid AND
                  udate IN s_udate AND
                  tcode LIKE 'VKM%'.
      SELECT SINGLE *
        INTO ls_cdpos
        FROM cdpos
          WHERE objectclas = ls_cdhdr-objectclas AND
                objectid = ls_cdhdr-objectid AND
                changenr = ls_cdhdr-changenr AND
                tabname = 'VBUK' AND
                fname = 'CMGST' AND
                value_new = 'D'.
      IF sy-subrc = 0.
        WRITE:/ ls_cdhdr-objectid(10), ls_cdhdr-username,
                ls_cdhdr-udate, ls_cdhdr-utime.
      ENDIF.
    ENDSELECT.

  • How to block planned order when there is a credit block in sales order

    Hi Experts,
    Planned order should not be created when there is a credit block at sales order level. Can someone help me in solving this?
    Expecting for your valuable comments.
    Regards,
    JANA

    Go to t.code OVB8 and add routine 101 under routine column and routine 1 under system routine column and then create new document and test.
    Regards,

  • Credit block a sales order or delivery individually

    Hi
    If I just wanted to block a sales order or delivery because of a credit issue,  but did not want the customer to go on credit block/hold,  is the only way to do this use the delivery and billing block.  I can't remember being aware of any other blocks we can use
    Please advise.
    thanks

    Hi Kyliesjordan
    It depends on if you want the customer's credit exposure be impacted or not. If you are not bothered about the credit limit, then you can go for order blocks as mentioned by you.
    If you want the system to be updated for credit exposure then you can configure simple/automatic credit checks as per your requirement.
    Best Regards
    Sathees Gopalan

  • Credit Block In Sales Orders

    Hello All,
    We have a special situation here? There was JOB executed by some body deleted all the credit block for the list of sales orders and we need to set them back to the old values?
    Does any one ahs an idea how can we do this??
    So that it will go to normal process of VKM3 list so that the right person can release them again.
    KR
    SA

    Srinath,
    Thanks for the reply but what i need to do is not this. We have dynamic credit check in place it blocks the sales orders accordingly.
    So normally some body from business will release these blocked orders using VKm3
    But yester day some program is updated the main fields in the sales order i.e. VBUK table
    So these list of documents are not appearing in the VKM3 any more and they have released automatically.
    But i want to set back the block again i mean credit block not delivery or billing.
    So that it will again allow the business to release it again
    Thanks
    SA

  • Removing of Delivery block in Sales Order using Authorization

    Hello,
    I have a urgent requirement on removing a Delivery block using authorization.
    The object V_VBAK_AAT is assigned to me and the ACTVT : 43 is permitted so I can release the block.
    As this was  not working I have created my own object with values ACTVT as 01, 02 , 43 and LIFSK : 1-10,11,12-99 .
    I am trying to remove the block from VA14L from VA14L I select my order with respect to delivery block and it navigates to VA02.
    From VA02 I am trying to remove the block.
    As this requirement may be simple but it is blocking my development.
    Thanks.

    Please correct whether I understood your issue correctly or not.
    You have developed the program only to put delivery block to Sales Order. This block should be approved by Authorized people for allowing the users to create delivery else Sales order delivery should not be possible. Is that program has any other additional functionality other than setting Delivery block??
    To keep delivery impossible till the Authorized person approves Sales order, you have the option of User Status. Process for creation of User Status for your requirement
    Create User Status Profile in OIBS
    Keep BLCK (Blocked for Delivery) & APPR (Approved for Delivery) as 2 statuses (No. of status can be as per your requirement. Here, simply I have 2 statuses)
    Assign Object types as "Sales Order Header" (if you want the Authorized people to approve at header level) or "Sales Order Item" (if you want the Authorized people to approve at Item level, may be for partial delivery)
    Keep BLCK as Initial status & Double click on BLCK status & click New entries on "Business transactions"
    There are many Business transactions such as "Create Delivery" / "Create Goods Issue for delivery". As per your requirement, select Forbidden option in one of the above mentioned business transaction
    Create Authorization Key in BS52 for Authorized People, say, as MNGR (Manager)
    Assign that Authorization Key to APPR user status in User status profile
    Using PFCG, you can create separate role by assigning this Authorization key
    This can be different kind of solution from your way. For reference, you can refer below document. Document content points some other space & transaction. But you can relate to above steps mentioned.
    User Status in SAP

  • Mass Removal of Billing Block at Sales Order item level

    Dear Experts,
    Does any one know how to remove billing block at sales order item level at mass level ?
    Is there any standard t code for the same. Kindly let me know the same
    thnx in advanve
    regards,
    Sagar

    Hi Sagar Wagh,
    I want to make a little correction,
    Go to T-code V.23
    Give your criteria like
    Sales organization
    Distribution channel
    Division
    Then in the last of screen there is check box Delete billing block
    check this box and excute
    System will ask you
    Do you really want to delete billing
    blocks for all docs. to be selected?
    Click at yes
    System will show you the list of all documents
    Select all and Click at Delete billing block
    System will delete the billing block in one go from all the documents.
    Regards,
    MT
    Edited by: M T on Feb 23, 2010 6:03 PM

  • Set credit block at Sales Order

    Hi,
    I would like to ask how can I set the credit block for a particular Sales Order during creation.
    thanks.

    Hi,
    As suggested go to OVA8, set status block.
    Then go to OVAK, select your sales document type then select "B" which will block your sales order which you will have to release from VKM1.
    Hope this answers your query.
    Hrishi

  • Customer Credit Block at Sales Order Level

    Dear Experts,
    We have requirement,
    Example:
    If we received the Bank guarantee from customer(Berry) $10000,till $10000 it should able create the sales order, more than bank guarantee system should block the sales order creation.For same customer(Berry) some times will receive the cash instead of Bank guarantee.in this case system should not block the sales order creation and this sales order value should not update in FD33. Please guide, what configuration needs to be done to full fill this requirement. Thanks in Advance.
    Regards
    Shankarappa H L

    Dear shankarappa HL
    Please post this question in FI Forum may be it will help , i hope

  • Automatic removal of billing block in sales order

    Hi Friends,
    I want to remove billing block in the sales order automatically (by system) when I click the PGI for the relavant delivery document. I hope this is not possible through standard. If not please guide me how to solve this issue.
    Thanks
    Kumar

    Hi,
    Please ask ABAPer to write a program(event program) to delete a billing block.
    As and when you click the PGI button for your delivery in "VL02n" T.Code,the PGI will be done in standard.Simultaneously,billing block is to be removed.Means the entry from the field "VBAK-FAKSK" is to be removed.
    If the billing block is also present at the item level too even it has to be removed.Means the entry from the field "VBAP-FAKSP" is also to be removed.
    Regards,
    Krishna.

  • Downpayment request with Credit Block in sales order

    Hello,
    We have requirement of creating a down payment request  against sales order which has credit block. Once downpayment is realized in system, the credit block will be released for order processing.
    Thanks in advance.
    Regards,
    Chandresh

    If i maintain Deviation in % as '0' and Number of days as '45', will this work for me
    I would be happy if you can test this in your system and share the outcome.  Please put some efforts on your own and post here if you are not able to overcome from the issue and dont expect spoon feeding which is not encouraged in SCN.
    G. Lakshmipathi

  • Credit Block in Sales Order

    Hi Gurus
    I have an issue in production system wherein a user has created a sales order for a customer say 'X' which went into a credit block. When the credit master is checked for the customer the credit limit was well below 100%.
    There are no open order and deliveries for the particular customer. We are having dynamic credit check.
    Could you please help me out why the sales order is going into a credit block when the credit exposure is not 100% and also there are no open orders, deliveries.

    Hi Balaji
    I have checked all the things I hope iam not missing out on anything but again iam including the things which I have checked.
    Credit Master data of the customer
    Credit exposure
    No Open sales order
    No Open delivery
    No Open billing
    Open items but the payment due is in future
    No overdue items
    No oldest open item is available
    Kindly help

  • Invoke IDOC ORDCHG whenenver credit block of sales order is released.

    Hi All,
    Scenario : In the business process, whenever a sales order is created then a Purchase Order is created. And then an outbound ORDERS03 IDOC gets created. Now if the Sales Order is on credit block then a custom segment is dynamically created and sent through the IDOC. But if the later on the Sales Order credit block is released then I need to again send the IDOC with custom segment IN IDOC ORDCHG. As the change in credit block status in Sales Order does not reflect in the PO, so the IDOC doesnt get created. Please advice how to get the IDOC created even in case of credit block status change.
    Thanks in advance..
    Rahul.

    Hello,
    As you said the customer is over limit, after you release the order and do avialability check again, the order will again get blocked because of credit check. The system is behaving correctly as per standard SAP.
    Check the credit limit of the customer and the credit availed in FD32. If you want to deliver the order, you will need to release the credit block again.
    Prase

  • *Automatically Delivery block on sales Order*

    Hi
    can you please tell me how to get delivery block automatically when creating  sales order?
    thanks
    L.C

    Hi
    Use user exit MV45AFZZ and take a help of ABAPER to add the program in it
    IF sy-tcode EQ 'VA02' AND vbak-lifsk IS INITIAL AND ( sy-uname NE ' ADD ur own user ID ' AND sy-uname NE 'ADD ur own user ID ' ) AND
        vbak-vkorg EQ '1000' AND vbak-vtweg EQ '10' AND vbak-spart EQ '01'.
        DATA : BEGIN OF lt_item_old OCCURS 0,
               posnr TYPE vbap-posnr,     " SD Document Item Number
               zmeng TYPE vbap-zmeng,     " Quantity Of that Item
               END OF lt_item_old.
        CLEAR : lt_item_old[], lt_item_old.
        SELECT posnr
               zmeng
            FROM vbap INTO TABLE lt_item_old
            WHERE vbeln EQ vbak-vbeln.
        IF sy-subrc EQ 0.
          LOOP AT xvbap.
            READ TABLE lt_item_old WITH KEY posnr = xvbap-posnr.
            IF sy-subrc EQ 0 AND lt_item_old-zmeng NE xvbap-zmeng.
              vbak-lifsk = 'Z8'.      " Delivery Block - Authorization Await
              EXIT.
            ELSEIF sy-subrc NE 0.
              vbak-lifsk = 'Z8'.
              EXIT.
            ENDIF.
          ENDLOOP.
        ENDIF.
    Regards
    Santosh.AR

Maybe you are looking for

  • Terminate loop in user decision step

    Dear Experts,                      I have a user decision step in my workflow; which has two buttons e.g; approve and reject buttons. this step is in the loop. I want to terminate the loop when user click on Approve button. How I should capture the I

  • How to convert Smart Form into PDF format and return the result in BAPI?

    I want to convert a Smart Form into PDF format and return the result in BAPI. can anyone tell me how it can be done with related example regards pranay

  • Bit rate too high

    I have been encoding a DVD all day, using the same settings (DVDSP's factory default for an SD DVD). I then had to replace some footage in one of the videos and that is when I strating getting the message about the bit rate being too high. The replac

  • Notebook cases

    I'm a student who recently bought a macbook (grrr at the fact that they had a new release!!) anyways.. apple sells notebook cases. They offer the Incase Hardshell Case for 13-inch... or a Incase Neoprene Sleeve for 13-inch... Since I'm a student I ca

  • ISE and self register

    Hello, Can ISE differentiate and see on which wireless AP a user(MAC) connects ? Goal: i want to allow guest self registration, but not from any Access Point. We have a presentation room where presentation for third parties are given regularly. This