Pls solve this tension

my query is that i have to take input from 1 file & produce output
the input file is in csv format we have some inputs in this file this input i have to give directly to any webpagewithout entering it manually.means once running the program it automatically
takes input from that file & pass it into required web page after showing results we have to scrap that data & store that data into variables & have to generate scripts

Hi Jagadish,
first of all, as Detlev said in your last <a href="https://forums.sdn.sap.com/thread.jspa?threadID=94978">thread</a>, please be more specific when you asking questions here on SDN.
Second, by using thread names like "pls solve this one", you will not attract more readers like you might think but either the contrary. And it would be also better for the search to use a "speaking" thread name.
Now to your question: To integrate a website in your portal, create a new iView of type "URL iView" and specify the URL there. You could also capture parts of Websites on iViews. After you have created the iView(s), assign it to roles and those to users.
For more information on creating Web-Based URL iViews check this <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/f5/eb51730e6a11d7b84900047582c9f7/frameset.htm">link</a>.
Hope this is what you were asking.
Best regards,
Robert
Last remark: If you ask questions here on SDN like in this  <a href="https://forums.sdn.sap.com/thread.jspa?threadID=94978">thread</a>, please return and answer your replies or at least validate them by assigning points. Thanks!

Similar Messages

  • When i zoom pic then coming some Black or wight boxes in image or when zoom agin they it will come in ohere side in picture pls solv this problom. this problom start when i update photoshop cc 2014

    When i zoom pic then coming some Black or wight boxes in image or when zoom agin they it will come in ohere side in picture pls solv this problom. this problom start when i update photoshop cc 2014

    in mac command-k
    preferences/interface/Workspace/Reset
    or in windows control-k
    preferences/interface/Workspace/Reset

  • I have iphone 3gs . that i erased all the contents , it going on process for more than 23 hours pls solve this

    iphone 3gs
    i erased all the contents .its going on process for more then 23 hours pls solve this
    pls pls pls pls
    thanks & regards
    ganesh

    Something has gone wrong. Force the phone into recovery mode, as described here, & restore it:
    http://support.apple.com/kb/ht1808

  • HI.....can u pls solve this MODULEPOOL Thread

    CAN WE INSERT LOGO IN MODULE POOL.
    IF YES PLS SAY THE PROCEDURE.

    Hi,
    u can check the below thread
    Module poolu0085.logo insert in the screen
    sample code from that.............
    You can display logo(s) on your screen using the custom control function. A custom control is an area on the screen, created using the screen painter. Custom controls are used to embed controls. Container controls are instances of special global classes from the SAP Control Framework. The global class for custom controls is called CL_GUI_CUSTOM_CONTAINER. To link a custom control to a container control, pass the custom control name to the CONTAINER_NAME parameter of the container control constructor when you instantiate it. The following is a sample program to demonstrate the logo display using the custom control. This program was written in SAP4.6C. Design a screen with the custom control, by name PICTURE_CONTAINER. It has the following flow logic:
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_0100.
    PROCESS AFTER INPUT.
    MODULE CANCEL AT EXIT-COMMAND.
    The GUI status SCREEN100 has the functions BACK, EXIT, and CANCEL (all with type E).
    Code
    REPORT ZLOGO_TEST .
    Type declarations.....................
    TYPES pict_line(256) TYPE c.
    data declarations......................
    DATA :init,
          container TYPE REF TO cl_gui_custom_container,
          editor    TYPE REF TO cl_gui_textedit,
          picture   TYPE REF TO cl_gui_picture,
          pict_tab TYPE TABLE OF pict_line,
          url(255) TYPE c.
    CALL SCREEN 100.
    Dialog modules......................................
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'SCREEN100'.
      IF init is initial.
        init = 'X'.
        CREATE OBJECT:
               container  EXPORTING container_name = 'PICTURE_CONTAINER',
               picture    EXPORTING parent = container.
      ENDIF.
      IMPORT pict_tab = pict_tab FROM DATABASE abtree(pi) ID 'ENJOY'.
      CALL FUNCTION 'DP_CREATE_URL'
           EXPORTING
                type    = 'IMAGE'
                subtype = 'GIF'
           TABLES
                data    = pict_tab
           CHANGING
                url     = url.
      CALL METHOD picture->load_picture_from_url EXPORTING url = url.
      CALL METHOD picture->set_display_mode
           EXPORTING display_mode = picture->display_mode_fit_center.
    ENDMODULE.
    MODULE cancel INPUT.
      LEAVE TO SCREEN 0.
    ENDMODULE.
    ~~Naveen

  • Pls solve this problem

    SELECT * FROM nameofmonth ORDER BY TO_CHAR ( 'AUG','SEP','OCT','NOV','DEC','JAN','FEB','MAR','APR','MAY','JUN','JUL');
    my database is
    name
    JAN
    FEB
    MAR
    APR
    MAY
    JUN
    JUL
    AUG
    SEP
    OCT
    NOV
    DEC
    and i want output as
    name
    APR
    MAY
    JUN
    JUL
    AUG
    SEP
    OCT
    NOV
    DEC
    JAN
    FEB
    MAR

    SELECT   *
        FROM nameofmonth
    ORDER BY DECODE (NAME,
                     'AUG', 4,
                     'SEP', 5,
                     'OCT', 6,
                     'NOV', 7,
                     'DEC', 8,
                     'JAN', 9,
                     'FEB', 10,
                     'MAR', 11,
                     'APR', 0,
                     'MAY', 1,
                     'JUN', 2,
                     'JUL', 3
                    );Regards,
    Mahesh Kaila

  • I cant get the output,,pls solve this

    declare
    TYPE temp_table is varray(10000) OF employees%ROWTYPE;
    a temp_table;
    cursor c1 is
    select * from employees;
    begin
    open c1;
    fetch c1 bulk collect into a;
    close c1;
    for indx in a.first..a.last loop
    dbms_output.put_line(a(indx));
    end loop;
    end;
    Edited by: 794244 on Oct 7, 2010 12:25 AM

    SQL> set serverout on
    SQL> declare
      2    TYPE temp_table is varray(10000) OF employees%ROWTYPE;
      3    a temp_table;
      4    cursor c1 is
      5      select * from employees;
      6  begin
      7    open c1;
      8    fetch c1 bulk collect
      9      into a;
    10    close c1;
    11    for indx in a.first .. a.last loop
    12      dbms_output.put_line(a(indx).first_name||'--'||a(indx).last_name);
    13    end loop;
    14  end;
    15  /
    My Name--King
    NEENA--Kochhar
    Lex--De Haan
    Alexander--Hunold
    Bruce--Ernst
    David--Austin
    Valli--Pataballa

  • TS1702 I bought 10 pound credit from iTunes through my smart call app but I did not get pls send my money back they said report to iTunes  pls shortout this problem

    Pls solve this problem as soon as possible

    These are user-to-user support forums, so no one here can do anything for you in regards to this issue. I don't know what you mean by a "smart call app", but if you purchased a gift directly from the iTunes Store via the iTunes Store app or App Store app or though iTunes on your computer, go here:
    http://www.apple.com/support/itunes/contact/
    and follow the instructions to report the issue to the iTunes Store. If this was a purchase or promotion from some other company or web site, you will need to contact whoever runs that site/promotion for assistance.
    Regards.

  • Solve this :about internal tables

    hi experts,
    could u pls solve this query asap.
    i have 7 internal tables,
    in  one internal table i've field
    orgunits
    1
    2
    3
    4
    in other internal tables i have fields like this
    orgunits       personalnumbers
    1                     11
    2                     12
    1                     13
    1                     14
    3                     15
    1                     16
    now i want how many personalnumbers in each orgunit.
    i want the count.
    so, how can i solve this in short coding.
    example :for orgunit 1----
    the count is 4.(11,13,14,15).
    pls explain with coding as soon as possible.
    thanks all.
    Message was edited by:
            devender reddy

    REPORT  ZTEST_00000 message-id zmsg.
    data : cnt type i.
    data : begin of itab1 occurs 0, "internal table with all org units
    org type i, "change data type
    end of itab1.
    data : begin of itab2 occurs 0, "internal table with org units and pernrs
    org type i, "change data type
    per type i, "change data type
    end of itab2.
    data : begin of itab3 occurs 0, "internal table with org units and count of pernrs
    org type i,
    count type i,
    end of itab3.
    itab1-org = 1.
    append itab1.
    clear itab1.
    itab1-org = 2.
    append itab1.
    clear itab1.
    itab1-org = 3.
    append itab1.
    clear itab1.
    itab1-org = 4.
    append itab1.
    clear itab1.
    itab2-org = 1.
    itab2-per = 10.
    append itab2.
    clear itab2.
    itab2-org = 1.
    itab2-per = 11.
    append itab2.
    clear itab2.
    itab2-org = 2.
    itab2-per = 9.
    append itab2.
    clear itab2.
    itab2-org = 2.
    itab2-per = 4.
    append itab2.
    clear itab2.
    itab2-org = 2.
    itab2-per = 7.
    append itab2.
    clear itab2.
    itab2-org = 3.
    itab2-per = 11.
    append itab2.
    clear itab2.
    itab2-org = 4.
    itab2-per = 14.
    append itab2.
    clear itab2.
    sort itab2 by org per.
    sort itab1 by org.
    loop at itab2.
    at new org.
    clear cnt.
    endat.
    cnt = cnt + 1.
    at end of org.
    itab3-org = itab2-org.
    itab3-count = cnt.
    append itab3.
    clear itab3.
    endat.
    endloop.
    loop at itab1.
    read table itab3 with key org = itab1-org.
    if sy-subrc <> 0.
    itab3-org = itab1-org.
    itab3-count = 0.
    append itab3.
    clear itab3.
    endif.
    endloop.
    sort itab3 by org count.
    loop at itab3.
    write :/ itab3-org , itab3-count.
    endloop.
    Regards
    vasu

  • Solve this error pls 'java.lang.classNotFoundException' (For J2ME, WT2.5.2)

    Hi All,
    I am a new learner in J2ME. I m using WT2.5.2. When i press button to execute 'Hello MIDlet' program it shows
    "Exception:java.lang.classNotFoundException" - this error in the Default Phone screen
    and
    the following ERROR shows in the Wirless Toolkit (WT) editior::
    Project "HelloSuite" loaded
    Project settings saved
    Building "HelloSuite"
    Build complete
    Running with storage root C:\Users\Kalam\j2mewtk\2.5.2\appdb\temp.DefaultColorPhone2
    Running with locale: English_United Kingdom.1252
    Running in the identified_third_party security domain
    Unable to create MIDlet HelloMIDIlet
    java.lang.ClassNotFoundException: HelloMIDIlet
         at com.sun.midp.midlet.MIDletState.createMIDlet(+29)
         at com.sun.midp.midlet.Selector.run(+22)
    i can run the demo program but my one is not running. i copy the program from java tutorial.
    Can u pls solve my problem and encourge me to work with J2ME. Thank u very much my friends.
    thnx
    Kalam

    Hi Darryl,
    I saved this code as a "HelloMIDlet.java" in src folder of WT [and the "HelloSuite" as Midlet name, when we create project in WT u know it asks for Midlet name.
    this code doesn't have compile time error.
    it got runtime error cas in bin it got - HelloSuite.jd, MANIFEST.MF , there should be one more file which is .jar but it doesn't create.
    i hope now u understand whts the error can u pls tell me or can u tell me the source how can i learn more about this.
    thnx
    kalam                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • After updating to iOS 6.0 everything is a mess. i cant get in my CO app game, imessages undelivered, worst of all i cant connect to Apps store. If u were able to solve this pls let me know. or if possible to return to old OS 5.1 that is much better. HELP!

    after updating to iOS 6.0 everything is a mess. i cant get in my CO app game, imessages undelivered, worst of all i cant connect to Apps store. If u were able to solve this pls let me know. or if possible to return to old OS 5.1 that is much better. HELP!

    I had the same experience with a new iPhone 5 that I bought  last week. Did not have a chance to measure battery life before the 6.0.2 upgrade installed but I set up my phone exactly like my 4S and immediately started running out of power after short periods. Went to Xmas get together with fully charged 5 and 4S. Heading home the iPhone 5 shut down for low battery and the 4S had 65% power. Both phones had two half phone calls on then and no data usage.
    That night I fully charged the iPhone 5 and, without lighting it up, put it on my night table. Next morning I picked it up and looked at battery indicator and I had 42% charge with NO activity!
    Tried it again next night and wound up with 37% charge. (Slept longer).
    Today I called the carrier and reactivated the 4S.  Took the 5 to Apple Store and they kindly gave me choice of new replacement phone or refund. I took the refund. Uniquely, the Apple Store said it was Verizon CDMA phones that were coming back.
    The are other strings on this with temporary solutions, but from my experience with 7 firmware changes on an HTC 4G phone the problem will continue because the solution will be hardware caused. We are in the days where RTM means Rush to Market - not Release To Manufacturing.
    I fear the only solution is to either wait for the next model (I did not notice a really major change in performance over the 4S in LTE heavy Seattle area) - or switch to another manufacturer.
    It might be useful for these forums to indicate if you have a GSM or CDMA phone to see which have more problems.
    Discouraged....

  • How to solve this problem, pls help when I try to see remote camera system from home."Dual streaming is required for HTML viewing"

    How to solve this problem, pls help when, I try to see remote camera system(spec dvr) from home. The Error I get is "Dual streaming is required for HTML viewing"

    I had the same probelm and found that the problem lies with 64bit programs such as safari and microsoft internet explorer. I have resolved the issue on my PC based server by using a 32 bit ie and same on my mac by using the same running windows under parallels.
    So far the problem with the 64 bit side of it is still to be resolved.
    Hope this helps and gets you guys up and running until suchtime a 64 bit solution is found.
    Craig

  • HT1766 i couldn't play my ipad as there is a window pop-out telling that my ipad hasn't been backed up in 2 weeks. Backups happen when this ipad is pluggud in, locked and connected to Wifi. Pls help to repair and solve this problem

    there is a window pop-out telling me that 'the ipad hasn't been backed up in 2 weeks. Backups happen when this ipad is plugged in, locked and connected to wifi". How to repair or solve this problem? I have tried to plug in the ipad into my laptop, but i cound not solve this problem too. Pls help.
    Thank you.
    Regards,
    Yong

    Do a device reset as outlined below. This will clear the message and allow you to use your device again.
    Device Reset (won't affect settings/data/music/apps/etc)
    1. Press and hold (& continue to hold) BOTH the Sleep/Wake button & the Home button.
    2. Continue to hold BOTH (ignoring any other messages that may show) until you see the Apple logo on the screen.
    3. Release BOTH buttons when you see the Apple logo and allow the device to boot normally.

  • PLS help me in solving this-sending multiple smss

    Hi all,
    ive developed an application which is capable of sending smss. when i send 300 characters as a single sms, the default system automatically devides into 2 smss and send to the destination, and at the destination all the characters are reassembled and displayed as a single message.
    this works perfectly well.(but that also support upto 6 messages)
    now i want to send the 300 characters as 2 smss. but it only works foe one sms, the first sms out of two, will only be sent to the destination.
    the second sms has been ignored totally, no exceptions no errors.
    ill write down the code here,
    try{
    smsconn1 = (MessageConnection)Connector.open(address);
    TextMessage txtmessage1 =
    (TextMessage)smsconn1.newMessage(MessageConnection.TEXT_MESSAGE);
    txtmessage1.setAddress(address);
    txtmessage1.setPayloadText(mes);
    smsconn1.send(txtmessage1);
    catch (Throwable t) {
    System.out.println("Send caught: ");
    t.printStackTrace();
    if (smsconn1 != null) {
    try {
    smsconn1.close();
    catch (IOException ioe) {
    System.out.println("Closing connection caught: ");
    ioe.printStackTrace();
    try{
    smsconn1 = (MessageConnection)Connector.open(address);
    TextMessage txtmessage1 =
    (TextMessage)smsconn1.newMessage(MessageConnection.TEXT_MESSAGE);
    txtmessage1.setAddress(address);
    txtmessage1.setPayloadText(s);
    smsconn1.send(txtmessage1);
    catch (Throwable t) {
    System.out.println("Send caught: ");
    t.printStackTrace();
    if (smsconn1 != null) {
    try {
    smsconn1.close();
    catch (IOException ioe) {
    System.out.println("Closing connection caught: ");
    ioe.printStackTrace();
    only the underlined portion works.
    ive done all sort testings by adding delays, Thread.sleeps() and so on.
    bt none work.
    i want to get rid of the systems' Segmentation and reassembly feature ,and use my own segmentation method. bt failed up to now.
    pls pls if any one can assist me in solving this pls reply as soon as possible,
    pls pls i really need ur help.
    thanks in advance
    dushi
    Message was edited by:
    dush82

    Try sending both the messages using the same connection instead of closing and reopening the Connection object again.
    smsconn1.send(txtmessage1);
    // Set some delay abt 3 milli sec. here by creating a low priority thread.
    // Kindly do not use Thread.sleep() here.
    smsconn1.send(txtmessage2);
    Hope this must resolves your problem.
    ~Mohan

  • I have upgraded my Iphone 4s to 7.0.3 and after that my phone is not charging at all if i leave my phone for charging for more then 24 hours it will charge upto 50%. How do i solve  this issue ?? pls suggest ??

    I have upgraded my Iphone 4s to 7.0.3 and after that my phone is not charging at all if i leave my phone for charging for more then 24 hours it will charge upto 50%. How do i solve  this issue ?? pls suggest ??

    Even if it is a hardware problem they should fix it regardless of warranty. If you buy a car and after 1.5 years the doors fall off due to a failure in their design and construction, do you think the car manufacturer could pull off what Apple is trying to do? Yes the car still delivers its primary objective of driving from A to B, but significant functionality has been lost due to their fault.
    It is the same with this iPhone wifi problem. Apple are a disgrace, I have had significant Apple Hardware failures with my MacBook Pro and iPhone within 2 years of purchase. Pathetic quality.

  • How do I copy files onto a hard drive (device) from Mac 2 7 pc. I'm able to transfer files from device but cannot transfer files to device. Anyone had same problem or can help solve this problem? Help pls

    how do I copy files onto a hard drive (device) from Mac 2 7 pc. I'm able to transfer files from device but cannot transfer files to device. Anyone had same problem or can help solve this problem? Help pls

    Welcome to Apple Support Communities
    When you try to copy data to the external drive, what happens? If you don't see any error, the external drive is formatted in NTFS, and OS X can't write in it.
    To be able to write on this external drive, you have to use an app like Paragon NTFS. Another solution would be to format the external drive in FAT32 or exFAT with Disk Utility > http://pondini.org/OSX/DU1.html Make sure you copied all the files of the external disk to the internal disk before doing it

Maybe you are looking for