Finding the ReportRepositoryPath and Report Filename

I was wondering if the report repository path and report filename of files sent to the report manager are stored somewhere in a table. It seems as if a select statement would be easier than finding the psreports/dbname/data/process id/process name_process instance id.extension. Any help would be great, thanks!
BTW: I am wanting the physical path

You could start to query the table PS_CDM_LIST, of course, you can join it with other Peoplesoft tables, like PS_CDM_DIST_NODE, depending of what you need exactly.
Nicolas.

Similar Messages

  • Can't get my epson sx535wd to work. my epson will get contact with my router (sitcom wl306) and my mac is on wifi, but they can't connect. epson can't find the computer and my report says: there are conflicting channels on my router or entry point. help

    can't get my epson sx535wd to work. my epson will get contact with my router (sitcom wl306) and my mac is on wifi, but they can't connect. epson can't find the computer and my report says: there are conflicting channels on my router or entry point. please help

    OK, let's try these................ 
    1 - Boot up from your install DVD and run "Repair Disk" from the Utility menu.  When done, restart back to your desktop, repair permissions and restart your computer.  Re-connect your printer. 
    2 - Download & install the Gimp drivers. Make sure the one you install is compatible w/your OS-Gutenprint 5.2.8-pre1.   Repair permissions, restart your computer & re-connect your printer when done.
    The Epson model I have, in order to get it to print wirelessly, I had to install a Gimp driver.
    3 - Check out the following KB Articles:
    Mac OS X 10.4 Help: Connecting to a network printer
    Epson Printer Drivers v2.10 OS X
    Adding a printer to your printer list in Mac OS X
    Mac OS X 10.4 Help: The printer I'm adding says "Driver not installed"
    ======================
    If still unsuccessful after trying all of the above, the problem could be your iBook or human error.  You can either call Epson & ask to speak with a Mac savy supervisor or return the printer & find another that is compatible w/your current OS.

  • From which tables i would find the delivery and billing document field..??

    I need to create an ALV report which displays the following details in the output.
    Order No  Item No     Material     Order Qty     Item Category     Plant     Delivery     Billing Document     Sales Org     Dist Channel     Division     Created By     Created On      Changed On
    For(Order No  Item No     Material     Order Qty     Item Category     Plant) i took the fields from vbap and
    for(Sales Org     Dist Channel     Division     Created By     Created On      Changed On)i took the fields from vbak..
    From which tables i would find the delivery and billing document field related to sales document.??
    need help...
    Moderator message : Requirements dumping not allowed, thread locked.
    Edited by: Vinod Kumar on Mar 6, 2012 2:53 PM

    i am new to abap...so i dont have idea about sd table relationship.
    so please reply how to add delivery and billing doc in my coding below..
    *& Report  ZINAA_SD
    REPORT  zinaa_sd.
    TABLES: vbap, vbak, vbfa.
    TYPE-POOLS: slis.
    CONSTANTS: c_x TYPE char1 VALUE 'X'.
    TYPES:
            BEGIN OF st_vbap,
             vbeln TYPE vbap-vbeln,
             posnr TYPE vbap-posnr,
             matnr TYPE vbap-matnr,
             pstyv TYPE vbap-pstyv,
             kwmeng TYPE vbap-kwmeng,
             werks TYPE vbap-werks,
            END OF st_vbap,
            BEGIN OF st_vbak,
              vbeln TYPE vbak-vbeln,
              erdat TYPE vbak-erdat,
              ernam TYPE vbak-ernam,
              vkorg TYPE vbak-vkorg,
              vtweg TYPE vbak-vtweg,
              spart TYPE vbak-spart,
              aedat TYPE vbak-aedat,
            END OF st_vbak, 
           BEGIN OF st_final,
             vbeln TYPE vbap-vbeln,
             posnr TYPE vbap-posnr,
             matnr TYPE vbap-matnr,
             pstyv TYPE vbap-pstyv,
             kwmeng TYPE vbap-kwmeng,
             werks TYPE vbap-werks,
             erdat TYPE vbak-erdat,
             ernam TYPE vbak-ernam,
             vkorg TYPE vbak-vkorg,
             vtweg TYPE vbak-vtweg,
             spart TYPE vbak-spart,
             aedat TYPE vbak-aedat,
           END OF st_final.
    DATA:
          lt_vbap TYPE TABLE OF st_vbap,
          ls_vbap TYPE st_vbap,
          lt_vbak TYPE TABLE OF st_vbak,
          ls_vbak TYPE st_vbak,
          lt_final TYPE TABLE OF st_final,
          ls_final TYPE st_final,
          lt_fieldcat TYPE slis_t_fieldcat_alv,
          ls_fieldcat TYPE slis_fieldcat_alv,
          layout TYPE slis_layout_alv,
          lt_sort TYPE slis_t_sortinfo_alv,
          ls_sort TYPE slis_sortinfo_alv.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS: s_vbeln FOR vbap-vbeln,
                    s_erdat FOR vbap-erdat.
    SELECTION-SCREEN END OF BLOCK b1.
    PERFORM select_data.
    PERFORM loop_final.
    PERFORM sort.
    PERFORM a USING:
          'VBELN' TEXT-002,
          'POSNR' TEXT-003,
          'MATNR' TEXT-004,
          'KWMENG' TEXT-005,
          'PSTYV' TEXT-006,
          'WERKS' TEXT-007,
          'VKORG' TEXT-008,
          'VTWEG' TEXT-009,
          'SPART' TEXT-010,
          'ERNAM' TEXT-011,
          'ERDAT' TEXT-012,
          'AEDAT' TEXT-013.
    PERFORM display.
    *&      Form  SELECT_DATA
          text
    FORM select_data.
      SELECT
       vbeln
       vkorg
       vtweg
       spart
       ernam
       erdat
       aedat
       INTO CORRESPONDING FIELDS OF TABLE lt_vbak
       FROM vbak
       WHERE vbeln IN s_vbeln AND erdat IN s_erdat.
      IF sy-subrc = 0.
        SORT lt_vbak by vbeln.
      ENDIF.
      SELECT
       vbeln
       posnr
       matnr
       kwmeng
       pstyv
       werks
       INTO CORRESPONDING FIELDS OF TABLE lt_vbap
       FROM vbap
       FOR ALL ENTRIES IN lt_vbak
       WHERE vbeln = lt_vbak-vbeln.
      IF sy-subrc = 0.
        SORT lt_vbap by vbeln.
      ENDIF.
    ENDFORM.                    "SELECT_DATA
    *&      Form  LOOP_FINAL
          text
    FORM loop_final.
      LOOP AT lt_vbap INTO ls_vbap.
        ls_final-vbeln = ls_vbap-vbeln.
        ls_final-posnr = ls_vbap-posnr.
        ls_final-matnr = ls_vbap-matnr.
        ls_final-kwmeng = ls_vbap-kwmeng.
        ls_final-pstyv = ls_vbap-pstyv.
        ls_final-werks = ls_vbap-werks.
        READ TABLE lt_vbak INTO ls_vbak WITH KEY vbeln = ls_vbap-vbeln BINARY SEARCH.
        ls_final-vkorg = ls_vbak-vkorg.
        ls_final-vtweg = ls_vbak-vtweg.
        ls_final-spart = ls_vbak-spart.
        ls_final-ernam = ls_vbak-ernam.
        ls_final-erdat = ls_vbak-erdat.
        ls_final-aedat = ls_vbak-aedat.
        APPEND ls_final TO lt_final.
        CLEAR ls_final.
      ENDLOOP.
      ENDFORM.                    "LOOP_FINAL
    *&      Form  SORT
          text
    FORM sort.
      ls_sort-spos = '01' .
      ls_sort-fieldname = 'VBELN'.
      ls_sort-tabname = 'LT_FINAL'.
      ls_sort-up = c_x.
      ls_sort-subtot = c_x.
      APPEND ls_sort TO lt_sort .
    ENDFORM.                    "SORT
    *&      Form  A
          text
         -->FNAME      text
         -->SELTEXT    text
         -->EMPHA      text
    FORM a USING fname TYPE string seltext TYPE string.
      IF fname = 'KWMENG'.
        ls_fieldcat-do_sum =  c_x.
      ENDIF.
      ls_fieldcat-fieldname = fname.
      ls_fieldcat-seltext_m = seltext.
      APPEND ls_fieldcat TO lt_fieldcat.
      CLEAR ls_fieldcat.
    ENDFORM.                    "A
    *&      Form  ALV
          text
    FORM display.
      layout-zebra = c_x.
      layout-colwidth_optimize = c_x.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                = ' '
      I_BUFFER_ACTIVE                   = ' '
       i_callback_program                = sy-repid
      I_CALLBACK_PF_STATUS_SET          = ' '
      I_CALLBACK_USER_COMMAND           = ' '
      I_CALLBACK_TOP_OF_PAGE            = ' '
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = ' '
      I_GRID_TITLE                      =
      I_GRID_SETTINGS                   =
        is_layout                         = layout
        it_fieldcat                       = lt_fieldcat
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
        it_sort                           = lt_sort
      IT_FILTER                         =
      IS_SEL_HIDE                       =
      I_DEFAULT                         = C_X
      I_SAVE                            = ' '
      IS_VARIANT                        =
      IT_EVENTS                         =
      IT_EVENT_EXIT                     =
      IS_PRINT                          =
      IS_REPREP_ID                      =
      I_SCREEN_START_COLUMN             = 0
      I_SCREEN_START_LINE               = 0
      I_SCREEN_END_COLUMN               = 0
      I_SCREEN_END_LINE                 = 0
      I_HTML_HEIGHT_TOP                 = 0
      I_HTML_HEIGHT_END                 = 0
      IT_ALV_GRAPHICS                   =
      IT_HYPERLINK                      =
      IT_ADD_FIELDCAT                   =
      IT_EXCEPT_QINFO                   =
      IR_SALV_FULLSCREEN_ADAPTER        =
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
        TABLES
        t_outtab                          = lt_final
    EXCEPTIONS
      PROGRAM_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.
    ENDFORM.                    "ALV

  • Where could we find the CT and PT values  for Particular Device ???

    I 'm facing a scenario in  a report  i need to place a  field device number and assosiated  CT's and PT's .
    where could we find the CT and PT values  for Particular Device ??? basically im MM consultant   we don't ahave  DM consultant  please help with this issue???
    means actually i got the table and field  details  for transformation ratio (or) CT/PT ratio
                          ETYP_UEBERVER. from the screen EG03 , t-code
                            but im not sure   this  is the exact field that i require  ....
    can any one help ....   i will be very  thankfull to your  solution  inadvance....

    The transformation ratio are the attributes of a "Winding Group".  Find winding group of a device and then you'll get the desired information.

  • Cant see the native groups on the forms and reports

    We are migrating 9.3.3 to 11.1.2.1. We recently found the issue after the migration. Even after migrating the users, groups and provisioning using LCM; we cant see the groups in the forms and reports.
    We did the migration for test environment, but didnt encounter this issue.
    For eg, when I click on 'assign access' for a planning form I dont see the group assigned to that form. I can see that group in the shared services with all the provisioning. I can find the group and assign it manually for that form. But it doesn't shows up after the migration.
    I opened the SR with oracle who suggested to bring over the schema and upgrade/register the applications again, as there might not be any groups present when I register the application before.
    We brought over the schema, migrate and register the applications, but the problem still persists.
    Has any one encountered issue like this, I would, I would really appreciate any suggestions.
    thanks

    Thanks for your reply John. I ran the UpdateUsers.cmd utility, but it didnt do anything. I brought over the schema again, updated and registered the application. Everything looks good so far, I can see the groups on dimension access and on the webforms.
    When I run create or refresh security it deletes all the records in HSP_ACCESS_CONTROL. The view link disappears from the planning dimensions and i cant see the groups assigned on the webforms as well.
    Any idea would be highly appreciated.
    thanks

  • How to Install the Forms and Reports 6i in Ubuntu 6.06 LTS

    Dear All,
    I need to install Forms and Reports 6i in Ubuntu 6.06 LTS.
    I had downloaded the d2k6irelease2.tar also and extracted the tar file.
    I don't know how to start up with the installation further., Is there any document available for the installation process inubuntu.. or what are the steps that i need to follow to make it work..?
    Many thanks in advance...

    Hi,
    Here's the Forms and Reports Services Deployment Guide for OAS 10g 10.1.2:
    http://download-east.oracle.com/docs/cd/B14099_11/web.1012/b14032/toc.htm
    You will need to modify your default.env to point to the directory where your .fmx is located and formsweb.cfg to run the specific form, e.g. foo.fmx (default is test.fmx).
    HTH,
    Jim

  • HT3986 I've had MS Office:mac 2011 on my imac for around 18 months now.  Outlook has just disappeared and when I find the file and open it it tells me that there is a problem and I may need to re-install it.  I've just done this using the installation dis

    I've had MS Office:mac 2011 on my imac for around 18 months now.  Outlook has just disappeared and when I find the file and open it it tells me that there is a problem and I may need to re-install it.  I've just done this using the installation disc which, then said the installation had been successful.
    Outlook is still not working.  Can anyone please advise me on what to do next.

    Remove MS Office 2011 completely (here are instructions) and reinstall it.
    It's not a simple or fast process but it is important to follow all of the steps in order to get all the files that Office scatters around. This will not affect your data files, only MS Office and its preferences.

  • FM/Class to find the class and characterstics for a given material

    Hi All,
    Is there any Class/FM to find the class and characterstics for a given material.I tried some BAPI_OBJCL* BAPI's but lot of the BAPI's need classnum as input parameter. But i need a BAPI or tables or class which can give the class and its characterstic values for a given material.

    Hi Ben
             Try ..
    BAPI_OBJCL_GETCLASSES
    BAPI_OBJCL_CREATE

  • How do I switch to an older version of my library? Itunes asked me to find the library, and I seem to have picked the wrong one.  Ive lost over 500 songs!

    Itunes told me it couldn't find the library, and asked me to find it.  I apparently picked a version from years ago, because over 500 of my songs are missing, and some I deleted a long time ago have reappeared.  I see a file labelled "itunes library" from yesterday (the correct one), but I can't find a way to make itunes use it.  This screwup is costing me several hundred dollars at the moment!

    I assume that this new interface AirPort Utility you are referring to is version 6.0. If that is the case you can download and install version 5.6. Both can co-exist on the same machine and I would recommend that you keep both of them. Then use 5.6 to administer the base stations for your networking requirements.

  • I have iphone 3gs and last days i made upgrade 5.01, but i dont know that this version is not avaliable in brasil yet. than my iphone 3gs 32 gb no more find the wide and it be seaching the sinal. what i need to do to back to before situation. thanks a lo

    i have iphone 3gs and last days i made upgrade 5.01, but i dont know that this version is not avaliable in brasil yet. than my iphone 3gs 32 gb no more find the wide and it be seaching the sinal. what i need to do to back to before situation. thanks a lot

    iOS 5.0.1 has been out for a couple months, if not longer. 
    There was no delay in releasing it in any country.
    So what is your issue? 

  • My acer Aspire V7-481P touchscreen stopped working. I can no longer find the pen and touch settings on my computer, please help.

    My acer Aspire V7-481P touchscreen stopped working. I can no longer find the pen and touch settings on my computer, please help, I have tried to download all the drivers on the acer website and it is still not working. The touchscreen previously worked before
    but unexpectedly stopped.

    touchscreen don't need driver
    go to device manager, find Human Interface Device, find HID-compliant touchscreen (maybe under USB input device), try to enable it, click yes and restart PC
    If not solved, try to perfrom system restore (back to condition when this PC working fine)
    http://acer.custhelp.com/app/answers/detail/a_id/11564/related/1
    for more details TS, i suggest contact Acer

  • Hello! Really sorry! Originally this APP software free game, only peace of mind to let children play, but a recent credit card reconciliation only to find the charges and found that the game content is not completely free, content or Payplay games, childr

    Hello! Really sorry! Originally this APP software free game, only peace of mind to let children play, but a recent credit card reconciliation only to find the charges and found that the game content is not completely free, content or Payplay games, children do not understand the meaning, pressed by mistake to the game fee of options found APP software fees has been removed, the 3 pen order really is not a small amount, a small fortune in Taiwanthe burden, the normal person would not spend such fees to play mobile games, kids really are unintentional, Sorry! hope you can help me claim to cancel the game cost very grateful!
    PS: order number --- 1.MH****Z0J --- 2.MH****4QJ --- 3.MH****6NQ
    My English is not good, please forgive me.
    <Personal Information Edited By Host>

    These are user-to-user forums, you are not talking to Apple here - I've asked the hosts to remove your email address and phone number from your post.
    You can contact iTunes support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption
    To try and stop it happening again you can turn off in-app purchases on your phone via Settings > General > Restrictions > In-App Purchases 'off'

  • How do i find out what my serial number is? I cannot find the software and need to put it on a new computer. How do I do this?

    I cannot find the software and need to put it on a new computer. How do I do this? I do not remember where the software is yet it is on my computer along with Photoshop CS6 extended. I have that disk but cant find anything else.

    gr8gear,
    You can see (only) part of the registration number under Help>About Illustrator.
    If you have registered it with Adobe (optional up to CS4), you should be able to see it on your products page
    https://www.adobe.com/account/my-products-services.html
    Otherwise, you may ask in a chat here (depending on version):
    Creative Cloud support (all Creative Cloud customer service issues, chat open between 5AM and 7PM PST/PDT on workdays)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html
    Serial number and activation support (non-CC, chat open between 5AM and 7PM PST/PDT on workdays)
    http://helpx.adobe.com/x-productkb/global/service1.html

  • How to debug a form (servlet) in the Forms and Reports Server

    Hi:
    I have a new install of an application that ran perfectly on a different host using the Forms and Reports Server.
    I have installed the FRS on the new host and it is working fine. I can run the test form.
    When I run my actual forms app, I only get a blank screen in the browser and on the status bar it reports "Applet Started'.
    Is there a way I can turn on debugging or something so I can see at what point it is failing or why the form is not opening properly?
    Any advise would be appreciated.
    Many thanks.
    Bruce

    Thanks for the reply Frank. I have looked all through the Start menu but see no "Configuration and Migration". I assume it's because I only installed the Forms and Reports option, so I only have Forms Services, Reports Services, and the Universal Installer. No big deal - I've already setup tnsnames manually. I just like to use the Net Assistant when I can.

  • TS3297 Hi. I can't find the movies and tv shows icons on my iTunes store. I use a 4th generation iPad with ios8.1.2. I haven't used the store in a long time but I'm pretty sure they used to be there. Now all I can download is music. Please help

    I Can't find the movies and tv shows icons in my iPad itunes store. All I see are music, genius, purchased and top charts.

    they are in the "videos".app Store

Maybe you are looking for

  • Passing parameter to the URL in UWL

    Hi ,   We are sending the workitem from ECC to UWL and all these works fine. We have a custom form that opens from the UWL workitem on the click of a button 'Launch URL'  . We need to pass a name into the cutom form while it opens. We are using the T

  • Creating a directory tree

    Hello I am a newbe in java/jsp and i want to create a session java bean which can contain the structure of a directory tree. Like the one of windows explorer. I am having a java been containig the cuurent state of the tree. Should thid bean be a vect

  • Can't publish or export project-error code -108.

    I created a project with videos, photos, music etc. The lenght might be a bit long (1h.17) but I did not find any information about a specific limit...When I tried to publish in 1080 hd or any other resolution or even export to quick time after about

  • Controlling Document Number Ranges

    Hi Gurus, I am pretty new to the Controlling world, i am trying to copy document number ranges from one controlling group to another, but i am getting an error like elements dont match. If you can explain me exactly what is causing this error, that w

  • Time Machine/Capsule and Duplicate emails

    I recently got a Time Capsule. Even more recently, I've started getting tons of duplicate emails -- emails that I've already read show up as unread (usually one or two, this morning 4 new copies). It makes me feel very popular to see that I have 315