Wht is call chaning?

hi,
wht is call chaning?
is this work's in java
sum(sum(sum(2)));

Please use code tags next time. Either use the button labelled code, above the textarea while posting or manually wrap your code in code tags like this:
{code}
//Your code here
{code}
to have it formatted like this:
    //Your code hereChaining basically allows you to call a method on the object returned by another method call without needing to use a reference variable. For example, you can write:
String testString = "  My String  ";
String testString2 = testString.trim(); //returns "My String";
String testString3 = testString2.toUpperCase(); //returns "MY STRING";
String finalString = testString3;As you can see, testString2 and testString3 are not being used beyond these three statements; we actually only want testString and finalString.
The same thing can be written using method chaining as:
String testString = "  My String  ";
String finalString = testString.trim().toUpperCase();                            And this will only work for methods that return an object. If the method call returns a primitive or nothing ( signature has void ), then you obviously can't call anything on that.
That's why your code fails to compile:
hum ref=new hum();
ref.sum(5).sum(5);sum() returns nothing. If you modified it to return int, that also would not work since it's a primitive. If you returned Integer, you could probably call a method on that. But not sum() since sum() isn't defined in Integer.
And no, it's not the same as concatenation. That's something to do with strings.
Edited by: nogoodatcoding on Oct 30, 2007 12:49 PM

Similar Messages

  • Debugging - Wht is CALL STACK, OVERVIEW etc.

    Hi Experts,
    As am working with user-exits for VA01, VL01N etc., When I want to debug these VA01, VL01N tx, as we know, there is huge SAP code, so ,i guess, in this regard, <i><b>CALL STACK, OVERVIEW, Menu--->debugging updation</b></i> etc, helps to trace out our requirement!! so, pls, clarify that, in debugging mode,
    1) How Can I use CALL STACK or Wht is the role of it?
    2) How Can I use OVERVIEW or Wht is the role of it?
    3) How Can I use mENU-->Debugging Updation or Wht is the role of it?
    Thanq.

    Hi Srikhar,
    Please refer to the below chart for the uses and the roles of all the modes in debugging.
    Display Modes Available Using Pushbuttons
    Fields
    The scrollable field display contains the contents of up to eight fields. The contents of the three most important system fields are always displayed. This is the default display mode in the Debugger. See also:
    Processing Fields
    Table
    Displays the contents of an internal table. This mode allows you to display and edit the entries in an internal table. also:
    Processing Internal Tables
    Breakpoints
    A scrollable display containing up to 30 breakpoints. Next to each breakpoint is a counter. You can also delete breakpoints in this display. See also:
    Managing Dynamic Breakpoints
    Watchpoints
    You can set a watchpoint for a field so that the program is interrupted whenever the value of that field changes. This display mode contains a list of watchpoints, the fields and programs to which they are assigned, the current values of the fields, and the conditions upon which the watchpoint is activated. See also:
    Setting Watchpoints
    Calls
    This mode displays the current sequence of events, and the sequence of calls up to the current breakpoint. The last active call is displayed at the top of the list; previous calls are listed in reverse chronological order. When an event (for example, START-OF-SELECTION) concludes, it is deleted from the display.
    Overview
    This mode displays the structure of the program. It lists its events, subroutines, and modules, and shows which sections belong to which events. It also displays the section currently being processed.
    Settings
    This mode displays the current Debugger settings. You can change the settings by selecting or deselecting various options. For further information, refer to:
    Settings and Warnings
    In case you have any further clarifications,do let me know.
    Regards,
    Puneet Jhari.

  • Wht is UPDATE TASK functionality in CALL FUNCTION??

    Hi Experts,
    Pls. clarify one of my simple doubt that, Wht is the functionality of UPDATE TASK, in following sttement?
    <i><b>call function 'Z_FM_1' in update task</b></i>
    I found SAP help as follow, but not understood??
    <i>Flags the function module func for execution in the update task. It is not executed at once, but the data passed with EXPORTING or TABLES is placed in a database table and a subsequent COMMIT WORK then causes the function module to be executed by the update task. Update function modules must be flagged as such in the Function Builder
    The return value is not set.</i>
    thanq

    Hi,
    It sounds like the FM was not called but it was (rollback process).
    And what is the difference between an update attribute assigning FM and this?
    You control the FM update process by setting the update module attribute.
    - Update with immediate start
    Set this option for high priority ("V1") functions that run in a shared (SAP LUW). These functions can be restarted by the update task in case of errors.
    - Update w. imm. start, no restart
    Set this option for high priority ("V1") functions that run in a shared (SAP LUW). These functions may not be restarted by the update task.
    - Update with delayed start
    Set this option for low priority ("V2") functions that run in their own update transactions. These functions can be restarted by the update task in case of errors.
    Regards,
    Ferry Lianto

  • Please my old verson iphone is block because yesterday i update but now i cannot open my icone only i can recive call and emergency call so please tell wht should i do for this problem.

    before my iphone need to update 41 softweare so yesterday i update but now i cannot open  its icone only emergency call only  but i can recive call so wht should i do for it.

    Are you getting a message about an unsupported SIM? It sounds like you had a phone that had been hacked to work on a network other than the one it was locked to and updating it has re-locked the phone to the original network.
    Where exactly did you get the phone? What network are you on? If you did not purchase your phone directly from DU or from Etisalat (assuming you are using a carrier in the UAE) or from a carrier in the country where you purchased the phone or directly from Apple, then you got a gray market phone and it was most likely hacked to unlock it in the first place. Most of these gray market, hacked phones come from the US and were originally locked to AT&T.
    Only the carrier the phone is locked to can authorize an unlock. If it is locked to AT&T, they will NOT authorize an unlock.
    If any of my assumptions are incorrect, I apologize.  We need more information, though to make a recommendation.

  • Wht is the wrong in this trigger i want to call a procedure from trigger sp

    --trigger
    CREATE or replace TRIGGER anotnegetive
    AFTER update OF id ON a
    REFERENCING NEW AS newRow
    FOR EACH ROW
    WHEN (newRow.id <= 10)
    call bprocedure
    BEGIN
    IF (:newRow.id < 0) then
    RAISE_APPLICATION_ERROR(-20000, 'no negative age allowed');
    else
    insert into a values(:newRow.id,:newRow.name);
    end if;
    end;
    --procedure
    create or replace procedure bprocedure as
    a varchar2(20);
    begin
    select name into a from b where id=10;
    dbms_output.put_line(a);
    end;

    can u reframe the Trigger as follows
    --trigger
    CREATE or replace TRIGGER anotnegetive
    AFTER update OF id ON a
    REFERENCING NEW AS newRow
    FOR EACH ROW
    Begin
    if :newRow.id <=10 and >0 then
    bprocedure;
    end if;
    IF (:newRow.id < 0) then
    RAISE_APPLICATION_ERROR(-20000, 'no negative age allowed');
    else
    insert into a values(:newRow.id,:newRow.name);
    end if;
    end;

  • Whts the difference between call transaction and session

    hi,
    can u plz tell me the differnces between call transaction method in BDC and session method.
    my doubt is even the call transaction method also can me scheduled using job scheduler then why do we need session method

    Hi
    BDC:
    Batch Data Communication (BDC) is the process of transferring data from one SAP System to another SAP system or from a non-SAP system to SAP System.
    Features :
    BDC is an automatic procedure.
    This method is used to transfer large amount of data that is available in electronic medium.
    BDC can be used primarily when installing the SAP system and when transferring data from a legacy system (external system).
    BDC uses normal transaction codes to transfer data.
    Types of BDC :
    CLASSICAL BATCH INPUT (Session Method)
    CALL TRANSACTION
    BATCH INPUT METHOD:
    This method is also called as ‘CLASSICAL METHOD’.
    Features:
    Asynchronous processing.
    Synchronous Processing in database update.
    Transfer data for more than one transaction.
    Batch input processing log will be generated.
    During processing, no transaction is started until the previous transaction has been written to the database.
    CALL TRANSACTION METHOD :
    This is another method to transfer data from the legacy system.
    Features:
    Synchronous processing. The system performs a database commit immediately before and after the CALL TRANSACTION USING statement.
    Updating the database can be either synchronous or asynchronous. The program specifies the update type.
    Transfer data for a single transaction.
    Transfers data for a sequence of dialog screens.
    No batch input processing log is generated.
    For BDC:
    http://myweb.dal.ca/hchinni/sap/bdc_home.htm
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/bdc&
    http://www.sap-img.com/abap/learning-bdc-programming.htm
    http://www.sapdevelopment.co.uk/bdc/bdchome.htm
    http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/69/c250684ba111d189750000e8322d00/frameset.htm
    http://www.sapbrain.com/TUTORIALS/TECHNICAL/BDC_tutorial.html
    Check these link:
    http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm
    http://www.sap-img.com/abap/question-about-bdc-program.htm
    http://www.itcserver.com/blog/2006/06/30/batch-input-vs-call-transaction/
    http://www.planetsap.com/bdc_main_page.htm
    call Transaction or session method ?
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Unable to call using sip communicator

    i am using sip communicator.to run it i ve installed ant and jdk1.4 .also set the path.then i run the bat file of sip communicator and configure it also.bt i cnt established the call.thr is some errors.
    again i am using my sip server.its domain name is bangla.net.in the sip-communicator.xml file i ve make some changes.its my xml file
    <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
    <log4j>
    <rootLogger value="net.java.sip.communicator.common.Console.TraceLevel, RFLogger"/>
    <appender>
    <RFLogger value="org.apache.log4j.RollingFileAppender">
    <layout value="org.apache.log4j.PatternLayout">
    <ConversionPattern value="%r [%t] %p %c{2} %x - %m%n"/>
    </layout>
    <MaxBackupIndex value="1"/>
    <File value="log/sip-communicator.app.log"/>
    <MaxFileSize value="256KB"/>
    </RFLogger>
    </appender>
    </log4j>
    <net>
    <java>
    <sip>
    <communicator>
    <FIRST_LAUNCH value="false"/>
    <ENABLE_SIMPLE value="false"/>
    <media>
    <!--- <PREFERRED_AUDIO_ENCODING system="false" value=""/> -->
    <PREFERRED_AUDIO_ENCODING value="0"/>
    <PREFERRED_VIDEO_ENCODING value="26"/>
    <MEDIA_SOURCE value=""/>
    <MEDIA_BUFFER_LENGTH value="100"/>
    <IP_ADDRESS value=""/>
    <AUDIO_PORT value="22224"/>
    <VIDEO_PORT value=""/>
    </media>
    <sip>
    <PUBLIC_ADDRESS value="sip:[email protected]"/>
    <TRANSPORT value=""/>
    <REGISTRAR_ADDRESS value="192.168.110.33"/>
    <USER_NAME value="20"/>
    <STACK_PATH value="gov.nist"/>
    <PREFERRED_LOCAL_PORT value=""/>
    <DISPLAY_NAME value="pranti"/>
    <REGISTRAR_TRANSPORT value="UDP"/>
    <REGISTRATIONS_EXPIRATION value="3600"/>
    <REGISTRAR_PORT value="5060"/>
    <FAIL_CALLS_ON_DEST_USER_MISMATCH value="false"/>
    <DEFAULT_DOMAIN_NAME value="bangla.net"/>
    <DEFAULT_AUTHENTICATION_REALM value="bangla.net"/>
    <WAIT_UNREGISTGRATION_FOR value="1100"/>
    <SAME_USER_EVERYWHERE value="true"/>
    <simple>
    <CONTACT_LIST_FILE value="contact-list.xml"/>
    <SUBSCRIPTION_EXP_TIME value="600"/>
    <MIN_EXP_TIME value="120"/>
    <LAST_SELECTED_OPEN_STATUS value="online"/>
    </simple>
    </sip>
    <!--
    net.java.sip.communicator.sipphone.IS_RUNNING_SIPPHONE=false
    net.java.sip.communicator.sipphone.MY_SIPPHONE_URL=http://my.sipphone.com
    -->
    <sipphone>
    <IS_RUNNING_SIPPHONE value="false"/>
    <MY_SIPPHONE_URL value="http://my.sipphone.com"/>
    </sipphone>
    <!--
    net.java.sip.communicator.gui.AUTH_WIN_TITLE=SIP Authentication!
    net.java.sip.communicator.gui.AUTHENTICATION_PROMPT=Please enter login name and password for the specified realm:
    net.java.sip.communicator.gui.USER_NAME_LABEL=SIPphone Number:
    net.java.sip.communicator.sipphone.USER_NAME_EXAMPLE=Example: 1-747-555-1212
    net.java.sip.communicator.gui.PASSWORD_LABEL=Password:
    -->
    <gui>
    <AUTH_WIN_TITLE value="SIP Authentication!"/>
    <AUTHENTICATION_PROMPT value="Please enter login name and password for the specified realm:"/>
    <USER_NAME_LABEL value="User Name:"/>
    <USER_NAME_EXAMPLE value="Example: 1-747-555-1212"/>
    <PASSWORD_LABEL value="Password:"/>
    <GUI_MODE value="PhoneUiMode"/>
    <!--GUI_MODE value="ImUiMode"/-->
    <imp>
    <CONTACT_LIST_X value=""/>
    <CONTACT_LIST_Y value=""/>
    <CONTACT_LIST_WIDTH value=""/>
    <CONTACT_LIST_HEIGHT value=""/>
    </imp>
    </gui>
    <common>
    <PREFERRED_NETWORK_INTERFACE value="VIA Rhine II Fast Ethernet Adapter"/>
    <PREFERRED_NETWORK_ADDRESS value="192.168.110.26"/>
    </common>
    <!--
    net.java.sip.communicator.STUN_SERVER_ADDRESS=stun01.sipphone.com
    net.java.sip.communicator.STUN_SERVER_PORT=3478
    net.java.sip.communicator.VOICE_MAIL_ADDRESS=17475551212
    -->
    <STUN_SERVER_ADDRESS value="stun01.sipphone.com"/>
    <STUN_SERVER_PORT value="3478"/>
    <VOICE_MAIL_ADDRESS value="17475551212"/>
    </communicator>
    </sip>
    </java>
    </net>
    <gov>
    <nist>
    <javax>
    <sip>
    <SERVER_LOG value="log/sip-communicator.stack.log"/>
    <TRACE_LEVEL value="16"/>
    </sip>
    </javax>
    </nist>
    </gov>
    <javax>
    <sip>
    <IP_ADDRESS value="192.168.110.26"/>
    <STACK_NAME value="sip-communicator"/>
    <ROUTER_PATH value="net.java.sip.communicator.sip.SipCommRouter"/>
    <OUTBOUND_PROXY value="bangla.net:5060/udp"/>
    <RETRANSMISSON_FILTER value=""/>
    <EXTENSION_METHODS value=""/>
    <RETRANSMISSION_FILTER value="true"/>
    </sip>
    </javax>
    <java>
    <net>
    <preferIPv4Stack system="true" value="true"/>
    <preferIPv6Addresses system="true" value="false"/>
    </net>
    </java>
    </configuration>
    bt thr are still error
    the errors are givenbelow.
    net.java.sip.communicator.sip.CommunicationsException: Failed to create inviteTransaction.
    This is most probably a network connection error.
         at net.java.sip.communicator.sip.CallProcessing.invite(CallProcessing.java:883)
         at net.java.sip.communicator.sip.SipManager.establishCall(SipManager.java:681)
         at net.java.sip.communicator.SipCommunicator.handleDialRequest(SipCommunicator.java:379)
         at net.java.sip.communicator.gui.GuiManager.dialButton_actionPerformed(GuiManager.java:342)
         at net.java.sip.communicator.gui.GuiManager$1.actionPerformed(GuiManager.java:612)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Caused by: javax.sip.TransactionUnavailableException: Could not resolve next hop or listening point unavailable!
         at gov.nist.javax.sip.SipProviderImpl.getNewClientTransaction(SipProviderImpl.java:351)
         at net.java.sip.communicator.sip.CallProcessing.invite(CallProcessing.java:876)
    please tell me wht kind of error it is.why i cnt make the

    Did you find out what caused the error??

  • I can't change my Fios speeds to Quantum without chaning my TV plan!?

    So for the previous 2 nights, i've been trying to change my internet speed from 20/5 to 75/35.
    I've tried though the website, MULTIPLE times. The website works sporadically, sometimes i get furhter than others, but the end result is always the same, i get to the 4th step, where it asks for my email and phone number, in which the fields are already completed because i have all the info updated in my profile. Upon hitting the "Next" button, i'm greeted with a message that asks me to review the given information.
    I decide to take to the phone lines on the first night, and i'm told to call back the next day since the dpt. that could help me with this is already closed.
    I comply , and call back the next day, this time i'm advised by said department to try live chat.
    Did the live chat thing for about an hour , in which i was told to try what i had been trying the previous night, about 2 or 3 times... i'm finally told they have to call me to be able to complete the process...
    During this phone call, i'm told that in order to change my internet speeds, i have to switch my TV plan from Fios Extreme HD to an "updated" version of Fios Extreme HD in which one of the channels for which i signed up for Extreme HD in the first place would be lost... (Gol TV , to be exact).
    " Your TV plan is old and outdated, and unless you change it, there is nothing i can do about it ".
    I'm sorry? You mean to tell me , that in order for me to give you MORE money for better internet speeds, i have to spend MORE money on my TV plan , and lose some channels on top of it?
    I'm not sure what Verizon's idea of Customer Service is but i hope it doesnt involve making fools of their loyal customers, and forcing them into situations that even a Kindergartener would see are unfair and, frankly, rediculous.
    I'm honestly hoping that i was just dealing with one of the many misinformed customer service reps, and that maybe there is someone else who understands what is really going on , and can help me change my  internet speeds without chaning my TV Plan, unless of course, that is too much to ask. In which case my 2 year contract is up, and i'll start looking for somoene who can accomodate my needs.
    Anyone else having similar issues?

    Based on nearly 10 years of dealing with Verizon on various issues, I'm not surprised. Verizon CSR's seem to be so totally script-bound they can't provide any real help at all. Plus the bureacracy and antiquated systems Verizon employs seems designed to produce the worst customer experience possible. How this company stays in business is incredible. Fortunately for them, and unfortnately for us customers, the competition is equally bad.

  • Calling report From PL/SQL

    Hi,
    Can any one help me for, how to call a report made in D2K report 3.0 from the database PL/SQL
    THANKS
    Regards
    Gaurav

    Hi,
    I resolved the problem by chaning the DESTYPE from 'cache' to 'File'. Is there anyway to display my report output instead of saving it in as a file?
    Thanks in advance
    Thanks & Rgds,
    M Thiyagarajan

  • Security exception when trying to call a DLL from an applet

    Hi all,
    I really hope someone out there can help me. I'm trying to call a windows DLL from an applet but always get some error when the call to the DLL comes. If I run it on the command line (calling a dummy main function that only calls the dll) I don't get any error. However, with the -Djava.security.manager, I get an ExceptionInitialiserError. When running it in a browser, I seem to get any of three errors, the above, securityAccessControlException (as I was expecting) and even NoClassDefFoundError.
    I realise of course that this has to do with the permissions in effect but nothing seems to happen when I change the policy file, so I have to feeling that I'm chaning the wrong file. The one I'm using is the one the JRE entry in the registry is pointing to, Java Runtime Environment->CurrentVersion...
    I even tried giving everything in the applet's directory AllPermission.
    So what I'm wondering is this. Is there any way to check if your policies are actually working and when you update the files, what do you need to do to make the changes take effect?
    Best regards,
    G�sli

    I have the same problem. Have you solved your problem, if so please let me know what the solution is.
    Einar �rn

  • Is BDC's CALL TRANSACTION 'VA01' is not equals to ONLINE(manual) creation?

    Hi Experts,
    Ours is IS-Oil.
    If the user do not enters/inputs OIC_MOT (Mode Of Transport) at ITEM level on the External Details popup, SAP will get it from Customar Master-KNA1 and populates on it, because its a mandatory field (OIC_MOT), but, do not throws an Error message and interupts the sales order creation process.
    We have a inbound IDOC posting function module for sales order (VA01), which posts the sales oreders by using BDC (CALL TRANSACTION 'VA01') in the system. In this function module, we are not populating the OIC_MOT field contained segment by hoping SAP will populate/default it while it hits CALL TRANSACTION 'VA01' of my BDC of my FM of IB IDOC. But, SAP is not defaulting/populating and throwing error message (saying 'OIC_MOT field is a mandatory input field' data is missing) and IDOC is failing, pls. let me know Wht its so? is the BDC's CALL TRANSACTION 'VA01' is not equals to ONLINE (manual ) creation of sales order?
    Thank you

    Hi
    Several transactions can ba a different behavior between online and bdc process, but if you simulate the trx by SM35 you should find out these gaps
    I don't know OIL vertical, but the main transactions have a bapi can be used insted of BDC program (BAPI_SALESORDER_CREATEFROMDAT2, but perhaps there's a particular BAPI for OIL).
    Max

  • Test call of transport control program (tp) ended with return code 0212

    Hi All,
    Your transport request could not be exported, since all requirements
    were not fulfilled.
    Calling the transport control program tp
       "tp EXPCHK DEVK905090
    pf=
    ord-sapdev\sapmnt\trans\bin\TP_DOMAIN_DEV.PFL -Dtransdir="
    which checks the export requirements, returned the following
    information:
    This is the error i got.. Please let me know how to solve this issue..
    Thanks & Regards,
    Santhosh

    Hi Santhosh,
    you can check it out in STMS
    wht you can do is:
    Run Tcode STMS > Overview imports (F5) > you will find all import queues > then click on the import queue in which u want to see the status of transport (DEV , QAS , PRD )
    then find out the transport no > click on that > then click on logs or press ( ctrl + f4)
    If the Return Code is higher than 0012 then it says that a critical error has occurred, probably not caused by the contents of the request. You must inform your system administrator.
    Hope this information will help you.
    Regards,
    SB.

  • Call Transaction In ABAP WDP

    Hi,
                I Created a Transactional Iview for TC:PA20 in the Portal Content , In portal as well i was able to look into the preview of the transaction code PA20. I used the follwing code to navigate this Transactional IView in the ABAP WEBDYNP which is been linked to an action button .There is no view or dump comming up when i hit the button .
    The code is as below for navigation :
    data lr_componentcontroller type ref to ig_componentcontroller .
    data l_api_componentcontroller type ref to if_wd_component.
    data lr_port_manager type ref to if_wd_portal_integration.
    lr_componentcontroller = wd_this->get_componentcontroller_ctr( ).
    l_api_componentcontroller = lr_componentcontroller->wd_get_api( ).
    lr_port_manager = l_api_componentcontroller->get_portal_manager( ).
    Data: target type string.
    Data: nmode type string.
    target = 'pcd:portal_content/workbench/wkb_iview_p20'.
    nmode = 'INPLACE'.
    call method lr_port_manager->navigate_absolute
    exporting
    NAVIGATION_MODE = nmode
    navigation_target = target .
    Just wondering wht else i was missing ..any suggestion would be helpfull..
    Thanks,
    Kumar.

    Hi Kumar,
    change the following code like this:
    target = 'pcd:portal_content/workbench/wkb_iview_p20'.
    with
    target = 'ROLES://portal_content/workbench/wkb_iview_p20'.
    call method lr_port_manager->navigate_absolute
    exporting
    NAVIGATION_MODE = IF_WD_PORTAL_INTEGRATION=>CO_SHOW_INPLACE
    navigation_target = target .
    it should work...
    thanks...
    AS
    Edited by: J Are on Apr 2, 2009 8:46 PM

  • What to write in ABAP program at R/3  to call proxy classes.

    Hi
    I am working on R/3 to File scenario and using ABAP Proxy for outbound.
    I have generated proxy in XI server and have coded the program in R/3 but can one tell me wht code needs to be written in ABAP program at R/3 end to connect to ABAP proxy. How those objects will be available in R/3 side.
    Please help as it's urgent.
    thanks
    Ria

    Hi Rekha,
    Thanks for the link, I did write this code already as follows.
    data prxy type ref to zxico_zproxy_interface_po .     
    create object prxy.                                   
    data it type  zxipurch_order_info_snd.                
    try.                                                  
         it-purchorderinfo_snd-ebeln = '000010'.           
         it-purchorderinfo_snd-werks = '2320'.             
         it-purchorderinfo_snd-bedat = '10/11/2005'.       
         it-purchorderinfo_snd-potype = '0'.               
         call method prxy->execute_asynchronous            
           exporting                                       
             output = it.                                  
          commit work                                      
       catch cx_ai_system_fault .                          
         data fault type ref to cx_ai_system_fault .       
         create object fault.                              
         write :/ fault->errortext.                        
    endtry.          
    When I do syntex check it give me error message:
    The type "ZXICO_ZPROXY_INTERFACE_PO" is unknown.  SInce this object was created in XI client so is not available in the R/3 just wondering do i need to create this in R/3 side.
    Regards
    Ria

  • TDS (WHT) Reports, Tables, T-codes

    My Dear Friends,
    Please help me in the below requirement
    My Client need a report which consists the below fields. If there is no standard SAP report, please help me with tables, programs.
    TDS Report
    Vendor Name
    Vendor Number
    Vendor PAN Number
    Posting date
    WHT Base amount
    TDS Amount
    TAX Rate
    Challan no and date
    Recipient type
    BANK BSR No
    Business place
    Section
    I have referred through BSIS, WITH_ITEM, BSIK, BSAK, but not able write an ABAP Query with right link.
    Kindly help me
    Thanks,
    Narasim
    Edited by: nkonnipati on Aug 24, 2011 4:12 PM

    HI,
    Please refer and try with  new report called J1ineMIS.
    Vendor Name        BSEG
    Vendor Number    BSEG
    Vendor PAN Number J_1IMOVEND
    Posting date          BKPF
    WHT Base amount with_item
    TDS Amount           with_item
    TAX Rate                with_item
    Challan no and date  with_item
    Recipient type          with_item
    BANK BSR No         
    Business place          Bseg
    Section code              Bseg.
    Regards
    Madhu M

Maybe you are looking for

  • Service Master for Maintenance

    Hi MM Consultants My client wants to know SAP Ability to record the reasons for the change of maintenance venor for the asset in creating service PO. for eg for an asset in AMC i choose a particular vendor for creating service PO and latter change th

  • How to maintain the status of the Thread ?

    How to maintain the status of the Thread ? namanc

  • Can I Index a String with Quotes. How is Men's indexed

    HI! I want to know that when i index a column which has a string with quotes how is it indexed ie., if there is a string "men's" then how is this indexed? because i am not able to search for men's,and when i search as "men_s" nothing is returned how

  • Managing iPhoto events on iPad

    Is there any way to merge/split iPhoto events on iPad?

  • Toad question - Offline topic

    Dear folks, This is a toad question but am asking in this forum as may somebody who worked on Toad can answer for this. Please dont mind as it is a offline topic. Here my question is suppose a table having some million rows and when we write the tabl