How to give all input parameter in creation of po via bapi

sir plez tell clear process of create po via bapi, i have done upto "BAPI_PO_CREATIVE1, then what to do, plez stepwise explain
thank Q

Dear Baskhar,
After BAPI_PO_CREATE1, you have to run BAPI_TRANSACTION_COMMIT to post
the data.
For example, from SE37:
You can goto menubar: Function Module
Test-> Test sequence,
Fill in BAPI_PO_CREATE1 then follow by BAPI_TRANSACTION_COMMIT .
Best Regards,
Ian Wong

Similar Messages

  • In BSP how to give the input field as mandatory?

    Hi friends,
    In BSP how to give the input field as mandatory?
    In BSP i want to validate the input field (example checking the material no is valid or not)
    if this material no doesnot exit means i want to pass error message.What is the code for that.
    Moosa

    hi
    try this
    in LAYOUT
    <htmlb:inputField id = "vname"  disabled = "False" value = "<%= v_visitor %>"/> <font color="red" size="2"><b><%= page->messages->assert_message( 'vname' ) %></b></font></td>
    in DO_HANDLE_EVENT
    in oninputprocessing
    CLASS CL_HTMLB_MANAGER DEFINITION LOAD.
    IF event_id = CL_HTMLB_MANAGER=>EVENT_ID.
      DATA: event TYPE REF TO CL_HTMLB_EVENT.
      event = CL_HTMLB_MANAGER=>get_event( runtime->server->request ).
      IF event->name = 'button' AND event->event_type = 'click'.
        DATA: button_event TYPE REF TO CL_HTMLB_EVENT_BUTTON.
        button_event ?= event.
      ENDIF.
        case event->id.
            when 'select'.
               if v_visitor = ''.
                 page->messages->add_message(
                 condition = 'vname'
                 message   = 'Visitor Name can not be blank'
                 severity  = page->messages->CO_SEVERITY_ERROR ).
              ELSE.
                    here u can write ur when ur field getting filled
            endif.
         endcase.
    endif.
    give marks if it is helpful
    thanks

  • Creation of notification via BAPI

    Hi Guys,
    I'm working in ECC 6.0 version. i have found a BAPI 'BAPI_ALM_NOTIF_CREATE' to create a notification. When i'm creating the notification through IW21 by passing notification type and functional location, i'm able to create a notification
    But when i'm passing the same parameters to the BAPi,  its neither returning any error record nor the notification is getting created.
    Has anyone worked on the creation of notification via BAPI
    Thanks in advance

    Thanks martin and ravi.
    i have got the solution. Just thought of sharing with you guys.
    After calling the BAPI passing the parameters notification type and functional location, a field NOTIF_NO will be returned which you have to pass to the BAPI 'BAPI_SERVNOT_SAVE
    thats it
    Thanks a lot

  • How to disabled the input parameter dialog box in crystal reports 9

    Post Author: Murtaza
    CA Forum: General
    Hi friends,I have got stuck with a weird problem.  In my
    crystal report, I have set up some input parameters.  I am setting
    values for these parameters somewhere inside code.  But I don't
    want to show the default input parameter dialog box. Under any case,
    user should not see the ugly parameter dialog box that crystal
    presents.   Please suggest me how I can achieve
    this.  I cannot do this through code, because our environment does
    not allow that.  I have to do this in crystal reports viewer and
    by setting some property of the crystal report object. But everything
    must be done on UI, not through code. So, the solution should not be the following. 
    // step before step 1
    // **** the line needs to refer to the report and be set before setting
    ReportSource in the viewer to myReport
    myReport.EnableParameterPrompting = False
    Any help would be greatly appreciated.  Murtaza

    Post Author: sleahcim
    CA Forum: General
    Hi Murtaza,
    Unfortunately, I am not aware of any method to suppress the prompt for the input parameters, but still use them.  It is truly a design-related issue for the report.  The reason that the prompt appears is because the parameter it is prompting for is used in the report; in particular either the Group or Record Selection, or referenced in another formula.
    The only way I can think of to not show the prompt, is to not use the parameter in the report.  You did mention that you are setting the value of the parameter inside of the report -- are you doing this through using a formula?  Perhaps you can just remove the parameter and only use the formula that you are setting the default values with.
    -Michael

  • Root. how to give all the privileges to user?

    hi! im root and i want to give all the privileges to my user so he can open any program and any root folder. not in terminal (sudo gparted... for example) but i want to double click the program and open it. im using gnome. also i dont want to right click and open as admin. how can i do that?
    thanks

    jowilkin wrote:
    manolos wrote:
    eldragon wrote:
    no, no, no.....if you really want to do this...get a mac..
    there are really good reasons for these limitations in user access..
    if you want to stay away from the terminal, i think gksu should help you with that. (still need to type your password though)... if you dont like the terminal, maybe arch linux isnt the right distro for you, how about ubuntu?
    its not a solution for me but thanks! ubuntu is very simple. i want to learn from linux... not just install!
    Well, first lesson...what you want to do is a really bad idea.
    hahaha! ill stay in terminal thanks for the advice!

  • How to give multiple inputs to syn BPEL process in Jdeveloper

    Hi,
    I am new to BPEL . I have created programs which takes single input and after processing displays single output. I want to give more than one input at run time (for ex. employee name,age, salary ) and want to display Multiple output after processing them Instead of Just one that I am doing currently. How I can do that using Synchronous BPEL process . Can some one tell that What will be learning time for BPEL using google and forums, for a 3 year exeperienced person in JAVA and new to BPEL.
    Yogendra Rishishwar

    Hi,
    You just need to change the XSD of your process.
    Someone posted something similar last week : How to change the input and output schema in BPEL process
    Hope it will help you ..
    romain.

  • How to give digital inputs to ni 6501

    I am trying to give a digital data to a port of ni 6501... Can some one exlain in which format this datas shuld be given in a C++ code 

    Hi,
    You just need to change the XSD of your process.
    Someone posted something similar last week : How to change the input and output schema in BPEL process
    Hope it will help you ..
    romain.

  • 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

  • How to bind mapping input parameter in process flow using OMB Plus

    Hi
    I have created a process flow with a mapping.
    This mapping has a input parameter, that I want to bind to a variable using OMBPlus
    OMBALTER PROCESS_FLOW '$process' MODIFY PARAMETER 'P_EOD_DATE_IN' SET PROPERTIES (BINDING) VALUES ('V_EOD_DATE') does not work as P_EOD_DATE is NOT a process parameter
    neither does
    OMBALTER PROCESS_FLOW '$process' MODIFY PARAMETER '$mapname/P_EOD_DATE_IN' SET PROPERTIES (BINDING) VALUES ('V_EOD_DATE') as the reference '$mapname/P_EOD_DATE_IN' is not valid.
    Any suggestions ?
    Best Regards
    Klaus

    Hi Klaus,
    look here {thread:id=640397}
    Regards,
    oleg

  • How to total all inputs after looping?

    Hello, new user here. I've just started doing loops, but am have a little problem that I hope you can help me with.
    I want to loop a program to input the commission figures for ten people, then calculate and output the total commission overall, as well as the average commission too.
    I currently have the below code. But I do not know how to store one input somewhere, and then store the second input, etc, and then add these inputs together at the end. Any help is greatly appreciated! Thank you =)
    import java.util.Scanner;
    /* This program calculates total pay earned for five workers */
    class Payslips
         public static void main (String[]args)
              Scanner input = new Scanner(System.in);
              int x;
              double commission, total, average;
              for (x = 1; x <=10; x++) //will loop up to 10 times
                   System.out.println ("Input commission");          //outputs text
                   commission = input.nextDouble();
    }

    Azzy22188 wrote:
    Hello, new user here. I've just started doing loops, but am have a little problem that I hope you can help me with.
    I want to loop a program to input the commission figures for ten people, then calculate and output the total commission overall, as well as the average commission too.
    I currently have the below code. But I do not know how to store one input somewhere, and then store the second input, etc, and then add these inputs together at the end. Any help is greatly appreciated! Thank you =)
    import java.util.Scanner;
    /* This program calculates total pay earned for five workers */
    class Payslips
         public static void main (String[]args)
              Scanner input = new Scanner(System.in);
              int x;
              double commission, total, average;
              for (x = 1; x <=10; x++) //will loop up to 10 times
                   System.out.println ("Input commission");          //outputs text
                   commission = input.nextDouble();
    initialize toal to zero
    inside the loop , add commision to total.
    Once the loop is over , you have the total value in the variable 'total'.
    Divide total by the number of times looped to get the avg.

  • How to check current input/output rate on router subintenterface via SNMP?

    How to check current input/output rate on router (2821, etc..) subintenterface via SNMP, like cacti monitoring system.
    I cant find OID to make this with snmpwalk.
    Or there is no way to check current load by this way? Only polling?
    P.S. Ethernet subinterface, of course.
    With great respect, S.A.

    Hi,
    Try to use:
    1.3.6.1.4.1.9.2.2.1.1.6 - InBitRate
    1.3.6.1.4.1.9.2.2.1.1.8 - OutBitRate
    1.3.6.1.4.1.9.2.2.1.1.28 - ifDescription

  • How to add a input parameter in Web Intelligence ?

    Hi,
    I create a report in Web intelligent rich client and I want to prompt user to input a parameter such as report date then show this value in a report cell. Please tell me how to do ?
    Thanks
    Mau Vu Huu

    Hi Mau,
    Try this Formula
    =UserResponse("Enter Date")
    Note :"Enter Date" = Promt Text
    Refresh your report to get the name to use. It will give you the name of the prompt right above the prompt values. Make sure you put double quotes around it. I've attached a screenshot of what you are looking for:
    Now write a formula in Block cell
    =UserResponse("Enter Date")
    Regarsd,
    Mahi

  • How to get all input columns of script components checked by default to use the same in code ?

    Hi ,
    I am working on BIML Script component, where I am taking data from OLEDB Source.
    In Script Component I want all the input columns to be checked by default as input.
    I have no idea how to proceed for the same.
    Below is my code :-
    <Biml
    xmlns="http://schemas.varigence.com/biml.xsd">
    <Container
    Name="Load Data Truncate Staging"
    ConstraintMode="Parallel"
    DelayValidation="true" >
    <Tasks>
    <Dataflow
    Name="Archive Data"
    DelayValidation="true" >
    <Transformations>
    <OleDbSource
    Name="Source"
    ConnectionName="DataStaging"
    ValidateExternalMetadata="false"
    LocaleId="None" >
    <VariableInput
    VariableName="User.V_Archivequery"
    />
    </OleDbSource>
    <RowCount
    Name="Count Source Records"
    VariableName="User.sourceRecords"/>-->
    <ScriptComponentTransformation
    ProjectCoreName="MMd5"
    Name="MD5_Checksum">
    <ScriptComponentProject>
    <ScriptComponentProject
    ProjectCoreName="SC_Example.csproj"
    Name="ExampleScriptComponent">
    <AssemblyReferences>
    <AssemblyReference
    AssemblyPath="Microsoft.SqlServer.DTSPipelineWrap"
    />
    <AssemblyReference
    AssemblyPath="Microsoft.SqlServer.DTSRuntimeWrap"
    />
    <AssemblyReference
    AssemblyPath="Microsoft.SqlServer.PipelineHost"
    />
    <AssemblyReference
    AssemblyPath="Microsoft.SqlServer.TxScript"
    />
    <AssemblyReference
    AssemblyPath="System.Windows.Forms.dll"
    />
    <AssemblyReference
    AssemblyPath="System.dll"
    />
    <AssemblyReference
    AssemblyPath="System.AddIn.dll"
    />
    <AssemblyReference
    AssemblyPath="System.Data.dll"
    />
    <AssemblyReference
    AssemblyPath="System.Xml.dll"
    />
    </AssemblyReferences>
    <Files>
    <File
    Path="Properties\AssemblyInfo.cs">
    using System.Reflection;
    using System.Runtime.CompilerServices;
    [assembly: AssemblyTitle("SC_Example.csproj")]
    [assembly: AssemblyDescription("")]
    [assembly: AssemblyConfiguration("")]
    [assembly: AssemblyCompany("Ciber Nederland")]
    [assembly: AssemblyProduct("SC_Example.csproj")]
    [assembly: AssemblyCopyright("Copyright @ Ciber Nederland 2012")]
    [assembly: AssemblyTrademark("")]
    [assembly: AssemblyCulture("")]
    [assembly: AssemblyVersion("1.0.*")]
    </File>
    <File
    Path="main.cs">
    using System;
    using System.Data;
    using Microsoft.SqlServer.Dts.Pipeline.Wrapper;
    using Microsoft.SqlServer.Dts.Runtime.Wrapper;
    using System.Security.Cryptography;
    using System.Text;
    using System.Windows.Forms;
    using System.IO;
    using System.Reflection;
    [Microsoft.SqlServer.Dts.Pipeline.SSISScriptComponentEntryPointAttribute]
    public class ScriptMain : UserComponent
    public override void Input0_ProcessInputRow(Input0Buffer Row)
    string strColumnsValue = string.Empty;
    Type rowType = Row.GetType();
    PropertyInfo columnProperty;
    MD5 md5 = new MD5CryptoServiceProvider();
    Encoder enc = System.Text.Encoding.Unicode.GetEncoder();
    foreach(IDTSInputColumn100 Rw in this.ComponentMetaData.InputCollection[0].InputColumnCollection)
    columnProperty = rowType.GetProperty(Rw.Name);
    strColumnsValue += Convert.ToString(columnProperty.GetValue(Row,null));
    byte[] bbb = new byte[strColumnsValue.Length * 3];
    bbb = UnicodeEncoding.Unicode.GetBytes(strColumnsValue);
    byte[] hash = md5.ComputeHash(bbb);
    String strHash = Convert.ToBase64String(hash);
    Row.RowChecksum = strHash;
    </File>
    </Files>
    <InputBuffer
    Name="Input0">
    </InputBuffer>
    <OutputBuffers>
    <OutputBuffer
    Name="Output0">
    <Columns>
           <Column
    Name="RowChecksum"
    DataType="String"
    Length="1000"/>
    </Columns>
    </OutputBuffer>
    </OutputBuffers>
    </ScriptComponentProject>
    </ScriptComponentProject>
    </ScriptComponentTransformation>
    </Transformations>
    </Dataflow>
    </Tasks>
    </Container>
    </Tasks>
    </Package>
    </Packages>
    </Biml>
    Please suggest me where i am doing mistake.
    Regards,
    Vipin jha
    Thankx & regards, Vipin jha MCP

    http://stackoverflow.com/questions/21440993/adding-a-script-task-using-biml
    http://stackoverflow.com/questions/22455000/automatically-generate-ssis-package-from-biml-script
    Both links have nothing to do with the question.
    @Vipin: what I did in one of my BIML scripts was looping over the columns using C# in the BIMLScript, and adding each column to the input using this code. Do you have the metadata of the columns somewhere?
    I don't have the scripts with me unfortunately.
    MCSE SQL Server 2012 - Please mark posts as answered where appropriate.

  • How to give declare input...

    Hello all,
    I have a doubt in the below declare input.
    DECLARE
    l_pk1_value fnd_attached_documents.pk1_value%TYPE:= '11038';(Invoice_id)
    l_filename VARCHAR2(240) := 'Home_Screen2.pdf';
    l_seq_num NUMBER;
    Above declaration I am giving 'Home_Screen2.pdf' manually, which is taking from select FILE_NAME from fnd_lobs where PROGRAM_NAME= 'FNDATTCH'.
    How can I make automate this?
    Thanks and Regards,
    Muthu

    You have to do it in the begin block..
    DECLARE
      l_pk1_value fnd_attached_documents.pk1_value%TYPE:= '11038';
      l_filename VARCHAR2(240);
      l_seq_num NUMBER;
    begin
      select FILE_NAME
      into l_filename
      from fnd_lobs
      where PROGRAM_NAME= 'FNDATTCH';
    end;Or encapsulate the logic to get the file name in a function, and use it in the declaration section
    DECLARE
      l_pk1_value fnd_attached_documents.pk1_value%TYPE:= '11038';
      l_filename VARCHAR2(240) := your_package.your_function('FNDATTCH');
      l_seq_num NUMBER;Edited by: jeneesh on Mar 2, 2013 11:30 AM

  • How to give two Input File from Adapter Framework to EJB Modules

    hi,
    i'm using one EJB Module in SAP XI, which converts EDI file
    format to XML file format. But now i'm facing a problem, that is,
    in SAP XI we can able to give one file as an Input at a time, but
    in my case it is <input_file_name>.edi, but my issue is i need
    to refer another file also, if it is possible.?
    then,
    What and how we can able to use this, any clue
    inputModuleData.getSupplementalData("<Name>");
    or else,
    we can able to achieve this through Configuration settings,
    Option: addAdditionalFile
    please send your suggestion as well.
    thanks,
    rajesh

    hi check the development manual for reference
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f76f9f90-0201-0010-bf84-d0409ea425f1
    Note: reward points if solution found helpfull
    Regards
    Chandrakanth.k

Maybe you are looking for

  • Can't open certain folders in Finder. Please help!

    I recently upgraded from my old PowerBook G4 to a MacBook Pro, and certain folders that I transferred via flash drive from my old computer won't open. When I double click any of these folders, the Finder window immediately closes and then all the ico

  • Trying to install Netzero...

    Hey, well, I purchased my first Apple computer, the incredible MacBook Pro. So anyway, I'm spending the month with my relatives, and all they have is a dial-up connection, so when I download the Netzero program, I can't seem to open it. When I double

  • Shutting down NB and CPU fans altogether with speedfan for p2p download overnight

    Hi, Lately I started to keep my computer on overnight for p2p downloads. Problem is, my setup is too loud, thanks to the NB fan esp. I have my computer in the same room as my bed so the smallest DB difference makes an impact on my overall sleep quali

  • Request still running but?

    Hi, My request is running , but in the data target the request is set to green why? give me the solution and am not able to see the data in the data target data is there in PSA Thanx in advance, Ravi.

  • Can't install the java 1.6.0_10

    ok i've tried both online & offline installers.& can't install it. this is the error message i get eith the offline installer. the error code is 1330 & cabinet file is missing.this prob started after i scanned for virus trouble & my virus program rem