RE: Non-Standard Reporting to KSB1 text problem

Hi All,
I have defined a report through the report painter that includes a drilldown to the KSB1 transaction. This report includes an entre parameter of Cost Element Group, however when you use the drilldown to the KSB1 within the report, the texts for the Cost Element Group do not appear.
Can anybody tell me why? and what can be done to solve this issue?
Take into account that all cost element groups texts are correctly implemented in the system.
Regards,
Stephen

Thanks for the response! However, the issue is not the link, currently the drilldown works perfectly connecting to the KSB1. The problem is that the Cost element group name texts (that is the entry parameter and structure of report) do not appear in the KSB1 when you drill down, however, if you execute the KSB1 on its own, the cost element group name texts appear.
Any ideas anyone?

Similar Messages

  • Search Help for field of standard table used on non standar report

    Hi all.
    I need to know whether is posible to set up a "Search Help" / "Matchcode" for one standard field (LFBK-BKTVP) of a standard table (LFBK) that is going to be used on the selection screen of one new non standard report ZFK01.
    I was wondering if this could be posible under any special attributes, set up, ... for this field in the corresponding screen, but do not really know nor if that would work neither what to set up. Any other workaround would also be welcome.
    Could somebodly help?
    Thanks in advance. Regards,
    Abdali

    Hi ,
    Please try this code .It is working as per your requirement.
    *& Report  ZTESTPRO4                                      *
    REPORT  ztestpro4.
    TYPES:BEGIN OF ty_lfbk,
          bvtyp TYPE lfbk-bvtyp,
          END OF ty_lfbk.
    DATA:gt_lfbk TYPE STANDARD TABLE OF ty_lfbk,
         gs_lfbk TYPE ty_lfbk.
    PARAMETERS:bank TYPE lfbk-bvtyp.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR bank.
      SELECT bvtyp
         FROM lfbk
         INTO TABLE gt_lfbk.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield    = 'BVTYP'
          dynpprog    = sy-repid
          dynpnr      = sy-dynnr
          dynprofield = 'bank'
          value_org   = 'S'
        TABLES
          value_tab   = gt_lfbk.

  • Standard report throws the error - 'LOAD FAILED, INTERNAL ERROR'

    Hi there,
                      When i run lead origin report or any other standard report, the error says 'LOAD FAILED, INTERNAL ERROR' as mentioned in screen shot. The same i checked in QA server too and error analysis says ''define the correct currency default is EURO''
    All the standard reports has the same problem.
    * these reports are running in UI.

    Hi Himanshu,
    Where is the detailed error screenshot in SAP GUI.
    Thanks,
    Faisal PC

  • Problem using CASE within SELECT in a standard REPORT region

    I'm trying to do a CASE-oriented SELECT within a standard REPORT region and the parser is rejecting the SQL statement.
    The code I'm using is the following:
    SELECT
    CASE
    WHEN INSTR(citation, '@') > 0 THEN
    SUBSTR(citation, 1, INSTR(citation, '@')-1)
    || ':'
    || SUBSTR(citation, INSTR(citation, '@')+1,
    LENGTH(citation) - INSTR(citation, '@'))
    ELSE citation
    END
    FROM citation
    WHERE obj_table_cd = 'FI'
    AND obj_id = :P41_FIND_ID
    ORDER BY CITATION
    The parser says the (case .... ) is invalid, use column alias. The query works correctly when using SQL_Developer and SQL*PLUS.
    My intention is to replace an '@' with ':' within the citation text. The standard citation format should have a colon, but this causes problems with AppExpress, hence the substitution situation.
    Any insights on this or on another way to achieve the purpose?
    Thanks,
    George

    George,
    You should give a column alias after the END of the case statement:
    SELECT
    CASE
    WHEN INSTR(citation, '@') > 0 THEN
    SUBSTR(citation, 1, INSTR(citation, '@')-1)
    || ':'
    || SUBSTR(citation, INSTR(citation, '@')+1,
    LENGTH(citation) - INSTR(citation, '@'))
    ELSE citation
    END citation_col
    FROM citation
    WHERE obj_table_cd = 'FI'
    AND obj_id = :P41_FIND_ID
    ORDER BY CITATIONSam

  • Newby - Problems exporting non-standard characters to .CSV or tab delimited

    I am trying to export data from a table where many of the text fields contain non-standard characters like double quotes *["]* or *tabs*. If I *export to a .CSV* file, the embedded double quotes invariably foul up the alignment of the output columns and if I select a *tab delimited export*, the embedded tabs do the same thing.
    Is there anyway that I can specify the text delimiter to use so that I can select a character that is not used in the text (like, for example the tilde *[*]*)?
    I am using Discoverer 3.1
    Thanks in advance

    Hi,
    With a complicated export requirement like this it is often better to create a calculation that returns the fields in the required format as a single column e.g.
    col1||'~'||col2||'~'||col3
    Then you can just export the report as a text and get all the fields with the correct separators and replaced characters.
    Rod West

  • Kvirc from SVN {NON-Standard-Install-Method} and Overcoming 2 Problems

    Hello, everyone.  Firefishe here.
    There are certain programs I like to compile from source code, outside of the normal arch hierarchy of PKGBUILD's.  One such program is the Internet Relay Chat client, "KVIRC".
    I've been using kvirc for years, and I like to keep it as up-to-date as possible, just like Arch!
    This is why I like to use the svn version, so I can update it quickly and uniformly.  I like--as a user--to contribute back to the project.  (I had one of my bug reports translated into an instant commit by the main project author, himself, once.  That made me feel quite good, so it really does help to do a few things like this now and again.
    Okay, on to the main topic.
    I'm writing this to alleviate a nagging problem that had been plaguing me for months in 2013.  Qt5 just wasn't compiling kvirc very well back then.  The fact is, the echoing strains of "qt5 is broken in kvirc" from the #kvirc channel on Freenode, resounded soundly throughout that entire year.  Qt5 was still a bit buggy, and not all the libraries (32bit or 64bit) were quite finished.
    Move forward to (now) July, 2014!  I have now compiled kvirc successfully on my 64bit (with 32bit multilib installation) laptop, and kvirc is purring away with a current svn build of kvirc.
    However, I ran into some issues, which I would like to share with you, below:
    I usually go about compiling kvirc from svn like this: (I usually start from my /home/userNameHere directory.)
    {arch@homedir}$ svn co https://svn.kvirc.de/svn/trunk/kvirc
    {arch@homedir}$ cd kvirc
    {arch@homedir}$ mkdir release
    {arch@homedir}$ cd release
    {arch@homedir}$ ccmake ..
    [At this point, the 'ccmake ..' command invokes cmake-gui, an ncurses-like graphical user interface, with a list of menu items pertaining to various libraries and flags that can be set.  cmake-gui makes selecting these flags and libraries quite easy, and also gives a clear indication of what directories may not have been found (which will be discussed a bit later.) ]
    Press the 'C' Letter Key -- (This runs the Configure Routine.  I sometimes do this twice, just to be sure it configured properly. I've had it miss a few times for unknown reasons.)
    Press the 'G' Letter Key -- This 'Generates' Cmake files.
    After the 'G' command, the system takes you back to the command prompt.
    {arch@homedir}$ make ***WAIT A WHILE, COULD TAKE A BIT LONGER ON SLOWER SYSTEMS!***
    {arch@homedir}$ sudo make install  (Or 'su -' to root, then do 'make install'; your preference.  I prefer using sudo.)
    {arch@homedir}$ sudo ldconfig  (Or 'ldconfig' if still at root prompt #)
    {arch@homedir}$ kvirc (or 'kvirc &' if you don't want the terminal window to hold onto the process.)
    Kvirc should run at this point, but I ran into a couple of problems.  Once during the ccmake configuration (which prevented ccmake from configuring), and at the end, which prevented kvirc from running.)
    The first had to do with two (2) packages that were not installed.  The were, as follows:
    qt5-webkit
    qt5-multimedia
    I installed those files, then did the  'ccmake ..' portion.   That ran fine, as well as the 'make' and 'sudo make install' and 'sudo ldconfig' parts.
    What didn't work was when I tried to run kvirc.  I got the following error:
    {arch@homedirc}$ kvirc
    kvirc: error while loading shared libraries: libkvilib.so.4: cannot open shared object file: No such file or directory
    I remember, back when kvirc was wanting Qt4, and not Qt5, that if I didn't do the first 'sudo ldconfig' command before trying to run kvirc, it would give something similar.  However, since this compile run was wanting Qt5, and not qt4, I was puzzled.
    Well, it turned out to be something quite simple.  This is a non-standard process of software installation on a new(er) arch system.  The 'uname -r' command on my system yields the following:  3.15.4-1-ARCH .  It is no surprise, then, that at this late date, Qt5 is complete (or at least more complete) than back in 2013 when I had the original problems, and had to select the 'WANTS-QT4' section during the 'ccmake ..' command.
    **** Building kvirc this way places the kvirc binary in /usr/local/bin, and a certain 'libkvilib.so.4' library in /usr/local/lib ****.
    This is to be expected from a standard source compile on most gnu/linux systems; and this *is* a standard compile, even though we're using the 'ccmake ..' command to do the preliminary configuration and cmakefile generation.)
    The problem is, is that Arch is looking for libkvilib.so.4 in /usr/lib, and not /usr/local/lib.  So the following was, for me, the solution that got everything squared away:
    I made a symlink in /usr/lib to /usr/local/lib/libkvilib.so.4, like this:
    {arch@homedir}$ cd /usr/lib
    {arch@homedir}$ sudo ln -s /usr/local/lib/libkvilib.so.4 libkvilib.so.4
    After doing this, I did:
    {arch@homedir}$ kvirc (or kvirc &)
    And It Ran Beautifully! :-)
    I hope you've enjoyed this HOWTO.  I know most people may just want to use the 4.2.x version of kvirc, currently residing safely in the standard repositories.  However, if you're like me, and want a bit of bleeding edge, Qt5 goodness with kvirc, I might suggest doing the above!
    I can be reached at firefishe At gmail DOT com if anyone has any questions.
    Last edited by Firefishe (2014-07-11 09:23:20)

    Hi Dareen,
    Looking at the information shared and also the error message ( Update Failed,Updates could not be applied.Please contact your Administrator if you wish to apply updates on your machine. Updates have been suppressed by the Administrator.If the problems persist, contact customer support for further assistance" ),
    It suggests that the updates were to be managed by the Admin only. Lets try the following step and suggest if this was able to resolve the concern that you have or not.
    1) Navigate to C:\Program Files (x86)\Common Files\Adobe\AAMUpdaterInventory\1.0 and you will find a .dat file ( AdobeUpdaterAdminPrefs.dat).
    2) Please open the file in question and you will find a line item : <Suppressed>1</Suppressed> .
    3) Please change the Value from 1 to 0 and save the file back in the same location.
    post the above step, try the installation once again and share the end result please.
    Cheers,
    Kartikay Sharma

  • Report Toolkit Standard Report Print Problem

    We are trying to print a label out on a Zebra QL220+ Thermal Printer.  Using the Report Generation Toolkit and selecting the Report Type as "WORD" it works fine.  However by ONLY changing the Report Type to "STANDARD REPORT" it still prints out the label OK, but then scrolls out another blank label - it's like some sort of form feed character/command is somehow being appended.
    We don't want to use the WORD Report Type, because I assume we have to install MS Office, which we don't want.
    As you can see from the attached VI, it is just some very basic text that we are writing to the Label.
    Is there some way we can see what data is actually being sent to the Printer for the two different Report Types?
    Chris
    Attachments:
    Zebra Label Print.vi ‏43 KB

    If your printer is networked you would open a TCP connection on port 6101 to the printer. If serial simply send the data via normal VISA commands.
    Here is the CPCL for the one example label in your code:
    ! 0 200 200 440 1
    TEXT 0 2 10 10 Date: <DATE>
    TEXT 0 2 10 30 Time: <TIME>
    TEXT 0 2 10 50 Operator: <INITIALS>
    TEXT 0 2 10 70 Location: <LOCATION>
    TEXT 0 2 10 90 Reason: <REASON>
    TEXT 0 2 10 110 Post Comment: <COMMENT>
    TEXT 0 2 10 130 S/N: <SN>
    TEXT 0 2 10 150 Dryness Fraction:
    TEXT 0 2 10 170 Signature:
    LINE 100 190 300 190 1
    PRINT
    In the above label you would programmatically replace the "<x>" fields with the actual data you wanted printed. For your multiple S/Ns you would use a loop to add the lines with each S/N.
    From the CPCL manual here are the pages for the elements I used above:
    TEXT Commands
    The TEXT command is used to place text on a label. This
    command and its variants control the specific font number
    and size used, the location of the text on the label,
    and the orientation of this text. Standard resident fonts
    can be rotated to 90° increments as shown in the example.
    Format:
    {command} {font} {size} {x} {y} {data}
    where:
    {command}: Choose from the following:
    TEXT Prints text horizontally.
    (or T)
    VTEXT Prints text (vertically) rotated 90
    (or VT) degrees counterclockwise.
    TEXT90 (Same as VTEXT above.)
    (or T90)
    TEXT180 Prints text (upside down) rotated
    (or T180) 180 degrees counterclockwise.
    TEXT270 Prints text (vertically) rotated 270
    (or T270) degrees counterclockwise.
    {font}: Name/number of the font.
    {size}: Size identifier for the font.
    {x}: Horizontal starting position.
    {y}: Vertical starting position.
    {data}: The text to be printed.
    LINE Commands
    Lines of any length, thickness, and angular orientation
    can be drawn using the LINE command.
    Format:
    {command} {x0} {y0} {x1} {y1} {width}
    where:
    {command}: Choose from the following:
    LINE Prints a line.
    (or L)
    {x0}: X-coordinate of the top-left corner.
    {y0}: Y-coordinate of the top-left corner.
    {x1}: X-coordinate of:
    - top right corner for horizontal.
    - bottom left corner for vertical.
    {y1}: Y-coordinate of:
    - top right corner for horizontal.
    - bottom left corner for vertical.
    {width}: Unit-width (or thickness) of the line.
    <!> {offset} <200> <200> {height} {qty}
    where:
    <!>: Use '!' to begin a control session.
    {offset}: The horizontal offset for the entire label.
    This value causes all fields to be offset
    horizontally by the specified number of
    UNITS.
    <200>: Horizontal resolution (in dots-per-inch).
    <200>: Vertical resolution (in dots-per-inch).
    {height}: The maximum height of the label.
    The maximum label height is calculated by measuring
    from the bottom of the first black bar (or
    label gap) to the top of the next black bar (or label
    gap). Then 1/16” [1.5mm] is subtracted from this
    distance to obtain the maximum height. (In dots:
    subtract 12 dots on 203 d.p.i printers; 18 dots on
    306 d.p.i. printers)
    {qty}: Quantity of labels to be printed.
    Maximum = 1024.
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot

  • Is it possible to change the position of beining of text in a standard report

    Hi,
         I am wondering wether it is possible to change the position of the test (the starting point) in a standard report. I would like to print a label with different texts at different positions. If its not possible in a standard report is there any other way to do it.
    Thank you,
    Mudda.

    Hi Mudda, I don't see any way myself to set any particular starting position for your text. It looks like the best way to emulate this behavior would be to add a new line with lots of tab characters or spaces to place your new text at a specific offset from the left. You can also use Append Table to Report and wire in a 2D string array with only a few positions filled in with your various text labels as shown below. This will space text labels pretty well across the page. Try it out and see if it works for you. You could be more clever and build the 2D array programmatically if you wanted more control over position.
    Message Edited by Jarrod S. on 06-02-2006 05:37 PM
    Jarrod S.
    National Instruments
    Attachments:
    Set_Report_Position.JPG ‏69 KB

  • How to add new text field in standard report

    how to add new text field in standard report?

    Hi,
    I presume you are talking about a report display in ALV and u wish to add a column to it .
    If it is a global requirement ,as in table being used there in ALV can be modified, then you can append the table and the system should pick up the same automatically from there.
    Otherwise , you can make a Z program . Modify the catalog being used in ALV.
    Regards,
    Shweta

  • Can "Standard Report Column" be the Default Instead of "Display as Text"

    Almost every report region I write has some html in at least one column, whether it's a break or an apex_item or something else. Hence, when the region renders with the default settings, the column shows the html code - I have to change the column display type from "Display as Text" to "Standard Report Column".
    Is there some setting to make "Standard Report Column" the default? (Isn't that kind of what the word Standard implies?)
    Thanks,
    Gregory

    That Other Fellas Brother wrote:
    Almost every report region I write has some html in at least one column, whether it's a break or an apex_item or something else. Hence, when the region renders with the default settings, the column shows the html code - I have to change the column display type from "Display as Text" to "Standard Report Column".
    Is there some setting to make "Standard Report Column" the default? (Isn't that kind of what the word Standard implies?)In earlier versions of APEX "Standard Report Column" was the default. The default was changed in APEX 4.0 to "Display as Text" (which escapes HTML-sensitive characters) as a security measure to limit vulnerability to XSS attack. This is necessary for the protection of users and (so-called) developers who are not security conscious/HTML savvy.
    There's no option to change this, and I doubt that one will be provided in the future. The indications are that the Oracle APEX team are committed to blocking as many security holes as possible by default, leaving it to the developer to consciously make any modifications that increase the surface exposed to attack.

  • Standard report center text in table

    Hello,
    I am new to LabVIEW 2011 running Windows 7. 
    I am trying to run and print standard report in LabVIEW but I couldn't figure out how to make text or data to center in the table.
    See pic below.
    Please help.
    Thank you so much in advance.
    Marlin12

    Certainly,
    Please see the attachments.
    marlin12
    Attachments:
    front.GIF ‏37 KB
    back.GIF ‏27 KB

  • Problem with non iPhone users receiving my text sent pictures. Can I make them smaller files?

    Problem with non iPhone users receiving my text sent pictures.  Can I make them smaller files? I know that is possible for email sent pics.

    My bad,  It was a Verizon problem.  When they upgraded my phone they were supposed to remove all blocks on messaging . Found out they did not do this.  All messaging now works.  Thanks for listening.

  • Standard Report - Append Control Image Width Problem / Limitation or Bug?

    I am trying to create a Standard Report and am having a hard time placing a XY Graph control on the report. My problem is I want to use the maximum page area to view the graph. For this reason, I am keeping the margins small and increasing the size of the control so that it occupies almost all of the page. What I find is that after a certain limit, the XY graph image output on the report does not increase in size even if you increase the control size. In fact the image will get worse with larger size once beyond the limit. No matter How I try, the Image will not occupy all the area between the Horizontal Margins.
    Either this is a bug or undocumented limitation.
    Ahh.. One other possibility exists, that I am not smart enough. But if some one can help me here, It will be greatly appreciated.
    I am Using LV 8.2 on XP machine.
    I am attaching the VI and two PDF files, In "MyReport w1000.pdf" The XY Graph is 1000 Pixels Wide. In "MyReport w2000.pdf" I made it 2000 Pixels wide, however the size of the image did not increase on the report. Also You can notice the difference in quality between the two reports.
    To use my vi just size the graph to different sizes and run it, It will output to the default Printer. If you have a PDF writer set as default printer, It will save it to file.
    If anyone can help, I thank you and wish you...
    Good Luck!
    Mache

    I do not like Vivek's workaround. "Use HTML report"  is not acceptable when the question is about Standard report. People may want to use Standard report and there is a reason it is called standard.
    Anyway one solution is to size the image to most optimum size - as large as possible but retaining the graphical quality. This will still leave you with large white spaces around your graph object.
    Second solution that I am using is to Put the graph object and any other elements that I want on my report on a Front panel of a VI. Size the objects and front panel and objects appropriately and then use Print Panel to Printer method to Print the whole VI front panel. In my app. This VI which mimics the report is called from my app and is called Print Preview.  There is even a Vi that allows you to choose the printer. http://zone.ni.com/devzone/cda/epd/p/id/1327
    I am attaching a Sample Report and Code Snippet to look at.
    Good Luck!
    Mache
    Attachments:
    Labview Document.pdf ‏21 KB
    Print Code.jpg ‏30 KB

  • CSS 11501 ftp server setup problem using non-standard port

    Dear Expert,
    we would like to setup FTP server over CSS where our member sever use non-std-port to open both control/data channel (i.e. 6370 as ctrl and 6369 as data this case.) but seems we only get Passive mode FTP mode work only but not for Active mode FTP case for data channel establishement for server back to client...is there any professional advise can help on this case...? here is our setup info FYI
    #  sh ver
    Version:               sg0820501 (08.20.5.01)
    Flash (Locked):        08.10.1.06
    Flash (Operational):   08.20.5.01
    Type:                  PRIMARY
    Licensed Cmd Set(s):   Standard Feature Set
                           Secure Management
    CVDM Version:          cvdm-css-1.0_K9
    !*************** Global
    ftp data-channel-timeout 10
      ftp non-standard-ports
    !************************** SERVICE **************************
    service ftp_ftpgtw
      keepalive maxfailure 2
      keepalive frequency 15
      keepalive retryperiod 2
      keepalive type tcp
      ip address 192.168.52.170
      protocol tcp
      keepalive port 6370
      port 6370
      active
    # sh run group drfusegtwftp_grp 
    !*************************** GROUP ***************************
    group gtwftp_grp
      vip address 192.168.52.28
      add service ftp_ftpgtw
      active
      content ftp_gtwpkg-ftpgtw
        add service ftp_ftpgtw
        vip address 192.168.52.28
        port 21
        protocol tcp
        application ftp-control
        active

    Thanks for your confirmation on no prob found in config level 1st..:P..as to save us a lot of time in isolating problem at this level.
    What we can notice is seems the data port connection is fail to open  for server back to client....for our general sense..... the flow expected should be:
    TCP session A -- Client:1234 --> VIP:21 --> member svr:6370
    TCP session B -- Client: 5678 <--> VIP:20 <--> member Svr: 6379 [on demand generated between server/client]
    but we can only see session B fail  to setup when client side access VIP site on CSS..even we try to put the most standard case as below
    TCP session A -- Client:1234 --> VIP:21 --> member svr:21
    TCP session B -- Client: 5678 <--> VIP:20 <--> member Svr: 20
    we still unable to make the Active mode FTP access work either...hence we got no idea on how CSS handle FTP access when it involve services over multiple tcp ports..
    and from CSS xlate view...the problem is we can only see what NAT IP that used in CSS connect to client...but no way to confirm for which port for VIP using outgoing to client. neither it is dropped by CSS..nor it is never setup from VIP to Client side.

  • How to solve sync problem between Outlook calendar and iPhone when reminder is set to _some_ non-standard values?

    Hi,
    I am having a sync problem between my iPhone/iPad and Outlook calendar events (Outlook 2010).
    Here is the description of the problem:
    1. In Outlook - please create a new event/appointment (e.g. "Test").
    2. Reminder is set by default to 15 minutes. You can change it by using a dropdown menu - please select: "0,5 days".
    3. Click on "0,5 days" and change it manually to "14,5 days".
    4. Click on "Save & Close".
    5. (Do not snooze or dismiss the reminder.)
    6. Sync with your iPhone/iPad.
    7. Open this new event on iPhone/iPad - you can see that alert is set to "15 minutes before" instead to a correct value that was set in Outlook.
    The same problem can be seen if you set the reminder to e.g. "3 weeks" (standard value is "2 weeks").
    However, it is interesting that non-standard values like "1,5 days" (and all other until "13,5 days") are synced without any problem.
    Does anyone have a solution how to solve this problem (different than the trivial solution of not using those strange values)?
    Thanks!

    Thanks to another post (https://discussions.apple.com/message/17501071#17501071) I reset the sync history, here is what to do: 
    Launch iTunes.
    Before you hook up your iPhone to the PC and iTunes do this: Go to iTunes Edit menu > Preferences… > select the iPhone > click the Reset Synch History button > click OK.
    Connect the iPhone to the PC and let iTunes recognize it.
    In the top right corner is the iPhone icon, click on the left side of the iPhone icon > the iPhone menu launches.
    In the menu along the top click on Info > make your selections > click Sync button > it gives you a dialog at the top with the steps it’s going through during the sync.
    In the top left of the iTunes app > click Exit.

Maybe you are looking for

  • How do I get the date of a file in an FTP?

    As stated in the subject. I am at wits end trying to get the date of a file from FTP(Stuck for days). I tried the "URLConnection" Class but could only get me the size of the file with "getContentLength()" "getContentDate()" & "getLastModified()" both

  • Files dissapeared in Captivate 5.5

    I am wondering if anybody experienced the problem where suddenly the Captivate project files, .doc , .mp4 disappear after PC restart from my project folder. I rebooted my PC several times during the project but suddenly it is gone. I also work on oth

  • Solaris 10 NIC Configuration Partly Works; Manual ifconfig changes lost.

    I have installed 11/06 Solaris 10 on a Dell Optiplex GX260. It has a 3Com3C905FX NIC and the mother board NIC. I turned the mother board NIC on in the BIOS because the installation didn't find the 905FX NIC. When I run /usr/sbin/prtconf -pv |moreI ge

  • Creating a Root ApplicationModule in a Web Service Environment

    Using Jdeveloper 11.1.1.2.0 I was thinking of posting this question in the SOA thread but i think this is more of an ADF question. Basically, i have a web service where i utilize an ApplicationModule to give me my rowset that i use to populate my Web

  • Persistance Exception & Mapping Exception

    2010-11-29 11:08:43,406 main FATAL [com.ofss.fc.app.card.service.card.CardAccLinkageApplicationService] (CardAccLinkageApplicationService.java:109) FCRRunTimeException from CardAccLinkageApplicationService.addCardAccLinkage com.ofss.fc.infra.das.exce