Transfer values from ITS to Dynpro

Hi!
My system is srm 5.0.
use BBP_CUF_BADI BADI for enhance bid with put_data and get_data.
After put_data i can see the value by WEB.
But after it's change i can't get new value of the field - it stays the same when i put it!
Try'd
call function 'ITS_IMPORT_CONTEXT'
      tables
        context           = gt_context
      exceptions
        its_not_available = 1
        others            = 2.
in PAI of my screen - didn't help. There is no such field in gt_context.
Thanks for any ideas gus!!
Edited by: vaflya on Aug 14, 2009 11:40 AM

Hi Srikanth,
Can you please explain us how you were able to get and set the values.
And may i know what for you have developed a Internet Service ie Scenario...?
If you have any help documents for developing ITS application... plz forward it to this mail id...
[email protected]
Thanks
Srinivasan K

Similar Messages

  • Transfer values from one search help to another

    Is it possible to transfer values from screen of one search help to another. For example if I have the vendor master search help (XK02) and I go to the elementary search help "Vendors by Material" . On this screen I enter some data in the Material number field. Now  when I do an F4 on the material field on this search help I will get the collective search help for Material number. My requirement is to have the material number from the first search help to be carried over to the second search help. Is there any way possible. I am manipulating my custom search helps through the search help exits(fetching data etc).

    Hi Deepak,
    Not very sure, but I think if you write code in search help exit, this may be possible. Use GET PARAMETER... SET .. in the exit to pass the values between search help.
    Regards,
    Atish

  • How to pass the values from the Wb Dynpro Application to the SAP Backend ?

    Hi All,
    Good morning..,
    I have scenario like:
    I want to pass the values from the web dynpro appication to the SAP Back end R/3 Table. IN backend the RFC is writtn to accept the structure input from the Webdynpro.
    Upto know I imported the corresponding RFC and maaped to the View.
    How to proceed with the coding to save the data...
    PLease suggest...
    Regards and Thanks in Advance,
    CSP

    Hi  Pradeep
    Steps:
    1. First create an instance for bapi and bind the instance to the bapi node.
      Z<bapi name> zb=new Z<bapi name>();
      wdContext.nodeZ<bapi name>. bind(zb);
    2. Then if u have the import parameter u have to set them by using
        The instance of the above bapi.
        Zb.set<import parameters>;
    3. If the bapi has a table parameters then the structure for the table parameters will also be imported
       In the model class.
    4. Set the table parameters by creating the instance for that structure and using this instance set it.
       Z<Struct>itm tab=new Z<Struct>();
       Tab.set<table parameters>
    5. Then add the structure instance to the bapi instance.
        Zb.add(Tab);
    6. Then Execute the bapi after setting the import parameters.
    7.  If there is any export parameters, then get the values after execution.
    Look at this thread for codes
    Re: RFC call on click of button
    Regards,
    Arun

  • Getting parameter values from ITS to back end Modulepool program

    Hi,
    I worked on external ITS developments for SRM project
    I  was passing values from and to between ITS front end template and corresponding back end module pool program.
    I was using filed-set and field-get macro for passing values. It was working perfectly.
    Now i am in new  SRM 5.0 project where we are using integrated ITS and i developed small screen in which I am trying to read the value which I am entering in template text filed.
    In debug mode i could see that ,when it execute FIELD-GET macro  getting SY-SUBRC is equal to 1. I am not able to get the template value in PAI because of macro failure.
    I just copied the same program which i developed in external ITS system still same problem.
    Please some one help me  if I am missing some thing in this.
    Code which i am using.is
    in ITS:
    <form method="post"  name="zebp_rrcode" action="`WGateURL()`" >
    <textarea name="FREE_TEXT_DES" cols="35" rows="10" onKeyPress=fmlength()> </textarea>
    <input type=submit name="~OKCode=TEXT" value="Send text">
    </form>
    In Back end code of PAI.
    move sy-ucomm to ok_code.
      data: len type i.
       data: idx type i.
      data: wide_row(80)  occurs 0 with header line.
       data: wide_text(80) occurs 0 with header line.
       idx = 1.
          field-get 'FREE_TEXT_DES' idx wide_row len.
          if sy-subrc <> 0.
             exit.
          endif.
    Regards
    Srikanth Akula
    Message was edited by:
            Srikanth Akula

    Hi Srikanth,
    Can you please explain us how you were able to get and set the values.
    And may i know what for you have developed a Internet Service ie Scenario...?
    If you have any help documents for developing ITS application... plz forward it to this mail id...
    [email protected]
    Thanks
    Srinivasan K

  • BBP_PO_INBOUND_BADI:Transfer value from SRM to ECC PO custom field

    Hello, everyone
         Our SRM version is 7.13 with classic scenario,  ECC version is 6.17.  transferring quotation data to ECC for creating PO by PI.
        I created a custom field such as Z1 for PO in ECC ,  I need transfer someone value from SRM to Z1 when press 'create PO' in quotation,
    So  I have to use BADI:BBP_PO_INBOUND_BADI in ECC before PO generating,  but I found the breakpoint can not  reach this BADI, Why ?  how should I do?
    I used to apply normally  this BADI in SRM7.02 and ECC6.05  without PI  with extend classic scenario.
    Thanks very much
      Jesse.

    Hi Jesse,
    I think the BBP_PO_INBOUND_BADI  is used to enhance the data when the PO is sent via BAPI.
    Please check the PI interface name that you are using and find out the Proxy name (in Tcode: SPROXY) and find an Enhancement spot (either in SRM or in ECC).
    Regards
    Venkat

  • Transfer value from one VI to another over a network?

    Hi,
    What is the best/easiest way to send a numeric value from one VI to another over a LAN.  I only need one number to be sent every time the first vi is run which won't be that many, I then need to run the other VI and access that data.  I could save the value to file and then open that file from the other VI, this I thought is a bit messy and wondered if LabVIEW accommodates this through property nodes etc rather than writing to file?  Also by saving to file etc the reading VI needs to execute after the first one has written obviously, this could cause timing issues and to have something like a property node would be far better.
    Many Thanks 

    Use DataSockets. The simplest, although not necessarily the fastest.
    Check out the examples.
    Basically, you "connect" a control on one VI (on one machine) to another control (possibly on different VI, possibly on different machine.
    Steve Bird
    Culverson Software - Elegant software that is a pleasure to use.
    Culverson.com
    Blog for (mostly LabVIEW) programmers: Tips And Tricks

  • Transfer values from change attributes

    Hi All,
    I have created custom field on change attribute screen, need to pass the value from this field to shopping cart full function screen field(same custom field on full function screen).
    Please let me know, what badi should I use and method, and what structure should I need to update with this field if required.
    Also internet service object for change attributes .
    Thanks in advance
    jog

    Hi
    <u>HTML - Internet Services (using Transaction SE80)</u>
    BBPATTRMAINT
    BBPDYNATTR
    <u>Try the BADIs -></u>
    BBP_DOD_CHANGE_BADI
    BBP_DETERMINE_DYNATR
    <u>Related links -></u>
    Re: unable to change the attributes of the user.
    Manager is not able to change attribute
    Re: Change password using service BBPAT04
    http://help.sap.com/saphelp_srm50/helpdata/en/b8/bdfc373db56203e10000009b38f842/frameset.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/05/45796b2b88fa4eb49fb4bc781a7d50/frameset.htm
    Hope this will help.
    Regards
    - Atul

  • Access KM predefined property values from a Web Dynpro application

    Hi,
    I am trying to build a custom search interface in Web Dynpro which leverages the KMC Indexing and Search services.
    In this interface I would like to display value lists of predefined properties in KM (created using the Property Metadata Service) and bind each predefined property's value list to a checkbox group UI element.
    Which KM API should I use to retrieve the values of a specific predefined property ?
    When using the standard flexible user interface in the portal this can easily be achieved through configuration, but now I would like to know how to achieve this in Java code.
    Thanks in advance for your input.
    I have some idea on how to get the propertymap from a resource, but how can I access the metadata of a predefined property in KM directly ?

    Hi Theo, i'm working on something like this, i have a WD application that is accessing Km through a Webservice, on the webservice ejb i have this problem:
    IResourceFactory resFactory = ResourceFactory.getInstance();
    IRepositoryServiceFactory serFactory = resFactory.getServiceFactory();
    IPropertyConfigurationService propConfigService = (IPropertyConfigurationService) serFactory.getService("PropertyConfigurationService");
    IMetaNameListIterator i = propConfigService.getMetaModel().nameIterator();
         while (i.hasNext()) {
         IMetaName metaname = i.next();
         if ( metaname.getDocumentPatterns()!= null){
         propertyData.setId(metaname.getName());
         propertyData.setName(metaname.getLabel(locale));
         propertyData.setNamespace(metaname.getNamespace());
         propertyData.setDescription(metaname.getDescription(locale));
                    propertyList.add(propertyData);
    On this line serFactory.getService("PropertyConfigurationService") i get the following error on the trace:
    #System.err#sap.com/KmmsListEAR#System.err#Guest#2####30a27fa0cbfa11dbace30018de0545f1#SAPEngine_Application_Thread[impl:3]#Error##Plain###Configuration Framework error: unable to create an IConfigClientContext instance from an EP5 userInitialConfigException: The configuration service locator could not be initialized for any of the environments. The configuration framework is not available.#
    #System.err#sap.com/KmmsListEAR#System.err#Guest#2####30a27fa0cbfa11dbace30018de0545f1#SAPEngine_Application_Thread[impl:3]#Error##Plain###InitialConfigException: The configuration service locator could not be initialized for any of the environments. The configuration framework is not available.
    Do you have any idea of how to solve this? or if you accomplished in a different way, can you guide me a little bit.
    Thanks in advance Theo

  • PLD. How to transfer value from Repetetive area to Start of Report

    Hi.
    Is it possible to get data fromfield in  Repetetive Area to field  Start of Report. I need to get value of some user field in Start of Report. I can get it in Repeptetive area but I can't in Start of Report.
    With regards,
    Maxim Grunis

    Hi Maxim Grunis,
    The answer is:  there are no way to transfer them.  PLD works from top down to the end of report.  It is building printing file on the fly.  The Start of Report know nothing about the other areas.
    Thanks,
    Gordon

  • Assets (Investment profile): Transfer value from AuC to Fixed asset

    Good afternoon all,
    We have implemented Assets across investments profile. The settlement of investment is u201CSummary settlementu201D and we do not have u201CList of Originsu201D.
    We have created a project and then a WBS that automatically creates the AuC (asset under construction).  Transaction code CJ20N.
    Then we have created the purchase order (ME21N) and afterwards we have carried out an entry sheet (ML81N) where we have informed the WBS previously created.
    Through CJ88 we have done the settlement of the WBS and we have checked it.
    Now we have created the fixed asset and we would like to transfer the value of the AuC to the fixed asset. I am not able and I am a bit lost. I do not how to perform it.
    Any idea?
    Many thanks and regards in advance. Daniel

    Hi Renfe,
    If the asset is an asset under construction belonging to an investment measure, then the transaction code KO88 needs to be used.
    Warm regards,
    Murukan Arunachalam

  • Transfer value from global automatic activity in Aqualogic BPM Suite

    Hi, I am new to Aqualogic BMP suite and stuck with the following problem :
    In aqualogic bpm suite, if we are setting some values to some variables in a global automatic activity in a process how to get those values back in some other activities (say an Interactive activity) in the same process or how to assign the values to some instance variables in the Begin activity ??
    We have a scenario where we are creating some process instances from the Global Automatic activity using the following :
    args["name"] = abc
    create ProcessInstance using parameters = args
    Now how to get the value "abc" and assign this value to an instance variable in the Begin activity(/access the value "abc" in an interactive activity)within the same process.
    Thanks,
    Suman.

    Hi,
    Let's say you have an Argument Set defined in your Begin activity called BeginIn. The arguments in this Argument Set can be "a", "b" and "c" of type String, Int and boolean accordingly.
    If you want to use the ProcessInstance.create method, then you would need to have a PBL script like this one:
    args[] = [ "a" : "SomeStringLiteral", "b" : 1234, "c" : true ];
    ProcessInstance.create(processId : "/MyProcess", arguments : args, argumentsSetName : "BeginIn");
    HTH,
    eduardoc.

  • Need to transfer value from BADI to program/smartform

    Hi Guys,
    I have to add 3 fields from Infotype/table PA0041 to the smartform generated by this Program "Employer Statement (RPLERCC0)". I have implemented a BADI and written my code in the method get_output_strucuture. But how will I transfer my data to the program/smartform. If anyone has worked in the same then please provide your suggestions.
    Thanks in Advance.
    Manoj

    Hi,
    Do an export/import.
    * In the Badi
    EXPORT ZQTY
                  ZMATNR
         to memory id 'ZTEST'.
    * in the report program
    IMPORT ZQTY
                 ZMATNR
      from memory id 'ZTEST'.
    FREE MEMORY ID 'ZTEST'.
    Best regards,
    Prashant

  • Substrating a value from its previous value

    suppose i have the data in a column like
    col
    200
    230
    250
    290
    300
    then the output should show
    col output
    200 Null
    230 30
    250 20
    290 40
    300 10
    can anybody help?

    Here is the sample ->
    satyaki>
    satyaki>select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE    10.2.0.3.0      Production
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    Elapsed: 00:00:00.75
    satyaki>
    satyaki>with t
      2  as
      3    (
      4     select 200 cola from dual
      5     union all
      6     select 230 from dual
      7     union all
      8     select 250 from dual
      9     union all
    10     select 290 from dual
    11     union all
    12     select 300 from dual
    13    )
    14  select cola, (cola - prev_cola) output
    15  from (
    16         select cola,
    17                lag(cola,1,null) over(order by cola) prev_cola
    18         from t
    19       );
          COLA     OUTPUT
           200
           230         30
           250         20
           290         40
           300         10
    Elapsed: 00:00:00.01
    satyaki>
    satyaki>Regards.
    Satyaki De.

  • Values from Structure used in Form to be transferred to a Business Object

    Hello,
    I have defined a structure (zcsks) in the workflow container. This structure is used in two forms (Change and Approve).
    With the approval (button pressed on approve form) the data entered in the structure zcsks has to be transferred to the business object ZBUS0012 in the workflow container, so that the business object method CREATE can be executed automatically.
    The values for the structure ZCSKS is already transferred from the form to the workflow container automatically.
    My question now is how I can transfer values from ZCSKS to ZBUS0012 and execute its method CREATE automatically ?
    Thank you in advance!

    Hello,
    "Value of expression '&_WI_OBJECT_ID.COSTCENTER&' cannot be used as the target of an assignment"
    This is because you are trying to assign a value to an attribute of the main object of a workflow (_WI_OBJECT_ID).
    That won't work. I thought you meant you had an object in the workflow container and wanted to
    instantiate that.
    When the workflow is created the main object is already instantiated so you can't change it.
    regards
    Rick Bakker
    Hanabi Technology

  • Passing Value from one File to Another !!!

    Hi Friends,
    I have an issue, I have two different Swing programs (two seperate java files). I want to transfer value from one file to the another. Like we do in Servlets or JSP, we use sessions or Hiddenfields. The same way I want to retriev value in a new file from a previous one.
    Hope that all u champs out there have the answer to my query.
    Thanks,
    [email protected]

    This is a B2B comms question...
    A quick and dirty method is to use Socket/ServerSocket and use a basic protocol to do the transfer, if you are feeling heroic then use XML as the message format...
    A lot depends on whether your applications are running on separate boxes, i.e. do you need to communicate across a network...
    If not, if they are always going to be on the same "box" then you could just use well-known places for files...not portable but effective...

Maybe you are looking for