How to update Quantity and Value in Licences for Deemed Export

Dear All,
Could you please let me know where I have to update the Quantity and Value of Licence in case of Deemed export.
I am not aware much about Deemed export. I hope CT3 is the licence, against which we have to maintain the Value or Quantity.
While creating ARE3 documet, Quantity or Value will be reduced from the Licence.
Kindly update me regarding this.
Regards,
Mullairaja

Hi,
First of all you need to mainataiin Number ranges for T.code:SNRO
1.Licence :J_1ILIC
2.Are3 :J_1IARE3 
3.Create License In T.code : J1ILIC01
4.Create ARE 3  T.code: J!IA301.
4. Enter the license details in the item tab of ARE Create document.
on Posting  the ARE 3 document Quantity and Value will reduces from the Licence. you can check again in
Regards
Shekar

Similar Messages

  • How to get Item-Code wise stock quantity and value for a previous date

    Dear Sir,
    As per the government legal requirement , we are required to furnish a list for items having stock as on a date ( date is not the current date but it is some past date)  and  in the list we need to provide material wise stock quantity and value .
    We can generate a list  for the current date , but do not know how to get it for a previous date .
    We request you to kindly guide us about such a list .
    With Thanks and Regards
    Sonia Agarwal

    hi,
    might be this reports will be help full for your requirement.
    MMBE
    MB53
    MB52
    MB5M
    MB5B
    MB5T
    MBLB
    MBBS
    MB54
    ME56
    Thanking you

  • Quantity and value updation

    Hi to all,
    Kindly explain , what is the meaning of Quantity and value updation.
    1. Quantity updation means where we have to check quantity
    2. Value updation means where we have to check value
    Thanks
    Ravi

    hi buddy
    this kind of thing will come in picture when u take some order from outside with customer material I.E. u act as subcontractor
    at this time the value updation is not required so we can use unvaluated material type UNBW
    ok
    in ono quantity update can be use in scenario of returnable packaging where u dont want to make any quantity updates and also value updates when u transfer the matrial
    ok
    reply if any query
    reward if useful
    regards
    kunal

  • How to update the table value in the valuechange event?

    I have an input field in the datatable with the valueChangeListener
    <rich:dataTable id="cart" value="#{cart.cartList}" var="item">
    <h:inputText value="#{item.cost}" id="qty" valueChangeListener="#{items.updateCost}" onchange="submit()">
    <h:outputText value="#{item.errorMsg}"> </h:outputText>
    in the backing bean
         Item item = (Item) model.getRowData();
    // do some update, if the cost too larger, change to max_cost
         item.setCost(max_cost);
         item.setErrorMsg("Error Msg");
    After calling the valuechange method, the screen output doesn't update the cost.
    How to update the table value in the valuechange event?

    As you're misusing the valueChangeListener to set another input field, you need to skip the update model values phase. Otherwise the value set in the valueChangeListener will be overridden by the submitted value. You can do this by calling the FacesContext#renderResponse() inside the valueChangeListener method. This will shift the current phase immediately to the render response phase, hereby skipping the update model values and invoke application phases.

  • Write Off Quantity and value

    hi,
    How do I write off the value and quantity for the stocks?
    For stock materials we do the physical inventory - entering count adjust qty and posting adjust vale . But how can I adjust for value only articles?

    Hi,
    That will be easy for you to post MI10 document .This will write of the quantity and value of that quantity.
    If you want to change the standard price of the material post a MR21 document.
    Regards,

  • Printout of Changed PO Line items with Quantity and value

    Hi SAP Gurus,
    I want to have the printout of  only those PO Line items with the change in Quantity and Value....
    How can i achieve this...
    Any config./ Developement...
    Plz. suggest....
    Rgds,
    Navin

    Hi,
    In config Purchasing->Messages->Output Control->Message Determination Schemas->Define Message Schema for PO, under 'Assign Schema to Purchase Order', if the 3rd indicator from the right 'New message determination process for change messages' is NOT selected, only changes are printed in the changed PO's.
    Are you using standard print program and SAPScript?
    Also under config Messages->Message Type->Define Message Type for PO->Fine-Tuned Control: Purchase Order, make sure you have operation '2' for PO output type.
    Phyllis.
    Edited by: Phyllis Waugh on Oct 10, 2008 6:40 AM

  • How to update link and import data of relocated incx file into inca file?

    Subject : <br />how to update link and import data of relocated incx file into inca file.?<br />The incx file was originally part of the inca file and it has been relocated.<br />-------------------<br /><br />Hello All,<br /><br />I am working on InDesignCS2 and InCopyCS2.<br />From indesign I am creating an assignment file as well as incopy files.(.inca and .incx file created through exporing).<br />Now indesign hardcodes the path of the incx files in inca file.So if I put the incx files in different folder then after opening the inca file in InCopy , I am getting the alert stating that " The document doesn't consists of any incopy story" and all the linked story will flag a red question mark icon.<br />So I tried to recreate and update the links.<br />Below is my code for that<br /><br />//code start*****************************<br />//creating kDataLinkHelperBoss<br />InterfacePtr<IDataLinkHelper> dataLinkHelper(static_cast<IDataLinkHelper*><br />(CreateObject2<IDataLinkHelper>(kDataLinkHelperBoss)));<br /><br />/**<br />The newFileToBeLinkedPath is the path of the incx file which is relocated.<br />And it was previously part of the inca file.<br />eg. earlier it was c:\\test.incx now it is d:\\test.incx<br />*/<br />IDFile newIDFileToBeLinked(newFileToBeLinkedPath);<br /><br />//create the datelink<br />IDataLink * dlk = dataLinkHelper->CreateDataLink(newIDFileToBeLinked);<br /><br />NameInfo name;<br />PMString type;<br />uint32 fileType;<br /><br />dlk->GetNameInfo(&name,&type,&fileType);<br /><br />//relink the story     <br />InterfacePtr<ICommand> relinkCmd(CmdUtils::CreateCommand(kRestoreLinkCmdBoss)); <br /><br />InterfacePtr<IRestoreLinkCmdData> relinkCmdData(relinkCmd, IID_IRESTORELINKCMDDATA);<br /><br />relinkCmdData->Set(database, dataLinkUID, &name, &type, fileType, IDataLink::kLinkNormal); <br /><br />ErrorCode err = CmdUtils::ProcessCommand(relinkCmd); <br /><br />//Update the link now                         <br />InterfacePtr<IUpdateLink> updateLink(dataLinkHelper, UseDefaultIID()); <br />UID newLinkUID; <br />err = updateLink->DoUpdateLink(dl, &newLinkUID, kFullUI); <br />//code end*********************<br /><br />I am able to create the proper link.But the data which is there in the incx file is not getting imported in the linked story.But if I modify the newlinked story from the inca file,the incx file will be getting update.(all its previous content will be deleted.)<br />I tried using <br />Utils<IInCopyWorkflow>()->ImportStory()<br /> ,But its import the incx file in xml format.<br /><br />What is the solution of this then?<br />Kindly help me as I am terribly stuck since last few days.<br /><br />Thanks and Regards,<br />Yopangjo

    >
    I can say that anybody with
    no experience could easily do an export/import in
    MSSQLServer 2000.
    Anybody with no experience should not mess up my Oracle Databases !

  • List of rejected sales order with quantity and value

    Hi,
    Is it possible to get the report from VA05 for the list of rejected items with value and quantity ?
    Pls help
    Thanks,
    Vijesh

    Dear Vijesh,
    VA05 I believe is a very powerful report for doing analysis at order and line item level. If your rejection criterion includes a rejection reason at line item level, yes this list from VA05 can give rejected Sales Orders with Quantity and Value.  See the screen shot below.
    I selected a list with open dates till date, I can see Sales Order number, Sales Document Type, Item Number, Material, Rejection reason, Quantity at line item level and net price.
    However, I am not sure what is the rejection criterion you use in your business and I am not sure if you use rejection reason and hence I would like to hear from you, if this explanation helps you.
    Thanks
    Nagaraj

  • BAPI_PO_CHANGE is not updating Quantity and Delivary Date

    HI All,
    I am trying to update quantity and delivery date of PO by using BAPI_PO_CHANGE,
    by Passing below parameters.
    As per the documentation:
    Parameter: PURCHASEORDER 4500003477
    Parameter: POHEADER
    PMNTTRMS = 0002
    PUR_GROUP = 002
    Parameter: POHEADERX
    PMNTTRMS = X
    PUR_GROUP = X
    Parameter: POITEM
    PO_ITEM = 00001
    CONF_CTRL = 0001
    Parameter: POITEMX
    PO_ITEM = 00001
    PO_ITEMX = X
    CONF_CTRL =  X
    Parameter: POSCHEDULE
    PO_ITEM = 00001
    SCHED_LINE = 0001
    QUANTITY = 10.000
    Parameter: POSCHEDULEX
    PO_ITEM =  00001
    SCHED_LINE =  0001
    PO_ITEMX =  X
    SCHED_LINEX =  X
    QUANTITY =  X
    Parameter: POACCOUNT
    PO_ITEM = 00001
    SERIAL_NO = 01
    GL_ACCOUNT = 0000400020
    Parameter: POACCOUNTX
    PO_ITEM = 00001
    SERIAL_NO = 01
    PO_ITEMX = X
    SERIAL_NOX = X
    GL_ACCOUNT = X
    and executed bapi_transaction_commit FM immediate, i am getting below message
    Purchase Orders 4500003477 changed
    Error transferring ExtensionIn data for enhancement CI_COBL
    No message generated for output of purchasing document
    but quantity and delivery date was not  changed..
    why this quantity and delivery date is not changing?
    <removed by moderator>
    REgards,
    Suresh.D
    Edited by: Thomas Zloch on Feb 27, 2012

    Hi ,
    Are you trying to pass the non char fields in CI_COBL. Please look at the link below .
    [http://forums.sdn.sap.com/thread.jspa?threadID=1137795] .
    Also serach for the similar threads when and notes while transferring currency and quantity field in different custom includes of the EKPO ...
    Thanks,
    Anjaneya .

  • Import quantity and value of Items

    Hi , all!
    Can yu tel me what way import quantity and value of Items in warehouse.
    Such as DTW?. Thank you!

    Also you can use the following template
    C:\Program Files\SAP\Data Transfer Workbench\Templates\Data preparation examples\10. Testcase1_Test Data for Import function\oStockTakings
    to load initial quantities for Items warehouse wise

  • I installed a creative Cloud a month ago for a free trial. Last week, i bought a licence of Lightroom 5. Now, how can i install and register my licence of Lightroom 5 on my computer?

    I installed a creative Cloud a month ago for a free trial. Last week, i bought a licence of Lightroom 5. Now, how can i install and register my licence of Lightroom 5 on my computer?

    That creative cloud installation of Lightroom will have to be uninstalled. It cannot be activated with the serial number you have. You can download the trial version from one of these two websites, and activate it with your serial number:
    Adobe - Lightroom : For Windows : Adobe Photoshop Lightroom 5.7.1
    Adobe - Lightroom : For Macintosh : Adobe Photoshop Lightroom 5.7.1
    You will not lose any of the work you may have done using the trial version. In the future, when posting questions it would really help if you would identify your operating system and other pertinent computer information.

  • Q54: Cumulative quantity and value fields

    Hi All,
    Thanks for all previous help in getting me up and running but now I have a new challenge...........
    Which table(s) can I find the fields for Cumulative Qty and Cumulative Value as reported in the Stock Audit Report?
    Regards,
    Robin

    Hi Robin,
    There is no fields in any tables hold those cumulative quantity and values. Those values are calculated on the fly by program. You can reproduce them easily through an excel formula to verify.
    Thanks,
    Gordon

  • Report - quantity and value difference between delivery and invoice?

    Hello experts,
    My client use u201EProof of deliveryu201D t-code: VLPOD. There is always quantity and value difference between delivery and invoice.
    Do you know any report which will show this differences between delivery and invoice?
    Best regards,
    Maciej

    Hi,
    Note 867678 - Proof of delivery (POD), delivery and billing document will help you to understand POD flow.
    You have the tcode VLPODF/VLPODL/VLPODA, but perhaps they will not help you. So, as the before note suggests you, you can use the tables VBFA, LIKP, LIPS, VBRK, VBRP, TVPOD and TVPODG to do your own report.
    I hope this helps you
    Regard,
    Eduardo

  • How can i download and install yahoo messenger for Mac on OS X Yosemite?

    how can i download and install yahoo messenger for Mac on OS X Yosemite?

    If you need to purchase Snow Leopard contact Customer Service: Contacting Apple for support and service. The price is $29.00 plus tax. You will receive physical media - DVD - by mail.
    Third-party sources for Snow Leopard are:
    Snow Leopard from Amazon.com
    Snow Leopard from eBay
    After you install Snow Leopard you will have to download and install the Mac OS X 10.6.8 Update Combo v1.1 to update Snow Leopard to 10.6.8 and give you access to the App Store.
    Snow Leopard General requirements
    Mac computer with an Intel processor
    1GB of memory
    5GB of available disk space
    DVD drive for installation
    Some features require a compatible Internet service provider; fees may apply.
    Some features require Apple’s MobileMe service; fees and terms apply.

  • How to set up and configure AirPort Express for AirPlay and iTunes

    Saw somewhere that supposedly there were some apple written guidlines on the above topic. I have searched all over for them. Anyone know where I can get a copy to read through. Just trying to educate myself a bit and sety up another room with access to itunes, radio, etc with high quality speakers and amp off my express.

    Here you go ...
    How to set up and configure AirPort Express for AirPlay and iTunes

Maybe you are looking for

  • Ipad cannot install or update any apps in Apple Store!!!

    Two days ago, my Ipad 1 cannot install or update any installed application while the version is compatible with the Ipad 1. The error is always "IOS Update required" and then the next error "The requested action requires the latest version of IOS". M

  • Combine Files into a Single PDF from the Create button

    I'm using Adobe Acrobat 10.1.13 and trying to Combine Files into a Single PDF from the Create button. There are four file types .pdf .doc .xls .dwg the only file that appears in the Combine dialog box is the .pdf

  • OAF in Oracle apps 11.5.8

    Hi, Will OAF work in Oracle Apps 11.5.8. In the metalink i found JDeveloper for Oracle Apps 11.5.10. I am clear that we must download the correct version JDeveloper, But have a doubt that whether OAF pages can be done in Oracle Apps 11.5.8. Please he

  • Different local currencies AED GBP

    Dear Friends, When the user is trying to post the invoice, he is getting the error " Different local currencies AED GBP" In PO status it is displaying downpayments as 0.00 GBP and the po currency is usd. In Global Paramerters for company code the cur

  • SAP IM 4.0 in ATE

    Hi All, We have installed SMP 3.0 and we have configured SAP IM 4.0 also. When I am running the application in ATE, I am not able to see any button like we can see the buttons for SAP IM 3.2 ATE. Do we need to add those buttons manually in all screen