At MIRO i need to capture Seperate GL

hi guys
when am doing MIRO i need to clear 90% only
the balance 10% i will clear later .It can be doing by Using  Invoicing Plan Type.
For that i need to capture like this At MIRO Time
90% of Invoice amt to Vendor act
10% of Invoice amt to Rentention act
that 10% Of Invoice amt i can clear later.
so how can i configure this

Hi,
Can you try creating instalment payment terms.This is done by FI.
Thanks
Aravind
Assign points if useful

Similar Messages

  • XI needs to capture the form back in the mail adapter

    Hi Experts,
    I am working on a scenario where , data needs to be sent from SAP and in XI , a form sort of( like a web form or pdf form) needs to be created.  This form needs to be emailed ( using the mail adapter ) to an outside entity.  They will fill out the form and email it back.  XI needs to capture the form back in the mail adapter translate it and put the data back into sap.
    Can some one help me out with this ?
    Regards,
    Hemanthika

    Hi patnaik
    Follow these links to covert to PDf and then mailing through mail adapter
    Converting Smartform into PDF and sent to EMAIL
    Check this..Smartform as attachment in mail. - 46k
    http://sap.ittoolbox.com/groups/technical-functional/sap-dev/convert-smartforms-form-in-pdf-998715 - 87k
    SMART form to PDF
    https://wiki.sdn.sap.com/wiki/display/Snippets/ConvertSmartformtoPDFformat
    smartform to MAIL
    https://wiki.sdn.sap.com/wiki/display/Snippets/SmartformtoMailasPDF+attachment
    regards
    Sandeep sharma
    If helpful kindly reward points

  • Need to capture multiple image paths for responsive design when only one will be displayed at a time

    I'm new to CQ and am having enough trouble following the documentation on image components as it is (why is there no master reference for all this?). I have a requirement where we need to capture three versions of an image and put the URLs into three attributes of a tag. The appropriately sized image will be selected via JavaScript based on the browser/device capabilities. I need to know how to capture those images when seemingly only one at a time can be dropped onto the page. Or perhaps there is a more CQ solution to this.

    Hi,
    You need to customize image component. I mean selected image is a asset in the repository and each asset by default has 3 rendtion generated when the image is uploaded in the dam.
    For example when you upload image.jpg file into the DAM, standard workflow is launched and after a while inside the repository (see paths) are created following renditions:
    /content/dam/project/image/image.jpg/jcr:content/renditions/cq5dam.thumbnail.140.100.png
    /content/dam/project/image/image.jpg/jcr:content/renditions/cq5dam.thumbnail.319.319.png
    /content/dam/project/image/image.jpg/jcr:content/renditions/cq5dam.thumbnail.48.48.png
    This process can be customized by changing /etc/workflow/models/dam/update_asset.html workflow and modifing "Thumbnail creation" step by adding in the Process tab -> Arguments field new values for new rendition. So for example if you add there [400,400] new rendition will be created in the path
    /content/dam/project/image/image.jpg/jcr:content/renditions/cq5dam.thumbnail.400.400.png
    Next step is to customize jsp for image component. Using path to the drag and dropped image from a component attributes you can easily take all renditions iterating on the /content/dam/project/image/yourimage.jpg/jcr:content/renditions node and then set paths to all renditions in the tag attributes. Then like you wrote using js you can select proper rendition.
    I hope that it hepls you.
    Regards,
    Adam

  • Need to Capture porReqLineId from ShoppingCartPG dynamically

    Hi,
    My Requirement
    From the Shopping Cart Page in iProcurement I have to link a custom form for each line where the users will be able to enter some additional information and based on the information some validations will be done after which the data will be stored in a custom table.
    What needs to be done and what I have done till now
    I have extended the Controller of the Shopping Cart Page. Created a Submit Button and added the button dynamically to each line of Shopping Cart. Set a fireActionEvent to the button. So when the user clicks on the button it should open a new custom page with the Requisition Line ID as a parameter.
    My Problem
    I am unable to capture the Requisition Line ID.
    I have tried the following step
    1. Created a Extended Controller by extending the ShoppingCartCO
    2. In processRequest created a Submit Button named it as "Additional Info" and assigned it to the Table. So it will show a Button in the result table of the Shopping Cart.
    3. Assigned a Fire Action for Submit Button in processRequest using setFireActionForSubmit method. So when the "Additional Info" button is clicked it raises the event set in Fire Action.
    4. In processFormRequest method of the extended CO handled the event by
    if ("addnInfoEvent".equals(paramOAPageContext.getParameter(OAWebBeanConstants.EVENT_PARAM))).
    In this i tried to capture the porReqLineId which is a formParameter using the following
    Number localNumber = 0;
    try {
    localNumber = new Integer(ClientUtil.getDecryptedParameter(paramOAPageContext, "porReqLineId"));
    catch (Exception e) {e.printStackTrace();}
    String outmsg="Line ID : " + localNumber + ":" + str + ":" + strEvent;
    throw new OAException(outmsg,OAException.INFORMATION);
    5. Then I am personalizing the ShoppingCartPG and assigning the new extended controller to the page.
    6. So for the time being I need to capture the porReqLineId and pass it to the new custom page as a parameter. But this is not happening and when i click on "Additional Info" button it doesnt provide me the porReqLineId.
    My Whole Code is pasted below
    ===================================================================
    package xx.oracle.apps.icx.custom.webui;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.OAWebBeanConstants;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.webui.beans.form.OASubmitButtonBean;
    import oracle.apps.fnd.framework.webui.beans.table.OATableBean;
    import oracle.apps.icx.por.common.webui.ClientUtil;
    import oracle.apps.icx.por.req.webui.ShoppingCartCO;
    public class XXBBShoppingCartExtend14CO extends ShoppingCartCO {
    public XXBBShoppingCartExtend14CO() {
    public void processRequest(OAPageContext paramOAPageContext, OAWebBean paramOAWebBean)
    super.processRequest(paramOAPageContext, paramOAWebBean);
    OATableBean otbRN=(OATableBean)paramOAWebBean.findIndexedChildRecursive("ItemTableRN");
    OASubmitButtonBean oasb= (OASubmitButtonBean)paramOAPageContext.getWebBeanFactory().createWebBean(paramOAPageContext,"BUTTON_SUBMIT");
    oasb.setID("addnInfo");
    oasb.setUINodeName("addnInfo");
    oasb.setText("Additional Info");
    otbRN.addIndexedChild(oasb);
    oasb.setFireActionForSubmit("addnInfoEvent",null,null,false);
    public void processFormRequest(OAPageContext paramOAPageContext, OAWebBean paramOAWebBean)
    OAApplicationModule localOAApplicationModule = paramOAPageContext.getApplicationModule(paramOAWebBean);
    String strEvent= paramOAPageContext.getParameter(EVENT_PARAM) ;
    String str = paramOAPageContext.getParameter("event");
    if ("deleteLine".equals(str))
    Number localNumber = 0;
    try {
    localNumber = new Integer(ClientUtil.getDecryptedParameter(paramOAPageContext, "porReqLineId"));
    catch (Exception e) {e.printStackTrace();}
    String outmsg="Line ID : " + localNumber + ":" + str + ":" + strEvent;
    throw new OAException(outmsg,OAException.INFORMATION);
    if ("addnInfoEvent".equals(paramOAPageContext.getParameter(OAWebBeanConstants.EVENT_PARAM)))
    Number localNumber = 0;
    try {
    localNumber = new Integer(ClientUtil.getDecryptedParameter(paramOAPageContext, "porReqLineId"));
    catch (Exception e) {e.printStackTrace();}
    String outmsg="Line ID : " + localNumber + ":" + str + ":" + strEvent;
    throw new OAException(outmsg,OAException.INFORMATION);
    ===================================================================
    Here I also tried to modify the Oracle defined event of "deleteLine" by just capturing and printing the Req Line ID. This is happening in the case of "deleteLine" event but not in the case of "addnInfoEvent" event.
    Please help me on this.
    Thanks in advance.
    Regards,
    Rohit Subudhi
    Edited by: 929000 on May 8, 2012 12:42 AM
    Edited by: 929000 on May 8, 2012 1:22 AM

    Hi,
    I have used the following in processRequest
    String pageName = paramOAPageContext.getRootRegionCode();
    Hashtable params = new Hashtable (1);
    params.put ("param1", pageName);
    Hashtable paramsWithBinds = new Hashtable(1);
    paramsWithBinds.put ("param2", new OADataBoundValueFireActionURL(oasb, *"${oa.encrypt.current.RequisitionLineId}"));*
    oasb.setFireActionForSubmit("addnInfoEvent",params,paramsWithBinds,false,false);

  • Reg: Need to capture cost / energy consumption in process order

    Dear Friends,
    I need your valuable advices for one of the following
    I have a scenario where for one of the process , we are generating Energy(heat) in in-house b y burning coal.
    We are manufacturing steel Pellets , and it is continuous process at the end of the process these steel pellets are heated upto 1200DegC in furnace,
    and for this we are generating energy in in-house by burning Coal on the other side.Now i need to capture this energy cost in my process order. And also i need to have shift wise energy consumption report.
    So let me know how can i achieve this..?
    Can we achieve by defining is as an extra activity type..? if yes , please let me know how and also necesary formula to achieve this.

    1. Define New Std Value in your std value key. Say E0001
    2. Now Ask Costing person to Create New Activity Type say ENG01
    3. Now Decide how you want to calculate your Energy consumption will it based on you Order qty or It will based on the Machine run time.
    4 Now give the std values in Routing as per Operation qty or Machine Run time
    5. If is is based on Based on Operation Qty The formula will be
    ENG01 = (Order Qty x Std Value of Energy)/ Operational Qty.
    6. If it is Based on Machine run say 24 hr will burn 1000 joule
    Then formula will be =
    Machine run x Std value of Energy as in Routing.
    Take help of your Costing guy to arrive at the Formula.

  • What type of firewire cables do I need to capture recorings from my canon xm2

    What type of firewire cables do I need to capture recorings from my canon xm2

    I have a:
    Model Name:          Mac Pro
      Model Identifier:          MacPro5,1
      Processor Name:          Quad-Core Intel Xeon
      Processor Speed:          2,4 GHz
      Number Of Processors:          2
      Total Number Of Cores:          8
      L2 Cache (per core):          256 KB
      L3 Cache (per processor):          12 MB
      Memory:          6 GB
      Processor Interconnect Speed:          5.86 GT/s
      Boot ROM Version:          MP51.007F.B03
      SMC Version (system):          1.39f11
      SMC Version (processor tray):          1.39f11
      Serial Number (system):          CK12002NHF8
      Serial Number (processor tray):          J511400HYBH8C    
      Hardware UUID:          F51FCFBA-869D-5D70-A1F6-886A32871AA0

  • I'm using numbers on my MacBook, do I need to get seperate app to sync with phone?

    I'm using numbers on my MacBook, do I need to get seperate app to sync with phone? Or should it sync through iCloud.
    Also does anyone know if numbers has a similar feature to auto sum on excel, where you can quickly add a row of numbers together?
    Many thanks

    You have to purchase Numbers for iOS devices separately.
    To add a row of numbers select the range to add, then drag the quick functions from the left (lower) of the Numbers window to the destination cell:

  • Need to capture RWB alerts to CCMS

    Dear All,
    I have configured for Alerts in RWB to capture Integration and Adapter Engine failure messages.
    I am getting a detailed description of alert text in the alert inbox.
    Example:Error found in MAPPING.EXCEPTION_DURING_EXECUTE for the MAPPING Category in the Message ID XXXX for the Interface XXXX from the Sender Party XXXX.
    Now my requirement is I need to capture the detailed text message in CCMS.
    Note: I have added the rule CCMS_GET_MTE_BY_CLASS and specified R/3 system ID (SID) and MTEClass as SXI_RWBAlerts in RZ20.
    I am getting only the Number of active alerts for the defined Alert Category and the number of alert rules created in RWB.
    Number of active alerts 2
    Assigned alert rule: 1 Alert for Application Category error
    Assigned alert rule: 2 Alert rasied for all IE/AE failures
    What is the method need to be assigned to capture the detailed error text messages from RWB?
    Regards
    B.Dheepa

    Hi
    CCMS alert guide- May be useful in your case..
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/aeeda66b-0a01-0010-6884-876fac1c4a2d
    Alert Monitoring and Notification Mails
    http://help.sap.com/saphelp_nw2004s/helpdata/en/2a/ae8d4243a5de54e10000000a155106/frameset.htm
    this link contains a list of conatiner variables that can be used while configuring Alerts,
    http://help.sap.com/saphelp_nw04/helpdata/en/d0/d4b54020c6792ae10000000a155106/content.htm
    regards,
    Surya

  • Need to capture webinar while away from mac

    need to capture webinar while away from mac. automator is so complicated. is there a simpler better way to capture.
    thanks erryjay

    Hi,
    You would like to retrieve the returning value of the dynpro in a Batch input session ?
    bad idea
    try to make a CALL TRANSACTION inside a program. But you can't add you own logic inside a batch-input.
    Maybe you could do this using eCAT
    regards
    Fred

  • Flex automation - need to capture the mousemove

    hi All,
         I am creating Whiteboard application. I want to test my application through automation, but i can't capture the mousemove event.
    Inside the Whiteboard i have drawing fucntionality, this functionality require the mousedown, mousemove and mouseup events. I need to capture these events.
    Please help me.
    - Rajan

    I tryed that method.
    This is my sample file:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application 
    xmlns:mx="http://www.adobe.com/2006/mxml"applicationComplete="init();"
    >
    <mx:Script>
    <![CDATA[
    import mx.automation.Automation; 
    import mx.automation.IAutomationManager; 
    private function init():void
    bindDraw.addEventListener(MouseEvent.MOUSE_DOWN, _MouseDownHandler,
    false, 0, true);}
    private function _MouseDownHandler(evt:MouseEvent):void{
    this.systemManager.addEventListener(MouseEvent.MOUSE_UP, _MouseUpHandler, false, 0, true); 
    bindDraw.addEventListener(MouseEvent.MOUSE_MOVE, _MouseMoveHanlder,
    false, 0, true); 
    bindDraw.graphics.lineStyle(3, 0, 1);
    bindDraw.graphics.moveTo(evt.localX, evt.localY);
    private function _MouseMoveHanlder(evt:MouseEvent):void{
    bindDraw.graphics.lineTo(evt.localX, evt.localY);
    private function _MouseUpHandler(evt:MouseEvent):void{
    bindDraw.graphics.clear();
    this.systemManager.removeEventListener(MouseEvent.MOUSE_UP, _MouseUpHandler, false); 
    bindDraw.removeEventListener(MouseEvent.MOUSE_MOVE, _MouseMoveHanlder,
    false);}
    private var _count:Number = 0; 
    private function clickHandler(evt:MouseEvent):void{
    evt.currentTarget.label=
    "clicked "+(++_count);}
    ]]>
    </mx:Script>
     <mx:Button id="b1" label="click me" click="clickHandler(event)"/>
     <mx:Canvas showInAutomationHierarchy="true" id="bindDraw" width="100%" height="100%" />
     <mx:Canvas id="fff" width="100" height="100" backgroundColor="34233"/></mx:Application>

  • Reg: Need to capture cost for Inspection carried out by vendor.

    Dear Friends,
    I need your input for the following scenario .
    For Ex: Consider Product X.
    For one of the Inspection characteristics we are giving for third party for inspection.
    Now  for this i need to capture cost which is going to occur . Please let me know how can it be achieved.
    With Thanks,
    Dayanand.

    Hi Yogin,
    Thanks for the Reply .
    Can you please explain me in detail.
    With Thanks,
    Dayanand.

  • Need to capture edited values ALV

    Hi All,
    Iam working with OOALV and I need to capture the edited values of ALV.
    Here Iam successful by capturing edited values in first time.
    i.e, Execute the program edit on row then Save I able to capture the row in PAI and I save it in dbtab and again come to alv screen and now I will edit some other row . But, this time Iam unable to capture the edited row.
    Here I used check_changed_data method to capture..
    Pls help me in this regard.....
    Thanks,

    >
    > i.e, Execute the program edit on row then Save I able to capture the row in PAI and I save it in dbtab and again come to alv screen and now I will edit some other row . But, this time Iam unable to capture the edited row.
    >
    > Here I used check_changed_data method to capture..
    are you using REFRESH_DISPLAY method.
    in the data_changed after the population.
    And where you are calling that method
    if it is in PAI , in the beginning then that would be fine. You need to use the REFRESH_DISPLAY after the update and you need to call the FLUSH method

  • Need to capture all massages

    Dear All,
    I need to capture all bapi return massages along with some dynamic massages, with signal lights  and need to display in alv grid display. Please let me know the procedure. If possible please send the code.
    Thanks and regards,
    Krish...................

    Hi Krish,
              Move the lines of the return table of bapi to the i_message (internal table) follow the below statement.
    APPEND LINES OF i_return TO i_messages.
    refresh i_return[].
            then Loop at i_messages as given below.
    LOOP AT i_messages INTO wa_messages.
          IF wa_messages-type EQ 'S'.
            l_error_code = '0'.
          ELSEIF wa_messages-type EQ 'E'.
            l_error_code = '1'.
          ELSEIF wa_messages-type EQ 'W'.
            l_error_code = '2'.
          ENDIF.
          CALL FUNCTION 'GET_IMAGE_ICON_CODE'
            EXPORTING
              error_code = l_error_code
            IMPORTING
              icon_code  = l_icon.
          MESSAGE ID wa_messages-id TYPE wa_messages-type NUMBER wa_messages-number
                            INTO v_message
                            WITH wa_messages-message_v1 wa_messages-message_v2 wa_messages-message_v3 wa_messages-message_v4.
          wa_alv_messages-icon = l_icon.
          wa_alv_messages-message = v_message.
          APPEND wa_alv_messages TO i_alv_messages.
        ENDLOOP.
    Decalartion for the function module parameters are as below:
    DATA:l_error_code TYPE int1,
                l_icon TYPE tv_image,
              v_message TYPE string.
    Use the above code, and if you still face any issue please revert back.

  • Help needed for capturing CRLF

    hi guys,
    i need to capture CRLF(using javascript) that gets into textfield when someone do a copy and paste - as a part of form validation.
    or is it possible to do the same in java? please do reply...
    Message was edited by:
    johngrg

    sorry guys...
    i will try to xplain..CRLF-Carriage Return\Line Feed.
    i have a textfield which corresponds to a field in a table. i want to filter the CRLF in the user input to this text field before it reaches the db using either javascript/java. this CRLF is not manual entry like \r\n, but the CRLF that gets in the text when we copy and paste the input from some other source, say word/website.

  • What do I need to capture VHS?

    I know I need a capture device of some sort, but there are so many, and the prices range from $20 to over $500. Don't they all do the same thing? Can anyone recommend one that works with Leopard?

    maitlandmom2 wrote:
    I know I need a capture device of some sort, but there are so many, and the prices range from $20 to over $500. Don't they all do the same thing? Can anyone recommend one that works with Leopard?
    I have and use an ElGato HDTV Stick, which also has video/audio inputs for copying.
    However they also make a less-expensive device for exactly what you are looking to do.
    It's called "Video Capture" and the info is here:
    http://www.elgato.com/elgato/na/mainmenu/products/Video-Capture/product3.html
    There may be others, but I cannot vouch for any, except that their HDTV Stick works for me.

Maybe you are looking for

  • How can I transfer a Kindle E book from my IPad to my i tunes book it wouldn't show up when I pug in?

    How can I get my IPad 2 to transfer a Kindle book (which I have downloaded) to my I tunes I was able to get it on my desk top (PC) but it wouldn't sync toI tunes books Thanks Ralph

  • Extremely slow External Drive

    I have just installed a USB 2.0 Lacie 1 TB external hard drive in the rear port of my Airport Extreme router, for the purpose of storing & sharing Photos, Music & video files on our network. All this was done on the advice from the apple guy.......wh

  • Multiple Infrastructure servers with Single OID/SSO Server

    I am trying to migrate an application from OAS/8.1.6 to 9iAS. We have multiple OAS instances clustered using Microsoft NLB and the remote database is also on a Microsoft cluster. We intend to use Single Sign On for authentication of clients (applicat

  • BPC 7 SP3 and Import Excel package

    Hi, I use VPC 7 SP3 (with SQL Server 2005) and I have some problems with the standard package named "Import Excel". The following error is returned: Package Error Events:  ErrorCode = -1073450901 Source = ExcelToText SubComponent= DTS.Pipeline Descri

  • E7-00 Contact List Info

    Hi Is it possible to see the company name in the contact list. I have the same first name for a lot of people but it helps to have the company name just next to it in smaller font? on the contact list screen.