Table design for approval flow

Hi,
For our application,we have to create an approval flow in Java.
We have to maintain the structure in the database.We are using Oracle 10g and we don't have any DBA access.
The brief structure is as follows:
there will be an activity which after being created is allocated some cost.
After allocating the cost,it goes through a first level approval.
If approved then it has to go through a second level approval and then the activity becomes approved.
The full flow needs to be tracked in a table structure whether the activity is created/rejected/approved first level/approved second level.
In a separate table structure we also need to maintain the hierarchy of user,approval 1 and approval 2.
Could you please suggest me way outs to maintain the hierarchy as well as the full historical data related to the activity after it is created.

In the workflow system,One request is created by Specific user who belongs to particular role.  Approver are dynamic currently 5 approvers are available but in future the approver may be 'N' numbers. Each stage the status is different. Approver may
reject or reopen or query the request.. Based on these status the flow will status again from the requester or approver .suppose 4th approver made any query it should go to 3 approver or 1st requester.
I need to design the table for the above requirements .please advise with schema.
The basic table structure should look like as,
REQUESTOR
REQUESTOR_ID INT
REQUESTOR_FNAME VARCHAR(100)
REQUESTOR_LNAME VARCHAR(100)
REQUESTOR_EMAIL VARCHAR(100)
REQUESTOR_ROLEID INT
REQUESTOR_ROLE
ROLE_ID INT (PK)
ROLE_NAME VARCHAR(100)
ROLE_DESC VARCHAR(300)
APPROVER
APPROVER_ID INT (PK)
APPROVER_FNAME VARCHAR(100)
APPROVER_LNAME VARCHAR(100)
APPROVER_EMAIL VARCHAR(100)
APPROVER_CAT VARCHAR(50) -- IN CASE IF YOU HAVE ANY SUBSYSTEM THEN APPROVER CAN BE CATEGORISED.
STAGE
STAGE_ID INT (PK)
STAGE_NAME VARCHAR(100)
STAGE_PRIORITY INT -- IF REQUIRED, I.E IF THERE IS ANY STATUS PRIORITY ONE AFTER ANOTHER.
REQUEST_MASTER
REQUESTLOG_ID INT (PK)
REQUESTOR_ID INT (FK) REFER REQUESTOR_ID IN REQUESTOR table
REQUEST_DESCRIPTION VARCHAR(MAX)
REQUEST_DATE DATETIME
APPROVER_CAT VARCHAR(50) (FK) REFER APPROVER_CAT IN APPROVER table -- Email to be send to all approvers under this category.
REQUEST_STATUS INT FK REFER STAGE_ID IN STAGE ENTITY -- SET A STAGE AS DEFAULT STATUS INITIALLY(SAY NEW). UPDATE this field whenever the history information is updated in REQUEST_HISTORY table.
REQUEST_HISTORY
HISTORY_ID INT (PK)
REQUESTLOG_ID INT (FK) REFER REQUESTLOG_ID IN REQUEST_MASTER TABLE
APPROVER_UPDATED_BY INT (FK) REFER APPROVER_ID IN APPROVER TABLE
REQUESTOR_UPDATED_BY INT (FK) REFER REQUESTOR_ID IN REQUESTOR TABLE
UPDATED_DATE DATETIME
STAGE_STATUS_ID INT (FK) REFER STAGE_ID IN STAGE TABLE
Regards, RSingh

Similar Messages

  • Design for process flow in OWB

    Hi Experts
    I want to design my process flow. Please send the processflow design template/Document.
    Regards
    frnd

    You define an Oracle Workflow location to specify where you want to deploy your process flows. The Oracle Workflow location points to a workflow schema that runs in the target database. Warehouse Builder process flows comply with the XML Process Definition Language (XPDL). When you generate a process flow, Warehouse Builder generates an XML file in the XPDL format. You can plug the generated XML file into any workflow engine that follows the XPDL standard.
    Process Flow Modules include Process Flow Packages that include Process Flows. The Process Flow Package is a grouping mechanism that determines which process flows you can interrelate. At run time, you can launch one process flow that launches other Process Flows that exist in the same process flow package.
    The Process Flow Module acts as a container by which you can validate, generate, and deploy a group of Process Flows.
    So, it concludes that there is no standard design for process flows, it all depends to your datawarehouse and your ETL process(extracting, transformning. loading)

  • Table design for an indicator field in SQL Server 2008 R2

    Hi, I am using SQL Server 2008 R2 and I have an existing table (Please see the below table definition).
    CREATE TABLE Code
    ID INT IDENTITY (1, 1) PRIMARY KEY,
    Code NVARCHAR(10) NOT NULL UNIQUE,
    [Description] NVARCHAR(100) NOT NULL,
    [Type] NVARCHAR(30) NULL,
    Program NVARCHAR(30) NOT NULL, --Adding this column as a filter for different programs
    ModifiedDate DATETIME NOT NULL DEFAULT (getdate()),
    ModifiedBy NVARCHAR(128) NOT NULL DEFAULT (suser_sname())
    This table has been in use for a while and I am adding a column [Program] to identify records for that program. Previously it used to be just one program and this [Code] table was working just fine now there are 5 different programs introduced in the organization
    and this could keep changing over time.
    For instance Program A uses Code A, Code B, Code C & Program B uses Code C, Code D, Code E & Program C uses Code C. I know of an option which works but creates maintenance overhead
    everytime these programs change by doing something like below.
    Code ProgramA ProgramB ProgramC ProgramD ProgramE
    A      Yes
    B      Yes
    C      Yes           Yes           Yes
    D                      Yes
    E                       Yes
    But, is there a better way to do this keeping 1 column for Program and users being able to manage their data without looking at other codes. I mean a user who manages Program A should be able
    to see codes A, B, C & user managing Program B should see codes C, D, E & for Program C just code C.
    Thanks in advance.....
    Ione

    I would add it as a seperate table with columns as
    ProgramName  CodeName
    the data would be like
    ProgramName CodeName
    ProgramA A
    ProgramA B
    ProgramA C
    ProgramB C
    ProgramB D
    ProgramB E
    ProgramC C
    then its just a matter of adding a join from your above table to this table on Code field to get associated Program info and filter on it.
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • What the best table design for item and it's serials ?

    I have Item's Table that hold Items meta data
    what the solution in the case that i bought 500 Item (Ex: Hard Disk) within different serial no for each item
    when  i save this serials will be in one to many ...
    when i think in this solution i found that the table have serial no will be in 2 months about 500,000 record
    is that best case or there is another solution ?
    another one ,
    If i have item with multiple colors
    best case to save every item with its color as one item  (item_ID,Item_name ,Item_color,....)
    or save item in table and colors in table ... and create table to obtain many to many relationship
    what the best case and Fastest ?

    I have Item's Table that hold Items meta data
    what the solution in the case that i bought 500 Item (Ex: Hard Disk) within different serial no for each item
    when  i save this serials will be in one to many ...
    when i think in this solution i found that the table have serial no will be in 2 months about 500,000 record
    is that best case or there is another solution ?
    another one ,
    If i have item with multiple colors
    best case to save every item with its color as one item  (item_ID,Item_name ,Item_color,....)
    or save item in table and colors in table ... and create table to obtain many to many relationship
    what the best case and Fastest ?
    1. I don't think there is any problem in having 1:N relation between ITEM and SERIAL table. That is how relational database works.
    2. I will recomend you to use 1:N rather than N:M. For DML operation 1:N has minimum impact when compare to N:M. For instance if the item color field is added in the serial number table, i may need to update multiple rows however if i add the color code
    field in item table then i may need to update or insert only one row.
    ------------------ RECOMENDATION
    ITEM
     ITEM_ID int (PK)
     ITEM_NAME VARCHAR(50)
     ITEM_DESCRIPTION VARCHAR(100)
     ITEM_TYPE VARCHAR(10)
     ITEM_CATEGORY VARCHAR(10)
     ITEM_COLOR VARCHAR(10)
    SERIAL
     ITEM_ID INT (FK)
     SERIAL_NUM VARCHAR(20) (UNIQUE)
    Regards, RSingh

  • Advise on Table design

    Dear all,
    I have a pool of data which are based organized has CATEGORY and SUB-CATEGORY. When I am configuring the database I should be able to define all categories at once, then being able to define which one is the Parent category of the others.
    For exemple if I have a set of Dishes for a restaurant, then I can classify those dishes in different menu category which are then the Parents category for dishes.
    Please note that a SUB-CATEGORY can have other sub categories attached.
    To have a better idea of what I am trying to do is similar things when you create folders and sub folders on a file system. From the configuration side of the database I should be able to define my category and subcategories and then organize them by a link
    ID or other stuff, in the same way I will organize folder.
    What will be the best Database table design for that scenario ?
    I am not a DBA, but have some basis so try to speak the same language as me :-)
    Thanks for help
    regards

    I think you have it with your design. There are a few ways to represent a hierarchy in SQL, and having two tables like this:
    CategoryID    CategoryName   
    ParentCategoryID
    1001         
    Dishes          NULL
    1002          Desserts       
    1001
    1003          Icecream          
    1002
    SubCategoryID    SubCategoryName   
    CategoryID
    10001                  
    Vanilla                     
    1003
    10002                  
    Strawberry              
    1003
    10003                   Butterscotch             1003
    Make sense ONLY if you can guarantee a two level hierarchy (or a fixed number of levels, where you might have yet another table SubSubCategory). Having a fixed number of levels can make processing a ton easier because your queries can be written in
    a straightforward manner because the levels of nodes in the tree  remain the same.
    Your requirements here:
    "CATEGORY can have other sub categories attached."
    Leads to the more flexible solution like you have set up:
    CategoryID    CategoryName   
    ParentCategoryID
    1001         
    Dishes          NULL
    1002         
    Starters       
    1001
    1003         
    Item1          
    1002
    1004         
    SubCat1        
    1003
    1005         
    SubCat2        
    1003
    1006         
    SubCat3        
    1003
    Because adding a subcategory on SubCat3 is as simple as:
    1007          SubSubCat1        
    1006
    Processing the hierarchy becomes an iterative process (using a recursive CTE) if you have needs to do a lot of aggregation on groups. There are techniques available to make things go faster than using this pattern in the implementation, but unless
    you are going to need 1000s of nodes, then this pattern works great (known as the adjacency list, where you are basically storing the adjacent node in your tree).
    Louis
    Without good requirements, my advice is only guesses. Please don't hold it against me if my answer answers my interpretation of your questions.

  • What is the best/efficient DB Design for a device reservation system?

    Hi,
    I have to design table structure for a device reservation system. The user can reserve any device for a period of time (start time and end time). 
    Based on the reserved devices
    1) I need to show on the UI if the device is reserved or available
    2) for any logged in user, to reserve, how do I validate and check all the devices and allow the user to reserve the device
    with minimal logic
    Each reservation for a particular time for a device may be present as one record, when the user is reserving we have to consider the entire set of records to arrive at a conclusion whether the device is reserved or free for that particular amount of time.
    How do we do this with minimal logic and what is best db/table design for this kind of system.

    You may have a Users/Customers table (contains users personal info)
    You may have a Devices table (contains info about devices (name, supplier and etc))
    You may have a reservation table that contains a userid + deviceid + startdate + end date+ quantity...
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Table Design Suggestions

    I would like to request some design assistance/recommendations. We are using Oracle 9i (soon to go to 10g) with both a Delphi Client/Server front end and a VS .Net Web Application. Here is the scenario:
    We have a contracts application used by the Air Force and they need to add much more detailed funding data about the contracts. Basically a contract can be funded by one or more funds types (imagine different checking accounts). These funds types can be broken out in a hierarchical manner. Here is an example:
    Parent Fund
       Child Fund1
          Child Fund 2
             Child Fund 3
    AFCEE
       AF BRAC Overhead
          Technical Assistance
          Program Management
       AF BRAC Project
          Base ABC  
          Base DEF  
          Base GHI  
       AF Restore Act
          ERPIMS  
          Technical Assistance
    Air Force  
       11WG
          AF O&M
             BA01
             BA02
          AF BRAC Project
             Base ABC
             Base DEF
             Base GHI
       ACC
          AF O&M
             BA01
             BA02
             BA03
             BA04
       AF BRAC Overhead
       AF BRAC Project
             Base ABC
             Base DEF
             Base GHIUsing the information above, Contract XYZ can receive Technical Assistance funding from the AFCEE/AF BRAC Overhead funding pool and also from the AFCEE/AF Restore Act funding pool.
    When the Project Manager enters the data, initially they may only know they are getting AFCEE funds and later on find out exactly what kind it is. Also Sr. Management is going to want reports that aggregate the dollars by fund type and as you can see in the example above, there are 3 AF BRAC Project funds types each with a different parent. I am going to meet to get a few more details on the Sr. Management report requirements. By the way, there are just under 3000 fund type combinations currently identified but it could easily go over 5000.
    I am considering two possible table designs for the lookup table to store this information.
    DESIGN 1
    Fund_Type_Seq          NUMBER          PK
    Fund_Type_Code          VARCHAR2(25)     Not Null
    Parent_Fund_Type_Code     VARCHAR2(25)     Null
    Fund_Type_Desc          VARCHAR2(500)     Null
    DESIGN 2
    Fund_Type_Seq          NUMBER          PK
    Fund_Type_Root          VARCHAR2(25)     Not Null
    Fund_Type_Child1     VARCHAR2(25)     Null
    Fund_Type_Child2     VARCHAR2(25)     Null
    Fund_Type_Child3     VARCHAR2(25)     Null
    DATA TABLE DESIGN (Design of table holding Fund Type data for a contract)
    Contract_Seq          NUMBER          PK
    Fund_Type_Seq          NUMBER          PK
    Funded_Dollars          NUMBER(12,2)     Null
    And a couple other columns always in data tables in our system.The reason for the DESIGN 2 is that from a UI perspective, just showing “AF BRAC Project” 3 times without showing its lineage (so to speak) will not be useful to the PM and I am not sure of how to display a fund types entire lineage using design 1 (Possibly using a tree view and using the Connect By Prior / Start With SQL command structure).
    So…Any suggestions, recommendations (and telling them that they are insane, while tempting, is unfortunately, not an option).
    Thanks
    Richard Anderson

    Thanks, I was leaning towards the first Design. What I was wondering about was exactly how to query the data. Basically we will have a Contract Table, the Contract_Funding table (a child to contract) and the VVL_Fund_Type table (the Design 1 table). The user will want to pick one or more fund_types as filters to the report. Here is one select statement I came up with (haven't tested it as there are no funding tables). Am I on the right track?
    Select c.contract_number,
           c.contract_obligated_amount,
           c.contract_obligated_date,
           ft.Fund_Type_Code,
           cft.funded_dollars
    from contract c,
         VVL_Fund_Type ft,
         Contract_Funding cft
    where c.contract_seq = cft.contract_seq
      and cft.funding_seq = ft.funding_seq
      and ft.fund_type_code in (SELECT fund_type
          FROM VVL_Fund_Type
          start with fund_type in (select vft.fund_type_code
                from vvl_fund_type vft
                where vft.Parent_Fund_Type_Code = 'AF O&M'
                connect by Parent_Fund_Type_Code = prior Fund_Type_Code)
                OR
                Fund_Type_Code = 'AF O&M')The 'AF O&M' may actually be a whole set of fund types in which case I would have to use an " in ('xyz, 'abc', etc) clause. The real problem will be if they view the AF O&M code associated with the 11WG as different from the AF O&M code associated with ACC. If that is the case (and I am meeting tomorrow to find out), I haven't a clue as to how to write the query other than maybe using a fund_type_seq in (123, 8378, 2828, 2987) clause.
    Thanks Richard Anderson

  • Work flow - user is not reciving mail,once CREDIT MEMO submits for approval

    Hi All,
    Please find the issue as below.
    User created the credit memo and submitted for approval. user is expecting the mail in his mail-box, once he submitted the credit memo for approval and same way once approver approved the credit memo, user is expecting mail such that credit memo has been approved.
    He informed that previously he is receiving the mails as expected.
    Now all of sudden he is not receiving mails.
    I have checked work flow mailer, mailer is up and running.
    I have gone through the wf_notifications table, here i can see that MAIL_STATUS column having value of "MAIL".
    even i have gone through WF_USERS table this particular user is existing and status is "ACTIVE".
    But user is not yet received any mail.
    Kindly some one help me to sort out this issue.
    Thanks in Advance.
    Edited by: user627525 on Jun 8, 2011 5:58 AM

    Thanks RK for your quick reply.
    I was gone through the details you have provided. every thing is fine as expected.
    Later i have checked workflow mailer, it was down, due to that notifications are not reached to users/customers.once it is up and running mail notifications sent to respective users successfully.
    Many Thanks.

  • Tables for Work flow levels in IMA11

    Dear Experts,
    Can any one help me out in finding the tables for WORK FLOW Approval Levels and where these tables(standard tables in SAP) are stored in? or can anyone give me the list of tables for workflow in Investment management in IMA11 for approval levels?
    Thanks,
    sanju..

    Hi Sanju,
    For IMA11, please refer the table IMAK.
    Hope it will be useful.  Appreciate with point if it is useful.
    thanks
    Vetrivelan

  • Is this the best design for asynchronous notifications (such as email)? Current design uses Web Site, Azure Service Bus Queue, Table Storage and Cloud Service Worker Role.

    I am asking for feedback on this design. Here is an example user story:
    As a group admin on the website I want to be notified when a user in my group uploads a file to the group.
    Easiest solution would be that in the code handling the upload, we just directly create an email message in there and send it. However, this seems like it isn't really the appropriate level of separation of concerns, so instead we are thinking to have a separate
    worker process which does nothing but send notifications. So, the website in the upload code handles receiving the file, extracting some metadata from it (like filename) and writing this to the database. As soon as it is done handling the file upload it then
    does two things: Writes the details of the notification to be sent (such as subject, filename, etc...) to a dedicated "notification" table and also creates a message in a queue which the notification sending worker process monitors. The entire sequence
    is shown in the diagram below.
    My questions are: Do you see any drawbacks in this design? Is there a better design? The team wants to use Azure Worker Roles, Queues and Table storage. Is it the right call to use these components or is this design unnecessarily complex? Quality attribute
    requirements are that it is easy to code, easy to maintain, easy to debug at runtime, auditable (history is available of when notifications were sent, etc...), monitor-able. Any other quality attributes you think we should be designing for?
    More info:
    We are creating a cloud application (in Azure) in which there are at least 2 components. The first is the "source" component (for example a UI / website) in which some action happens or some condition is met that triggers a second component or "worker"
    to perform some job. These jobs have details or metadata associated with them which we plan to store in Azure Table Storage. Here is the pattern we are considering:
    Steps:
    Condition for job met.
    Source writes job details to table.
    Source puts job in queue.
    Asynchronously:
    Worker accepts job from queue.
    Worker Records DateTimeStarted in table.
    Queue marks job marked as "in progress".
    Worker performs job.
    Worker updates table with details (including DateTimeCompleted).
    Worker reports completion to queue.
    Job deleted from queue.
    Please comment and let me know if I have this right, or if there is some better pattern. For example sake, consider the work to be "sending a notification" such as an email whose template fields are filled from the "details" mentioned in
    the pattern.

    Hi,
    Thanks for your posting.
    This development mode can exclude some errors, such as the file upload complete at the same time... from my experience, this is a good choice to achieve the goal.
    Best Regards,
    Jambor  
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Hi,When I submit the budget for approval, it is approved and base lined when we submit it for approval. It does not go in approval hierarchy. We want it to flow through approval hierarchy.

    Hi,When I submit the budget for approval, it is approved and base lined when we submit it for approval. It does not go in approval hierarchy. We want it to flow through approval hierarchy.

    Hi Amit,
    if I understand correctly, you just need for a particular object a tooltip to be showed.
    There is no such functionality hence you used the trick of using a hyperlink, which if clicked generates undesired behavior.
    Hyperlinks don't allow themselves to be disabled, therefore if you are using that workaround you must cope with that.
    I would suggest to create an Idea at [https://ideas.sap.com] for having in the properties of an object a tooltip, then post the link to the idea here and other users will vote if they like the idea.
    Thanks and regards,
    Simone

  • Pk index design for 500,000 row table

    I have 3 tables as following relation:
    http://www.visionfly.com/images/dgm.png
    Intinerary - (1:N) FlightItem - (1:N) CabinPrice
    DepCity, ArrCity, DepDate in Intinerary represent identity of one row in the table. I want to reduce space in FlightItem and Cabin, I add a field of flightId(autoIncrease) as pk of Intinerary. Also I add an index for DepCity, ArrCity, DepDate in Intinerary.
    FlightId and FlightNo is pk of FlightItem. FlightId is Fk of FlightItem. FlightId, FlightNo,Cabin,priceType is pk of CabinPrice. FlightId, FlightNo is Fk of CabinPrice.
    Interaray will keep about 10,000 rows.
    FlightItem will keep about 50,000 rows.
    CabinPrice will keep about 500,000 rows.
    These 3 tables can regard as a whole. There 2 method operations in them. One is
    select * from itinerary a, flightitem f, cabinprice c where a.flightId=f.flightId and f.flightId=c.flightId and f.flightNo=c.flightNo
    and a.depcity='zuh' and a.arrcity='sha' and a.depdate='2004-7-1'.
    It use index of Intinerary.
    There 100 times of select in 1 seconds in highest hits.
    Another operation is delete and add new one. I use cascade delete. delete where cause is the same as select. The highest hit is 50 operations in one minutes.
    I intent to use ejb cmp to control them. Is the good design for above performance request? Any suggestion will be appericated.
    Stephen

    this is current design base ms-sql. We are planning to move to Oracle. Ignore data type design.
    Stephen

  • Is there a  reference for the flows tables/views?

    Hi,
    for my own htmldb-forum I want to find the last login time of somebody, so I could determine which will be new forum messages for this user.
    Where can I find these informations? Is there a reference for the Flows tables and views?
    Bye,
    Jens

    heheh for learning purpose I been thinking of developing an app like what you have there.
    Is yours done ?
    Can we get have a look ?
    thanks

  • Table Designer third rule thick is not working for me.  Any suggestions?

    I am trying to turn the third rule in a four row table thick. I go into Table Designer and select Every 3rd Thick.  The others are all none.  The table is not responding to the command to make the third rule thick as I need it to be.  Does anyone have any suggestions?  Thank you.

    To remove table format overrides, you need to go to Table > Format > Custom Ruling and Shading, and set as follows:
    For more info, see page 171 of my book.
    -Matt
    Matt R. Sullivan
    co-author Publishing Fundamentals: Unstructured FrameMaker 11

  • For Approval Doduments table

    hello all,
    which table in SBO where i can find the documents for Approval?
    Please help.
    FIdel

    Hi,
    W means waiting for approval or pending.
    if you want to view all such documents, pls use these followings:
    for pending PO:
    select docnum, wddstatus from odrf where objtype = '22' and wddstatus = 'w'
    for pending A/P inv
    select docnum, wddstatus from odrf where objtype = '18' and wddstatus = 'w'
    for approved PO
    select docnum, wddstatus from odrf where objtype = '22' and wddstatus = 'y'
    for apporved A/P inv:
    select docnum, wddstatus from odrf where objtype = '18' and wddstatus = 'y'
    for rejected approval PO
    select docnum, wddstatus from odrf where objtype = '22' and wddstatus = 'n'
    for rejected approval A/P inv:
    select docnum, wddstatus from odrf where objtype = '18' and wddstatus = 'n'
    JimM

Maybe you are looking for

  • Using Document Filters with the Japanese character sets

    Not sure if this belongs here or on the Swing Topic but here goes: I have been requested to restrict entry in a JTextField to English alphaNumeric and Full-width Katakana. The East Asian language support also allows Hiragana and Half-width Katakana.

  • Calling Oracle store procedure from Crystal 11 command

    I need to call Oracle store procedure from Crystal Command. The Store proc has ref cursor. Is it possible. Can you post few examples? Also, is it possible to have multiple sql statements in a Crystal Command, when working with Oracle 10g? It is worki

  • How to view my dektop thru HDMI

    My macbook pro screen isn't working so I connect the computer via HDMI to the TV but all I can see is an extended display. How can I see my desktop in the computer by just clicking on the keyboard?

  • External xml file

    i am calling a function in flash varXml.Load("\\server\folder\filename") its showing error doesn't understand UNC path. Thanks in advance

  • Change stock level to zero

    Hello to all, I wanted to change stock level in SAP to 0.  This is for test purposes and replication of issue that I have.  Can anyone help?  Thanks. Regards.