How to automate the WM/shipping process after the consignment issue ?

I am looking for the best way to automate the shipping process after the consignment issue orders has been created. since Warehouse/shipping process will not consist of any actual picking and shipment but we are still required to go through the use of Vl01N and VL02N for Delivery Note and Good issue... steps......I want to know if there is any best practice is to automate the call to VL01N,VLO2N for all the completed consignment issue orders that SAP suggest or someone has done some work in this space.....and can share their views.....
one situation to explain the needs....
Create the consignment issue orders via EDI....and once they are there ...we need a automatic process to find these order and create the delivery note , goods issue documents.........looking forward to hear from experts who can inform  if there is a standard SAP process( automatic)  out there or we need to do some custom development....to achieve this....thanks.....

Thanks for the insight....we are thinking to have a new custom table added which will have all the order that needs to batch processed and if we have any errors we can re process them from the control table ( new custom table)...please let us knwo if there is any other way to do this....or sap already has some tables....whihc we can use...to automate....as a batch process.....

Similar Messages

  • How to automate the data load process using data load file & task Scheduler

    Hi,
    I am doing Automated Process to load the data in Hyperion Planning application with the help of data_Load.bat file & Task Scheduler.
    I have created Data_Load.bat file but rest of the process i am unable complete.
    So could you help me , how to automate the data load process using Data_load.bat file & task Scheduler or what are the rest of the file is require to achieve this.
    Thanks

    To follow up on your question are you using the maxl scripts for the dataload?
    If so I have seen and issue within the batch (ex: load_data.bat) that if you do not have the full maxl script path with a batch when running it through event task scheduler the task will work but the log and/ or error file will not be created. Meaning the batch claims it ran from the task scheduler although it didn't do what you needed it to.
    If you are using maxl use this as the batch
    "essmsh C:\data\DataLoad.mxl" Or you can also use the full path for the maxl either way works. The only reason I would think that the maxl may then not work is if you do not have the batch updated to call on all the maxl PATH changes or if you need to update your environment variables to correct the essmsh command to work in a command prompt.

  • How to automate the exchange rates in BI

    Hi Guys
    can any one let me know the step by step approach of how to automate the exchange rates in BI...I know that if we right click in source system and say transfer exchange rates ..we will get those values ....But I want to automate this process in BI with a Process chain...I have created a start variant and connected it to a ABAP process type and calling the RSIMPCURR programm in sync..local....Do I need to call any Program event ? Iam not able automate this..please advice step by stepp
    After ABAP process type do I need to create any other steps ?
    regards

    Hi,
    All you have to do is to define the ABAP Process as new process variant, call mode syncronous, called from local, program name RSIMPCURR, and define a program variant for example number 12 and create it, there you select the update exchange rates., go to attributes, give a meaning and save all. You can automate the start of the porocess chain and select it as period job.
    Regards
    MK

  • How to automate the flatten transparency in illustrator?

    How to automate the "Flatten Transparency option" in illustrator via javascript. Please share with me.
    Thanks

    I'm looking for the same thing.
    app.executeMenuCommand('Flatten Transparency'); works in CC but all it does is it brings up the window and you still have to click OK to make the script continue.
    Before anyone asks why do  you want to do it etc. In print thereare instances where you have to open and edit (not text) large numbers of pdfs to change colours, outline fonts etc otherwise there's trouble on print devices.
    My script for instance looks for 100K blacks and replaces them with rich black, looks for empty text frames, overprint, bleed settings, clipping paths etc.
    The only way to edit successfully a pdf without fonts is to place it and flatten transparency outlining fonts and then work on it.
    So back to the point. After the window pops up, is there a way to simulate a keystroke like "Enter" or maybe app.executeMenuCommand('Flatten Transparency'); takes arguments like:
    app.executeMenuCommand('Flatten Transparency',preset_name);...?
    Anyone? Adobe SDK team? :-)

  • How to automate the data flow to content servers?

    We have ECC connected to CS. Could you help tell how to automate the data flow into the CS? Thanks a lot!

    What do you use the Content Server for? If its for archiving you need to run the STORE job to send the data to the CS.
    I can't see a reason to automate that process
    Regards
    Juan

  • OB52 Posting Period Close:  Does anyone know how to automate the close?

    Does anyone know how to automate the FI Period Close (trans code OB52)?  Currently, the business users go into the screen and open and close any periods manually.  For the MM period close, we are able to do so because we found the program to use in the batch job.  For some reason, the FI side shows the program SAPL0F00 but this is only a view and will not allow a batch job to be created.  Does anyone know of the actual program used for the FI period close?

    Use program RFPERIOD_OPEN.  It may help.  For further details you may check the following thread.
    RFPERIOD_OPEN

  • How to automate the Acrobat Reader plugin in Internet Explorer

    Hi,
    I have been trying to figure out how to automate the Acrobat Reader plugin in Internet Explorer. My goal is to find a way to allow users of our web application to print PDFs to the default printer without having to go through the plugin's GUI. Our application includes a browser helper component, and I had hoped it would be possible to use the IWebBrowser2 interface's get_Document() method to get at some sort of interface to the plugin (as is possible for, say, a Word document hosted in Internet Explorer) and then use this to print the document. However, this does not work: get_Document(), when called on an IWebBrowser2 instance with a PDF loaded, returns E_NOINTERFACE. I also tried calling the IWebBrowser2 interface's ExecWB() method with OLECMDID_PRINT, OLECMDEXECOPT_DONTPROMPTUSER, and PRINT_DONTBOTHERUSER, and printed a blank page rather than the PDF.
    Is it possible to do what I am attempting? Like I said, my core goal is to print a PDF from within Internet Explorer without requiring user interaction. I'd appreciate any suggestions as to how I might accomplish this -- it doesn't _have_ to be by automating the plugin (maybe that is a the wrong approach... though it sure would be nice if the plugin provided access to its object model via IWebBrowser2->get_Document()).
    Thanks in Advance,
    Steve Mckinney
    Senior Developer
    Paxon Corporation

    IF that were entirely true, then the whole purpose of this thread is moot (automating printing server side). It is possible to load the file via URLs using the following html code:
    "<"body>
    "<"OBJECT id="pdf"
    type="application/pdf"
    width=800
    height=600 >
    "<"param name="src" value="http://localhost/pdfs/vorder_nc.pdf"/>
    "<"/OBJECT>
    "<"script language="JavaScript">
    function waitLoad()
    setTimeout("printFile()",2000);
    function printFile()
    var objPdf = document.getElementById('pdf');
    objPdf.PrintAllFit(1);
    "<"/script>
    "<"/body>
    So, if I used php or some other scripting language on the server to fill in the name of the pdf, I can load it via a URL, wait a couple of seconds for it to load, and then print it without user interaction. I wish that the LoadFile method would load a URL so that when it returns, I know it is loaded and I don't have to put faith in a timer that may not be enough for a large file.
    This is the situation I'm in. This way works but I don't like the timer. I'd rather have the plugin let me know when it's loaded. Is there another method that can help me do what I want?
    Thank again.

  • How to fix the Timing issue in Discoverer reports

    Hi,
    While running the discoverer report in Discoverer plus is taking more than 1 hour to complete( Gen.time + Extract to excel)
    where as the same report completes quickly in discoverer desktop.
    how to fix the timing issue in discoverer plus 
    Thanks
    Srinivas

    Timo Hahn wrote:
    There is a problem with autoHeightRows and columnStretching used together in 11gR1.
    Have you tried without columnStretching?
    Or have you tried if it works in 11gr2?
    TimoHi Timo, Thank you very much for taking time to respond to my question.. :)
    Back to my question...
    I tried removing the columnStretching although my requirement really requires this but no effect really happens even if I remove this.
    Based on my investigation on the generated HTML, I notice the following items:
    1. A table is being wrapped in a div that is being set at a fixed height.
    2. On first load, if your autoheight rows is set to 6, the framework is setting a height of 96px to the div. This height would almost cut the last row of the table.
    3. If you try to refresh the page or try to re-PPR the component, the framework resets it to 102px which causes the last row to be fully displayed.
    My only concern is that IE is perfectly displaying this while Chrome and FF are having problem.
    Based on my understanding, the framework is messing up the height only on first load. Not sure but this is how I see it. I am really not confident also on my findings
    and I would most likely hear other's comment.
    Thanks.

  • Shift Planning (PP61) in SAP. How to automate the process of entering  data

    Hi Friends,
    With using PP61 tcode we can able to enter data manually.
    I want to upload data from excel file. Is there any automation process? like any programs are function modules will useful?
    Many thanks in advance for the solution.

    hai sandeep,
    In PP61 we have to select either target plan or actual plan and also there are radio buttons for selecting the periods,how do you automate the data upload,i think there is only one field to upload (organizational unit )only then what about other parameters,if it is possible to upload all the parameters,let me know.

  • How to automate the process of Uploading RPD ?

    Hi All,
    I am on 11.1.1.6.0 and Windows server 2008. What I am wanting to do is to automate the process of uploading the repository on my development server and restarting the server automatically. And I want this to happen 3 times a day at specified intervals. For ex, I want that automatically, at 6:00 AM, 3:00 PM and 6:00 PM everyday my MUD repository should be uploaded to my development BI server without any manual intervention whatsover.
    I know this can be done using the wlst sctipts. I have couple of questions around that will appreciate if anybody can answer both of them.
    1. I don't know and understand the language which wlst scripts use. And even if somebody gives a ready script I should be able to understand that. So the question is from where can I learn that language. Like for BIP, we can learn xslt from w3 schools. How can i do for wlst tool/ scripts?
    2. Lets say I learned the language and created a script abc.py which uploads the repository. But How will that be automatically called or run on my Development Server? By a windows batch script? If yes, then who will run that windows batch script ? Do I need to manually run that? Or running of Windows Batch script can also be automated and can be run at specified intervals as I want?
    I'll appreciate if somebody can explain me this in detail.
    Thanks,
    Ronny

    Check this
    http://ssssupport.blogspot.com/2012/10/obiee-11g-deployment-using-shell-script.html
    Any updates on this :)
    How you end up with this?
    Edited by: Srini VEERAVALLI on Dec 28, 2012 8:21 AM
    Any updates Ronny!!
    Edited by: Srini VEERAVALLI on Jan 2, 2013 7:33 AM

  • How to automate the process of converting a pdf to excel online?

    Hi,
    Each morning I recieve a bunch of pdf files form my clinet and I need to convert all of them to MS - excel and then use them for further calculations.
    This is a repititive, tedious and time consuming process.
    So the idea is to automate the following steps-
    1. Open the pdf file from the suggested/given location
    2. Convert it to excel- online
    3. Save it at a desired location
    4. Repeat the process for all files.
    Can some one please suggest how to write and execute the code to fulfill this algorithm?
    Thanks
    Vivek

    Hi, Vivek.
    Currently, ExportPDF can only handle 1 file at a time. Adobe Acrobat can do batch export to Excel, however.
    This idea has already been added to the ExportPDF Ideas list ("Export multiple..."). If you'd like to see this improvement to ExportPDF, please add your vote or comment here.
    Thanks.
    Dave

  • How to automate the process of adding members into the planning workflow and assigning owners to it?

    Hi,
    We have a workflow XYZ. After every two-three days our entity structure is getting refreshed - so new entities comes in.
    Every time we have to manually add these new entities to the workflow and assign owners to it.
    Please let me know if there is any option to automate the process.
    Hyperion Planning version is 11.1.2.2 .
    Thanks.

    Hi, Vivek.
    Currently, ExportPDF can only handle 1 file at a time. Adobe Acrobat can do batch export to Excel, however.
    This idea has already been added to the ExportPDF Ideas list ("Export multiple..."). If you'd like to see this improvement to ExportPDF, please add your vote or comment here.
    Thanks.
    Dave

  • How to automate the upload x 509 certificate to SAP process.

    Hi Pros,
    We currently using x509 for SSO.  However, we have to manually load the x509 certificate to the SAP ABAP system for every new users, or a certificate is expired. 
    Has anyone been able to automate this process?  How to know when a certificate is about to be expired?  how automatically create the x509 cer file?  how to upload the x509 automatically to SAP ABAP?    Please let me know if more information is needed. 
    Thank you.
    Terrisa.

    Hi Julius & Olivierl,
    I had the programer look at the the RUSREXT program.  We tried to run the program step-by-step but not knowing how to 1. point the program to look at the certificate file, 2. mapping the values from the file to the variables in the program.  What should I fill in the fields on the screen below.  This screem came up during the step-by-step run of the RUSREXT program
    Enter Correct SNC Names in Table View VUSREXTID (from ....
    User                                         ____________    to  _______________
    User Group                                ____________   to  ________________
    External ID type                         DN
    Prefix of External Name              CN=
    Suffix of External Name               , OU=&WPOU, O=mySAP.com User, C=DE
    Optional: Name of Issuer             _____________________________________
    |_| Only Users Without Ext. Names
    |_| Test Mode
    Has anyone out there tried to automate this process to take place of TCode "EXTID_DN"?  Thank you.
    Terrisa.

  • How to automate the process of creating BIAR files

    Dear All,
    Is there any way I can automate the process of creating BIAR files from the repository (Crystal / Webi reports)?

    Hi
    please check the administration guide for BO XI 3.1 (look in the chapter BIAR command line tool)
    [http://help.sap.com/businessobject/product_guides/boexir31/en/xi3-1_bip_admin_en.pdf]
    You can generate BIAR files from the command line and thus automate this at OS level.
    Regards,
    Stratos

  • How to automate the creation of this workbook?

    Hi
    I generate the same report for 3 departments at the end of each day and would like to place them in a workbook as 3 worksheets and a fourth worksheet (tab) as the total of the three tabs.
    How best can I automate this process so that the formatting (colors, etc) will remain the same.
    Please provide detail steps if possible.
    Thanks

    generate the same report for 3 departments at the end of each day
    what do you mean by that? you create a new query everyday - it means 90queries for a month.
    If i get this right, you run the same query with different variables. Run the queries, save them as workbooks with ur required format - and everyday the user would refresh them with the required variables.
    Correct me if I got the whole issue wrong

Maybe you are looking for