Regarding" Material PO text " with input parameter is PR requisition

Hi Experts,
I need to develop a ALV report in which the input parameter is PR requisition, Requisition date, Plant ,Purchase Group, Purchase organization
And I needed to get its corresponding u201Cmaterial PO Textu201D.
I am using the function module READ_TEXT with
goto me53n( purchase requisition) -
> text----->item_text->doubleclick->goto->header
id = 'B04'.
tname = '100000166000010'.
tdobject = 'EBAN'.
How do i display all the text in alv against the PR requisition, Requisition date, Plant ,Purchase Group, Purchase organization, PR item number  PO number , Po date , PO item number
thanx.
Moderator message: please open only one thread per issue.
Edited by: Thomas Zloch on Jan 17, 2012 10:42 PM

lets say item text is 8-10 lines, you want to display that as well in the output? how much the user have to scroll for 10 PRs  just think..
rather give them the report output without the item text and give them a hotspot. once they click hotspot, show them a popup  for item text

Similar Messages

  • BAM Report with input parameter

    Hi,
    How to design a report with input parameter? BAM ADC contains data about different clients.
    I have to design a report which iterates over these clients and display one client info at a time.
    Thanks
    Samatha

    Instructions in User guide on how to create surface prompts
    http://www.oracle.com/technology/products/integration/bam/index.html> 11g Documentation> User guide
    http://download.oracle.com/docs/cd/E12839_01/integration.1111/e10230/prompts_parameters.htm#CHDEEACD
    Also look at call center -->Reassign cases sample under demos in BAM 11g.

  • How to create a Mapping with Input Parameter?

    Hi,
    I have a target table where the primary key column should be loaded with an Input parameter value. How can we implement this? Let me know if any examples are available?
    Regards
    Kishan

    Use a map input operator in your mapping. In the outgroup add an attribute, mapp the attribute with the column and then you can start the mapping with an extra input parameter.
    Bye
    Detlef

  • Starting/Openeing a  Workbook empty or with Input Parameter

    Hi,
    how to configure BW / BEX / a workbook  to start a workbook always empty or with the input parameter dialogue ?
    ThanXs
    Martin

    Sorry Martin, on the purge side of things....
    It depends on whether you are using BW 3.,5 or BI 7.
    If you are on 3.5 on the Tools menu there is an option to Delete Query Results.
    If you are on BI 7:00 then the link tell you all:
    SAP entertainment: Migration of 3.x objects to BI 7.0
    - Delete query results.. para.

  • Multible MBO's with input parameter's how to pass them?

    Hello gurus i'm currently working on native app that based on BAPI MBO's and each MBO takes input parameter and return some values
    at the first MBO i made the input parameter is personalization key but after adding a second MBO and make the same to the second MBO when i generated the code and passing the PK values only for the first MBO i got an error
    any help on how to pass input parameters for native app that based on BAPI for multiple MBO and i will not pass all the parameters at the same time depend on the screen that i'm in i will call MBO
    thanks in advance

    Steps to do a sync from MBO is given below (android native app):
    Create MBO and PK.
    Map MBO load parameter with PK.
    Create Second MBO and another PK (or use existing PK if the input parameter of first MBO is same as second MBO).
    Map Second MBO load parameter with second PK.
    Sample native code (android):
    //Assing Values to PK
    PersonalizationParameters param = CustomersDB.getPersonalizationParameters();
              param.setPK_CustomerInput("1001");
              param.save();
              CustomersDB.subscribe();
    //Make a blocking synchronize call to Unwired Server to pull in all MBO data
              CustomersDB.synchronize();
    //Finall is the query generated by SUP to get the data from the table Customers.
    //Customers is the MBO name in SUP and table name in Device DB
    Customers.findAll()
    Give the steps you performed with relevant screen shots to help you further.
    More info, Developing SAP Android Mobile app from scratch - Part 4
    Midhun VP

  • Regarding showing of some text with one parameter.

    Hi
    I want to know that is there any funtion module by the help of which I can display some text information about one parameter. This will be displayed as the icon just after the selection field. On clicking on it the text information will be displayed.

    Here is an example of handling it manually in your program.  You still need to create the data element and the documentation of the data elment, in this example, it is ZTEST. 
    report zrich_0001.
    type-pools: icon.
    selection-screen begin of line.
    parameters: p_test type ztest.
    selection-screen pushbutton (4) help user-command help.
    selection-screen end of line.
    at selection-screen output.
      write icon_information to help.
    at selection-screen.
      case sy-ucomm.
        when 'HELP'.
          data: links type table of  tline.
          call function 'HELP_OBJECT_SHOW'
               exporting
                    dokclass = 'DE'
                    dokname  = 'ZTEST'
               tables
                    links    = links.
      endcase.
    Regards,
    Rich Heilman

  • Search Help With Input Parameter in WebDynpro ABAP

    Hello all,
    I have been facing a problem regarding a search help I wanted to attach to an input field on my UI. The search help expects an import parameter and offers four output parameters. What I did was to create a context node based on a ddic structure. The structure has one attribute for each of the five parameters. I defined the search help for all context attributes except the importing one where I deactivated the search help. The search help is available on one of the input fields on the view and bound to one of the attributes in the context. The other context attributes are not bound to anything. The names as well as the data types are the same in the search help as well as in the ddic structure, bound to the context node.
    During WDDOINIT, I am setting the "import" context attribute. The problem is that the table with the search help parameters is empty when the search help exit is entered. Do you have any idea what I have to do in order to provide the import value to the search help?
    Thanks in advance and best regards
    Simeon

    Hi,
    By context node, do u mean that u made a drop down with values in ddic structure ,
    rather than that u can use FM 'VRM_SET_VALUES' this would be simpler if that makes sense for ur requirement.
    pls revert if any comments on it.
    regards,
    Dinesh.

  • Fumnction Module with Input Parameter

    Hello all,
                   I have a Popup window in which a message displays with a value and Yes or No Option. if No is clicked  i have to Display a list of data, if its Yes is clicked  i have to get a value as a Parameter in pop up window (i,e User should enter the value ). Is there any FM to get this. This is an ALV Report.
    YES       NO
    if YES
        ENTER THE VALUE : ______________
    else.
       Display
    Points will be Rewarded.
    Thanking you in advance.
    Regards,
    Nagulan

    Hi Nagulan,
    Yes there is a function module by name  'C14A_POPUP_SAVE_WITH_CANCEL' which displays a pop up as per your requirement.
    I had a similar requirement in my project.This is the code that I used.You can refer to it and write your own code.
    In this code a function module is called to display the popup.The popup contains three options-Yes,No and Cancel.When selecting Yes,The details present in the input fields will be saved in the Ztables.If NO is selected in the popup,then the transaction will be exited.
    In the function module,answer holds the user command.
    e_answer needs to be created by user.The statement for it is :
    DATA :e_answer type c.  
    In the function module as you can see, J indicates Yes and N indicates No.J and N are predefined for Yes and No respectively.
    In the PAI module of that Screen,you need to write this code
    CASE SY-UCOMM.
    when SAVE.
    CALL FUNCTION 'C14A_POPUP_SAVE_WITH_CANCEL'
    IMPORTING
    e_answer = answer.
    IF answer = 'N'.
    ***Leaving the transaction****
    LEAVE TRANSACTION.
    ELSEIF answer = 'J'.
    ***The right side of the equation is the name of the input field in the screen.The left hand side of the ****equation is the field name in the ZTable ztm09_ekpo.**
    ztm09_ekpo-ebeln = ztm09_ekko-ebeln. "ztm09_ekko is the name of the Z Table.
    MODIFY ztm09_ekpo.
    endcase.
    Hope this will help you.
    Revert for any querries.
    Regards,
    Kashyap Ivaturi

  • Dynamic Imagelink Component - Calling Impl method with input parameter

    Hi All,
    I have requirement where Imagelinks are created dynamically on the pageload. Generated the components and the components are displayed on the jspx.
    Now when I click the image link, a method in AMImpl should invoke and this method takes some input parameters.
    I am able to call the method successfully in AMimpl with the help of below code. But I could not understand how to pass the input parameters to that method.
                               RichCommandImageLink lockimageLink =
                                new RichCommandImageLink();
                            lockimageLink.setIcon("icon.png");
                            lockimageLink.setId("icon" + index);                   
                            MethodExpression me =
                                JSFUtils.getMethodExpression("#{bindings." +
                                                             "MyMethodName" +
                                                             ".execute}");
                            lockimageLink.addActionListener(new MethodExpressionActionListener(me));
      public static MethodExpression getMethodExpression(String name) { 
       Class [] argtypes = new Class[1]; 
       argtypes[0] = ActionEvent.class; 
       FacesContext facesCtx = FacesContext.getCurrentInstance(); 
       Application app = facesCtx.getApplication(); 
       ExpressionFactory elFactory = app.getExpressionFactory(); 
       ELContext elContext = facesCtx.getELContext(); 
       return elFactory.createMethodExpression(elContext,name,null,argtypes); 
      } Can some one please suggest how to pass input parameters to the Impl method.
    Jdeveloper Version : 11.1.1.4.0
    Thanks,
    Morgan.
    Edited by: 900114 on May 12, 2012 11:23 PM

    You can use the below method to call an AMImpl method. You can pass parameters as well to the AMImpl method.
    DCBindingContainer bindings = getDCBindingContainer();
    OperationBinding ob = bc.getOperationBinding("MyMethodName");
    Map m = ob.getParamsMap();
    ob.put("paramName", "paramValue"); paramName is the parameter in AMImpl and paramValue is the value to be passed.
    ob.execute();
    Where getDCBindingContainer() is:
    public DCBindingContainer getDCBindingContainer() {
    ExpressionFactory exprFactory;
    ELContext elContext;
    ValueExpression valueExpression;
    DCBindingContainer dcBindingContainer;
    FacesContext facesContext = FacesContext.getCurrentInstance();
    exprFactory = facesContext.getApplication().getExpressionFactory();
    elContext = facesContext.getELContext();
    valueExpression =
    exprFactory.createValueExpression(elContext, "#{bindings}",
    Object.class);
    dcBindingContainer =
    (DCBindingContainer)valueExpression.getValue(elContext);
    return dcBindingContainer;
    Hope this helps
    Edited by: umesh.agarwal on May 13, 2012 12:10 AM
    Edited by: umesh.agarwal on May 13, 2012 12:10 AM

  • OSB XSLT trasformations with input parameter

    Hi,
    how can I pass input parameters at XSLT trasformation in Assign activity?
    Thk
    L.

    Hi checked these links, but I didn't solve my problems :-(.
    I have this xslt resource:
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/>
    <xsl:template match="/">
         <xsl:param name="in_stringSearch"/>
         <fields>
              <xsl:for-each select="//*[starts-with(text(),$in_stringSearch)]">
                   <field>
                        <xsl:for-each select="ancestor-or-self::*">
                             <xsl:text>/</xsl:text>
                                  <xsl:value-of select="$in_stringSearch"/>
                             </xsl:for-each>
                   </field>
              </xsl:for-each>
         </fields>
    </xsl:template>
    </xsl:stylesheet
    I created an assign activity, in the expression field I selected xslt resource and linked above xslt resource, my question is, how I can pass 'in_stringSearch' to xslt from assign?
    Thk
    L.
    Edited by: user8874385 on 7-gen-2011 4.12
    Edited by: user8874385 on 7-gen-2011 4.13

  • ADF View with input parameter?

    I've a table with three column:
    company id, company name, revenue
    Another table:
    employee id, employee name, company id (foreign key in company table)
    Now I've to display list of employees in 1 company (based on logged in user). How shall I achieve this in ADF using BCs?
    A very standard requirement it seems... A tutorial would be good if someone can point me to that?
    Thanks.

    Create 2 EO for the 2 tables. Create VO on top of them. You can then create a View Criteria on the EMPVO which has the condition companyId = :bCompanyId (where bCompanyId is the bind variable defined and the values is passed from UI).
    http://jobinesh.blogspot.com/2010/10/how-to-set-bind-variable-values-at.html

  • Pass Input Parameter With Blank To SSIS Get Strange Result

    Hi! I stuck for a while when executing SSIS from stored procedure with input parameter. My input value is not consistent with output one. If I pass value with blank , SSIS seems gets second part. For example , if I pass "CALL FROM SP", SSIS get
    "FROM" only. 
    I use Execute SQL Task to store input parameter. Here is the SSIS snapshot.
    And here is the sp snippet
    DECLARE @Path VARCHAR(200),
    @Cmd VARCHAR(4000),
    @ReturnCode INT,
    @QUERY_STRING VARCHAR(70),
    @BATCH_NO VARCHAR(14)
    SELECT @Path = 'xxxxxx'
    SELECT @QUERY_STRING = 'CALL FROM SP'
    --BatchNo = YYYYMMDDHHMMSS
    SELECT @BATCH_NO = CONVERT(VARCHAR(10),GETDATE(),112) + REPLACE(CONVERT(VARCHAR(8),GETDATE(),108),':','')
    SELECT @Cmd = 'DTexec /FILE "' + @Path + 'Package1.dtsx" /MAXCONCURRENT 1 /CHECKPOINTING OFF /REPORTING EW ' + '/Decrypt ALCM '
    + ' /SET \Package.Variables[User::BATCH_NO].Properties[Value];' + @BATCH_NO
    + ' /SET \Package.Variables[User::QUERY_STRING].Properties[Value];' + @QUERY_STRING
    My test are
      input parameter
     write to TESTTB correctly ? 
    any error?  
     execute SSIS in design mode
     CALL FROM SSIS
     YES
     execute SSIS by sp
     CALL FROM SP
     NO
     Option "FROM" is not valid.
     execute SSIS by sp
     CALL_FROM_SP
     YES
    Anyone could give me some hint ? 
    Thank you so much!!

    Hi Nick,
    It occurs because an argument of the DTExec commands must be enclosed in quotation marks if it contains a space. From the dtexe (SSIS Tool): Syntax Rules section of the
    dtexec Utility (SSIS Tool) document, we can see:
    All options must start with a slash (/) or a minus sign (-). The options that are shown here start with a slash (/), but the minus sign (-) can be substituted.
    An argument must be enclosed in quotation marks if it contains a space. If the argument is not enclosed in quotation marks, the argument cannot contain white space.
    Doubled quotation marks within quoted strings represent escaped single quotation marks.
    Options and arguments are not case-sensitive, except for passwords.
    So, you need to make the value of the variable @QUERY_STRING within double quotes in the value of the variable @Cmd or remove the space within the @QUERY_STRING value.
    Regards,
    Mike Yin
    TechNet Community Support

  • Passing multiple values to a single input parameter

    Hi folks,
    I have a Microstrategy query successfully passing input parameter to a calculation view.  For example I can pass a movement type to a material movements calculation view input parameter.  However if I try to pick more than one movement type the query then fails; 
    Generated SQL that works looks like this;
    select
    sum(a11.TOTALQUANTITY)  WJXBFS1
    from
    "_SYS_BIC"."MyPackage/CA_TEST_PASS_PARAMETER"
    ('PLACEHOLDER' = ('$$MoveType$$', '101')
    a11
    When choosing more than one value in Microstrategy the SQL now fails and looks like this;
    select
    sum(a11.TOTALQUANTITY)  WJXBFS1
    from
    "_SYS_BIC"."MyPackage/CA_TEST_PASS_PARAMETER"
    ('PLACEHOLDER' = ('$$MoveType$$', '101'),
    'PLACEHOLDER' = ('$$MoveType$$', '103'))
    a11
    If I cut and paste the SQL and run directly in HANA studio the error is;
    Could not execute 'select sum(a11.TOTALQUANTITY) WJXBFS1 from "_SYS_BIC"."MyPackage/CA_TEST_PASS_PARAMETER" ...' in 66 ms 361 µs .
    SAP DBTech JDBC: [2048]: column store error: search parameter error:  [2018] A received argument has an invalid value;TABLE/VIEW parameter: ( 'PLACEHOLDER'='$$MoveType$$, 103') not supported
    Is it possible to pass multiple values in a single parameter?  I'm using SP67 for this test.
    Thanks,
    -Patrick

    Ravi, also to answer one of your questions about how this will work in Microstrategy; I just heard back from my Microstrategy developer and he is trying MSTR Freeform SQL query with syntax like this;
    select (sumPAR_TEST.TOTALQUANTITY TOTALQUANTITY
    from "_SYS_BIC"."MyPackage/CA_TEST_PASS_PARAMETER"
    ('PLACEHOLDER' =('$$MoveType$$', '[Movement Type]')) PAR_TEST
    In this example [Movement Type] is the microstrategy prompt.  Unfortunately though it translates like this which is missing extra single quotes around each value;
    select     sum(PAR_TEST.TOTALQUANTITY)  TOTALQUANTITY
    from     "_SYS_BIC"."development.pr1959/CA_TEST_PASS_PARAMETER"
    ('PLACEHOLDER' = ('$$MoveType$$', ''101', '102''))   PAR_TEST
    instead of what we need which is;
    ('PLACEHOLDER' = ('$$MoveType$$', '''101'', ''102'''))   PAR_TEST
    So at this point we are not sure if this will be possible or not.
    -Patrick

  • Print  material po text in the main window of pur. order

    Hi experts,
    Here is my issue regarding MATERIAL PO TEXT in  smartform  of purchase order:
                          I want to get the material po text in the material description field itself or beside to this column  in the mainwindow only in the  print of purchase order
    so please let me know how to read the material po text to a internal tab field.
    very glad for ur replys
    TNQs n REGARDS
    mahathma

    Hi    TNQs for ur responce.
      i want to get the item text in the  main window beside to material description column .
    i think u got my point actually we'll have item texts for each item , i want to get the text of each item  in that row only
    i used include text and i gave following attributes
    Text Object :      EKPO
    Text ID         :  A03
    Language     :     EN
    just tell me ,should i need to give any code for this.
    thanks and regards,

  • How to Receive soap input parameter value in BPEL

    Hi
    Please provide the solution to receive the input parameter value from a soap call i.e. . invoking a BPEL process from a PL/SQL client and with input parameter value.
    Following Xpath expression does not work ,if a value is passed from SOAP input parameter
    bpws:getVariableData('receiveInput_process_InputVariable','payload',/client:Test_ExternalcallProcessRequest/client:input).
    This works fine only if avalue is passed from 'client' partnerlink(from console).
    Please do the needful.

    Hi
    Thank you for your response
    sample PL/SQL code to call a BPEL process along with some input parameter
    req P_A2a_Call_Bpelprocess.request;
    resp P_A2a_Call_Bpelprocess.response;
    inputvar VARCHAR2(100) := ' START PROCESS';
    ls_method VARCHAR2(25) := 'process';
    ls_namespace VARCHAR2(100) := 'xmlns="http://xmlns.oracle.com/Helloworld"';
    ls_url     VARCHAR2(254) := 'http://nooslux036t.gl.2wglobal.com:7777/orabpel/A2A/Helloworld/1.0';
    BEGIN
    req := P_A2a_Call_Bpelprocess.new_request(ls_method, ls_namespace);
    P_A2a_Call_Bpelprocess.add_parameter(req, 'input', 'xsd:string', inputvar);
    resp := P_A2a_Call_Bpelprocess.invoke(req, ls_url,ls_method);
    The input value is 'START PROCESS' and Can I get this value from Xpath experssion usiing bpws:getVariableData or any other function? .Please let me know.
    sample Xpath expression to get 'client' partnerlink data.
    bpws:getVariableData('receiveInput_process_InputVariable','payload',/client:Test_ExternalcallProcessRequest/client:input).
    Thanks in advance

Maybe you are looking for

  • Problems with scrolling through premiere timeline using arrow keys and shift arrow

    This is a really weird problem in cs6. When I load a clip into the source monitor i can scroll throughit fine using the arrow keys, and shift arrows and my shuttle pro controller. When I place the same clip on to the timeline it really struggles to s

  • NOT STARTING WITHOUT SUPPLY

    I have hp compaq610 running on windows8! 1)my laptop is not starting without a/c supply. 2)battery showing 30% full "plugged in,not charging" 3) and if i remove adapter wire after starting starting,laptop is going off!! plzz someone help i tried unin

  • PR not in table generate with maintenance order

    Hi gurus, I have a problem about maintenance order service external generate to PR(Purchase Requisition) on External Tab. service Number already insert but material Group, Recipient, Purch. Group is blank and saved. so PR Number auto generate. but, 

  • Extracting XML information

    Is there a way I can extract information from an XML file and create a list or a tab-delimited file?

  • Video Workshop Views

    Nice college education gave me design info, but no good Dreamweaver work. I have CS3. Working on the Video Workshop tutorials. The pages come up totally unlike those in the workshop, I think it is a Live View or Live Data issue, but there is no infor