AR Auto Lock Box for multiple reciepts

Hi ,
We currently download paid checks receipts from bank and process them unis lock box process.
Now we are going to get wire payment receipts also in the same file.
If we get paid check receipts and wire payment receipts in one file do we need to make any changes to existing lock box process.
Please let me know if my question is not clear..
It would be great help if somebody can help me on this.
I also posted the same in EBS General Discussion group and I did not get any response.
If this is againist any forum rules then plz let me know I will delete one of the post.
Thanks,
Reddy

Duplicate post
AR Auto Lock Box for multiple reciepts
Pls continue with your thread under Financials category
thanks

Similar Messages

  • Any solution to the iOS 6 bug for auto lock function for the iPhone 4S

    Any solution to the iOS 6 bug for auto lock function for the iPhone 4S

    My guess is they don't care. Most likely they're illiterate and don't know what a colon is for. They probably think it's a little-used character. Remember: these are the people who don't know the difference between "deprecate" and "depreciate".
    I have the same colon problem as you do. But it's not the biggest problem I have encountered in Lion. If it was only that I'd be Mr. Delighted with Lion. There's worse than having a colon - uh -  that won't cooperate. A lot worse, in Lion.

  • How to apply List box for multiple selection of rows  in ALV report ?

    Hi Exprots,
    1: How to apply List box for multiple selection of rows  in ALV report ?
    Thanking you.
    Subash

    hi,
    check the below program.
    REPORT zalv_dropdowns.
    *Type pools declarations for ALV
    TYPE-POOLS : slis.
    *data declarations for ALV container,ALV grid, Fieldcatalogues & layout
    DATA: g_grid  TYPE REF TO cl_gui_alv_grid,
          g_custom_container TYPE REF TO cl_gui_custom_container,
          gt_fieldcat TYPE lvc_t_fcat,
          gs_layout TYPE lvc_s_layo.*INTERNAL TABLE AND WA DECLARATIONS FOR t517 A table
    DATA: gt_outtab TYPE STANDARD TABLE OF t517a INITIAL SIZE 0,
          wa_outtab TYPE t517a.
    START-OF-SELECTION.*Call to ALV
      CALL SCREEN 600.*On this statement double click  it takes you to the screen painter SE51.
    *Create a Custom container and name it CCONT and OK code as OK_CODE.
    *Save check and Activate the screen painter.
    *Now a normal screen with number 600 is created which holds the ALV grid.
    PBO of the actual screen , Here we can give a title and customized menus
    Here we also call the subroutine for ALV output.
          MODULE PBO OUTPUT                                             *
    MODULE pbo OUTPUT.
      PERFORM alv_output.
    ENDMODULE.                    "pbo OUTPUT
          MODULE PAI INPUT                                              *
    MODULE pai INPUT.
    ENDMODULE.                    "pai INPUT
    *&      Form  BUILD_FIELDCAT
    FORM build_fieldcat.
    DATA ls_fcat TYPE lvc_s_fcat.
    *Build the field catalogue
      CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
        EXPORTING
          i_structure_name = 'T517A'
        CHANGING
          ct_fieldcat      = gt_fieldcat.
    To assign dropdown in the fieldcataogue
      LOOP AT gt_fieldcat INTO ls_fcat.   
    CASE ls_fcat-fieldname.
       WHEN 'SLART'.
    *is the first list box
            ls_fcat-drdn_hndl = '1'.
            ls_fcat-outputlen = 15.
            MODIFY gt_fieldcat FROM ls_fcat.
    is the second list box    
    WHEN 'ABART'.       
            ls_fcat-drdn_hndl = '2'.
            ls_fcat-outputlen = 15.
            MODIFY gt_fieldcat FROM ls_fcat.   
    ENDCASE.
      ENDLOOP.
    ENDFORM.                    "build_fieldcat
    *&      Form  ALV_OUTPUT
    FORM alv_output .*Create object for container
      CREATE OBJECT g_custom_container
             EXPORTING container_name = 'CCONT'.
    *create object for grid
      CREATE OBJECT g_grid
             EXPORTING i_parent = g_custom_container.
    Build fieldcat and set column
    *Assign a handle for the dropdown listbox.
      PERFORM build_fieldcat.
    *Build layout
      PERFORM build_layout.
    Define a drop down table.
      PERFORM dropdown_table.
    *fetch values from the T517A table
      SELECT * FROM t517a INTO TABLE gt_outtab.
    *Display ALV output
      CALL METHOD g_grid->set_table_for_first_display
        EXPORTING
          is_layout       = gs_layout
        CHANGING
          it_fieldcatalog = gt_fieldcat
          it_outtab       = gt_outtab.ENDFORM.                               "ALV_OUTPUT
    *&      Form  dropdown_table
          text
    -->  p1        text
    <--  p2        text
    FORM dropdown_table.*Declarations for drop down lists in ALV.
      DATA: lt_dropdown TYPE lvc_t_drop,
            ls_dropdown TYPE lvc_s_drop.
    First SLART listbox (handle '1').
      ls_dropdown-handle = '1'.
      ls_dropdown-value = '01 Primary school'.
      APPEND ls_dropdown TO lt_dropdown.  ls_dropdown-handle = '1'.
      ls_dropdown-value = '02 Lower Secondary'.
      APPEND ls_dropdown TO lt_dropdown.  ls_dropdown-handle = '1'.
      ls_dropdown-value = '03 Upper Secondary'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '1'.
      ls_dropdown-value = '04 Professional School'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '1'.
      ls_dropdown-value = '05 College'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '1'.
      ls_dropdown-value = '06 University'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '1'.
      ls_dropdown-value = '09 Other Establishment'.
      APPEND ls_dropdown TO lt_dropdown.* Second ABART listbox (handle '2').  ls_dropdown-handle = '2'.
      ls_dropdown-value = '10 Primary School certificate'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '2'.
      ls_dropdown-value = '20 Lower secondary/Junior high'.
      APPEND ls_dropdown TO lt_dropdown.  ls_dropdown-handle = '2'.
      ls_dropdown-value = '30 High school diploma(B-levels)'.
      APPEND ls_dropdown TO lt_dropdown.
      ls_dropdown-handle = '2'.
      ls_dropdown-value = '31 Vocational'.
      APPEND ls_dropdown TO lt_dropdown.  ls_dropdown-handle = '2'.
      ls_dropdown-value = '32 Matriculation'.
      APPEND ls_dropdown TO lt_dropdown.  ls_dropdown-handle = '2'.
      ls_dropdown-value = '40 Specialist vocational certificate'.
      APPEND ls_dropdown TO lt_dropdown.  ls_dropdown-handle = '2'.
      ls_dropdown-value = '50 College degree Level1'.
      APPEND ls_dropdown TO lt_dropdown.  ls_dropdown-handle = '2'.
      ls_dropdown-value = '51 College degree Level2'.
      APPEND ls_dropdown TO lt_dropdown.  ls_dropdown-handle = '2'.
      ls_dropdown-value = '52 Masters degree'.
      APPEND ls_dropdown TO lt_dropdown.  ls_dropdown-handle = '2'.
      ls_dropdown-value = '60 Univ Degree level1'.
      APPEND ls_dropdown TO lt_dropdown.  ls_dropdown-handle = '2'.
      ls_dropdown-value = '61 Bachelors degree'.
      APPEND ls_dropdown TO lt_dropdown.  ls_dropdown-handle = '2'.
      ls_dropdown-value = '62 Masters degree'.
      APPEND ls_dropdown TO lt_dropdown.  ls_dropdown-handle = '2'.
      ls_dropdown-value = '63 Licenciate'.
      APPEND ls_dropdown TO lt_dropdown.  ls_dropdown-handle = '2'.
      ls_dropdown-value = '64 Doctors Degree Ph.D'.
      APPEND ls_dropdown TO lt_dropdown.  ls_dropdown-handle = '2'.
      ls_dropdown-value = '89 None'.
      APPEND ls_dropdown TO lt_dropdown.  ls_dropdown-handle = '2'.
      ls_dropdown-value = '90 Unknown'.
      APPEND ls_dropdown TO lt_dropdown.*method to display the dropdown in ALV
      CALL METHOD g_grid->set_drop_down_table
        EXPORTING
          it_drop_down = lt_dropdown.ENDFORM.                               " dropdown_table
    *&      Form  build_layout
          text
    *layout for ALV output
    FORM build_layout .  gs_layout-cwidth_opt = 'X'.
      gs_layout-grid_title = 'ALV DROPDOWN LISTS'.
      gs_layout-no_toolbar = 'X'.ENDFORM.                    " build_layout
    endform.
    Edited by: S.r.v.r.Kumar on Jun 1, 2009 2:48 PM

  • Auto-create delivery for multiple sales orders

    I would like to ask how to create auto-create 'single' delivery
    for multiple sales order during release sales order in R11i.
    It is found in my example during release sales order, multiple
    sales orders fulfill release sales order criteria, a single pick
    slip is generated but it is found that each sales order have
    individual delivery with it. It will casue multiple pack slips
    for a singles pick slip. Is it normal feature for auto-create
    delivery, or any setup to solve it?
    Thanks in advance.

    Am not able to do Single Delivery for Muktiple sales orders
    Have you searched the forum for this question as to why you were not able to generate ??  It could be due to multiple reasons.  Please search the forum and update here what steps you have taken after taking the inputs from here, if the problem is still not resolved.
    thanks
    G. Lakshmipathi

  • AR -Auto Lock BOX

    We are experiencing issues with our Lockbox and Autocash process. In some cases Autocash will successfully apply multiple invoices paid with one receipt for multiple related customers. Based on our configuration it does not appear that this scenario should ever be successful since our lockbox format does not include a customer number or MICR number and we use Autoassociate for matching based on transaction number. Now my question is,Is there any way that i could apply a single receipt to multiple customers?

    Hi Govel, I am wondering if u can assist me with a lockbox issue as u seem to be a heavy user
    We are just setting up lockbox, and we have 5 accounts in different currencies - If I link all the accounts to a single payment method, which is then used to create a single lockbox, will I be able to succesfully import my receipts to the 5 accounts OR do I need to set up a Lockbox per account?
    Any assistance here will be appreciated -

  • Highlighting text box for multiple choice presentation.

    I'm making a multiple choice presentation and need help highlighting the correct answers.
    I'm using Keynote v5.3 and here is the format of my slides:
    Text box - Question
    Text box - (A) Answer A
    Text box - (B) Answer B
    Text box - (C) Answer C
    Text box - (D) Answer D
    When I click to advance, the desired effect I'd like is for the correct answer to turn red in order to let the class know that it's the correct answer.
    I looked on the Build Inspector tool but the only Effects that appear in the Action section are Move, Opacity, Rotate and Scale. None which I don't want.
    Is there a way to animate the correct answer/text box to change color?
    Please help. Thanks!

    builds only work in  linear order ( 1, then 2, then 3,  then 4 ) they don't run in a random access selection,
    ( 4, 1, 2, 3 ) which is what would be required in the method you describe.
    the  way to do this is to use hyperlinks from the first slide to four other slides
    on slide 1:
    type the question and  the multiple choice statements
    draw a shape beside each statement and use this as a hyperlink button to the  respective slide number
    select each shape in turn:
    inspector > hyperlink > enable hyperlink > link to slide and select the respective slide number
    when you click on   button A, it will display the the responce to choice d
    by the way, viewers have been taught that colours have  certain associations ( country dependant of course)
    such as red for danger so
    the traditional colour to use for a correct answer is GREEN
    the traditional colour to use for an incorrect answer is RED

  • Clear locked status for multiple files

    I accidentally left the "lock" switch on my SD card when importing photos, and now all of those pictures are "locked". In windows this was no big deal to remedy, I could just select all the files, choose properties, and uncheck the "Read-Only" checkbox. I am new to the Finder, and I'm struggling to find a good alternative in mac land.
    When I try the same trick in Finder, I just get as many Info boxes as files I selected instead of one. If I try to change the Lock flag on the folder containing the pictures, that doesn't seem to do the trick either. I checked the Automator, but I couldn't find any actions having to do with the "Get Info" box. Surely there is an easy way to do this that I don't know of. Does anyone know?

    Instead of using the Get Info window, use the Inspector window. Hold down the option key when you go to the Get Info command (either the menu or the shortcut, cmd+opt-i)

  • Needs a suggestions from an expert on Auto Lock Box!!!

    Hi ,
    I am trying to import the Receipts from the File provided by the bank and encountering the following problems :
    1) I could run the 1st part of the Lockbox..which brings data into the table
    AR_PAYMENTS_INTERFACE_ALL.
    2) At second stage of running the Lockbox which brings data into interium tables...I am getting problems:
    The errors are:
    a) Origation Number not defined for Lockbox....but I defined the Lockbox number in the Lockbox form....I dont know why this problem is coming.
    b)Could not continue...check for transmission errors.. What is this transimissions errors are ....when I am able to bring data into the interface table then why is it not possible for me to put that into interium tables.
    Can anybody suggest some solution to comeover these problems..
    Thanks in advance,
    Prasad Karuturi.

    I ran into another problem; I'm not sure it's related to my original one:
    after the segment#'s caught up, I brought the standby in read-only mode (so I can get some row counts to compare with primary). Then I tried:
    alter database recover managed standby database disconnect;
    and got the error:
    ORA-01093: ALTER DATABASE CLOSE only permitted with no sessions connected
    Killed all user processes - to no avail. Do I need to shutdown the standby instance - is there a risk in doing so, or is there a better solution ?
    Thanks again for your help.

  • Unable to check multiple use check box for BADI

    Hi,
    In ECC 6.0, when I am trying to activate the multiple use check box ( For multiple implementation of BADI ) , it is not allowed me the same.
    Throwing the error as - interface IF_EX_TAX1_XTXIT_SET can not be used.
    BADI name - BADI_TAX1_XTXIT_SET
    Can anyone pls help me how to do this.
    Thanks,
    Shakti

    Hello Sakti,
    I am also in ECC6.0 & if i see the definition of the BAdI BADI_TAX1_XTXIT_SET, "Multiple Use" checkbox is checked! What are you trying to do - trying to create an implementation?
    @Prabhu: Although the BAdI is "multiple-use", but there is not filter applied to it. Next time do your checks properly before replying
    BR,
    Suhas

  • How can I send a PDF form for someone to complete, then lock it for no one to see except us when they send it back?

    We would like to create a PDF form to collect sensitive information (phone numbers, payment information) from our customers. Ideally, we would like for them to be able to fill it out, then hit a button to encrypt it when completed, and send it back to us for us to view. Kind of like sending out an open, self-locking box for them to fill, and once they close it no one can see the contents without the key (which we would have).
    I’m using Adobe Acrobat Pro XI (11.0.07) on Mac OSX (10.9.4).
    Is this possible? If so, how do I do this? Thank you in advance!

    You can use certificate encryption. Each of your customers needs to have a digital certificate with a private key and send you the public key version of his/her certificate. You also need to have a digital certificate with private key and to send each customer the public version of your certificate.  Then after each customer fills in your form, she encrypts it with certificate encryption entering as recipients herself and you before sending this PDF to you. This way only this particular customer and you can open and see PDF filled with sensitive information.
    This workflow presumes that you and each of your customers can procure a digital certificate (Digital ID in Acrobat-speak).

  • SQL Command code for multiple value string parameter

    Hi,
    I'm using crystal 2008 and there is a check box for multiple value  SQL Command  I need some help in writing the SQL Command code  for oracle (or sql server) for a multiple value STRING  parameter.
    Thanks in advance,
    Marilyn

    I could be wrong here, but I do not believe you can pass a multiple valued parameter to an SQL Command data source.  How I have gotten around this in the past is to put the "real" report into a subreport.  In the main report, create a formula field (basic syntax):
    formula = join({?parameter}, "|")
    Then, use this to pass the selected values to the subreport's parameter (call it {?sr-parm}).  The SQL Command in the subreport can then use that (MS SQL):
    select *
    from table
    where charindex(table.field, '{?sr-parm}') > 0
    HTH,
    Carl

  • Single Voicemail for Multiple DNs

    I am trying to setup a single voicemail box for multiple phones. I know this can be done using a distribution list in Unity Connection, although from what I understand the MWI will not light up for new messages in the distribution list.
    Currently incoming calls go to a hunt pilot, although if no one answers I would like the call to forward to a general voicemail. Then users in the hunt group can check the messages.
    Is there any way this can be done?

    Hi Derrick,
    There are a number of ways to address this issue :)
    This example will differentiate when a message has been left for their private number vs the Hunt Pilot general mailbox.
    Here's what I would do.
    Our example creates a new line @ 2355 but it can be any random unused number. The Hunt Pilot in this example is 7777;
    If possible, add a second "shared" line (2355) to all Line Group members phones. The new general mailbox is also set up on this new number 2355.
    The Hunt Pilot DN 7777 is set up as an Alternate Extension on this new line 2355 so the Red MWI Lamp would be lit on all member phones.
    So, the he Hunt Pilot number is 7777 and the newly created second line DN's on the Line Group member phones is 2355.
    When the call routes through to CUC via the Hunt Pilot No Answer CUC should see  the CLID of 7777 which will then be connected to the Mailbox on 2355.
    Then tweak the Message Lamp Setting in CUCM for the second Line 2355 appearances;
    For the second Line Setting on (each phone)-
    Line Settings for this Device - Changes affect only this device
    Message Waiting Lamp Policy - Light and Prompt
    The RED Message Lamp will then work for these Second lines on each phone and
    the users will be able to tell which line the message has been left for by seeing the
    flashing envelope icon beside the related line button. The user will also be able to directly
    access the Hunt Pilot messages via the new 2355 line button.
    Cheers!
    Rob

  • Since updating to iOS5 my safari boxes are now tabs at the top of the screen, can I go back to boxes for new pages?

    Since updating to iOS5 my safari boxes to search new pages are now tabs at the top of the screen, can I go back to boxes for multiple internet pages?

    You can open multiple tabs and switch back and forth like you use those boxes. In actual fact it's faster with tabs.

  • Background job for auto lock user

    Dear Friends,
    Which background job i have to be schedule for auto locking user after every 30 days if then are not logged for last 30 days.
    Thanks,
    Regards,
    Sachin

    Hi, Sachin.
    Please check this thread.
    Locking users if they did not login for 15 days
    Best Regards.
    Sejoon

  • SetSelectedValue for multiple values in List Box

    Hi,
    I want to set the selectedValue for multiple values in the List Box. If i use setSelectedValue for all the values, it just highlights the last one.
    Can anyone tell me how do i highlight multiple values in the List Box?
    Scenario:
    I have one screen where the List Box and "Go" button is placed. When i select multiple values in the list box and hit "Go" it should display what i have selected in the List Box.
    Note: List Box is generated dynamically.
    Thanks,
    Naresh V

    setSelectedValue as the name indicates will set one value and in your case since you are using it multiple times it would pick the last value.
    When the user selects multiple values from the list box and clicks on Go you can capture those values in the controller for processing. What are you trying to achieve by resetting all the selected values on the same listbox ?

Maybe you are looking for

  • Outbound status locked?

    Today we sent thousands of idocs from sap systems to non sap systems, and from non sap to sap. A strange thing happens: a lot of idocs that go from sap no non sap system, has the status "message being sent" on the outbound status (in the sxi_monitor

  • How to assign smartform to print program for payment advice

    Hi! There is already a print program and a smartform for payment advice. This was working before as I was told. But when I checked table TNAPR, there is no entry in the table with the program name and neither for the smartform. How can I use them tog

  • How to add field value to the standard table

    Hi, How to add field value to the standard table? for example: when we go to TCODE SE16-> VBAK table -> on the selection screen if we press F4 against VBTYP we get all the available values for that field. How to add a new document Category value to t

  • Problems opening an illustrator pdf in photoshop

    i'm designing a poster in illustrator. its all vectors so its all clean and crisp. I have to bring it into photoshop to add metallic pantone gold, so in order to bring it over i have to save it as a pdf. but when i open it up in photoshop it becomes

  • Running 32bit pbsetup on 64bit l

    I need to run the 32bit version of pbsetup on 64bit arch linux because the game I want is not on the 64bit version. When I try to run the 32bit version I get this error message ./pbsetup.run: error while loading shared libraries: libgtk-x11-2.0.so.0: