Testing FM RH_STRUC_GET

Hi All,
i will like to test this FM RH_STRUC_GET. i thought it is used to get the position and organizational unit the user is linked to
I proceed as follow:
Se37
i filled:
0type:S
0BJID:persnr.
WEGID:A008
Flag:?
PLVAR:01
Begda:24.08.2010
ENDA:24.08.2010
TDEPTH (What does that mean?):?:?
TFLAG (What does that mean?):?:?
TVFLAG (What does that mean?):?:?
Authority Check (What does that mean?):?:?
Text_Buffer-fille (What does that mean?):?:?
Buffer_Mode (What does that mean?):?
Could anyone help?
Thanks
gilo

Hi Gilo,
Please check this example :
DATA: IOBJEC    LIKE OBJEC    OCCURS 0 WITH HEADER LINE,
        ISWHACTOR LIKE SWHACTOR OCCURS 0 WITH HEADER LINE,
        ISTRUC    LIKE STRUC    OCCURS 0 WITH HEADER LINE.
  CALL FUNCTION 'RH_STRUC_GET'
    EXPORTING
      ACT_OTYPE      = 'S'
      ACT_OBJID      = MGR_POS ---> <Position>
      ACT_WEGID      = 'ZSPS'     -
> Relation
      ACT_PLVAR      = '01'
      ACT_BEGDA      = PCHBEGDA
      ACT_ENDDA      = PCHENDDA
      ACT_TDEPTH     = 2  
    TABLES
      RESULT_TAB     = ISWHACTOR
      RESULT_OBJEC   = IOBJEC
      RESULT_STRUC   = ISTRUC
    EXCEPTIONS
      NO_PLVAR_FOUND = 1
      NO_ENTRY_FOUND = 2
      OTHERS         = 3.
Note : The Variable ACT_TDEPTH denotes -->To indicate how many levels of an organizational structure should be processed in an inquiry/report, enter the appropriate level numberFor example, if the field contains a 3, the system processes three levels of the structure, beginning from the organizational unit you select as the root object, down.
The below fields always used default values unless for special cases.
HRRHAS-TFLAG - is checked if you need to fetch the texts
HRRHAS-VFLAG - is checked if you need to fetch the relation ship information
HRRHAS-AUTHY - is checked if you need to check the authorization
TEXT_BUFFER_FILL - denotes a test run
Remember the Objid is position based on the object type and relation you selected.
Thank you,
Kumar
Edited by: Kumar B on Aug 24, 2010 12:37 PM

Similar Messages

  • RH_STRUC_GET get different result

    All experts,
        As i use this FM to get OM structure,  the evalation path it 'MSSDIREC'.  it can ge resutl,  but , i use two logon ID to check this, it gets different result,  how to do this?

    My parameters is like this:
    CALL FUNCTION 'RH_STRUC_GET'
                EXPORTING
                    ACT_OTYPE  = 'O'
                    ACT_OBJID  = it_org-sobid               "50006642
                    ACT_WEGID  = 'MSSDIREC'              "evalation path
                    ACT_PLVAR  = '01'
                    ACT_BEGDA  = lv_date1 "wa_begda  M1        "21.10.2009
                    ACT_ENDDA  = lv_date1 "wa_endda              "21.10.2009
                TABLES
                    RESULT_TAB  =  lt_d_result_tab
                EXCEPTIONS
                    NO_PLVAR_FOUND  =  1
                    NO_ENTRY_FOUND  =  2.
    I use two Logon ID to test this FM, but it get two different result.
    i want to know why there is different result in different ID,
    Edited by: Kevin Leung on Oct 21, 2009 9:40 AM

  • RH_STRUC_GET STRUC

    Hi,
    the function RH_STRUC_GET returns an structure of type struc wich contains 2 date pairs:
    (VBEGDA, VENDDA) and (SBEGDA, SENDDA).
    Does anyone know which dates do they correspond with?
    I suppose that VBEGDA and VENDDA corresponds with the dates of the link between an object and its predecessor, but i don't know it for sure and i don't know what are SBEGDA and SENDDA.
    Can anyone help me?
    I have tried to read the RH_STRUC_GET code but i don't speak german and this makes it difficult to understand the comments in the code.

    i have answered myself making several tests with PPOME transaction

  • Evaluation path in CRM - RH_STRUC_GET not working !!

    Hi all,
    I created a new evaluation path in CRM 4.0 to determine the business partners in an organizational unit.
    If I test it in PPSS it works absolutely perfect, however I have to use it in an ABAP and there I found out that FM RH_STRUC_GET doesn't work (maybe BP is excluded somewhere)
    Is there another FM working in CRM, or do I have to fill some HR table to get this to work, otherwise I have to do it manually by selecting from HRP1001 tables.
    Kind regards, Rob Dielemans

    Sorry,
    It had something to do with buffers.
    RH_STRUC_GET uses buffers and ppss doesn't.
    It now works as planned.
    Kind regards, rob Dielemans

  • FM RH_STRUC_GET and buffer_mode

    Hi,
    The FM RH_STRUC_GET offer an importing parameter called BUFFER_MODE. I have come across severel buffer modes i existing coding, like X, F and D.
    My problem is that we are using the FM a lot. And I have a performance problem, that the FM doing a lot of identical selects on dababase.
    Is there a place where I am able to get a list of all possible buffer modes, and som documentation on the differences of the modes.
    Best regards,
    Martin Molz

    Hi Gilo,
    Please check this example :
    DATA: IOBJEC    LIKE OBJEC    OCCURS 0 WITH HEADER LINE,
            ISWHACTOR LIKE SWHACTOR OCCURS 0 WITH HEADER LINE,
            ISTRUC    LIKE STRUC    OCCURS 0 WITH HEADER LINE.
      CALL FUNCTION 'RH_STRUC_GET'
        EXPORTING
          ACT_OTYPE      = 'S'
          ACT_OBJID      = MGR_POS ---> <Position>
          ACT_WEGID      = 'ZSPS'     -
    > Relation
          ACT_PLVAR      = '01'
          ACT_BEGDA      = PCHBEGDA
          ACT_ENDDA      = PCHENDDA
          ACT_TDEPTH     = 2  
        TABLES
          RESULT_TAB     = ISWHACTOR
          RESULT_OBJEC   = IOBJEC
          RESULT_STRUC   = ISTRUC
        EXCEPTIONS
          NO_PLVAR_FOUND = 1
          NO_ENTRY_FOUND = 2
          OTHERS         = 3.
    Note : The Variable ACT_TDEPTH denotes -->To indicate how many levels of an organizational structure should be processed in an inquiry/report, enter the appropriate level numberFor example, if the field contains a 3, the system processes three levels of the structure, beginning from the organizational unit you select as the root object, down.
    The below fields always used default values unless for special cases.
    HRRHAS-TFLAG - is checked if you need to fetch the texts
    HRRHAS-VFLAG - is checked if you need to fetch the relation ship information
    HRRHAS-AUTHY - is checked if you need to check the authorization
    TEXT_BUFFER_FILL - denotes a test run
    Remember the Objid is position based on the object type and relation you selected.
    Thank you,
    Kumar
    Edited by: Kumar B on Aug 24, 2010 12:37 PM

  • RH_STRUC_GET example

    Hi,
    Does anyone have sample code that I can pinch. I want to get all the employee numbers that report to a manager.
    I assume the best way is using RH_STRUC_GET but there may be a better way?
    Thank you.

    Hi Satish,
    this FM works only under Organizational management. I suppose that the BW has it's own instance.
    I think that there are 2 options for transfer OM into BW
    as data to datacubes for reporting
    as OM for use it maybe as background for authorizations
    As I have only little experiences with transfer OM through standard ALE to BW I only test to transfer objects O (Organizational Unit), S (Position) and C (Job). For me I wasn't able transfer objects P (person) into BW. And in this cause you will be able to use this RH_STRUC_GET functional module.
    If you will have the OM transferred through extractors into BW then not. This is my experiences that I have from transferring OM across systems (from HR  own instance to own instances of ERP, CRM, SolMan and BW systems).
    BR

  • Unit Testing, Null, and Warnings

    I have a Unit Test that includes the following lines:
    Dim nullarray As Integer()()
    Assert.AreEqual(nullarray.ToString(False), "Nothing")
    The variable "nullarray" will obviously be null when ToString is called (ToString is an extension method, which is the one I am testing). This is by design, because the purpose of this specific unit test is to make sure that my ToString extension
    method handles null values the way I expect. The test runs fine, but Visual Studio 2013 gives includes the following warning:
    Variable 'nullarray' is used before it has been assigned a value. A null reference exception could result at runtime.
    This warning is to be expected, and I don't want to stop Visual Studio 2013 from showing this warning or any other warnings, just this specific case (and several others that involve similar scenarios). Is there any way to mark a line or segment
    of code so that it is not checked for warnings? Otherwise, I will end up with lots of warnings for things that I am perfectly aware of and don't plan on changing.
    Nathan Sokalski [email protected] http://www.nathansokalski.com/

    Hi Nathan Sokalski,
    Variable 'nullarray' is used before it has been assigned a value. A null reference exception could result at runtime.
    Whether the warning above was thrown when you built the test project but the test run successfully? I assume Yes.
    Is there any way to mark a line or segment of code so that it is not checked for warnings?
    There is no built-in way to make some code snippet or a code line not be checked during compiling, but we can configure some specific warnings not to be warned during compiling in Visual Basic through project Properties->Compile
    tab->warning configurations box.
    For detailed information, please see: Configuring Warnings in Visual Basic
    Another way is to correct your code logic and make sure the code will not generate warning at runtime.
    If I misunderstood you, please tell us what code you want it not to be checked for warnings with a sample so that we can further look at your issue.
    Thanks,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Previewing on local testing server

    When previewing a file in the Dreamweaver development
    environment, Dreamweaver loads the file, say testfile.html, in the
    browser with its file system address, eg
    file://Applications/MAMP/htdocs/jsMath/test/testfile.html. However,
    the local website address of this file is
    http://localhost:8888/jsMath/test/testfile.html.
    This leads to a security error
    Security Error: Content at
    file:///Applications/MAMP/htdocs/jsMath/test/testfile.html may not
    load data from
    http://localhost:8888/jsMath/plugins/autoload.js.
    The problem can be circumvented by avoiding the Dreamweaver
    preview and hand-loading the file directly as
    http://localhost:8888/jsMath/test/testfile.html
    Surely the preview feature must not be bound by this
    restriction. What might be done to get preview to work properly
    with this local testing server?
    -dao

    daoliver wrote:
    > Surely the preview feature must not be bound by this
    restriction. What might
    > be done to get preview to work properly with this local
    testing server?
    You need to define the testing server correctly in your site
    definition.
    In your case, the Testing server folder field should be set
    to
    Applications/MAMP/htdocs/jsMath/test/ and the URL prefix to
    http://localhost:8888/jsMath/test/.
    David Powers
    Adobe Community Expert, Dreamweaver
    http://foundationphp.com

  • SSL TEST IN R12

    Hi,
    we are about to implement SSL in ebs r12.0.4 to ensure that the user name and password get passed over the browser as encrypted(by default which is passed as simple text).
    Now i am following metalink document Enabling SSL in Release 12 [ID 376700.1]
    Initially i was testing with the demo certifcatest at the $INST_TOP/certs/Apache.
    All the middle tier setups has been done.Then when i restarted the Application and tried to connect my url that get redirected to the SSL port correctly but then failed with following:--
    500 Internal Server Error
    java.lang.NoClassDefFoundError     at oracle.apps.fnd.sso.AppsLoginRedirect.AppsSetting(AppsLoginRedirect.java:120)     
    at oracle.apps.fnd.sso.AppsLoginRedirect.init(AppsLoginRedirect.java:161)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpApplication.loadServlet(HttpApplication.java:2231)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpApplication.findServlet(HttpApplication.java:4617)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpApplication.findServlet(HttpApplication.java:4541)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2821)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:740)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:299)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:187)     
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)     
    at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)     
    at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)     
    at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)     
    at java.lang.Thread.run(Thread.java:595)Please help.
    Edited by: Susmit on Dec 24, 2010 4:24 PM

    Hi;
    please check below notes:
    "500 Internal Server Error - java.lang.NoClassDefFoundError: oracle.apps.fnd.profiles.Profiles" on 10G [ID 567554.1]
    R12: Troubleshooting 500 Internal Server Error in Oracle E-Business suite [ID 813523.1]
    Regard
    Helios

  • Open and close posting periods on test system

    Hello together,
    to open and close posting periods is only allowed on the develepment und the production client, but not on the test client.
    It is an customizing object, but the flag "current settings" is set, so you also can change the settings on the production system.
    In the test system, it only can be changed by opening the system for customizing using SCC4 und change to "Changes without automatic recording".
    Is there a way to allow open and close posting periods on the test system without opening the client for customizing?
    Regards,
    Michael

    Hi Michael,
    Please, refer to the note 356483. Proceed as following:
    Call transaction SE54
    Enter the Customizing object (view or table)
    Select "Generated objects"
    Choose "Create/change"
    Select "no, or user, recording routine" in the bottom part of the screen
    Save the change
    The view in your case is V_T001B.
    Regards,
    Eli

  • Dunning report difference in dev,testing and prod server in sap

    Hi all..
    we are facing a problem while executing the tcode f150 in dev,tsting and production server.
    while giving the same run on and identification,the different parameters are coming and the status is geting changed.
    in ker,the process is getting compelted,in testing the process is getting sceduled,complete but getting the status as"process completed but job deleted".
    and in production,the status like testing server is coming but some tabs(from the too bar where delete,etc lies)are not getting to see,its not showing up.
    please tell me if we can check it through some tcodes,or eliminate the eorr.
    we are not able to locate the cause behind.thanks in adv.

    Hi chandu,
    In my previous Organisation we got exactly the same landscape for BW as you described.BCS(BAYER COPSCIENCE LTD) operates a BW System Landscape with one centralized  Global Development System and three regional Quality Assurance and Production Systems located in Europe, Asia Pacific and Americas. This Landscape is to ensure consistent data models to be available in all regional systems as well as to minimize development efforts and make use of respective synergies.
    This is perfectly working  for BCS ,and I think, this is the most approriate way of handling of resources.
    Regards
    CSM Reddy

  • GT70 2PC – Software testing and performance report.

    It is so excited here again. Currently, my first/only object after work is playing Titanfall.
    I intended to share another performance testing today. But I didn’t. I found there are too many great open box posts on different forums. Therefore, I decide to dig the MSI software compatibility and do a touring. What can I say? I’m Mr.Curiosity who really desires to know every built-in application in system. That is why I share this article with you, my friends. I would like to discuss with everybody who is interested in MSI software. Of course, I have some performance reports for you, too. Please also remind me if you find any typo/wrong in this post. Thanks in advance.  
    1. MSI Boot Configure
        This is the first software which pops up immediately. It is thoughtful design because we can choose enter the [Windows 8.1 metro] or [desktop] by ourselves now. I give it two thumbs up!!!
    Select your favorite boot configuration and press [OK]. If we want it work immdiately, we can logout the system and re-login again.
    2.   MSI Remind Manager
    Honestly, I didn’t know what it is in the beginning. The cute robot shows every time when I login the system. I found this is a reminder for product registration. Good, I would like to have best MSI support and warranty for my lovely GT70 2PC. But don’t worry, if you don’t want to get this message again, you just need to select the right option and close it.
    3.   Synaptics TouchPad
    This is a driver for mouse. [Mouse property] will show if we do the double clicks on TouchPad icon in tray. You can choose enable/disable internal pointing device when external pointing device is attached. This is brilliant. A tough guy (like me…HA! HA!) didn’t like to play game with touchpad. Because the character in game will be weak and slow if I control it by touchpad. Of course, I need the external mouse all the time and don’t want the interference from touchpad.
    4.   System Control Manager (SCM)
    We can enable/disable the WLAN/BT/camera devices by SCM. Besides, it can control the display brightness, volume, screen on/off and ECO. ECO is special mode for gaming watching movie.  
    5.   Sound Blaster CINEMA
    Sound Blaster CINEMA is come from an old school audio company – CREATIVE. The software can adjust the surround sound easily. We also can adjust 5.1/7.1 surround sound for the internal speakers and external headphone. That is great, isn’t it?
    Besides, we can also adjust CRYSTALIZER/BASS/SMART VOLUME/digital output by ourselves.
    6.   Killer Network Manager
    This is a major feature of MSI NB.
    In Killer Network Manager, we can set the network priority for each of applications and we also can abandon the connection from malicious software.
    [Performance] shows current status of network. We can find out which application occupied the most greedy resources by it.
    [Network -> Test Network Speed] will detect the network environment automatically. Furthermore, it will adjust the priority for applications.
    [Killer Ethernet] show the LAN connection info.
    [Killer Wireless] show the router info.
    7.   SteelSeries Engine
    This is another major feature of MSI NB
    If we do the right click on icon in tray, the menu will show following list. We can select [Launch SteelSeries Firmware Update Tool], [Updates]…and so on.
    If we select the [Settings]. It can help us change default language and set application auto running when system power on.
    I.   Buttons
    Double click to open the SteelSeries Engine. I think it can set 4 different keyboard settings for each of profiles. And it can switch by FN+1~4.
    [Keypress Marc] can record what you input. And [Record Delays ] can modify the delay time. HA! No game can block us anymore. Please remember to press the [SAVE] for your setting
    [Launch Application] can launch any application immediately. I suggest to set the cold key for this function.
    Here is example. I use [PgUp] to quick start the 3D Mark11. See, it will pop up when I pressed [PgUp].
    It is simple to use [TextMarco] set our own phrase. Now I become a quick speaker in my team. One key, only one key can help me to type a lot of words.
    Are you tired to press some keys that you never want to touch in game (Like WIN KEY)? It is not the problem now.  [Disable Key] will do the favor and disable any key which you hate.
    II.   [Colors] can change the color of backlight keyboard. Also, you can set different modes (Gaming/Audio…etc) on it.
    We can change the color zone. There is not only 4 or 5 colors. The engine provides thousands of colors for us. [Audio mode] is the coolest. It will change colors by itself when we play music by speakers. I like to dance with my keyboard.
    III.   We can select different languages by [Settings].
    IV.   [Properties] can save our hard works of settings reliably.
    V.   If you want to defeat your competitors, it is important to know your enemy. However, It is more important to know yourself. [Statistics] can help us observe which keys are most popular by our fingers.
    Right click on [Profile]. It can modify/export/import/delete the profiles.
    Mouse can use the same kind of settings as keyboard.
    DPI setting for mouse.
    Save files.
    We can record the mouse, too.
    8.   Norton
    Norton Internet Security: Anti-Virus software, MSI provides 60 days for free.
    Norton Online Backup: Online data backup software, MSI provides 30 days for free.
    Norton Anti-Theft: Anti-Theft software, MSI provides 30 days for free.
    If you like Norton’s products, you can buy it online.
    If you don’t, I believe we can uninstall it directly.
    So, the decision is ours.
    Introduction from Norton official website
    9.   Dragon Gaming Center
    I.   System Monitor:
    It can monitor CPU/GPU loading and temperature. We also can find the network speed and fan speed in it.  
    II.   Utility:
    You can set your favorite apps in [Add new Utility].
    E.g. I added a [MSI Afterburner]. Click [Open] to build the link. Do you feel familiar with something? Exactly, [Launch Application] of [SteelSeries Engine] can do this, too.
    III.   Instant Play:
    We can define [Fn+F4] to enable the quick start. But there is more secret.
    We can also use [Browse] to assign the game which we want.  
    Click the icon of game and [Fn+F4] will be ready. We can only use 1 program at once.  
    I usually change the brightness, volume and mouse sensitive before the game. As you know, every games are different. It is sweet because we can use  [Apply Setting] to do this.
    I can’t believe it. We also can find the clock feature in it. How convenient it is!
    IV.   Hybrid Power is another MSI feature.
    It can provide the power by AC adapter and battery in the same time. We can monitor the status in here.
    10. BurnRecovery
    It can create the recovery CD/DVD/USB for MSI NB.
    Here can select Recovery disc/USB/ISO.
    I will make a ISO file first.
    We can select where to put the ISO.
    Creating the recovery file...
    Finish!
    Open the folder and we can find 4 ISO files in it.
    Well…[BurnRecovery Help] provide the details spec.
    In my opinion, everyone should create their own recovery image. You will need it in one day.
    11. Battery Calibration
    This is software for battery calibration. In order to keep our battery good, we should do the calibration every three months. Don’t forget to plug-in the AC adapter and battery during the process..
    Press [Start] to begin the process. It will make the battery fully charged first.
    Then, it will empty the battery like this.
    System will shut down after the empty process. At last, fully charged again. It will take 4~5 hrs to complete the process.
    12. MSI Dragoon Army /MSI Facebook /Web site /YouTube
    Those are MSI forums/Facebook/official website/YouTube and links.
    [MSI Dragoon Army] is the official forum for MSI. We can find NB, MB and AIO info in it.
    Facebook Quick Link for many countries of world.
    MSI official website
    YouTube channel of MSI.
    13. Super-Charger
    There is no message when I click this app at the first time. But when I attached my IPAD, it pops up the [Super-Charger]. It is amazing because IPAD can’t be charge by this USB port. As far as I know, the USB 3.0 only provides maximum 900mA for its device. IPAD will need 2.1A for charge process. I have no idea how MSI NB make IPAD charging okay.
    14. XSplit GameCaster
    This is one of important features. I saw many different first class gaming machines this year. All of them have the broadcast software. (Like PS4, Xbos ONE)
    It can switch the default language after we login.
    Twitch/YouTube / Facebook/ Twitter/Google+ can be used by [Accounts]. It is easy to start the live show.
    We can modify the resolution and use twitch by [Setting]
    We can configure FPS/CPU loading/where to show on display by [Status label].
    Hotkey configuration.
    Videos storage.
    Press [Ctrl+Tab] to call Gamecaster in game. And we can twitch or modify setting. I will provide my gaming video for you later.
    15. Power DVD
    This is a famous video player. Also, it can support BD format.
    We can use the [Setting] to change our language.
    We can change 5 times for default country .
    It is glad that I’ve finished the introduction of GT70 software.
    Performance report:
    Um…Now is late at night. I should go to my lovely bed.  Following is the testing report for the reference.
    1.   FurMark
    1920*1080, 15 minutes.
    2.   AIDA 64
    CPU and GPU stress testing, 30 minutes.
    3. 3D Mark 11
    4. 3DMark Vantage
    5.   3DMark 2013
    6.   Heaven Benchmark 4.0
    7.   CINBENCH 11.5
    8.   FINAL FANTASY XIV Benchmark
    9.   PCMARK 7
    10.   HD Tune Pro  5.50
    11.   AS SSD Benchmark
    12.   Crystal Disk Mark
    I didn’t forget my promise. Here is my gaming videos
    http://youtu.be/tCd5Lnj2U0I

    Editors' Choice Award. Good job MSI !!
    http://www.computershopper.com/laptops/reviews/msi-gt70-dominator-893#review-body

  • How to open a popup win within a PDF file (c:\test.pdf) as Column Link

    I have a interactive report based on a Table (EMP). I need to create a column link that opens a pdf file within the employee curricula
    All the curriculum are stored in a windows folder, and in the EMP table there is a field named PATH containing the full path name.
    Thxs,
    Giuseppe.

    Hello, Sebastian
    I've tested your suggestion and in effect it works.
    I think is good solution if the files are readonly (pdf, images, etc).
    In my case the files are updatable by the end user.
    Consider that I'm using the following configuration:
    APEX 4.0, DB 11.2.0.1 and EPG
    This means that:
    a. All the files need to be loaded in the XML_DB via PL/SQL or via WebDAV (let's say in... /i/mydocs)
    b. When the end user opens the file via the "Column link" this is read-only in the browser, to modify it, the end user need to save updated version in (/i/mydocs), replacing the existing ones, .. and this is a bit complicated .
    Any other suggestion will be appreciate.
    Regards,
    Giuseppe.

  • I "upgraded" to FF4, now it doesnt work properly, wont open pages, will open blank tabs when i click on a link, tried to go back to the older one but that doesnt work now either, have tested it with Safari and it opens everything fine. Any ideas?

    After upgrading to firefox 4 im now having a lot of problems using the browser.
    if i try an open a link in a new tab it will just open up a blank tab, if i click on links or even type in the google search bar at the top it doesnt do anything, it just says "done" and the circle thing stops as if im on the page already, have tested it with Safari doing the same things and Safari works fine. I'd swap but all my bookmarks and passwords are in Firefox so id rather stay with that.
    I tried going back to the older version of firefox (3.5 or something) but seems the bugs are here to stay now.......so.......any ideas? because its really annoying, shouldn't have "upgraded".
    Is there a new patch coming out anytime soon or should i start getting used to Safari?
    Thanks for your help.
    Mark Lavery (Melbourne)

    I would copy over the entire thing if you have room.  With iTunes 10.4 though, you can download any previous iTunes purchases you have made in the past with your current iTunes account.  While in iTunes, look at the left hand side of your screen and select "Purchases" and look at the bottom right corner of the screen and select "Download Previous Purchases".  If you have an iPhone, iPod and/or iPad...you can do the same thing from each device.  Nice new feature...just remember that those ripped CDs need a back-up!!!  Enjoy...

  • How can I add/change e-mail account password? How can I test the account?

    For several days I have been unable to send or receive messages using Thunderbird. Works OK with another mail client. This problem started right after installing a security update 24.4.0 (20140316131045). I went to Options/Security/Passwords and deleted all the saved passwords. When I try to download messages, however, the system is not asking me to enter a new password. Thunderbird regrettably lacks a "Test" button to test access to the accounts.
    Any suggestions?

    If you're not being prompted for the password Thunderbird is unable to reach the server.
    Verify your firewall settings and make sure Thunderbird isn't blocked.
    You can easily verify your password using webmail.

Maybe you are looking for

  • Firefox logo missing from new browser; would like to see it so I can know at a glance which browser I am using.

    Bring back the logo or something else to allow quick identification of browser. Chrome doesn't have its logo in the browser either so now it going be harder to tell between the two. Is this a contest to see which can be more self effacing?

  • ERROR VNIC creation job failed

    Hello All, I have brought oracle VM X86 manager into ops center 12c control. When I try to create a new virtual machine it is throwing the 'ERROR VNIC creation job failed' error. Can anybody throw some light over this issue. Thanks in advance. Detail

  • My "Save As" menu is messed up - HELP!

    I am Genie and I work on a MacBook Pro and PSE9. Somehow while working with my pictures tonight I have messed up the Save As menu. Only the name of the picture appears without jpg or psd(I think those are the other letter for Photoshop format) after

  • Connecting AX to PC

    I am trying to connect an Airport Express to a PC. It was so easy to add this to my iMac system at home that I purchased this for my mother's sterio system. When I plugged it it, it just flashes yellow??? I go online to the airport Utility and it rea

  • Do I have Standard or Custim installed?

    I have Firefox up and running without any problems. Just want to know how I determine if I am running Standard or Custom edition? If it is Standard can I delete it and reload Custom?