Require Vendor Payment List with Payment Terms

hi how to get Require Vendor Payment List with Payment Terms

hi
You can go to FBL1N, (i.e vendor line items) and click change layout button. in the change layout menu, you have "Terms of Payament"  field  which show the tems of payment you had in the invoice..
You can use "terms of payment" field to display  payment terms in the vendor masster data.
hope this will help
award points if helpful
Edited by: venu mamillapalli on Jun 12, 2008 9:35 AM

Similar Messages

  • R12 Oracle Payment Certification with Payment Systems

    Hi Victoria,
    We are trying to integrate R12 Oracle Payment with Payment Processors for both Credit Card and EFT. Can you please let me know which processors and gateways are certified with R12 Oracle Payment module..
    Vasu.

    You can set this maximum amount limit in internal bank account level under account controls tab. I hope this will be applicable if you are using payment workbench screen for processing payments.
    Not sure for payment batches, just test the scenario in test instance.

  • How do recurring payments work with payment gateway provider?

    Hi All!
    I've setup PayPal Website Payments Pro for Consolidated Billing and been asked a question about "reference payments" by PayPal.
    When a person purchases a recurring product in a BC shop OR "upgrades / pushes live" their BC site; how does the recurring payment get collected?
    Which of the following does BC perform:
    OPTION 1: Send a request to payment gateway to ask them to setup recurring payment to the client who's just made a payment; using the gateway's own engine.
    OPTION 2: BC automatically recharges the client for the next period via a single automated payment using a 'credit card token', through the payment gateway. i.e. not using recurring payment facility on gateway own engine.
    If it is OPTION 2, my understanding is that this is a 'reference payment' and we need to inform PayPal that this needs to be made available on our account.
    Regards
    Mike

    Hi Mike,
    As long as the gateway is on our approved list to handle recurring within BC it would fall under option 2.  If the product or item incurs a cycle type requiring recurring billing BC will take the client transaction token and will re-initiate billing based on the recurring cycle in which the gateway will process. 
    For more details on how recurring works please view the article below.
    - http://kb.worldsecuresystems.com/kb/recurring-billing.html
    Kind regards,
    -Sidney

  • Payment lot with Payment specification

    Hi
    I am trying to process a Payment Lot (FP05) using a payment specification (FPAY1B). After creating the payment specification and selecting it in the payment lot (J), the item is going to clarification with an error message that says "Status of payment specification XXX does not permit use".
    Thanks
    Allen

    Update the processing status field on the Payment Specification.
    Closed

  • SP_Validation Payment sereis with payment means

    Hi,
    I am trying to do a validation using the stored procedure,but it doesnt work.
    I have document series for cash->CH09 and check->CQ09 in outgoing payment.
    Now if the user choose the Cash series,only thorugh cash-payment means the document should be added(other payment means must be blocked).
    SImilarly if check series is choosen, only through check-payment means the document should be added.
    Below i have created for Check means,guide me in correcting this
    if (@Object_type = N'46'and @transaction_type='A')
    begin
    if exists (select t0.Docnum from ovpm t0 ,nnm1 t2 where t2.series=t0.series and
    t2.seriesname like '%CQ%' and t0.checkacct!='' or t0.checkacct is not null or t0.checkacct!=0 and t0.Docnum =@list_of_cols_val_tab_del)
    begin
    SET @error =- 1234
    SET @error_message = N'Payment means should be check'
    end
    end

    Hello ..
    Faced with the scenario you posed, you could apply a SQL transaction that reads both standard options and depending on the selected series indicate the payment method to use ..
    The following code looks for that goal, in this case the data 81 and 82 are internal numbers that identify each series respectively.
    I hope it will help
    Best regards,
    if (@Object_type = N'46'and @transaction_type='A')
    declare @ser int
    declare @efec int
    set @ser = (SELECT T0.Series FROM OVPM T0 WHERE T0.DocEntry = @list_of_cols_val_tab_del)
    begin
         if @ser = '81' --Cash
         begin
         set @efec = (SELECT T0.CashSum FROM OVPM T0 WHERE T0.DocEntry = @list_of_cols_val_tab_del)     
              if @efec = '0'
              begin
              set @error = 1
              set @error_message = 'Payment should be cash'
              end
         end
         if @ser = '82' -- Check
         begin
         set @efec = (SELECT T0.CheckSum FROM OVPM T0 WHERE T0.DocEntry = @list_of_cols_val_tab_del)     
              if @efec = '0'
              begin
              set @error = 1
              set @error_message = 'Payment should be in Check'
              end
         end
    end

  • Attaching a document along with payment advice during F110

    Hi All,
    when i run F110 all payments with payment mode 'T'(telegraphic) are mailed to the respective vendors and all payments with mode 'K'(Credit) are displayed in the spool(SP01).
    Now the requirement is that the contract of the vendor(contract document is attached in the vendor master-FK02) should also me mailed along with the payment advice.
    I created a Z-program(copied from RFFOEDI1) which downloads this contract document from vendor master onto the desktop and then uploads this and sends it to the customer.
    However when i do this the mail request for the contract document is being generated(as can be seen in the send requests list (t-code SOSG) and the mail also gets triggered when i process it in SCOT), but no mail request is being generated for the payment advice  .
    Also no spool for payment advices with payment mode 'K' is generated in SP01.
    Any help is appreciated and will be rewared generously.
    Thanks in advance.
    Najam
    I am attaching the part of code i have inserted -
    REPORT RFFOEDI1.
    INCLUDE ZDWNLD_ATTA. 
       F110ID-LAUFD   = ZW_LAUFD.
       F110ID-LAUFI   = ZW_LAUFI.
       F110ID-OBJKT   = KON_PARAM.
    PERFORM  F_MAIL_CONTRACT.
      INSERT T012D-EDIPN INTO HEADER.
    AT SELECTION-SCREEN ON PAR_WFOR.
      IF PAR_WFOR NE SPACE.
        SET CURSOR FIELD 'PAR_WFOR'.
        CALL FUNCTION 'FORM_CHECK'
          EXPORTING
            I_PZFOR = PAR_WFOR.
      ENDIF.
    FORM F_MAIL_CONTRACT .
       F110ID-LAUFD   = ZW_LAUFD.
       F110ID-LAUFI   = ZW_LAUFI.
       F110ID-OBJKT   = KON_PARAM.
      IMPORT SLKTAB FROM DATABASE RFDT(FB) ID F110ID.
      READ TABLE SLKTAB INDEX 1.
      IF SY-SUBRC = 0.
        W_LIFNR = SLKTAB-VONKT.
      ENDIF.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
      EXPORTING
        INPUT         = W_LIFNR
    IMPORTING
       OUTPUT        = W_LIFNR .
    *Get vendor Email Address
    SELECT SINGLE * FROM LFA1 WHERE LIFNR = W_LIFNR.
    IF SY-SUBRC = 0.
      SELECT SINGLE * FROM ADR6 WHERE ADDRNUMBER = LFA1-ADRNR.
    ENDIF.
    W_RECIPIENT = ADR6-SMTP_ADDR.
    PERFORM DOWNLOAD_ATT USING W_LIFNR.
    PERFORM UPLOAD_ATT_SEND_MAIL USING W_RECIPIENT LTP_FILENAME .
    ENDFORM.                    " F_MAIL_CONTRACT
    FORM DOWNLOAD_ATT  USING    P_W_LIFNR.
    SO_INSTI = P_W_LIFNR.
    SELECT * FROM SRGBTBREL INTO TABLE TA_SRGBTBREL
      WHERE INSTID_A =  SO_INSTI
        AND TYPEID_A = SO_TYPID
        AND CATID_A  = SO_CATID.
    IF SY-SUBRC EQ 0.
       SORT TA_SRGBTBREL BY INSTID_A TYPEID_A CATID_A.
       DELETE ADJACENT DUPLICATES FROM TA_SRGBTBREL
         COMPARING INSTID_A TYPEID_A CATID_A.
       LOOP AT TA_SRGBTBREL INTO WA_SRGBTBREL.
         PERFORM PROCESS_ATTACHMENTS
         USING  WA_SRGBTBREL-INSTID_A
                WA_SRGBTBREL-TYPEID_A
                WA_SRGBTBREL-CATID_A.
       ENDLOOP.
    ENDIF.
    ENDFORM.                    " download_att
    FORM UPLOAD_ATT_SEND_MAIL  USING    P_W_RECIPIENT
                                        P_LTP_FILENAME.
    RECEIVER = P_W_RECIPIENT.
    PERFORM ML_CUSTOMIZE USING 'Tst' 'Contract'.
    PERFORM ML_ADDRECP USING RECEIVER 'U'.
    PERFORM UPL.
    PERFORM DOCONV TABLES I_ITAB OBJBIN.
    PERFORM ML_PREPARE USING 'X' EXTENSION NAME.
    PERFORM ML_DOSEND.
    FORM ML_CUSTOMIZE  USING    OBJNAME
                                OBJDESC.
    CLEAR DOCDATA.
    REFRESH OBJPACK.
    CLEAR OBJPACK.
    REFRESH OBJHEAD.
    REFRESH OBJTXT.
    CLEAR OBJTXT.
    REFRESH OBJBIN.
    CLEAR OBJBIN.
    REFRESH OBJHEX.
    CLEAR OBJHEX.
    REFRESH RECLIST.
    CLEAR RECLIST.
    REFRESH LISTOBJECT.
    CLEAR LISTOBJECT.
    CLEAR TAB_LINES.
    CLEAR DOC_SIZE.
    CLEAR ATT_TYPE.
    DOCDATA-OBJ_NAME = OBJNAME.
    DOCDATA-OBJ_DESCR = OBJDESC.
    ENDFORM.                    " ml_customize
    FORM ML_ADDRECP  USING   PRECEIVER PREC_TYPE.
    CLEAR RECLIST.
    RECLIST-RECEIVER = PRECEIVER.
    RECLIST-REC_TYPE = PREC_TYPE.
    APPEND RECLIST.
    ENDFORM.                    " ml_addrecp
    FORM UPL .
    FILE_NAME = LTP_FILENAME.
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
      FILENAME = FILE_NAME
      FILETYPE = 'BIN'
    TABLES
      DATA_TAB = I_ITAB
    EXCEPTIONS
      FILE_OPEN_ERROR = 1
      FILE_READ_ERROR = 2
      NO_BATCH = 3
      GUI_REFUSE_FILETRANSFER = 4
      INVALID_TYPE = 5
      NO_AUTHORITY = 6
      UNKNOWN_ERROR = 7
      BAD_DATA_FORMAT = 8
      HEADER_NOT_ALLOWED = 9
      SEPARATOR_NOT_ALLOWED = 10
      HEADER_TOO_LONG = 11
      UNKNOWN_DP_ERROR = 12
      ACCESS_DENIED = 13
      DP_OUT_OF_MEMORY = 14
      DISK_FULL = 15
      DP_TIMEOUT = 16
      OTHERS = 17.
    PATH = FILE_NAME.
    CALL FUNCTION 'PC_SPLIT_COMPLETE_FILENAME'
    EXPORTING
    COMPLETE_FILENAME = PATH
    IMPORTING
    EXTENSION = EXTENSION
    NAME = NAME
    EXCEPTIONS
    INVALID_DRIVE = 1
    INVALID_EXTENSION = 2
    INVALID_NAME = 3
    INVALID_PATH = 4
    OTHERS = 5.
    ENDFORM.                    " upl
    FORM DOCONV TABLES MYPDF STRUCTURE TLINE
                       OUTBIN STRUCTURE SOLISTI1.
    DATA : POS TYPE I.
    DATA : LEN TYPE I.
    LOOP AT MYPDF.
    POS = 255 - LEN.
    IF POS > 134. "length of pdf_table
    POS = 134.
    ENDIF.
    OUTBIN+LEN = MYPDF(POS).
    LEN = LEN + POS.
    IF LEN = 255. "length of out (contents_bin)
    APPEND OUTBIN.
    CLEAR: OUTBIN, LEN.
    IF POS < 134.
    OUTBIN = MYPDF+POS.
    LEN = 134 - POS.
    ENDIF.
    ENDIF.
    ENDLOOP.
    IF LEN > 0.
    APPEND OUTBIN.
    ENDIF.
    ENDFORM.                    " doconv
    *&      Form  ml_prepare
          text
    FORM ML_PREPARE USING BYPASSMEMORY WHATATT_TYPE WHATNAME.
    IF BYPASSMEMORY = ''.
    CALL FUNCTION 'LIST_FROM_MEMORY'
    TABLES
    LISTOBJECT = LISTOBJECT
    EXCEPTIONS
    OTHERS = 1.
    IF SY-SUBRC EQ 0.
    MESSAGE ID '61' TYPE 'E' NUMBER '731'
    WITH 'LIST_FROM_MEMORY'.
    ENDIF.
    CALL FUNCTION 'TABLE_COMPRESS'
    TABLES
    IN = LISTOBJECT
    OUT = OBJBIN
    EXCEPTIONS
    OTHERS = 1
    IF SY-SUBRC EQ 0.
    MESSAGE ID '61' TYPE 'E' NUMBER '731'
    WITH 'TABLE_COMPRESS'.
    ENDIF.
    ENDIF.
    *Packing Info For Text Data
    DESCRIBE TABLE OBJTXT LINES TAB_LINES.
    READ TABLE OBJTXT INDEX TAB_LINES.
    DOCDATA-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
    CLEAR OBJPACK-TRANSF_BIN.
    OBJPACK-HEAD_START = 1.
    OBJPACK-HEAD_NUM = 0.
    OBJPACK-BODY_START = 1.
    OBJPACK-BODY_NUM = TAB_LINES.
    OBJPACK-DOC_TYPE = 'TXT'.
    APPEND OBJPACK.
    *Packing Info Attachment
    ATT_TYPE = WHATATT_TYPE..
    DESCRIBE TABLE OBJBIN LINES TAB_LINES.
    READ TABLE OBJBIN INDEX TAB_LINES.
    OBJPACK-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJBIN ).
    OBJPACK-TRANSF_BIN = 'X'.
    OBJPACK-HEAD_START = 1.
    OBJPACK-HEAD_NUM = 0.
    OBJPACK-BODY_START = 1.
    OBJPACK-BODY_NUM = TAB_LINES.
    OBJPACK-DOC_TYPE = ATT_TYPE.
    OBJPACK-OBJ_NAME = 'ATTACHMENT'.
    OBJPACK-OBJ_DESCR = WHATNAME.
    APPEND OBJPACK.
    ENDFORM.                    " ml_prepare
    *&      Form  ml_dosend
          text
    -->  p1        text
    <--  p2        text
    FORM ML_DOSEND .
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
      DOCUMENT_DATA = DOCDATA
      PUT_IN_OUTBOX = 'X'
      COMMIT_WORK = 'X' "used from rel. 6.10
    TABLES
      PACKING_LIST = OBJPACK
      OBJECT_HEADER = OBJHEAD
      CONTENTS_BIN = OBJBIN
      CONTENTS_TXT = OBJTXT
      RECEIVERS = RECLIST
    EXCEPTIONS
      TOO_MANY_RECEIVERS = 1
      DOCUMENT_NOT_SENT = 2
      DOCUMENT_TYPE_NOT_EXIST = 3
      OPERATION_NO_AUTHORIZATION = 4
      PARAMETER_ERROR = 5
      X_ERROR = 6
      ENQUEUE_ERROR = 7
      OTHERS = 8
    *IF SY-SUBRC EQ 0.
    *MESSAGE ID 'SO' TYPE 'S' NUMBER '023'
    *WITH DOCDATA-OBJ_NAME.
    *ENDIF.
    ENDFORM.                    " ml_dosend

    Hi,
    As far as I remember there are no direct ways in SAP do to that.
    One suggestion. Create a custom program to send emails and save it with a variant in DME (the last Tab in F110). This is the same place where you maintain the details for sending out the EDI information.
    Once you are done with F110, you can carry out the print functionality to execute the program to send out emails with the payment advice.
    hope this helps.
    Regards

  • Duplicate payments in Payment list of F110 payment run

    Hello all,
    We had run APP trhu F110 payment run was as expected with amount 100000 EUR but when we checked payment list (EDIT- Payment - Payment list) there are duplicate entries and total is showing as 200000 EUR.
    Following are onservations
    1) In SAP posting made correctly to all vendors with a total of 100000 EUR. So no double payments posted in vendor account 
    2) Payment list is showing amounts with a doument numbers. Duplicate payments also having document numbers but which are not exists in SAP
    3) Documents posted with doc type ZP in sap is not in serial i.e 1,2,3,4 Its posted like 1,3,5,7... the document no 2,4 can be seen in the payment list
    4) Also I checked log for the payment run and I found one warning message as "Check whether a duplicate payment medium has been created"
    5) Also status of payment run is "Posting orders: 1,174 generated, 605 completed"
    6) I also checked setting in FBZP which is also correct
    We need to correct the DME file with correect postings
    If anyone has faced issue then please share your inputs
    Thanks & regards

    Dear Rajan,
    the payment document validation works as follows:
    If you select this parameter, a form is only printed if the related
    payment document has already been posted.
    Note that it is not advisable to schedule the payment program and the
    data medium programs to run at the same time, if you want the system to
    be able to carry out validation of the payment documents - because the
    system does not start posting the documents at the same time as the
    program runs, and in order to ensure that the payment program generally
    finishes its run before all the payment documents have been posted, the
    payment medium program (started after the payment program) would display
    in the error list any documents that have not (yet) been found.
    As a result double payments are not possible as no payment media is
    created if the payment document is not posted. The items are still
    open and are selected in the next payment run again.
    If the payment document validation is not used, the payment media is
    created but the open item is not cleared as the payment document is
    not posted. In this case you have to clear the open items manually
    (if a repeat update is not possible) to avoid double payments.
    dear Prashant,
    It is normal that if the automatic payment does not pay all the items, You can find them hanging into sm13.
    However, in general, when this happens you could try to use the edit >
    payments > after termination > draw up again option, if it is
    available.  If there is an entry in SM13, as in Your case, you should process it.
    But sometimes the System does not allow to do it.
    Anyway the only problem I can see is the one reported by the note 545340:
    When the payment program is terminated, it may be the case that not all
    payment documents exist on the updated database while the entries
    already exist in the tables REGUH and REGUP. However, this basic
    procedure has the advantage that the payment media can already be
    created for the purpose of fast forwarding to the bank when for example
    the payment documents update is delayed.
    For this problem please refer to the Note 545340 point [4]
    that answers to it.
    Furthermore please be aware that:
    as I told You in the beginning, If the payment program does not pay
    all the invoices contained into the payment proposal, It will depend on
    the fact that during the payment proposal run time and the payment
    proposal time, something changed respect one of the selected invoices.
    This means that one document number was NOT posted even if It is
    contained in the tables REGUH and REGUP.
    Please be informed payment data tables REGU* are used by only payment
    program and no need to take any corrective action and should not be a
    problem with auditors.
    So You can pay the invoices manually or by the next automatic payment
    run without any problem.
    I hope now the System behaviour is more clear.
    Mauri

  • Automatic payment program- Payment list Fields

    Dear Experts,
    After running automatic payment program when I am trying to view the Payment list(Edit-Payment-Payment list), I donu2019t see the check number in the payment document. Basically we need to see the check number because when the user take the payment list print out it gives the vendor related details with the amount but the authorized signatory need to see the check number as well along with the amount before signing the check.
    So is there any setting that I can do to flow the check number in the payment list?
    Any inputs are appreciated.
    Regards
    Paul

    Hi I have found the solution on this.
    Solution system is sorting the correspondence bases on vendor name and this setting is done when you set the payment method company code wise.
    Also we can sort the payment list vendorwise.
    Problem resolved.
    Thanks for the input
    Regards
    Paul

  • Accounting clerck in payment list

    Dear Colleagues,
    please advice, where can I change Accounting Clerck, which is shown on the payment list of payment run. I know, it should be usually taken from Customer/Vendor Master Data. But here it seems to be a default setting for the company code.
    Many thanks in advance.
    Kind regards,
    Irina

    Hi Irina
    Check it in the view of correspondence. For instance, for customer
    I hope this helps you
    Regards
    Eduardo

  • Material list with mrp datas

    hi,
    My requirement is material list with MRP parameters (i.e Maximum level,Reorder points) I have checked by using T-Code MM60 but the required parameter is absent. Waiting for your help.
    Thanks
    Muthuraman.D
    Edited by: muthuraman d on Sep 15, 2010 4:03 PM

    Use tx SE16/SE16N and table MARC.
    Regards,
    Nick

  • Report inculdes PO with Payment term

    Hi ..
    I need to have report includes my purchase orders with payment term column , which transaction can provide that ?
    Thanks
    Yasser

    PO wise payment term u can get in ME2n report..
    Vendor wise from LFM1 or LFA1 table
    Check MKVZ report

  • Vendor Address not displayed in Payment list RFZALI20 (F110)

    Dear All,
    One country users are not able to see the vendor address/bank details in payment list RFZALI20 in F110 transaction. However, this information is displayed when I run the payment list as shown below:
    I could find that this information is controlled by the field "Max No. of lines for Address" field on selection screen of program RFZALI20. If I set it to 0, these details disappear for me as well.
    User is running the program with a variant which uses 5 No. of lines for address but still doesn't see these details.
    Any inputs on the matter will be greatly appreciated.
    Thanks & Regards,
    Vishal Ahuja
    P.S. : I already checked for authorization by creating a test user(with same parameters) copying users' ID in production but issue could not be replicated.

    Hi,
    which output type u used for print preview? is it NEU?
    Regards,
    Pavan

  • Vendor payment advice with down payment

    Hi,
    A down payment was made to a vendor, without having the invoice yet.
    On the vendor payment advice, this down payment is shown as "invoice".
    I think it should be shown as "advance payment".
    The down payment is listed as a noted item in the vendor open items with document type KA (vendor document).
    How can the down payment be shown as "advance payment" on the payment advice?
    Thank you.
    Kind regards,
    Linda

    Hi Ravi,
    I have created a down payment request for a vendor via transaction F-47.
    I have made a payment run via transaction F110.
    In the payment run, I have 2 invoices and 1 down payment request.
    On the payment advice, which is printed after executed the payment run, the invoices and the down payment are listed as "invoices".
    The down payment request is in fact an "advance payment" , because we have not yet received the invoice.
    Is there a possibility to show it as an "advance payment" instead of "invoice"?
    Thank you.
    Kind regards,
    Linda

  • Additional fields require in the payment list(APP)

    Hi Gurus,
    In the APP(Automatic Payment Programme) payment list i can only dispaly the vendor's name and address.
    User want to display some additional filelds like Bank A/c no. , RTGS no. , NFTS no. etc of the same vendor on the payment list.
    Regarding the same i searched few threads but not able to findout the exact solution.I am also not sure whether any configuration is required fior the same or not?
    Please provide your valuable inputs to get a solution for the same.
    Regards,
    Deba

    Hi Hana,
    Thanks for your response.
    Yes your are right that i am talking about the payment list (RFZALI20) and also i have already maintained the "Maximum no. of address lines "5" into the field. 
    My requirement is to dispaly the vendor's (RTGS & NEFT no.) in the payment list which are exist in the "correspondence" tab of vendor master.
    I am unable to get the above mentioned fields to add in the current variant i.e. (the fields are not available in the list).
    Please suggest how to make a new varinat by assigning the above fields to be displayed in the payment list.
    Regards,
    Deba

  • Variation of payment term with po term.lastest rate is not picked up,*

    Dear SAP
    Variation of payment term with po term.lastest rate is not picked up,
    Irregular rate is uploading on system.document attached
    *Reagards
    MERUGU HAREESH *

    there are payment terms at comapny code level AND purchasing org level, because you may get vendors for which you dont need purchasing views, such as customs or restaurants, where you never place a purchase order at. And other vendors like goods suppliers may never need company code views because you will never pay them.
    So each view serves its own purpose.
    It is not possible to just ignore maintenance at one level and get the payment term for an other organisation.
    Especially as you can have several purchasing organisations within one company (if you purchasing wants to differentiate purchases of direct material from MRO purchasing) or you have one purchasing org for several company codes.
    And not always is the payment term equal then.
    If you are certain that the company code payment term is always equal to purchasing org payment term, then copy it over with mass maintenance and everything is fine.

Maybe you are looking for

  • How to change an Existing  Purchase Requisition Document in MM.

    Hi Folks, I want to write a program to change a existing  Purchase Requisition in MM. I found two BAPI's BAPI_PR_CHANGE and BAPI_REQUISITION_CHANGE , which could be used to change PR document in  ECC. I have following question: 1) why we have two sep

  • Error message - can't open up current catalog

    I am getting this error out of nowhere. yesterday I could get into Lightroom fine. Then last night I started getting an error that pops-up with a "ringing bell" sound and I have to CTRL ALT DELETE out of the program because none of the buttons work.

  • Can we pass the HashMap object to Stored procedure using toplink

    Can we send the java.util.Map object as input to the stored procedures. Can any one please tell how we can do this using toplink. I tried to do that by doing following steps 1. Crated the -- Column Name - Value Pair CREATE TYPE col_data_pair IS OBJEC

  • StartInstance: Program SAPSTART does not exist (PASE or ILE)

    Hi    Found that the client has 2 CRM systems using the same 700 Unicode (patch 72) kernel so had to split them. Stopped SAP on both systems Created a new lib for the QAS system RMVSAP QAS - unhook the QAS system LODSAPKRN to put SAPEXE in from R3SAV

  • Merge multiple mail libraries

    well - for whatever reason I have a total mess. Have got an iMAC (i.e. Master), a PowerBook and a MacBook. All e-mails from several years should be in mail on iMAC; now - if clicking on a e-mail heading let's say from last year a blank screen will op