How to update oOrder and oInvoice Items' COGM?

I am attempting to update the COGM and Profit Margin values for Non-Stock items when an associated Purchase Invoice for these non-stock items is received.  This is being done to have more accurate booked order and invoiced order reports.  The code I have written is shown below.  As yet, I am unable to find a way to reach the RDR1.GrossBuyPr column (labled as COGM in the UI) and INV1.GrossBuyPr column (also, COGM in the UI) from the DI API.  Is there another way to update these values.  Also, how would I update the Profit Margin for the respective lines?
Any help would be greatly appreciated!
    Private Sub oApplication_ItemEvent(ByVal FormUID As String, ByRef pVal As SAPbouiCOM.ItemEvent, ByRef BubbleEvent As Boolean) Handles oApplication.ItemEvent
        If pVal.FormType = 141 And pVal.EventType = SAPbouiCOM.BoEventTypes.et_CLICK And _
           pVal.Before_Action = False And pVal.FormUID = 1 And pVal.Action_Success = True Then
            oForm = oApplication.Forms.GetForm(pVal.ForType, pVal.FormTypeCount)
            updateNonStockCOGM()
        End If
    End Sub
    Private Sub updateNonStockCOGM()
        Dim oItems As SAPbouiCOM.Items
        Dim oItem As SAPbouiCOM.Item
        Dim oEditText As SAPbouiCOM.EditText
        Dim sPI_DocNum As String
        Dim row, row2 As Integer
        Dim oPI As SAPbobsCOM.Documents
        Dim oPI_Lines As SAPbobsCOM.Document_Lines
        Dim uiPI_Item As SAPbobsCOM.Items
        Dim oPO As SAPbobsCOM.Documents
        Dim oPO_Lines As SAPbobsCOM.Document_Lines
        Dim uiPO_Item As SAPbobsCOM.Items
        Dim oSO As SAPbobsCOM.Documents
        Dim oSO_Lines As SAPbobsCOM.Document_Lines
        Dim uiSO_Item As SAPbobsCOM.Items
        Dim oSI As SAPbobsCOM.Documents
        Dim oSI_Lines As SAPbobsCOM.Document_Lines
        Dim uiSI_Item As SAPbobsCOM.Items
        ' Obtain OPCH.DocNum ... contained in Item # 8 
        oItems = oForm.Items
        oItem = oItems.Item("8")
        oEditText = oItem.Specific
        sPI_DocNum = oEditText.Value
        oPI = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPurchaseInvoices)
        oPI.GetByKey(sPI_DocNum)
        If oPI.DocType = SAPbobsCOM.BoDocumentTypes.dDocument_Items Then
            oPI_Lines = oPI.Lines
            For row = 0 To oPI_Lines.Count
                oPI_Lines.SetCurrentLine(row)
                uiPI_Item.GetByKey(oPI_Lines.ItemCode)
                If uiPI_Item.InventoryItem = SAPbobsCOM.BoYesNoEnum.tNO And oPI_Lines.BaseEntry() > 0 Then
                    ' Update PO Price
                    oPO = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPurchaseOrders)
                    oPO.GetByKey(oPI_Lines.BaseEntry())
                    oPO_Lines = oPO.Lines
                    oPO_Lines.SetCurrentLine(oPI_Lines.BaseLine())
                    oPO_Lines.Price = oPI_Lines.Price()
                    oPO.Update()
                    If oPO_Lines.BaseEntry() > 0 Then
                        ' Update SO Price
                        oSO = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders)
                        oSO.GetByKey(oPO_Lines.BaseEntry())
                        oSO_Lines = oSO.Lines
                        oSO_Lines.SetCurrentLine(oPO_Lines.BaseLine())
                        oSO_Lines.Price = oPI_Lines.Price()    '<== INCORRECT!!!  NOT SURE HOW TO SET THE COST OF THE ITEM...
                        ' How do I recompute the COGM value?
                        oSO.Update()
                    End If
                    Dim oRecordSet As SAPbobsCOM.Recordset
                    oSI = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInvoices)
                    oRecordSet = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                    oRecordSet.DoQuery("Select DocNum from OINV where BaseDocNum = '" & oSO.DocNum & "'")
                    If oRecordSet.RecordCount > 0 Then
                        oSI.Browser.Recordset = oRecordSet
                        oSI_Lines = oSI.Lines
                        For row2 = 0 To oSI_Lines.Count
                            oSI_Lines.SetCurrentLine(row2)
                            If oSI_Lines.BaseLine.Equals(oSO_Lines.LineNum) = True Then
                                oSI_Lines.cost()    '<== INCORRECT!!!!  NOT SURE HOW TO SET THE COST OF THE ITEM....
                                ' How do I recompute the COGM value?
                                oSI.Update()
                            End If
                        Next
                    End If
                End If
            Next
        End If
    End Sub

Hey Scott.  There is no COGM property.  You have to update the table directly.
Randy

Similar Messages

  • 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 !

  • How to customize Category and Category items list while creating New Model

    Hi,
    what the most convenient way to customize the Category and Category items list while creating New Model?
    This is standard:
    Now, what we want to achieve, is to customize this menu, to:
    1. Display in the Category window only f.e. two categories:
    - EA Diagrams
    - BPM Diagrams
    2. In the EA Diagrams, we want to have f.e. four copies of City Planning diagram, each of them should have different elements available, f.e. in the first copy, only Architecture Areas shall be made available, in the second one Architecture Areas and Business Functions, in the third on f.e. only Business Functions shall be made available. Additionally, it should behave like a hierarchy ... meaning you can create the second diagram, only as child (related diagram) of the first diagram etc.
    I know, excluding the particular diagrams/diagram elements can be configured using the right/profile settings, but how to:
    1. Customize the standard New Model menu window
    2. Create copies of City Planning Diagrams with different set-ups
    3. Set the relationship between diagrams
    Is such a configuration change possible?
    Thanks a lot for your help!
    Regards,
    Rafal

    Now, what we want to achieve, is to customize this menu, to:
    Question #1. Display in the Category window only f.e. two categories:
    - EA Diagrams
    - BPM Diagrams
    Click on Tools => General Options=> Model Creation
    Click on Properties => at right of Default category set
    Note : Model template does not work as Category. We can't set. An enchancement request has been open to SAP
    In the following example I defined a new default (MyNewDefault.mcc). As you can see only BPMN models are available.
    To create a new category set with BPMN choice
    a) Copy default.mcc in MyNewDefault.mcc file.
        Go to Tools=>General Options=>Model Creation : Select your new category
        Go to Tools=>General Options=>Model Creation : Edit properties and remove all things you does not want keep
    or
    b) Go to Tools=>General options=>Model Creation : Edit properties and click on Save as button and specify the file name "MyNewDefault".
        Quit the window.
        Select you new category : Go to Tools=>General Options=>Model Creation : "MyNewDefault"
        Edit properties and remove all things you does not want keep.
        Save you new category
    Question #2. How to define copies/replicas of existing diagrams
         Wrote an extension
    Question #3. How to make sure, particular diagrams can be used (created) only on predefined "levels" and how to set the parent-child relationship, so that PD enforced it directly when creating a new diagram.
         Specify yours conditons in your extension attached to your model
         Example : When the user want create a child diagram :  You can display a list of Parent Diagrams to select from.
         You can set in your extension by VBScript parent-child relationship
    Question #4 In the EA Diagrams, we want to have f.e. four copies of City Planning diagram, each of them should have different elements available, f.e. in the first copy, only Architecture Areas shall be made available, in the second one Architecture Areas and Business Functions, in the third on f.e. only Business Functions shall be made available.
    If I understand well your question. I suggest to take a look in
    Repository=>Administration=>Objects Permission Profile
    You can specify objects to show, mask, deactivate at model level.
    You can specifiy your own metadata.
    But I'm not sure you can mask, deactivate functions following diagram selection. It seem to specific.
    Message was edited by: Benoit Le Nabec

  • How to upload header and corresponding item details to application server?

    Hi all,
      How to upload control data , header data and the corresponding data in the application server based on the company code.
    If the user selects multiple company codes like US, GE,IN....3 files need to placed in the application server with the corresponding header and item details. The control data is unique per file.
    Thanks,
    Charan

    For Header and Item data you create separate structure as below...
    Header
    |----Link
    |----
    |----
    !-----Item
                |-----link
                |-------
    (Note the hierarchy- Header str>LINK--> Its fields->ITEM str > LINK under ITEM str->ITEM's fields under ITEM's fields.)
    Header part will have all header fields. Item will come under Header and all ITEM's fields will come under Item.
    Both HEADER and ITEM will have field LINK -- Char 003 which will allow all ITEMs for a HEADER to fall under proper Header data..
    Header and Item Structure will have different files as per the sequence of the fileds..
    Map the fields properly..
    It will work...
    If its helpful to you don't forget to reward the pts..
    Edited by: sumesh on May 19, 2008 4:28 PM

  • HT1338 OSX 10.4.11 update quicktime. Browser says out of date. Updater says up-to-date. Is this version no longer supported. How to update QuickTime and Java then?

    OSX 10.4.11 Updates to QuickTime and Java.
    Browser says out of date. Updater says up-to-date. Is this version no longer supported?
    How can I update QuickTime and Java then without upgarding? I wish to keep a back channel to OS9

    Mac OS X Tiger was discontinued years ago, and if Software Update doesn't detect any new update, it's because you are running the latest Java and QuickTime version for Tiger.
    Apart from that, I see that you have a G5, so the most recent Mac OS X version you can use is Mac OS X Leopard, another version that it's (or it's going to be) discontinued soon. PowerPC support is completely dead now, and if you want the most recent QuickTime and Java versions, you will need a Intel-based Mac with OS X Lion or Mountain Lion, that have got the latest Java 6 versions and they are compatible with Java 7

  • How to extract Cleared and Open Items from SAP R/3?

    Hi experts,
    I have a requirement from user to extract cleared and open invoice items from SAP R/3.
    Can someone tell me how to do that?
    Thanks!

    Hi,
    Use the Data source 0FI_AR_4 to Know the status (0FI_DOCSTAT) of payment to be done by customer.
    OR
    Enhance the 2LIS_13_VDITM with VBUP fields which will give the status of Billing.
    With rgds,
    Anil Kumar Sharma .P

  • How to update New_Value and Old_value field in CDPOS

    Hi,
    I've been going through all the article and threads in the this forum. I can;t seem to get the field populate VALUE NEW, VALUE OLD and also the FNAME field always shows as KEY.
    My intersion is to update CDPOS everytime there is a value to a record in my z-table being changed.
    Below is my trial code. but it does seem to work. I can INSERT  into CDPOS but not UPDATE. Please review my code and let me know how can i get this problem solve please.
    REPORT  zvintest1.
    TABLES: cdhdr, zvin_test.
    DATA: objectclass LIKE cdhdr-objectclas,
          objctid    LIKE cdhdr-objectid,
          stct_old TYPE zvin_test,
          stct_new TYPE zvin_test,
          tablename LIKE cdpos-tabname,
          changenum LIKE cdhdr-changenr.
    objectclass = 'ZVIN_ATT'.
    objctid = '2711'.
    tablename = 'ZVIN_TEST '.
    CALL FUNCTION 'CHANGEDOCUMENT_OPEN'
      EXPORTING
        objectclass                   = objectclass
        objectid                      = objctid
      PLANNED_CHANGE_NUMBER         = ' '
       PLANNED_OR_REAL_CHANGES       = 'R'
    EXCEPTIONS
       sequence_invalid              = 1
       OTHERS                        = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    stct_old-vendor = '110'.
    stct_old-assembly = 'position'.
    stct_old-serialnum = '001'.
    stct_old-status = '2'.
    *modify zvin_test FROM stct_old.
    stct_new-vendor = '110'.
    stct_new-assembly = 'position'.
    stct_new-serialnum = '001'.
    stct_new-status = '1'.
    *modify zvin_test FROM stct_old.
    CALL FUNCTION 'CHANGEDOCUMENT_SINGLE_CASE'
      EXPORTING
       change_indicator             = 'U'
       DOCU_DELETE                  = 'X'
      REFAREA_NEW                  =  STCT_NEW
      REFAREA_OLD                  =  stct_old
      REFTABLENAME                 = 'ZVIN_TEST'
        tablename                    = tablename
       workarea_new                 = stct_new
       workarea_old                 = stct_old
    EXCEPTIONS
       nametab_error                = 1
       open_missing                 = 2
       position_insert_failed       = 3
       OTHERS                       = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'CHANGEDOCUMENT_CLOSE'
      EXPORTING
        date_of_change                = sy-datum
        objectclass                   = objectclass
        objectid                      = objctid
        tcode                         = 'MIGO'
        time_of_change                = sy-uzeit
        username                      = sy-uname
       object_change_indicator       = 'U'
      PLANNED_OR_REAL_CHANGES       = 'R'
       NO_CHANGE_POINTERS            = 'X'
    IMPORTING
       changenumber                  = changenum
    EXCEPTIONS
       header_insert_failed          = 1
       no_position_inserted          = 2
       object_invalid                = 3
       open_missing                  = 4
       position_insert_failed        = 5
       OTHERS                        = 6
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    the error i get is NO_POSITION_INSERTED.
    Thank you.
    Regards,
    Vinod

    Why don't you use the standard functionality of the record changes?
    Go to SE11.. open your table.. go to Technical settings ..
    here you can find the "Log data changes". Check this checkbox on.
    Later on you can track changes by <b>SCU3</b> transaction code...
    This the extract from the online help....
    Log data changes
    The logging flag defines whether changes to the data records of a table should be logged. If logging is activated, every change (with UPDATE, DELETE) to an existing data record by a user or an application program is recorded in a log table in the database.
    Note: Activating logging slows down accesses that change the table. First of all, a record must be written in the log table for each change. Secondly, many users access this log table in parallel. This could cause lock situations even though the users are working with different application tables.
    Dependencies
    Logging only takes place if parameter rec/client in the system profile is set correctly. Setting the flag on its own does not cause the table changes to be logged.
    The existing logs can be displayed with Transaction Table history (SCU3).
    Regards,
    Naimesh Patel

  • How to update Photoshop and rest of CS4 suite to 64 bit windows 7

    Hi.  I've been using Adobe CS4 Master Suite on a 32 bit vista system.
    I'm switching to a 64 bit windows 7 computer.
    After going through the whole Master Suite Installation process, all of my Adobe programs show up in 32 bit / x86 format, except Photoshop which shows up both in 32 bit / x86 folder AND in 64 bit.
    How do I get the rest of the Master Suite to show up / install in 64 bit?  (is there a separate update?  require a separate purchase?  and why did photoshop work whereas the rest did not?)
    And how do I check within the individual program to see if it's 32 or 64 bit?  (photoshop has a system info tab that identified PS as 64 bit, but other progs don't have that)
    Thanks

    How do I get the rest of the Master Suite to show up / install in 64 bit?
    You don't. Only Photoshop is 64bit, the other apps are conventional 32bit apps. The isntall location is therefore correct (within microsofts guidelines).
    Mylenium

  • N900 - How to update software and Reset ALL data.

    If you have tried to reset an N900 from the settings menu on the device, you would have noticed it would have left all your data intact.
    Sometimes you want to start from scratch and delete all data in one go. 
    Here is how you do it.
    Its quite extensive, but comprehensive.
    From a windows PC
    You first need to download three pieces of software.
    The first software you need is called "Maemo Flasher", and this is the program that needs to be installed on your PC and can be found here:
    http://tablets-dev.nokia.com/maemo-dev-env-downloads.php
    Download the latest version of Maemo Flasher (which is currently 3.5 at time of posting this), and make sure you download the .exe file (maemo_flasher-3.5_2.5.2.2.exe).
    Install that file.
    Next you need the software for the N900 itself.
    That can be found here:
    http://tablets-dev.nokia.com/nokia_N900.php
    This page will ask you to enter your IMEI, with very clear instructions on where to find it.
    Follow the on screen prompts until you reach the download section.
    There are two pieces of software you need to download from there.
    eMMC content - This is the package to erase all data held on your 32GB storage.
    The Operating System.
    OS 2009
    PR 1.1.1
    PR 1.2
    There are, unfortunately, 3 different names for the OS.
    Latest version is "PR 1.2 version 10.2010.19-1".
    Download the latest eMMC package available, It's version 10.2010.13-2.
    The OS is a little more difficult to figure out which one you need.
    The notes alongside the software lets you find the right package easier.
    I found the best way to check is to do the following: (On the N900)
    Menu
    Settings
    About Product
    This will show you this image(or similar)
    Note the Version number on your N900's screen.
    Download the OS package that matches the Version on your device. As shown in the image above, using the red text as an example.
    For people that purchased the N900 in the UK, the OS package will probably be the same as the red text. But make sure you check.
    Software downloads complete.
    Place these two software packages in the following location on your PC.
    c:\program files\maemo\flasher-3.5
    You should now have two .bin files in the directory above.
    Next steps.
    Updating the N900 OS
    Your battery needs to be 100% full to prevent any crashes which could leave your phone dead.
    Turn your N900 off.
    Press and hold the U key on the keypad.
    Insert the USB cable (a USB symbol should appear on the top right of your N900 screen, and also the Nokia logo in the centre).
    You can now let go of the U key.
    On your PC: Navigate to the Start Menu and select Run.
    In the Run box, type: cmd. Then OK
    In the command window, type: cd\program files\maemo\flasher-3.5
    Type: flasher-3.5 -F RX-51_2009SE_1.2009.42-11.203.2_PR_F5_203_ARM.bin -f
    (the file name above may be different to yours, you will need to replace the filename with the filename of the software you downloaded).
    This image below shows the completed update of the OS, in the command prompt on your PC. This would have now removed any Apps you may have installed on the device, and reset the homescreens to how they were when you turned it on for the first time.
    Your personal data, such as Contacts, Images, SMS will still be on the device.
    So if you want to remove these aswell, follow the next steps.
    Resetting the Mass Memory
    Your battery needs to be 100% full to prevent any crashes which could leave your phone dead.
    Turn your N900 off.
    Press and hold the U key on the keypad.
    Insert the USB cable (a USB symbol should appear on the top right of your N900 screen, and also the Nokia logo in the centre).
    You can now let go of the U key.
    (If you have left the command prompt open on your PC from updating the OS in the previous section, ignore steps 5,6,7)
    On your PC: Navigate to the Start Menu and select Run.
    In the Run box, type: cmd. Then OK
    In the command window, type: cd\program files\maemo\flasher-3.5
     Type: flasher-3.5 -F RX-51_2009SE_1.2009.41-1.VANILLA_PR_EMMC_MR0_ARM.bin -f -R
    (the file name above may be different to yours, you will need to replace the filename with the filename of the software you downloaded).
    This image below shows the completed reset of the eMMC (32GB HDD), in the command prompt on your PC.
    This would have now removed any data you had stored there. Including Music, Photos, Contacts, SMS..
    The complete reset of your N900 is now complete.
    I hoped this has helped.
    My posts are my opinion and in no way the direct views of Nokia.
    If my posts are helpful, please give me some KUDOS using the green star on the left.

    Hmm, it's odd, because the wiki.maemo and another thread here say it works fine on 7. I have put flasher into xp compatibility, but the cmd box has no way to change it - at least, if it does it's through a back route that i'm unaware of.
    Attached the screen i see
    Edit: what "run" dialog box? is that the cmd box?
    Attachments:
    cmd.jpg ‏55 KB

  • How to update child record when item from parent record changes

    Hi, I have a master and detail form with two regions on the same page.
    Region one references parent record, one of column in the parent record is also in the child record. And is one to many relation
    between parent record and child record. How can I have the column on the child record updated when the column of the parent record is being modified?
    For exemple; Parent record has two columns : ID and Program.
    Child record has Program, goal# and status. I have two pages established, page 27 and page 28.
    Page 27 list out all programs from parent record, by clicking on edit to a program, it braches to page 28 with program listed as editable field in region one, and mulitple records list in region two from the child record with the same program.
    The problem that I am having is once the program in region one got modified using ApplyMRU, the program in child record did not get updated with the new value and therefore those record become orphan records. I need a way to update all current child records with the new program value.
    Thanks in advance for anyone who can hlep out on this problem.
    Julie
    Edited by: JulieHP on May 24, 2012 4:57 PM

    One Idea is
    If possible create a after update database trigger on the parent table to update the relevant child record.
    Next one
    Create a PL/SQL process on the parent page with process sequence next to ApplyMRU, so when the ApplyMRU is seccessfull it goes not to your process where you can have your update statement

  • How can I add and remove items from the bookmarks toolbar?

    I want to remove items from the bookmarks toolbar and add ones that I use on a regular basis. How can I do this?

    See:
    *https://developer.mozilla.org/en/Chrome
    *http://en.wikipedia.org/wiki/User_interface_chrome#User_interface_and_interaction_design

  • 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

  • How can I insert  and remove item  in JPopupMenu  depends on index.

    Hai,
    My popupMenu having 5 items start, stop,pause,repeat,record.Here I want to remove the item repeat in place of I want add another item.How can I add ?Please suggest me.

    Um... why couldn't you use the remove() and insert() methods of JPopupMenu?Even better.

  • How to update data and create notification no using isr fm.

    Hi,
    Without creating the scenario in SFP, is it possible to update data directly in ISR_SPECIAL_DATA_SET,
    i want to use fm ISR_SPECIAL_DATA_GET in my program.
    i'm trying to achive same using ISR_NOTIFICATION_CREATE and built general, special table and long text to get a
    notification number. but  notification no is not creating ,  return msg is  ( E I 421   |Notification type  not defined ) even i'm passing currect notif type.                            
    Regards
    Ali

    Hi vijay,
    Nice to see your reply, I think, you are right...
    The Fm ISR_SPECIAL_DATA_GET already used in my various reports, Workflows etc.
    And I have a custom WebDynpro java based application which have similar data and have custom notification no. + (in this case probably i need to create new fm ZISR_SPECIAL_DATA_GET to use in above report and wf)+
    To avoid the rework and minimized the code Iu2019m trying to create notification no using standard fm and link custom WD data with ISR_SPECIAL_DATA_GET.
    Please let me know how to proceed with that
    Regards
    Raza

  • How to update CS5 and use Air 2.6

    Sorry, but I am lost.
    I know that packaging will be different but I am completely lost on how to use/update Flash Cs5 with the new AIR 2.6 SDK.
    Do I have to copy files over or is there an installation? Do I just have to change some paths in Flash?
    Please help. I am VERY eager to test the improved performance of the NEW packager.
    Thank you in advance,
    Simon

    HI
    I have never used terminal on a mac, but jumped in and its pretty cool and not too hard. But I can't figure out how to use the new 2.6 packager at all
    I have put my swf and xml in the bin folder and run adt, which doesn't allow me to add anything it says [process complete]
    So I guess this is supposed to happen and then I open a new terminal shell and add this:-
    ./adt -package
    -target ipa-test
    -storetype pkcs12 -keystore /Users/myname/MYcertif/myCertificates.p12 -storepass mypassword
    -provisioning-profile /Users/myname/MYcertif/certif.mobileprovision
    MYnewApp.ipa
    STR-app.xml
    STR.swf
    it gives me "command not found" after each line.
    I'm sure I'm not the only one who needs help with this. I don't think I'm running the terminal from the right place
    can anyone help?
    Ta
    KBN

Maybe you are looking for

  • HT5487 my ipod touch is stuck with an I tunes logo and a usb chord with an arrow pointing to the logo. What is this and how do I fix it?

    My Ipod is stuck with a picture of a USB chord with an arrow pointing to an itunes logo....what is this and how do I fix it? I did look at the "printers and devices" section on my computer. It shows an un identified "apple" device that is in "recover

  • How to save a numbers file on macbook to iCloud?

    i have just started using icloud and want to save a numbers file on my macbook pro via icloud so i can use it on my iphone 5 please!!??

  • Sites created in iWeb '08 will not open in iWeb '09

    I upgraded to '09 but the sites that I created when I had '08 will not open. They are listed on the side menu but when you click on them the main window is blank/white. Is anyone having or had this problem and found the solution? Please help. I have

  • Vendor user exit

    hi all,                 while creation of vendor is under process, i want to catch the vendor number and use it accordingly to my requirement even before the vendor is created. i know this can be accomplished by user exits.but not sure, which user ex

  • Upgraded now cannot open files

    At the prompt of App Store that updates were available for Numbers, I upgraded today to 3.0.1.  Now, I cannot access any of my spreadsheets.  The dialogue box comes back: "The file "xxxx" couldn't be opened.  Even if I open a new document and try to