Function module need for 0fiscvarnt

Hi i have 0comp_code,budat and 0fiscper as a source fields,now i want to get 0fiscvarnt...please give me any logic or function module available for that
thanks

Hi,
Usually fiscal year variant is constant if not getting populated from source system.
Check with function team member what Fiscal year variant they using.
Regards,
Akshay

Similar Messages

  • RFC Function module needed for getting table details in APO from R/3

    Hi,
    I need a RFC function module where I can write a query from R/3 to access APO server database table and get the necessary records.
    Regards
    Mac

    Possible ways
    1. Call fm RFC_READ_TABLE and give destination and table name ( But i am not sure how it will work SCIF enviornment of APO)
    or
    2. Create a custom function module in APO side and call from R/3 side using destnation option

  • Functional Module needed for banking details printing.

    Hello Experts,
    Maybe you have already got in touch with a FM, which retrieves bank account details like bank account number, bank key, SWIFT code (table T012K). My problem is not only to retrieve all the data but also to print this data on an invoice in the way which fulfill the legal requirements of the destination country and/or currency. Do you know about such standard SAP functionality?
    Thanks for your help in advance and wish you a very nice day .
    Regards,
    Rittik

    Possible ways
    1. Call fm RFC_READ_TABLE and give destination and table name ( But i am not sure how it will work SCIF enviornment of APO)
    or
    2. Create a custom function module in APO side and call from R/3 side using destnation option

  • Function modules needed for Mass photo employee upload

    Hi all,
    I got requiremet to mass upload employee photos from UNIX server to Documentum via sap archive link.
    To do this, which function modules should I have to use?
    Could you please tell me the sequence of function modules?
    I also want to know how to read the file path from UNIX Server.
    Thanks in advance for your aluable answers.
    Moderator message: anything else? please do some own research before asking.
    Edited by: Thomas Zloch on Feb 24, 2011 1:11 PM

    The note 685520 describes a program that allows you to archive
    documents from a file system automatically and define links in the
    background.
    This program is called ZOA_UPLOAD_AND_LINK.
    KR,
    Karen.

  • Function module needed for customer exit variable need to use in Bex report

    Hi Experts,
    I have a requirement where i need to get Cummulative result between two interval periods.
    If user gives single mandatory input value - 002-2009
    for one Scenario:-
    Project start Date   untill Pervious year i.e  December 2008
    Where project start date will get from one of the field in my BW CUBE
    can anyone help for the customer exit function code for this scenario. As i am into BI i dont have idea in ABAP.
    Please help sample cod for this .
    Thanks,
    Anil.

    I had created one customer exit which had fullfill my requirement.

  • I need to know thelist of bapi's and function modules used for transaction

    I need to know thelist of bapi's and function modules used for transaction in order to use these FM or BAPI in reading some fields of equipment master and functional loocation.Can any one suggest me some methods...or do i need to write  a report for the same.

    Steps to find the BAPI/function modules used in a transaction
    1) Find the package of the transaction thro' SE93.
    For example the package for the transaction VA03 is VA
    2) Go to Se80, key-in the package (say VA)
    3) You can see the function modules under the folder finction group and
    you can see the BAPI's under the folder Business Engineering-> Business Objects-> double click on the released methods of the Business Objects

  • Function module used for ENQUEUE_EIQMEL & DEQUEUE_EIQMEL function

    Hi All,
    It should be highly appreciable if any one could please help.
    I need the name of the function module used for ENQUEUE_EIQMEL & DEQUEUE_EIQMEL function.
    waiting for help.
    Thanks
    Shaw

    Hi,
    The names 'ENQUEUE_EIQMEL' and 'DEQUEUE_EIQMEL ' you have mentioned are itself the function modules. Which other FM's you need i didnt understand.
    These are FM to ahndle lock objects 'QMEL'.
    please reframe your question in case of further issues.
    Regards,
    Mansi.

  • Replacement function modules/method for obsolete Funtion Modules in ECC 6.0

    We are working on Upgrade Project and need your help in finding the replacement Function module/ Methods for following obsolete Function Modules:
       1.   GET_FIELDTAB
       2.   WS_EXCEL
       3.  HR_DISPLAY_BASIC_LIST
       4.  LOG_SYSTEM_GET_RFC_DESTINATION
       5.  HELPSCREEN_NA_CREATE
       6. TR_RELEASE_COMM
    Thank in Advance.
    Sarita.
    Edited by: Sarita Yalamati on Mar 28, 2008 1:23 PM

    Hi sarita,
    for GET_FIELDTAB use 'DDIF_NAMETAB_GET'..here is sample code
      CALL FUNCTION 'GET_FIELDTAB'
           EXPORTING
                LANGU               = SY-LANGU
                TABNAME             = C_STRUCTURE_NAME
                WITHTEXT            = ' '
           TABLES
                FIELDTAB            = IDFIES
           EXCEPTIONS
               INTERNAL_ERROR      = 01
                NO_TEXTS_FOUND      = 02
                TABLE_HAS_NO_FIELDS = 03
                TABLE_NOT_ACTIV     = 04.
    Replacement :
    CALL FUNCTION 'DDIF_NAMETAB_GET'
      EXPORTING
        TABNAME           =  C_STRUCTURE_NAME
      ALL_TYPES         = ' '
      LFIELDNAME        = ' '
      GROUP_NAMES       = ' '
      UCLEN             =
    IMPORTING
      X030L_WA          =
      DTELINFO_WA       =
      TTYPINFO_WA       =
      DDOBJTYPE         =
      DFIES_WA          =
      LINES_DESCR       =
    TABLES
      X031L_TAB         =
       DFIES_TAB         = IDFIES
    EXCEPTIONS
       NOT_FOUND         = 1
       OTHERS            = 2
    For WS_EXCEL  use GUI_DOWNLOAD.. here is sample code
    CALL FUNCTION 'WS_EXCEL'
    EXPORTING
       FILENAME            = 'D:\FILE1.xls'
      SYNCHRON            = ' '
      TABLES
        DATA                = itab
    EXCEPTIONS
       UNKNOWN_ERROR       = 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.
    Repalcement :
    data : l_filename type string.
    l_filename  = 'D:\FILE1.xls'.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
      BIN_FILESIZE                    =
        FILENAME                        = l_filename
      FILETYPE                        = 'ASC'
    IMPORTING
      FILELENGTH                      =
      TABLES
        DATA_TAB                        = itab
      FIELDNAMES                      =
    EXCEPTIONS
       FILE_WRITE_ERROR                = 1
       NO_BATCH                        = 2
       GUI_REFUSE_FILETRANSFER         = 3
       INVALID_TYPE                    = 4
       NO_AUTHORITY                    = 5
       UNKNOWN_ERROR                   = 6
       HEADER_NOT_ALLOWED              = 7
       SEPARATOR_NOT_ALLOWED           = 8
       FILESIZE_NOT_ALLOWED            = 9
       HEADER_TOO_LONG                 = 10
       DP_ERROR_CREATE                 = 11
       DP_ERROR_SEND                   = 12
       DP_ERROR_WRITE                  = 13
       UNKNOWN_DP_ERROR                = 14
       ACCESS_DENIED                   = 15
       DP_OUT_OF_MEMORY                = 16
       DISK_FULL                       = 17
       DP_TIMEOUT                      = 18
       FILE_NOT_FOUND                  = 19
       DATAPROVIDER_EXCEPTION          = 20
       CONTROL_FLUSH_ERROR             = 21
       OTHERS                          = 22
    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 METHOD CL_GUI_FRONTEND_SERVICES=>EXECUTE
      EXPORTING
        DOCUMENT               = 'D:\FILE1.xls'
       APPLICATION            =
       PARAMETER              =
       DEFAULT_DIRECTORY      =
       MAXIMIZED              =
       MINIMIZED              =
       SYNCHRONOUS            =
        OPERATION              = 'OPEN'
      EXCEPTIONS
        CNTL_ERROR             = 1
        ERROR_NO_GUI           = 2
        BAD_PARAMETER          = 3
        FILE_NOT_FOUND         = 4
        PATH_NOT_FOUND         = 5
        FILE_EXTENSION_UNKNOWN = 6
        ERROR_EXECUTE_FAILED   = 7
        SYNCHRONOUS_FAILED     = 8
        NOT_SUPPORTED_BY_GUI   = 9
        others                 = 10
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • To know thelist of bapi's and function modules used for transaction IH10

    I need to know thelist of bapi's and function modules used for transaction in order to use these FM or BAPI in reading some fields of equipment master and functional loocation.Can any one suggest me some methods...or do i need to write a report for the same.

    hi,
    provide report name (here: RIEQUI20)
    goto se38 - utilities - cross reference - function modules
    or use report RPR_ABAP_SOURCE_SCAN
    with search string call function
    A.
    Message was edited by:
            Andreas Mann

  • This server does not have the module needed for interpreting traces

    I wan to use the Trace Control function of the Exchange Troubleshooting Assistant. I specifically want to look at the transactions of a particular user. When starting the function I get the message, "This server does not have the module needed for interpreting traces." I find nothing to tell me what the module is or where to get it.
    Specifically, I have a Macintosh user (bigwig in my organization) that insists on using Apple's 10.6 Calendar program, and constantly complains that his calendars are different between his 3 Macs and his iPhone. He claims to have put a calendar item on one machine, now it appears nowhere. And I have no way of proving what is going wrong. He hates Outlook and refuses to use it, he hates Entourage and refuses to use it. The local database for Entourage kept getting fouled up to the point that we kept having to delete this account and readding it to force the recreation of the database. The database tool never fixed the problems and of course he did a lot of customization that got destroyed every time we deleted the account settings and added them back.
    I really want to run the tool for a while and see if there is actually some transaction actually happening on the server side, so I would like to have these traces and be able to view them.
    SnoBoy

    See
    http://blogs.msdn.com/b/dvespa/archive/2011/05/27/how-to-use-extra-to-troubleshoot-rpc-client-access-issues.aspx.
    Just click on ok and proceed with set trace manually.
    Svetozar Petrović

  • CATS related function modules needed

    Hi,
    I have requirement like i need to upload time details into sap from non sap.CATS is the Tcode for time details.
    CAT2 to enter time. I want to enter time details.
    If any function modules avilable for this it will be easy for my work. Through BDC we can able to do this.
    But if function modules avilable for the same it will be very much helpful to me.
    Regards
    Sandeep

    Function group                 Function group short text
    Function Module Name           Short text for function module
    CAPP
    CATS_APPROVAL
    CATS_APPROVAL0
    CATS_DATABASE_GET_OBJEC
    CATS_DISPLAY_LIST
    CATS_DISPLAY_TREE_LIST
    CATB
    CATS_DISPLAY_ALV_LIST
    CATS_DISPLAY_DOCUMENT
    CATS_DISPLAY_OBJECT
    CATS_DISPLAY_TARGET_DOCUMENTS
    CATS_DISPLAY_TARGET_DOCUMENTS0
    CATS_DISPLAY_TRANSFER_LIST
    CATE
    CATS_INITIALIZE_MESSAGE
    CATF
    CATS_CHECK_APPLICATION_CO
    CATS_FILL_INTERFACE_CO
    CATL
    CATS_CHECK_ARBPL_VALID
    CATS_DET_ARBID_BY_ARBPL
    CATS_DET_ARBPL_BY_ARBID
    CATS_DET_AUFNR_BY_AUFPL
    CATS_DET_AUFNR_BY_AUFPL_TRANS
    CATS_DET_AUFPL_BY_AUFNR
    CATS_GET_KAPAR_FOR_KAPID
    CATS_GET_LOGISTIC_TEXT
    CATS_GET_TABLE_AUFNR
    CATS_GET_TABLE_RCR01
    CATL2
    CATS_AC03
    CATS_CHECK_AND_DIST_ACTIVITIES
    CATS_CHECK_APPLICATION_LOGIST
    CATS_CHECK_STATUS_ACTIVITY
    CATS_CJ13
    CATS_CONVERT_EXT_TO_INT
    CATS_CONVERT_INT_TO_EXT
    CATS_CY_LOAD_DISTRIBUTION
    CATS_CY_LOAD_DISTRIBUTION_KORR
    CATS_ENRICH_READ_DATA
    CATS_FILL_INTERFACE_LO
    CATS_FIND_TARGET_DOC_AFRU
    CATP
    CATS_CALL_TRANSACTION_CAT4
    CATS_CHECK_ATT_ABS_AUTHORITY
    CATS_CHECK_AUTHORITY
    CATS_CHECK_AWART
    CATS_CHECK_AWART_HOURS
    CATS_CHECK_EMPLOYEE_ACTIVE
    CATS_CHECK_PERNR_LIST
    CATS_CHECK_PROFILE_AUTHORITY
    CATS_CHECK_SINGLE_PERNR
    CATS_COMPUTE_HOURS
    CATS_DELETE_HR_INTERFACE
    CATS_FILL_ICLVA
    CATS_GET_ALP_CURRENCY
    CATS_GET_BASIC_INFOTYPES
    CATS_GET_EMPLOYEE_NAME
    CATS_GET_INFOTYPE_0001
    CATS_GET_INFOTYPE_0315
    CATS_GET_PAY_SCALE_TYPE_AREA
    CATS_GET_PERNR_LIST_0001
    CATS_GET_TARGET_HOURS
    CATS_HR_ABSENCE_ATTEND_TEXT
    CATS_HR_ADD_WAGE_TYPE
    CATS_HR_CHECK_001
    CATS_HR_CHECK_ALP
    CATS_HR_CHECK_INFOTYPE_BOOKED
    CATS_HR_DETERMINE_INFTY
    CATS_HR_DISPLAY_DOCUMENT
    CATS_HR_GLOBAL_CHECK
    CATS_HR_LGART_TEXT
    CATS_HR_READ_POSITION_TEXT
    CATS_HR_READ_PREMIUM_TEXT
    CATPEXTERN
    CATS_GET_ABSENCE_ATTENDANCE
    CATS                           Cross-Application Time Sheet
    CATS_BUILD_CATSD
    CATS_CHECK_FACTORY_CALENDAR
    CATS_CHECK_FACTORY_DATE
    CATS_CHECK_INPUT
    CATS_CHECK_PERNR
    CATS_CONVERT_CATSDB_TO_CATSD
    CATS_CONVERT_LONGTEXT
    CATS_CREATE_NEW_RECORD
    CATS_ENRICH_INPUT
    CATS_EXTERNAL_INTERFACE
    CATS_EXTERNAL_WORKLIST
    CATS_FILL_INTERFACE_CPR
    CATS_GET_COUNTER
    CATS_GET_CUSTOMER_TEXT_FIELDS
    CATS_GET_DERIVATIVES
    CATS_GET_LONGTEXT
    CATS_GET_UNIT_HOUR
    CATS_GET_WORKLIST_TEXT_FIELDS
    CATS_INTERFACE
    CATSCHECK
    CATS_EXTENDED_CHECK
    CATS_GLOBAL_EXTENDED_CHECKS
    CATSEXTERN                     Functions for External Linking
    CATS_GET_INFLUENCES            CATS: Read Field Selection
    CATS_GET_PERIODSTART
    CATSTOOLS
    CATS_ACTIVATE_MESSAGES
    CATS_CHECK_APPLICATION
    CATS_CHECK_CATSDB_AFTER_SAVE
    CATS_CHECK_CONSISTENCY_AT_SAVE
    CATS_CO_SET_TRANSFER_FLAG
    CATS_CO_UPDATE_CATSCOSUM
    CATS_GET_PROFILE
    CATS_GET_PROFILE_AUTHGROUP
    CATS_GET_PROFILE_FROM_USER
    CATS_GET_UPDATE_BUFFER
    CATSXC
    CATSXC_READ_CATS_PROFILE
    CATSXC_READ_FEATURE_VALUES
    CATSXC_ROUND_QUANTITY
    CATSXC_UPDATE_COMP_DTL
    CATSXC_UPDATE_TCATX_COMPONENTS
    CATSXT
    CATSXT_CHANGE_TIME_SHEET
    CATSXT_DISPLAY_TIME_SHEET
    CATSXT_EXTERNAL_INTERFACE
    CATSXT_FIELD_SELECTION_MODIFY
    CATSXT_GET_PERSONNEL_NUMBER
    CATSXT_GET_TIME_SHEET_DATA
    CATSXT_SET_CURRENT_WORKAREAS
    CATSXT_START_GUI
    CATSXT_TRAVEL_MANAGER_GET_DATA
    CATSXT_TRAVEL_MANAGER_SET_DATA
    CATSXT_ACCOBJ
    CATSXT_ACCOBJ_SET_FIELDSELECT
    CATSXT_ACCOBJ_SET_TIME_SHEET
    CATSXT_ACCOBJ_SET_VALUES_TAB
    CATSXT_CLEAR_ACCOUNTING_OBJECT
    CATSXT_DETERMINE_OBJECT_NUMBER
    CATSXT_GET_OBJECT_DATA
    CATSXT_GET_OBJECT_NUMBER
    CATSXT_GET_OBJTYPE_FOR_ACCOBJ
    CATSXT_INIT_ACCOUNTING_OBJECT
    CATSXT_SET_OBJECT_DATA
    CATSXT_SET_OK_CODE_ACCOUNTING
    CATSXT_APPR
    CATSXT_APPR_SET_TOOLBAR
    CATSXT_APPR_USER_COMMAND
    CATSXT_EXIT_EXAMPLE
    CATSXT_CUSTOMER_EXIT_EXAMPLE
    CATSXT_F4
    CATSXT_F4_OBART
    CATSXT_F4_TASKLEVEL
    CATSXT_F4_TASKTYPE
    CATSXT_SET_F4_FOR_ACCOBJECT
    CATSXT_SET_F4_FOR_TASKLEVEL
    CATSXT_FUP
    CATSXT_ENTRY_SHEET_DISPLAY
    CATSXT_FUP_CATS_FLOW_INFO_GET
    CATSXT_FUP_FLOW_BACK_INFO_GET
    CATSXT_FUP_GET_HISTORY_FOR_CNT
    CATSXT_FUP_RESET_HISTORY_BUFF
    CATSXT_SERVICE_NUMBER_READ
    CATSXT_UTIL
    CATSXT_CALL_USER_DFLT_DIALOG
    CATSXT_CHECK_DFLT_DERIV_ACTIVE
    CATSXT_CHECK_TYPE_LEVEL_AUTH
    CATSXT_CHECK_WORK_DAY
    CATSXT_COMPARE_STRUCTURES
    CATSXT_GET_ACCESS_KEY
    CATSXT_GET_ADDRESS_DATA
    CATSXT_GET_CENTRAL_CONTROL
    CATSXT_GET_CUSTOMIZING
    CATSXT_GET_DDIC_FIELDINFO
    CATSXT_GET_HOLIDAYS
    CATSXT_GET_SMARTFORM_NAME
    CATSXT_GET_TEMPORARY_KEY
    CATSXT_GET_USER_ID_OF_PERNR
    CATSXT_LONGTEXT
    CATSXT_MOVE_STRUC1_TO_STRUC2
    CATSXT_OPTIMIZE_OUTPUT
    CATSXT_OPTIMIZE_OUTPUT_TC
    CATSXT_SIMPLE_TEXT_EDITOR
    CATSXT_SPLIT_LONGTEXT
    CATSXT_SUBSCREEN_CONTROL
    CATSXT_TABSTRIP_CONTROL
    CATSXT_USER_DFLT_DIALOG
    CATSXT_WRITE_HEADER
    CATS_CO
    CATS_ACT_ALLOC_CHECK
    CATS_ACT_ALLOC_SENDER_CHECK
    CATS_CHECK_AC
    CATS_COBL_CHECK
    CATS_COST_ASSGMT_CHECK
    CATS_ITS
    CATS_ITS_GET_POPUP_STATUS
    CATS_ITS_GET_SCREEN
    CATS_ITS_MAKE_STRING_NUMERICAL
    CATS_ITS_SET_OKCODE
    CATS_ITS_FUNC_CO
    CATS_GET_COSTCENTER_ACTIVITY
    CATS_LEVELING
    CATS_GET_LEVELING_DATA
    CATS_SERVICES
    CATS_GUID_GET_KEY
    CTHR
    CATS_ATTABS_COSTINSERT
    CATS_BATCH_TRANSFER_HR
    CATS_BATCH_TRANSFER_HR_BKG
    CATS_BUILD_SEND_MAIL
    CATS_CALL_RCATSTHR
    CTXT
    CATS_CO_READ_OBJECT_TEXT
    CATS_HR_READ_OBJECT_TEXT
    HRTIM00ABSATTEXT
    CATS_ATTABS_CHECK
    HRTIM00F4HELP
    CATS_F4_HELP_AWART
    CATS_F4_HELP_CURRENCY
    CATS_F4_HELP_LGART
    CATS_F4_HELP_PRAKN_PRAKZ
    CATS_F4_HELP_TRFGR_TRFST
    PTEX
    CATS_CHECK_INFOTYPE_POSTED
    revert back if u require Bapis.

  • Function module exits for Tcode MD11.

    Please tell me, Function module exits for Tcode MD11.
    Reg .
    Praju

    Hi
    LMDR2001
    LMDZU001
    Try out these exits.
    Check the folloing BADI's
    MD_PLDORD_SCHEDULING
    MD_PIR_FLEX_CONS
    MD_PLDORD_SCHEDULING
    Regards
    Divya

  • Function module name for routing fom production orders

    Function module name for routing fom production orders

    Hi
    There are lot of fun modules related to routing
    like
    BAPI_ROUTING_CREATE
    BAPI_ROUTING_EXISTENCE_CHECK
    goto SE37 Tcode
    enter routing press F4
    you will get a lot out of that use the required one
    Reward points for useful Answers
    Regards
    Anji

  • Function Module (BAPI) for Delivery Change

    Dear All,
    We have a Function Module "BAPI_SALESORDER_CHANGE" for changes in sales order, wherein we also can enter Texts in sales order.
    Please tell me similar such function module for Outbound Delivery, wherein I can enter / insert / change the Texts (both Header & Item) in a deivery document.
    Regards,
    Dhananjay

    Thanks
    Where in this Function Module do I find the table / parameter for adding text at item & header level.
    Regards
    Dhananjay

  • Function module(s) for Cube Collapsing/Compression

    Hi Experts,
    can anybody tell me if there's a SAP Function module availbale for Collapsing/Compressing requests of a cube ?
    Background is we want to automate collapsing of cubes by an APAB report instead of using a process chain or RSA1.
    Any suggestions? Any pitfalls for such an implementation ? Any expieriences ?
    We're on SAP BI 7.00 19, Oracle 10.2.0.4
    Best regards,
    yk

    Hi Srinivas,
    thanks for the quick answer, I will check the FM you mentioned.
    We think of a cube exceptions list wich should NOT be condensed, and all OTHER cubes should be condensed.
    With a process chain we have to maintain these OTHER list manually. In an ABAP report we could exclude the exceptions and condense the rest.
    Developers tend to "forget" to add the CONDENSE step. So with time more and more cubes store only in F-tables and nothing in the E-tables (producing more workload as query runtime, DB maintanence like index creation runtime , statistic runs ...) and last but not least occupy disk space wich is expensive if you have a mirrored high performance disk system .
    Best regards,
    yk

Maybe you are looking for

  • Drop shadow on video through actionscript

    Hey guys, Has anyone put a drop shadow on a video object through action script? I have a video that is loaded through action script that also has an alpha channel, I want to be able to add filters to it like a drop shadow. Thanks for your help.

  • 11g: Custom error handling for all application raised exceptions?

    Hi, the only thing I can find in the documentation regarding an error handler is this: http://download.oracle.com/docs/cd/E12839_01/web.1111/b31974/web_adv.htm#BABEHFHI (26.8) However, this kind of error handler seems to ignore exceptions thrown in b

  • Reports/print with java

    How to create reports with Java? where can I find javabeans to create reports with JBuilder? Thanks.

  • How do i get faces.db from iPhoto into Aperture?

    I converted my iPhoto library to Aperture about a year ago and when i go into Faces, none are there.  I can start to add them to photos and the type-ahead works as though they're loaded, but the thousands of photos I did are not tagged. I can find th

  • Delete input from multiple locations

    Hi, I'm archiving log files to two locations. When I run RMAN script to backup arch logs and delete input, RMAN deletes one file from random (as I think) location. Please see the output below. Is there a way to delete input files from both locations