Vendor Creation Via OAWD using workflow

Hi,
We are currently using SAP Archvelink for attaching vendor invoices to FI docuemnt via FB60 and MIRO using a basic workflow function
We want to be able to use the same process ie OAWD to be able to initiate the process of creating a vendor via XK01. The user woudl receive an authorised vendor creation PDF form that they woudl then attach to the vendor when cretaing
I have tried to configure a new document type and have assigned to object type LFA1 in transaction SOA0. However, when I try to maintain the workflow parameters to link to transaction code XK01 in transaction OACA I get the following message
Parameter TRANSACTIONCODE does not exist for method CREATE of object type LFA1
I dont know what to do (or if it is possible) to enable the "CREATE" method for object type LFA1
Thanks in advance

I solved my own problem.
I had to configure OAWS first then it allowed me to add create in SOA0
Edited by: Tracee on Sep 14, 2010 7:43 AM

Similar Messages

  • Job Creation via BAPI using BackgroundJob

    Hello,
    I'm working on Access and I'm submitting a JOB in SAP; till we were in release 4.7 my database worked but after the relase change I'm not able to us it again.
    When I call my function in order to do "AddABAPStep" the system give me a Run-time error '4701'
    "Non-BAPI methods with export parameters are currently not supported"
    Hereafter the instruction that doesn't work :
            oJobrun.AddABAPStep ExternalUserName:=pMUsrUser, JobName:=Jname, Jobcount:=Jcount, AbapProgramName:=xabap, AbapVariantName:=xvar, Return:=oReturn
    Is there someone that is able to help me ?
    Thank you in advance
    Guido Chiappa
    Edited by: Guido Chiappa on Jul 14, 2011 11:31 AM

    Hi,
    May help you:----
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/edab9790-0201-0010-479a-98fcc7ebc7bd?quicklink=index&overridelayout=true
    Regards,
    Suman

  • Employee vendor creation

    Hi ,matically
    how to create automatic vendor creation via PRAA.
    Is this prgm can run in back ground and will updat enewly hired employees automatically.
    GK

    Hi GK,
    Yes this can be done.
    Follow the steps mentioned in this doc - http://scn.sap.com/docs/DOC-27098
    Thanks
    Vipin

  • Workflow for Vendor Creation through a portal.

    Hi All Workflow Experts,
                                         I have a scenario here.In my project  vendor is created through a portal.On submit button from portal the workflow is to be triggered.I have to design the workflow process.So can you please guide me through what all should i consider while i design this workflow?
    This is my first workflow assignment so if you explain in detail it will be a great help.
    I will just pen down what all scenarios i can think of:
    1.Start workflow after vendor creation or modification.
    2.Check whether approver are maintained in Org structure through  standard FMu2019s.
    3.Check If approvers are maintained ?
    4.If yes,approve or reject the vendor.
    5.If no,get the agents from the custom table who can take an action on this.
    This is what i can think of.
    Please guide me.
    Thanks in Advance,
    Saket.

    The corresponding BO related with the vendor creation or changing is LFA1 but this Business object doeanot have any events that are related to Create and Change , so try to create a ZLFA1 and add you own events or make use of delegation concept where you will create a delegation for LFA1.
    For your first isssue
    Start workflow after vendor creation or modification
    EXIT_SAPMF02K_001 Vendors: User Exit for Checks prior to Saving is the user exit where in you can call the workflow when ever you change or create , because this user exit will trigger when ever you try to save the vendor. so i think you can make use of this user exit
    For your second Issue
    Check whether approver are maintained in Org structure through standard FMu2019s.
    Make use of SWI_GET_USERS_OF_ORG_UNIT this fucntion mdoule to get the user of the ORG unit
    or you can create a Rule(for determining the agents dynamically) to find the approvers.

  • Vendor create process using workflow

    hello,
    I have been assigned a project to desgin a process to automatically create a vendor. below is what I think has to be done. can this be reviewed to see if this is the correct approch and if not, suggest a better approach.
    1) the vendor will sign onto our portal and submit their information to have them created as a vendor in our system. this information will be stored in a custom table
    2) the portal process will have a ABAP program that generates the screen for the user to enter thier data. this program will also start a workflow that will send a notification to a person inside our company for them to review the information and decide weather the vendor can be added.
    3) if the person approves the request, the workflow will submit a process to create the vendor, and send a approval email to the vendor
    4) If the person rejects the process, the workflow will send an rejecction email will be sent to the vendor
    I am in charge of creating the workflow and submitting the vendor create process
    thanks in advance for the help

    Hi Anil
    Take a look at the Workflow collateral located on http://otn.oracle.com/products/integration/content.html.
    I'd also suggest looking at the Sample Workflow Processes included with Oracle Workflow.
    There are also some on demand Oracle iLearning courses (ilearning.oracle.com) which should be very useful for you.
    Cheers
    Mark
    Hi,
    Could anyone give me a case study describing how to create a new process using workflow builder? Where are the notifications saved in the database? Where is the process saved? Give me a general flow of events in the creation of, say a document management process wherein all these details are specified. A document containing the whole flow involved in the creation of a process using workflow builder. What all PL/SQL procedures I need to write and all. I have both workflow server and builder installed.
    This would be of immense help.
    Regards
    Anil

  • Need Sample Code for Vendor creation using JAVA API

    Hi,
    I have a scenario like Vendor creation using <b>Java API</b>.
    1.I have Vendors (Main) Table.
    2.I have <b>look up</b> tables like Account Group.
    3.Also <b>Qualifier table</b>(Phone numbers) too.
    Could you please give me the sample code which helps me to create Vendor records using Java API?
    <b>I need Code samples which should cover all of the above scenario.</b>
    <b>Marks will be given for the relevent answers.</b>
    Best Regards
    PK Devaraj

    Hi Devraj,
    I hope the below code might solve all your problem:-
    //Adding Qualified field
    //Creating empty record in Qualifed table 
    //Adding No Qualifiers
    Record qualified_record = RecordFactory.createEmptyRecord(new TableId(<TableId>));
    try {
    qualified_record.setFieldValue(new FieldId(<fieldId of NoQualifier), new StringValue(<StringValue>));//Adding No Qualifier
    catch (IllegalArgumentException e2) {
    // TODO Auto-generated catch block
    e2.printStackTrace();
    catch (MdmValueTypeException e2) {
    // TODO Auto-generated catch block
    e2.printStackTrace();
    //Creating Record in Qualified table
    CreateRecordCommand create_command = new CreateRecordCommand(connections);
    create_command.setSession(sessionId);
    create_command.setRecord(qualified_record);
    try
    create_command.execute();
    catch(Exception e)
    System.out.println(e.toString());
    RecordId record_id = create_command.getRecord().getId();
    //Adding the new record to Qualifed Lookup value and setting the Yes Qualifiers
    QualifiedLookupValue lookup_value = new QualifiedLookupValue();
    int link = lookup_value.createQualifiedLink(new QualifiedLinkValue(record_id));
    //Adding Yes Qualifiers
    lookup_value.setQualifierFieldValue(0 , new FieldId(<FieldID of Yes Qualifier>) , new StringValue(<StringValue>));
    //Now adding LookUP values
    //Fetch the RecordID of the value selected by user using the following function
    public RecordId getRecordID(ConnectionPool connections , String sessionID , String value , String Fieldid , String tableid)
    ResultDefinition rsd = new ResultDefinition(new TableId(tableid));
    rsd.addSelectField(new FieldId(Fieldid));
    StringValue [] val = new StringValue[1];
    val[0] = new StringValue(value);
    RetrieveRecordsByValueCommand val_command = new RetrieveRecordsByValueCommand(connections);
    val_command.setSession(sessionID);
    val_command.setResultDefinition(rsd);
    val_command.setFieldId(new FieldId(Fieldid));
    val_command.setFieldValues(val);
    try
         val_command.execute();
    catch(Exception e)
    RecordResultSet result_set = val_command.getRecords();
    RecordId id = null;
    if(result_set.getCount()>0)
         for(int i = 0 ; i < result_set.getCount() ; i++)
         id = result_set.getRecord(i).getId();     
    return id;
    //Finally creating the record in Main table
    com.sap.mdm.data.Record empty_record = RecordFactory.createEmptyRecord(new TableId("T1"));
    try {
         empty_record.setFieldValue(new FieldId(<FieldId of text field in Main table>),new StringValue(<StringValue>));
         empty_record.setFieldValue(new FieldId(<FieldId of lookup field in Main table>), new LookupValue(<RecordID of the value retrieved using the above getRecordID function>));
    empty_record.setFieldValue(new FieldId(<FieldId of Qualified field in Main table>), new QualifiedLookupValue(<lookup_value>));//QualifiedLookUp  value Retrieved above
    } catch (IllegalArgumentException e1) {
    // TODO Auto-generated catch block
         e1.printStackTrace();
    } catch (MdmValueTypeException e1) {
         // TODO Auto-generated catch block
         e1.printStackTrace();
    //Actually creating the record in Main table
    CreateRecordCommand create_main_command = new CreateRecordCommand(connections);
    create_main_command.setSession(sessionId);
    create_main_command.setRecord(empty_record);
    try
         create_main_command.execute();
    catch(Exception e)
         System.out.println(e.toString());
    Thanks
    Namrata

  • Vendor creation using bapi

    Hi experts,
    I am new to bapi concept I done vendor creation by using bdc and lsmw and now I want to create by using bapi can anyone send program code for creating so that I can go through it.
    thanks in advance,
    points will be rewarded,
    Srinivas.D

    hi
    I gone to the bapi function module for bapi_vendor_create etc but the problem their is no input parameters or tables so I am little bit of confused if any body has the code plz send me.
    Regards,
    SrinivasD

  • Order creation using workflow

    Hello,
    I'm trying to create sales order automatically using event triggered by user status changes. I need no user participation in this process. Can i use workflow for this purpose? As i see from documentation' examples user activity is needed...Do i understand correctly?
    Please advise.
    Thanks in advance!

    I still want to point out that you don't necessarily need a workflow. Maybe you could call the BAPI for creating the sales order at the same point when you change user status in this quotation (I don't know really what you mean by this, and how you do this). Maybe the workflow solution is the correct one, but it isn't always the case. You are in workflow forum and people are enthusiastic about using it for everything (including myself ;). But let's say you wanted to have a control about the sales order creation already in the user status change - for example if the sales order couldn't be created, you would like to issue an error message for the user doing the status change - in this kind of case the WF solution would not probably be the best one, because the workflow will execute the BAPI in the background.
    But I am sure you will find the best solution for your requirement.
    Regards,
    Karri

  • Vendor creation using LSMW

    Hi All,
    I m  trying to do vendor creation in LSMW method using RFBIKR00 program,please any one guide me I strucked in 2 Maintain Source Structures after this cursor not moving to next radio button even though I done for next steps final it is not reading the data,pls help me out..
    Thanks n regds,
    sree.

    Hi
    Check these links..might prove useful
    [http://www.sapdb.info/wp-content/uploads/2008/08/lsmw.pdf|http://www.sapdb.info/wp-content/uploads/2008/08/lsmw.pdf]
    Regards
    Raj

  • Purchasing vendor block(MK01) using workflow

    Hi,
          Can any body help to blcok purchasing vernder using workflow.
    Right now i am doing with Userexit & BTE.
    Can any body help me the same using Change document procedure.
    Regards
    kalyan.

    HI Manahor,
               Thanks for your quick reply.
    I am dooing as
    1)I created a custome business object
    2)i am calling the same in BTE(1420) and i am uing user exit to get EKORG..
    i need to block the vendor based on Purchase organization(EKORG).We are having LFA1 but here there is no EKORG in LFA1.
    Same thing i want to do using change document procedure.I found change document KRED.But it is not working.
    can you tell me how to do the same using Change Document Procedure Or can you tell me any other better solution other than User exit & BTE.

  • Article Creation Using workflow

    Hi Experts,
    i am new to workflow.
    i have a requirement to Create a Article using workflow. i am using BO BUS1001006. and my requirement is to fill the data in mm01 with different agents.
    Now my main problem is now how can we give a user only BASIC DATA screen of MM01 and 2nd user only MRP data screen and 3rd so on.... i.e BASIC DATA input guy should not have access to MRP and vice versa..hope u understood.
    How to Achieve this requirement. can you please explain.

    You might want to talk to the MM and/or authorization guys - they should know this stuff. This is hardly a workflow issue (at least at this point). Do few searches here in SCN with key words "material master", "screen sequences", "authorization roles" or "restrict material master views" etc. and that should bring you to the right direction.
    Kind regards,
    Karri

  • Unable to enter Recon.account during vendor creation

    Hi Friends,
    During vendor creation:
    In accounting information accounting i'm unable to enter Recon.acct (160000). Why is that and what will be the effect??
    Anil

    The reconciliation account (LFB1-AKONT) field is controlled via trans OBD3 (account group) / trans OB23 (field status group) customizing. It appears that the field status customizing must be display.  Please perform the following steps:
    1)  Run trans OB23.
    2)  Double click on Change Vendor (Accounting) -> Company code data->  Account management.
    3)  Change reconciliation account to change.  Click on Save.
    4)  Run trans FK02 using desired vendor / company code.  Click on Accounting info.  Press Enter.  Reconciliation account field should be available to enter, i.e., change mode.

  • Initmate Vendor Creation (MK01 + XK01)

    Dear friends,
    I want to initimate Acc. dept. after creating vendor using MK01 tcode. MK01 used by Purchase people to create vendor and acc. dept. maintain acc. assignment. I want to initimate Acc. dept after creating vendor automatically.
    Our company used 46C version but we are not using workflow. So kindly give me solution.
    Thank you,
    Regards,
    Nilesh Shete

    Hi Nilesh,
    If you are not using workflow(the cleanest way), then you have two options.
    <u>Option 1.</u>
    Find a user exit that is as close to the 'SAVE' as possible. I found only one such user exit. SAPMF02K  User exits: Vendor master data
    Send an email out of this exit.
    The only catch here is that, if the user has the ability to cancel after the call to this exit or the creation fails after the call, you will be sending an invalid message.
    <u>Option 2.</u>
    Let the purchasing create the vendor and you have another program that constantly monitors the change documents or LFA1 for newly created vendors and if found, sends out an email to the acc. dept.
    Hope this helps,
    Srinivas

  • Function module for offline  vendor creation.

    Hi Xperts,
    I have searched all threads but i didn't find it, plz help me its urgent,
    Is there a Function Module or BAPI for vendor creation. The BAPI_VENDOR_CREATE works online. I am looking out for an offline. This is for avoiding the use of BDC that we are currently using.
    thanx in advance
    Regards,
    Naresh.

    Hey whats up xperts............

  • Send smartforms via email using action profiles

    hi,
    i am trying to send smartforms via email using action profiles and i would like to know if anyone has any document or know any steps to do the same. i have created the smartform and i created the action in an action profile. i selected the option "Smartforms Mail". and i have mentioned my smartform in it.
    I have previously worked with action profiles to trigger workflows which sent a mail. That was relatively easier as i could mention that the mail be sent to my mailbox. But in the smartforms option, i dont know how to give the instruction that it be sent to my mailbox.. is there any place i can set it? The action is not person dependant and is done whenever saving a document.
    Please guide.
    Thanks,
    Nisha

    Hi Nisha,
    As u worked on Action profiles, i recommend u use action profile with permitted Process type as Smart Forms Mail to send the mails which contains the data in Smartform u created.
    Use below mail setting
    Form Name              (u r ZSmartform)
    Processing Class      CL_DOC_PROCESSING_CRM_ORDER
    Processing Method    CRM_ACTIVITY_EXEC_SMART_FORM
    Archive Mode            1 Mail only User
    In Action definition details u can mentioned the Processing time, Partner dependent for action to who u want to send the mail, further in action condition using schedule and start condition u can set the criteria to mail trigger.
    Hope it'll help u.
    Regards,
    Dipesh.

Maybe you are looking for

  • Firefox will not open because of a "nssutil3.dll" error. How can I back up my bookmarks when Firefox will not open?

    Firefox would not open because of a "nssutil3.dll " problem. I've researched the problem, and I am using Norton 360 which is not a known antivirus program that deletes the file as a trojan. I want to uninstall and reinstall firefox, but first I want

  • Missing tkx?

    Hi, I'm trying to modify a perl script (I think) with absolutely no knowledge of perl. I don't have time right now to learn perl, and Google has failed me since the first little change. My problem is that when run the script generates an error along

  • Really weird problem setting up FTP in Dreamweaver MX 2004 for Mac.

    I'm new to Dreamweaver for all that I've had it for years. Been using GoLive. Using Dreamweaver that is part of Studio MX 2004. I'm trying to set up FTP. Tell Dreamweaver to Create New Dreamweaver Site. Name the site. Don't use server technology. Pic

  • Is it possible in report program

    Hi , I have one report program with some ' WRITE ' statement (Write : /   ' This is SAP world ' .)..For this report program i have got the output as  ( This is SAP world ) . My requirement is i want to edit this statement (This is SAP world ) in the

  • E mails and folders vanish.

    Some folders completely vanish, some folders remain, but with all of the contents missing. Some e mails that I want to keep but havn't moved to a folder will vanish.