Need FM to find physical path for given logical path

Hi Guru's,
I wanted to find the physical path for the given the logical path.
I have a requirement where i have to write records into the file  mentioned via logical path .Inside the program i wanted to fetch the physical path for given logical path .
Is there any FM to achieve this functionality.
Thanks!!
Pravee

Use fm FILE_GET_NAME to get physical file name from a logical file name. But u have to maintain the mapping between logical file name and physical file name in tran. FILE.
     call function 'FILE_GET_NAME'
          exporting
               logical_filename = lds_name << Logical file name
          importing
               file_name        = ds_name << Physical file name
          exceptions
               file_not_found   = 01.
Regards,
Joy.

Similar Messages

  • Is it possible to find the Equipment for given PP work center?

    Hello PM Masters,
    Is it possible to find the Equipment for given PP work center?
    Please tell me which table will lend me the EQUNR when I have the PP work center (ARBPL).
    Thank you.

    Yes,
    Provided you maintain this value in Equipment master Location tab like this.
    And then query by this field in IH08
    Jogeswara Rao K

  • Find physical patch for diskgroup in ASM

    Hi Experts,
    We have a RAC database 10..20.4 in ASM in redhat system.
    there are two diskgroup as data1 and  fradisk1
    all of database backup files locate at fradisk1 diskgroup.
    Sys admin wants to copy ASM data into tape for system backup and ask me physical path for these data files in fradisk group.
    i can only get these info by asm_disk view
    ORCL:FRADISK1
    how to find orcl or exactly physical path for FRADISK1 diskgroup in system?
    Please advised me!
    Thanks very much!
    JIm

    Mufalani wrote:
    In 10g the way to do this task is setting up MML on RMAN, allocate a sbt_tape device channel and do the command:
    RMAN> backup recovery area;
    Cheers,
    MufalaniAgree !!
    In 10.2.0.4 it is not possible to physically backup ASM or its disks.
    That is, one could physically use 'dd' ( diskdump ) to dump a disk physically to tape. But that would not be restorable.

  • Need help in finding a font for a logo

    I was looking for help in finding a font for my logo. I'm not a designer at all, so I'm calling on all the fine designers and folks on the Adobe site to help me out. All replies are, of course, appreciated and any suggestions/comments/ideas will be welcome.
    I'm designing a logo for my film company. I wanted to keep it simple but not boring either. I put together the first draft of the logo using Photoshop CS3 and used Trajan Pro for the film company words (Panthera Films) and used Futura for the slogan ("Inspiration through Imagination"). While I don't mind the fonts, it's simple but, alas, too boring. I love the panther image but need a dynamic font for "Panthera Films" and a complimenting font for the slogan. 
    Can anyone recommend a good combination of fonts to replace the Trajan Pro and Futura? As well, I want to give the logo a nice presence without it being too loud, bold or jumping off the page. As well, should the font for "Films" be the same as "Panthera" or can they be different?
    The image I attached is something I was thinking to use as a banner on a website.
    Any help would be appreciated too with this
    TIA,
    Dale

    Dale,
    As I said, I like it too.
    You may consider making it a bit heavier, maybe bold, for readability at small sizes.
    It is hard to recommend a specific font because it should represent your company and what it stands for. Have you tried typing the name in a word processing application (Worst or something better) and then running through all the font you have? If not, that might give you a few new thoughts about the overall kind of font you feel is the right one. And then it is much easier to recommend something.

  • Help reqd for finding TAXES & CONDITIONS FOR GIVEN PO IN SAP-SCRIPT

    HI ALL,
             Currently iam working on SAP-SCRIPT developing PO in that i displayed fields like EMATN TYPE EKPO-EMATN,( material no. )
                 TXZ01 TYPE EKPO-TXZ01, ( long text )
                 MEINS TYPE EKPO-MEINS, ( units )
                   MENGE TYPE EKPO-MENGE (quantity)
    now i want to display taxes & conditions for given ematn no.( material no . ) so from which tables i should get the data  how to display. plz help me.
    thanks in advance.
    Regards,
    mahesh dudam

    Hi !!
      for this please study teh following extract :
    All pricing values are maintained in the KONV table for the respective pricing condition . Extract these values from KONV table by passing EKKO-KNUMV values for the Purchase order number from the EKKO purchase order header table .
    ************************************************************************88
    FORM GET_PRICING_DATA  USING    P_KNUMV.
      SELECT * INTO TABLE I_KONV
                FROM KONV
                WHERE KNUMV = WA_EKKO-KNUMV.
      IF SY-SUBRC = 0.
        SORT I_KONV.
      ENDIF.
    ENDFORM.                    " GET_PRICING_DATA
    *&      Form  get_tax_details
    extract Tax item details.
         -->P_EBELp  for purchase order item.
    FORM GET_TAX_DETAILS  USING    P_EBELP.
      DATA : L_OCTROI LIKE KONV-KWERT,
            L_BASE LIKE KONV-KWERT,
            L_OTHERS LIKE KONV-KWERT,
            L_DISCOUNT LIKE KONV-KWERT,
            L_PFORWARD LIKE KONV-KWERT,
            L_INSU LIKE KONV-KWERT,
            L_NUM LIKE I_KONV-KUMZA VALUE 1,
            L_DENO LIKE I_KONV-KUMNE VALUE 1,
            L_KPEIN LIKE KONV-KPEIN VALUE 1,
            L_FRT LIKE KONV-KWERT,
            L_CHAR(15).
    *-- getting numerator and denominator for base value.
      READ TABLE I_KONV  WITH KEY KSCHL = 'PBXX'.
      IF SY-SUBRC = 0.
        L_NUM = I_KONV-KUMZA.
        L_DENO = I_KONV-KUMNE.
        L_KPEIN = I_KONV-KPEIN.
      ELSE.
        READ TABLE I_KONV  WITH KEY KSCHL = 'PB00'.
        IF SY-SUBRC = 0.
          L_NUM = I_KONV-KUMZA.
          L_DENO = I_KONV-KUMNE.
          L_KPEIN = I_KONV-KPEIN.
        ELSE.
          READ TABLE I_KONV  WITH KEY KSCHL = 'P001'.
          IF SY-SUBRC = 0.
            L_NUM = I_KONV-KUMZA.
            L_DENO = I_KONV-KUMNE.
            L_KPEIN = I_KONV-KPEIN.
          ELSE.
            READ TABLE I_KONV  WITH KEY KSCHL = 'P000'.
            IF SY-SUBRC = 0.
              L_NUM = I_KONV-KUMZA.
              L_DENO = I_KONV-KUMNE.
              L_KPEIN = I_KONV-KPEIN.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDIF.
      CLEAR : V_OCTROI,V_OTHERS, V_DISCOUNT,V_PFORWARD,V_INSU,V_FTR.
      LOOP AT I_KONV WHERE KPOSN = P_EBELP.
    *-- Considering the numerator denominator and UOPricing
        IF   I_KONV-KPEIN = 0  .
          I_KONV-KUMZA = 1.     " Numerator
          I_KONV-KUMNE  = 1.    " Denominator
          I_KONV-KPEIN  = 1.    " Unit of pricing
        ENDIF.
       IF NOT I_KONV-KWERT  IS INITIAL .
         IF  I_KONV-KRECH = 'C'  AND  I_KONV-KSCHL <> 'PB00'
           AND I_KONV-KSCHL <> 'PBXX'.
           I_KONV-KWERT  = ( I_KONV-KWERT * I_KONV-KUMZA  )
                           * L_KPEIN / ( I_KONV-KUMNE * I_KONV-KPEIN ).
         ELSEif I_KONV-KRECH = 'C'  AND  I_KONV-KSCHL = 'PB00'
           AND I_KONV-KSCHL = 'PBXX'.
           I_KONV-KWERT  = ( I_KONV-KWERT * L_NUM * L_KPEIN ).
                          / ( L_DENO ).
        elseif I_KONV-KRECH = 'A'  AND  I_KONV-KSCHL = 'PB00'
           AND I_KONV-KSCHL = 'PBXX'.
           I_KONV-KWERT  = ( I_KONV-KWERT * L_NUM * L_KPEIN )
                            / ( l_deno ).
         ENDIF.
       ENDIF.
        CASE I_KONV-KSCHL.
    *-- For base price
          WHEN 'PB00'.
            L_BASE = L_BASE + I_KONV-KWERT.
          WHEN 'PBXX'.
            L_BASE = L_BASE + I_KONV-KWERT.
          WHEN 'P000'.
            L_BASE = L_BASE + I_KONV-KWERT.
          WHEN 'P001'.
            L_BASE = L_BASE + I_KONV-KWERT.
    *-- For octroi
          WHEN 'JOCM'.
            L_OCTROI = L_OCTROI + I_KONV-KWERT  .
    *-- For discount calculation
          WHEN 'ZDT%'.
            L_DISCOUNT = L_DISCOUNT + I_KONV-KWERT .
          WHEN 'ZDN%'.
            L_DISCOUNT = L_DISCOUNT + I_KONV-KWERT.
          WHEN 'ZDTV'.
            L_DISCOUNT = L_DISCOUNT + I_KONV-KWERT .
          WHEN 'ZDNV'.
            L_DISCOUNT = L_DISCOUNT + I_KONV-KWERT.
    *--- For packing forwarding .
          WHEN 'ZPNV'.
            L_PFORWARD = L_PFORWARD + I_KONV-KWERT.
          WHEN 'ZPN%'.
            L_PFORWARD = L_PFORWARD + I_KONV-KWERT.
    *--- For frieght .
          WHEN 'ZFTV'.
            L_FRT  =  L_FRT + I_KONV-KWERT.
          WHEN 'ZFT%'.
            L_FRT  =  L_FRT + I_KONV-KWERT.
          WHEN 'ZFNQ'.
            L_FRT  =  L_FRT + I_KONV-KWERT.
    **-----for others
         WHEN 'ZOTV'.
           L_OTHERS  =  L_OTHERS + I_KONV-KWERT.
         WHEN 'ZOT%'.
           L_OTHERS  =  L_OTHERS + I_KONV-KWERT.
         WHEN 'ZOTP'.
           L_OTHERS  =  L_OTHERS + I_KONV-KWERT.
         WHEN 'ZONV'.
           L_OTHERS  =  L_OTHERS + I_KONV-KWERT.
         WHEN 'ZON%'.
           L_OTHERS  =  L_OTHERS + I_KONV-KWERT.
         WHEN 'ZONP'.
           L_OTHERS  =  L_OTHERS + I_KONV-KWERT.
    *--- for insurance
          WHEN 'ZINV'.
            L_INSU  =  L_INSU + I_KONV-KWERT.
          WHEN 'ZIN%'.
            L_INSU  =  L_INSU + I_KONV-KWERT.
          WHEN OTHERS.
            CONTINUE.
        ENDCASE.
        CLEAR I_KONV.
      ENDLOOP.

  • FM to find Tax Category for given Sales Org.

    Hi all,
    Is there an FM or a BAPI to find the Tax Category for a given Sales Org.? Please Advice.

    Hi
    I hope based on the Jurisdiction code the tax category is decided
    check the fun module like RE_GET_TAXCODE_INFORMATION
    ask the functional consultant regarding this and take his advise as these taxes vary from country to country
    Reward if useful
    regards
    Anji

  • I need help to find WXP drivers for my Equium M50-216

    Hi
    I've done a complete new install of windows xp profes over the top of windows xp home and now im missing a few drivers which im finding hard to get the drivers i need are for the Toshiba Equium M50-216
    mass storage controller
    network controller
    ethernet controller
    video controller
    video controller ( vga compatible )
    i would be really great guys if you could tell me exactly what drivers im needing to choose : ))

    WXP drivers you can find on http://eu.computers.toshiba-europe.com/innovation/download_drivers_bios.jsp
    On this page under Product Type choose option ARCHIVE and then your notebook model.
    I have checked it and WXP drivers are there. Please download Installation instruction document too and install all stuff following this install order. It is very important to install drivers, tools and utilities in right install order.

  • Need Query to find Pending Quantity for Receipts

    Hi all,
    Can any one please help me in finding the pending quantity for a particular Receipt.
    ex. If a receipt has
    transaction_type Quantity
    Receive 15
    Accept 5
    Deliver 5
    then my accepted quantity should be (Receive-Deliver) = 10
    I have written a query
    SELECT RSH.RECEIPT_NUM RECEIPT_NUM, RSH.CREATION_DATE CREATION_DATE, RT.TRANSACTION_TYPE TRANSACTION_TYPE, NVL(RT.QUANTITY, 0) QUANTITY,rt.destination_type_code destination_type_code,
                   RT.UNIT_OF_MEASURE UNIT_OF_MEASURE, RSL.ITEM_DESCRIPTION ITEM_DESCRIPTION, NVL(RT.PO_UNIT_PRICE, 0) PO_UNIT_PRICE,
                   RT.CURRENCY_CODE CURRENCY_CODE, NVL(RT.CURRENCY_CONVERSION_RATE,0) RATE, RSL.SHIPMENT_LINE_ID SHIPMENT_LINE_ID,
                   NVL(RT.QUANTITY * RT.PO_UNIT_PRICE * RT.CURRENCY_CONVERSION_RATE ,0) VALUE               
         FROM RCV_TRANSACTIONS RT, RCV_SHIPMENT_HEADERS RSH, RCV_SHIPMENT_LINES RSL, PO_VENDORS POV, PO_VENDOR_SITES POVS,
              ORG_ORGANIZATION_DEFINITIONS ORG, HR_LOCATIONS_ALL_TL HRL, PO_LOOKUP_CODES PLC,
              RCV_SUPPLY RS
         WHERE RSH.SHIPMENT_HEADER_ID = RT.SHIPMENT_HEADER_ID
              AND RSH.SHIPMENT_HEADER_ID = RSL.SHIPMENT_HEADER_ID
              AND RSH.RECEIPT_NUM IS NOT NULL
              AND POV.VENDOR_ID (+) = RSH.VENDOR_ID
              AND POVS.VENDOR_SITE_ID (+) = RSH.VENDOR_SITE_ID
              AND HRL.LOCATION_ID (+) = RSH.SHIP_TO_LOCATION_ID AND HRL.LANGUAGE(+) = USERENV('LANG')
              AND ORG.ORGANIZATION_ID (+) = RSH.ORGANIZATION_ID AND RSH.RECEIPT_SOURCE_CODE = PLC.LOOKUP_CODE
              AND PLC.LOOKUP_TYPE = 'SHIPMENT SOURCE TYPE'
              AND RS.RCV_TRANSACTION_ID = RT.TRANSACTION_ID
              AND RT.SHIPMENT_LINE_ID = RSL.SHIPMENT_LINE_ID
              AND RT.TRANSACTION_TYPE IN ('RECEIVE','TRANSFER')
         ORDER BY 1
    I want want the pending quantity...
    Please help

    You can get the quantities in po line locations, then you can find the balance quantity to be received.
    you can get the following from po line locations.
    quantity
    quantity_received
    quantiy_accepted
    quantity_rejected
    quantity_billed
    quantity_cancelled
    --Prasanth                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Need help in finding open source for creating Login component

    hi
    Pls any one help me out in finding some good open source for creating login component for my application
    i have heard about josso but i am not able to find how to use it if anyone can help in setting up josso i wil be very thankful to that person and also if anyone can help me finding some other open source i will be very grateful ,,
    Pls help its very urgent and i am running short of time

    DECODE(l.attribute_category, 'Coverage Template Header', l.attribute3) Penalty_Bonus,
    DECODE(l.attribute_category, 'Coverage Break', l.attribute1) Mon_Break_Start,
    DECODE(l.attribute_category, 'Transaction Type', l.attribute1) Split_Covering,Uh oh, the dreaded entity attibute value, or generic, data model.
    http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:10678084117056
    I am afraid slow performance is a built in feature of this database design, not much you can do in queries.
    You could possibly create the views as materialized views and query those instead.
    Quote from the linked article
    But, how does it perform? Miserably, terribly, horribly. A simple "select
    first_name, last_name from person" query is transformed into a 3-table join with
    aggregates and all. Further, if the attributes are "NULLABLE" - that is, there
    might not be a row in OBJECT_ATTRIBUTES for some attributes, you may have to
    outer join instead of just joining which in some cases can remove more optimal
    query plans from consideration.
    Writing queries might look pretty straightforward, but it's impossible to do in
    a performant fashion.

  • Need help to find protective case for iPhone 3G

    I am looking for a protective case (preferably black one) for my new iPhone 3G that can protect the screen from scratches (without bubbles and fairly easy to install), protects the remainder from scratches, and allows access to all its buttons.
    The Apple store seems to be out of many of them and it is difficult to tell on the online Apple store which one is actually going to work.
    Does anyone have any suggestions?

    A friend of mine has an otterbox for his Touch. It it bullet-proof. They have one for the 1st gen iPhone, but not yet for the 3G. It should be out any second now. It is very high quality. I am waiting for that. I need something that I can strap to my arm or Camelbak strap and survive if I crash or it rains. That will. There are reviews on amazon. (cheaper on amazon than their own site)

  • Need help to find technical char for an field

    Hi Guys,
                I have to do some abap work for that i got some table in BW now how to find the technical characteristic for the fields of that table i want to know the field length what does that field stand for like what type of data it stores.. there in no data for that table at present
    points wil be rewarded for answers
    ravi

    Hi,
    For that u have to ask your basis peoples. Whether u r  a consultant or enduser?
    If u r enduser means any company people won't provide that authorization.
    Thanks,
    Sankar M

  • Finding epoch seconds for given date.

    Hi,
    I could able to find out the epoch seconds for particular date in linux using
    date -d 'Apr 2 2005 15:31:17' '+%s'
    But I am looking for the commands in solaris which does the same work.
    I will be thank full if some one could help me.
    I tried to do manual......but epoch seconds that I get are differing..
    I found following snippet in mktime function
    556 unsigned long
    557 mktime(const unsigned int year0, const unsigned int mon0,
    558 const unsigned int day, const unsigned int hour,
    559 const unsigned int min, const unsigned int sec)
    560 {
    561 unsigned int mon = mon0, year = year0;
    562
    563 /* 1..12 -> 11,12,1..10 */
    564 if (0 >= (int) (mon -= 2)) {
    565 mon += 12; /* Puts Feb last since it has leap day */
    566 year -= 1;
    567 }
    568
    569 return ((((unsigned long)
    570 (year/4 - year/100 + year/400 + 367*mon/12 + day) +
    571 year*365 - 719499
    572 )*24 + hour /* now have hours */
    573 )*60 + min /* now have minutes */
    574 )*60 + sec; /* finally seconds */
    575 }
    but could not make out why 367*mon/12.....instead of 365, I could not locate
    the position where previous months days in this year added.
    Is 719499 is number of days from 0th year to 1970 ?
    Thank you,
    Sateesh.

    Hi Darren,
    Regarding the first option of OS command
    date ...'+%s' works in linux only. It will not
    work in Solaris. So if I get some command in solaris
    which does same work it will be great.Most distributions that use a Linux kernel distribute the gnu 'date' program. That program works the same on Solaris as it does on Linux. That's why I suggested it to you earlier.
    # /build/coreutils-5.93/bin/date '+%s'
    1177951907
    # uname -rsv
    SunOS 5.8 Generic_117350-43
    Darren

  • How to find email id for given SAP user ID's

    Hi,
    please any one tell me how to get the email id for a given SAP ID?
    any tcode or any table or any BOR ?
    advance thanks
    regards
    pavee

    Check the below Program :
    REPORT ZSAI1.
    parameters : p_user like usr01-bname.
    data : i_BAPIADSMTP like BAPIADSMTP occurs 0 with header line.
    data : BNAME like BAPIBNAME-BAPIBNAME.
    data i_ret2 like bapiret2 occurs 0 with header line.
    start-of-selection.
    bname = p_user.
    CALL FUNCTION 'BAPI_USER_GET_DETAIL'
      EXPORTING
        USERNAME             = bname
    IMPORTING
      LOGONDATA            =
      DEFAULTS             =
      ADDRESS              =
      COMPANY              =
      SNC                  =
      REF_USER             =
      ALIAS                =
      ISLOCKED             =
      TABLES
      PARAMETER            =
      PROFILES             =
      ACTIVITYGROUPS       =
        RETURN               = i_ret2
      ADDTEL               =
      ADDFAX               =
      ADDTTX               =
      ADDTLX               =
       ADDSMTP              = i_bapiadsmtp
      ADDRML               =
      ADDX400              =
      ADDRFC               =
      ADDPRT               =
      ADDSSF               =
      ADDURI               =
      ADDPAG               =
      ADDCOMREM            =
      GROUPS               =
      SYSTEMS              =
    loop at i_bapiadsmtp.
    write:/ i_bapiadsmtp-e_mail.
    endloop.
    I am able to get email id ..
    Looks like email id is not maintaining at User profile ..
    Goto SU01 Transaction -> enter user id -> click on display ->see the address tab -> look at internet email ,if it is blank then you will not get it,please maintain email id there and see the results.
    Thanks
    Seshu

  • Code for given logic

    Hi all,
    How do i write the code for the Below
    Logic is :
    Check for BEDSD = X in table TVEP
    Note all such ETTYP
    With this ETTYP check for entries in VBEP
    If entries exist in VBEP, Note all such ETTYP     
    With this ETTYP check in TVEPZ, and note PSTYV
    With this PSTYV check in T184 and note AUART
    Refer to Table TVAKZ
    output is :
    VKORG/ AUART/ “Desc. Of AUART”/PSTYV/
    “Desc of PSTYV”/ ETTYP/ “Desc of ETTYP”/
    “relevant for Transfer of Requirements”
    Thanks in Advance
    Mamatha

    Hi in the above question :
    TVEPZ, T184, TVAKZ   Are Pooled tables.So, Join is not allowed.
    Thanks
    Mamu

  • I can't find the path in SPRO for a configuration table

    Dear all,
    I am currently doing some configuration in SPRO and I need to document it in an Excel file.
    My configuation is for Plant Maintenance (PM) and I need some help finding the path through SPRO in which I can find the table T370FLD_STN.
    I have already tried the simple stuff like:
    Control+F and tried to find the name of the table - No Results
    I also went through  SE16N and clicked F1 and then in the key symbol - No results.
    I really need help FINDING THE PATH IN SPRO. That's my goal.
    Thanks to you all,
    Manuel

    Hello
    I have just tested on my system and I got the following SPRO path:
    - Plant Maintenance and Customer Service
    - Master Data in Plant Maintenance and Customer Service
    - Technical Objects
    - Settings for Fleet Management
    - Consumption-Relevant Counter Reading Update
    - Create Gas Station
    I can't tell why this procedure did not work on your system. Did you receive a popup to select the customizing project when you clicked the customizing button? I got a popup and I choose the option "continue w/o specifying a project".
    BR
    Caetano

Maybe you are looking for

  • TransformerException -- possible bug in weblogic.apache.xalan.transformer.TransformerImpl

    Using WebLogic Server 6.1 SP2. Am using xslt to transform xml into html. After repeatedly using the same Transformer object to transform different xml documents, the Transformer eventually becomes corrupt – sometimes after 20 or so transforms, someti

  • Bug with Image Sequence ( not loading/using all files ) for time lapse creation

    Hello everybody! PhotoShop CC 2014 I am looking to create a time lapse out of 240 still photos that I took with my DSLR, but I am facing what probably is a bug, or a mistake on my part. I have all the photos in JPEG format with proper naming & sequen

  • Ipod Not showing up help!!

    I have been using my ipod along with my girlfriends ipod on our old dell computer and our new imac with no problems to this point. I thought i had that battle won utill now our pods are deciding not to show up on our mac. The name of my ipod is still

  • WPA Key on cisco 871w router

    Where do i find my wpa key on my router? ssid Guest vlan 20 Authentication open Authentication key -management wpa guest-mode wpa-psk ascii 7 053b071c325b411c9d Is this my Key: 053b071c325b411c9d Thanks John

  • I can't open photo transfer from icon

    I purchased the photo transfer app but it won't open from the icon on the desktop