VKM1/2/3/4, what fields will be changed in these transaction?

Hi all expert,
now i have 4 Tcode, VKM1/2/3/4, can i know what these Tcode used for? what is the difference??
and, inside these Tcode can release, reassign, reject, forward, and forward to authorization, what are these?
If I select one of the SO from the list, then click on...mayb forward to authorization and save, what field will be changed? (how if i click release and save? reject and save? forward and save? reassign and save??)
becos now i need to do sth in the userexit, that when user do sth in these tcode, then click save, i will stop at the middle and check what is the diff between the data in database and the changes the user made, so i need to know what effect when i perform those action(release, reassign, reject, forward, authorization) in those Tcode(VKM1/2/3/4). really appreciate if u can help...
All these regarding IDOC, I will need to send an IDOC out whenever there's transaction in VKM1/2/3/4, but I don't even know what data will change in those transaction....
Thanks.
Best Regards,
JL

Hi
These Tcodes are related to Sales Documents Blocking and releasing.
VKM1--displays the Blocked Sales Documents (orders, quotations and enquiry etc which were blocked for some reasons)
VKM2  - Released Sales Documents
VKM3 - List Sales Documents
VKM4 - List of sales documents and deliveries.
What fields are changed during each operation you have to debug the program and see.
Reward points if useful
Regards
Anji

Similar Messages

  • VKM1/2/3/4, what data will get changed after these transaction?

    Hi all expert,
    now i have 4 Tcode, VKM1/2/3/4, can i know what these Tcode used for? what is the difference??
    and, inside these Tcode can release, reassign, reject, forward, and forward to authorizaton, what are these?
    If I select one of the SO from the list, then click on...mayb forward to authorization and save, what field will be changed? (how if i click release and save? reject and save? forward and save? reassign and save??)
    becos now i need to do sth in the userexit, that when user do sth in these tcode, then click save, i will stop at the middle and check what is the diff between the data in database and the changes the user made, so i need to know what effect when i perform those action(release, reassign, reject, forward, authorization) in those Tcode(VKM1/2/3/4). realy appreaciate if u can help...
    Thanks.
    Best Regards,
    JL

    Hello JL,
    VKM1 provides you with the list of credit blocked sales documents, VKM2 - with already released documents, in VKM3 you can enter any sales order number (independent from the credit status), in the VKM5 you can enter any delivery number and VKM4 provides with a list of the documents according your selection criteria.
    In all these transactions you can: 1. release the sales document - (select SO, release and save). The credit status will be changed to D (released), the ATP will be done and you get the confirmed quantity and so on).
    2. Reject - the sales order will be rejected and saved - the same as if you go into VA02 and reject the order manually 3. forward - the sales order will be forwarded to another credit representative for releasing 4. forward to authorization - if the sales order is covered by the credit card, the system executes a new authorization (if necessary) and saves the sales order.
    I hope this information helps you.
    Best regards,
    Lela

  • SOA Suite 10g and SOA Suite 11g? what are the major changes in these two?

    Hi Experts,
    I am keen in knowing about Soa Suite 11g. SOA Suite 10g and SOA Suite 11g, BPEL changes? what are the major changes in these two product/tool wise? Is now OSB is part of Soa Suite 11g? it would be helpful for us to know what are the major changes and updates or modifications came in 11g.
    Please share this valuable information.
    Is there still any version is in progress from Oracle, which is yet to be officially launched from oracle?

    what are the major changes in these two product/tool wise? Few major changes to enlist are that SOA suite 10g was using Oracle Application Server (OC4J) however 11g is on Weblogic and 11g is based on SCA. B2B is now part of SOA suite itself and OSB can share a domain with SOA. You may refer below link to know few more -
    http://blogs.oracle.com/soabpm/2010/03/11gr1_patchset_2_111130_soa_fe.html
    Is now OSB is part of Soa Suite 11g? OSB has a separate installer but can share a domain with SOA and SOA-direct binding is also supported now. Refer below link to know more about new features in OSB 11g -
    http://download.oracle.com/docs/cd/E14571_01/relnotes.1111/e10132/osb.htm#CJACHEHJ
    Is there still any version is in progress from Oracle, which is yet to be officially launched from oracle?No major release is planned. Patches for 11g R1 may come.
    Regards,
    Anuj

  • UME connected to Active Directory. How to change what fields are available

    I have successfully changed my UME to point to Active Directory. I'll describe process further on in post. My issue now is how to modify what AD fields will be available in UME and what UME fields they'll be 'mapped' to.
    I'll try to describe the process I've gone through so far:
    1) Download the 'dataSourceConfiguration_ads_readonly_db.xml' file from Config Tool
    2) Renamed file and added the following:
        a) in <responsibleFor><principal type="user"> <nameSpaces><nameSpace name="com.sap.security.core.usermanagement"><attributes> section I added a <attribute name="xxx"/> tag for each new field I wanted. 'xxx' is, of course, the name of the field
        b) in <attributeMapping><principals><principal type="user"> <nameSpaces><nameSpace name="com.sap.security.core.usermanagement"><attributes> section I added a <attribute name="xxx"><physicalAttribute name="yyy"/></attribute> tag for each new field I wanted. 'xxx' is, of course, the name of the field in UME and 'yyy' is the field in the LDAP
    Then I uploaded the new file into Config Tool and switched the "Data source configuration file" selection to that new file. Saved the change and restarted the engine.
    When I ran some test code I was getting information back from the user's AD entry. For example, I tested the email field. This is a field that is not maintained in the UME but I got the correct value back so I knew it was getting it from AD.
    Then I wanted to see if I could get one of the new fields. When I ran my test code the user.getXxx() method call returend null.
    Since I knew that getting the e-mail worked I thought I'd change the mapping for the email UME field to point to the 'yyy' field in AD. I did this by making this change:
    <b>FROM:</b>
    <attribute name="email">
        <physicalAttribute name="mail"/>
      </attribute>
    <b>TO:</b>
      <attribute name="email">
        <physicalAttribute name="yyy"/>
      </attribute>
    I then uploaded that new xml file and switched to it in Config Tool. Then I restarted the engine.
    However, when I ran my test code (see below for snippet) it still shows the email value instead of the value of field 'yyy'.
    Any help would be GREATLY appreciated.
    <b>Web Dynpro code snippet:</b>
    String input = "smith";
    IUserFactory userFactory = UMFactory.getUserFactory();
    try {
      IUserSearchFilter searchFilter = userFactory.getUserSearchFilter();
      searchFilter.setLastName(input, ISearchAttribute.LIKE_OPERATOR, false);
      ISearchResult searchResult = userFactory.searchUsers(searchFilter);
      while (searchResult.hasNext()) {
        String userID = (String)searchResult.next();
        IUser user = userFactory.getUser(userID);
        String email = user.getEmail();
    } catch (UMException e1) {
      //error handling

    Update. I uploaded the wrong file the 2nd time. When I changed the XML file to 'bind' theAD field to the 'email' UME field, my code did return the AD value when I did
    user.getEmail();
    However, I'm still not able to get the AD field bound to any other UME field that wasn't part of the default XML file.
    Is there something else I need to do besides adding the tags I described in my original entry?
    Thanks

  • How to check what fields are output from ABAP to smartform

    Hi All,
    I am working on a Zcopy of RLB_INVOICE smart form and need to check what fields are being output to the vendor_address window in the smartform.
    I have examined the NACE setup and found "Medium -> printoutput", "Program -> ZRLB_INVOICE", "Form Routine -> "ENTRY_INS", "Form -> ZRLB_INVOICE", "PDF/SmartForm -> ZRLB_INVOICE".
    Where would I find the code that shows the direct correlation between the driver program and a specific element of the smart form.
    All I need to check is that all elements of the venfore address are being sent to the form as I am hearing reports that we are missing house number on the printed output.
    Many thanks

    Hi Meenakshi,
    First you find out your driver program. Here in your case it is ZRLB_INVOICE. Then within that check where address of the vendor is found and is assigned to which import parameter of the smartform.
    Check your smartform also. Find which all fields are being printed in that. If vendor_address window is an address window, then there will be uniques identifier passed to that window from the driver program.
    Regards,
    Abijith

  • My text fields will not expand

    I have a suggestion form that i created in adobe livecycle. The text fields will not expand when there is more text than what fits in the box. A scroll bar comes up when there is more text than what can fit,  but this will not do. I have the 'expand to fit' checked and allow multiple lines. Any help?

    Hi,
    Have a look at this example of the process for making fields dynamic: http://assure.ly/g80MVY.
    A couple of pointers:
    The form will need to be saved as a Dynamic XML Form in the save-as dialog.
    You should group objects that don't need to be flowed into a Positioned subform(s), as step 3 will move things around.
    The page will need to be set to Flowed in the Object > Subform palette.
    That should get you most of the way there.
    Niall

  • What event will be triggered by check button on ALV?

    Hi,
    What event will be triggered by the standard check button on ALV? ON_DATA_CHECK is only triggered by a change in an editable field on ALV, so if no change were made, ON_DATA_CHECK wouldn't be triggered. I also tried events for before and after standard function but neither were triggered. How can I use the standard check function?
    Regards,
    ts

    Hi ts,
    The event ON_DATA_CHECK would trigger only if the content on alv is dirtly i.e. user modified something.
    If there are no changes done for the contents, whats your requirement to use check button?
    You can create a custom alv toolbar button and use event ON_FUNCTION on click of tool bar button.
    Regards,
    Rama

  • What happen if idoc extension will be changed ?

    HI,
    we are using a BPM (a big one) with a Multimapping zMATMAS03(Source) & RFC(Source) to MATMAS05(Target).
    The source(zMATMAS03) IDoc has a extension(German Erweiterung) with new Segment ZZxxx and new Fields ZZyyy.
    What happen if the allready importet and mapped zmatmas03 Idoc will be changed in the source system ?
    Example. We added 2 new Fields in the old zzxxx segment.
    Did i have to map everything new if i import the new idoc ? or did the new field are added to the old idoc and the mapping is working again ?
    Regards,
    Gordon

    Hi,
    1. you have to reimport the idoc from IR
    2. you should delete the old idoc definition in TCODE - IDX2
    3. you have to change your mappings so that they will use the new IDOC
    Regards,
    michal

  • What type of generic delta to use and what field?

    Dear BW Gurus,
    I am creating a generic datasource based on a view BSAK and BSIK (Accounts Payable tables). I am not able to determine what type of generic delta (numeric pointer, calender day or timestamp) should i use and what field in the table should it that be based on? All or any help is greatly appreciated.
    Thanks
    Raj

    CALDAY on field BLDAT (in both tables) seem an obvious candidate.
    Added - You will need help from functional people (or you can try it in ABAP forum) to determine which date field is updated with the system date when these tables are updated with SAP txns (some hint can be had by looking at the data)- the fields of interest would be -
    BUDAT
    BLDAT
    CPUDT
    It is almost certain that CALDAY is the only option you have for delta type, and one of these three fields will have to be chosen.
    Message was edited by: Ajay Das

  • Sony Ericsson P990i what fields?

    Hi
    Just received my P990i
    When Apple get arround to letting iSync work with it, what fields can I expect to come over from Address Book.
    Have many enteries with lots notes, will they come across?
    Many thanks

    How can anyone know the answer to this question, until the P990 is supported by iSync?
    I can only guess that all fields will be transferred, as they are on other recent Sony Ericsson phones.
    However, until the P990 is supported, that is just a guess.
    Jools

  • What field holds the proceeds from a partial asset disposal/retirement?

    When you do a partial dispose/retirement of an asset, what table-field holds the proceeds of this transaction?

    Yes, that is correct. The transaction amount will show up in ANEP-ANBTR.
    If you dispose of $100 worth of asset, the $100 shows up in ANBTR.
    But you sold it for $150. Where does the $150 show up?
    In some accounting document?

  • Can I use an USB disc with my macbook pro bought in 2005.  What capacity will it take 2.00 or 3.00?

    can I use an USB disc with my macbook pro bought in 2005.  What capacity will it take 2.00 or 3.00?

    The first MacBook Pro's were not released until the beginning of 2006, and they had USB 2 ports.
    Anything available new in 2005 would have been a PowerBook G4 and they also had USB 2 ports.
    A USB 3 disk will just transfer data slower then it could do, if you plug it into a USB 2 port though, so you can buy either.

  • What Monitors WILL work with the Mac-Mini?

    If the new Mac-Mini does not put out analog video and Apple does not state this, what monitors will work with it?

    I was able to get an Apple Studio Display to work via the adapter in the Mac Mini box combined with that huge DVI to ADC adapter they had sold me years ago. In the Apple Store I really had to press them to assure me my display would work as they told me they'd charge me a re-stock fee if I had to bring the Mini back. I pressed the point that Apple should know if a monitor it made works with a computer it made. The rep asked around and we both searched the web and then she was able to confirm it would work. They really need a list of acceptable monitors. If anyone locates such a list, please let us all know!

  • My wife and i have an iPhone 5 6.1.2 firmware.. We both are having horrible wifi signals.  We have done everything we can.. What update will fix this? I get full bars on my iPad 2 through my whole house.. Be standing right beside the router with iPhone NO

    My wife and i have an iPhone 5 6.1.2 firmware.. We both are having horrible wifi signals.  We have done everything we can.. What update will fix this? I get full bars on my iPad 2 through my whole house.. Be standing right beside the router with iPhones and it cuts in and out.. Drops from 3 wifi bars to 1

    I am having the same problem with brand new Ipad Mini at my house.
    It connects to the WiFi fine - but will not pull an IP address in DHCP mode, or if I set all the IP info statically - it still will not get any network access.
    This doesn't look like a WiFi issue, as it does connect and is seen by the WiFi Access Point.  All the normal WiFi fix stuff doesn't help.
    - Using a Dlink DAP-2553 which is less than 2 months old. 
    Other devices connect fine, including Ipad 2.
    This same Mini worked fine at another house and also connected to a mobile hotspot fine....so seems to be some weird IP issue with maybe this Access Point or maybe the older Router that I have (older Netgear)?
    I am actually a network engineer and still have not been able to find a solution.  Both the Ipad Mini and the Dlink WAP have the latest firmware loaded.
    Wondering if anyone has found a solution to this problem.

  • When cursor is not closed what error will occur.

    when many cursors are in open and no cursor is closed means what error will occur..

    ORA-01000
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1041031921901
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:685336504294
    etc...

Maybe you are looking for

  • Auto Increment ID Field Table in the Oracle Database (insert new record)

    I have been using the MySQL. And the ID field of the database table is AUTO INCREMENT. When I insert a new record into a database table, I can have a statement like:    public void createThread( String receiver, String sender, String title,          

  • Automatically increment a date parameter

    Is it possible to schedule a workbook for a period of time and have the date parameter automatically increment to the next date in Discoverer?

  • Malware Warning after Launch

    We launched a muse site today with ftp upload. Now, after 5 hours you get a malware warning, when you want to visit the site. The url changes after editing the correct url and the malware warning appears. What is to be done?

  • Which JSF template technology? Best practices?

    Which templating technology is most suitable for use with JSF? What are my options? I'd just like to use the templating framework which is most accepted, and has flexibility.

  • Removing clients off of "Shared" in finder

    This wasn't a problem in 10.4, but on our newer macs running 10.5 and up we are seeing that when we enable Remote Management all computers that have this enabled show up under Shared in the finder, which makes for a HUGE list and makes it impossible