Hallo  every one

Hallo I am  tring to write apcode to
2     Structuring
2.1     Overview
The application should be able to create BOD’s (bill of documents) using a drag & drop based UI to be able to built up the object relations between cross discipline objects. The possibility to attach single documents and bill of documents to the cross discipline structure (as items) has to be provided as well as the creation of material links for specific BOD items.
2.2     Application architecture
We will have to create a new SAP transaction (namespace /CENIT/). This transaction will call a module pool (also to be created in the /CENIT/ namespace and assigned to a new package). The module pool (dialog program) will be able to display a start screen (where it is possible to search for document structures) and a maintenance screen where the chosen structure can be created/enhanced/viewed. The main screen will use SAP Enjoy Controls techniques to display the data with a docking control, splitter control, tree control and ALV grid.
2.2.1     Data Structure
2.2.1.1     Input data
The input data is placed on the start screen. We will need here the entrance information for a document structure (document type, document number, document part, document version). In addition to this information, the document search help CV01 has to be assigned to the input information. It should also be possible to create a new ORM structure using a new document number.
2.2.1.2     Output data
The output will be displayed on the main screen. The main screen area will display a complete BOD explosion of the input. (Column Tree Control). We will need also 2 different areas where we will provide 2 ALV controls displaying document search / material search result data. Drag & drop behaviour has to be implemented between the tree display (BOD explosion ) and the ALV areas. When dragging a document from the ALV to the tree, it should be added as new item. When dragging a material to a certain node of the tree display, it should be added as material link to the corresponding document.
The header document of the BOD structure should have the document type ORM. This has to be checked before exploding the structure. The initial view of the tree structure will not display the exploded BOD. Only if the user is going to expand a certain node, the next level of the current BOD is displayed.
Following column informations should be provided in the tree view:
·     Document type
·     Document number
·     Document part
Document version
·     Document description
·     Document status
·     Linked material
The document search (ALV grid) – top right screen area has following search criteria:
·     Document number
·     Document type
·     Document part
·     Document version
·     Document description
·     Language
·     Owner
·     Document status
The document search ALV result will provide all DRAW-fields as columns.
The material search (ALV grid) – bottom right screen area has following search criteria:
·     Material number
·     Material industry sector
·     Material type
·     Material description
·     Plant
The material search ALV result will provide all MARA / MARC fields as columns.
Drag & drop behaviour / event handling / double click behaviour:
·     If a document info record is dragged from the result ALV grid to a specific tree node, there should come up a decision popup, asking if the document should be inserted as BOD item on the same level or underneath the dropped node.
·     If a material master is dragged from the result ALV to a specific tree node, this material should automatically generate a object link to the corresponding document info record.
·     If a document info record, which is BOD header is dragged to the tree, there should come up a decision popup, asking if only the stand-alone document has to be inserted as BOD item or if the complete structure has to be inserted.
·     The tree display has to be right-click sensitive (context menu), containing following functions:
o     Delete current item
o     Display document info record
·     Double-clicking the tree control or the corresponding ALV grid entry, the application has to be able to provide forward navigation to the document info record / material.
will not display the exploded BOD. Only if the user is going to expand a certain node, the next level of the current BOD is displayed.
Following column informations should be provided in the tree view:
·     Document type
·     Document number
·     Document part
Document version
·     Document description
·     Document status
·     Linked material
The document search (ALV grid) – top right screen area has following search criteria:
·     Document number
·     Document type
·     Document part
·     Document version
·     Document description
·     Language
·     Owner
·     Document status
The document search ALV result will provide all DRAW-fields as columns.
The material search (ALV grid) – bottom right screen area has following search criteria:
·     Material number
·     Material industry sector
·     Material type
·     Material description
·     Plant
The material search ALV result will provide all MARA / MARC fields as columns.
Drag & drop behaviour / event handling / double click behaviour:
·     If a document info record is dragged from the result ALV grid to a specific tree node, there should come up a decision popup, asking if the document should be inserted as BOD item on the same level or underneath the dropped node.
·     If a material master is dragged from the result ALV to a specific tree node, this material should automatically generate a object link to the corresponding document info record.
·     If a document info record, which is BOD header is dragged to the tree, there should come up a decision popup, asking if only the stand-alone document has to be inserted as BOD item or if the complete structure has to be inserted.
Thank you in advance .
Waiting for your reply.

> Is there a question in there somewhere?
> Regards,
> Rich Heilman
C'mon Rich.. the spec was cut & pasted and the question was the last line of the post ie
"Waiting for you reply"
I am pretty sure someone there is unwilling to spend time & do the coding..
~Suresh

Similar Messages

  • I want to check my addon compatabilities BEFORE I try to upgrade to Firefox 4 (without checking each and every one manually) How can I do this?

    Many people have posted frantic questions about problems downgrading from FF4 to FF3.6, because of incompatabilities with their Addons. I use a LOT of addons. I don't want to check each and every one of them manually for compatability. (And then repeat that in a few weeks, to see what's changed....) And I don't want to try upgrading to FF4 on spec, and then discover I need to downgrade because one or more of the addons I rely on doesn't work.
    How can I check the addon compatabilities WITHOUT actually upgrading?

    You can try the Is It Compatible? add-on which adds compatibility information to the add-ons manager - https://addons.mozilla.org/en-US/firefox/addon/is-it-compatible/

  • How can i schedule concurrent program for every one hour from back end

    Hi ,
    I want to schedule concurrent program for every one hour from back end .
    Example
    1) xyz is the concurrent program that should run for every one hour with a parameter 111 and the SAME concurrent program that
    should run every 2 hours with a different parameter like 222.
    I mean Conc prog should run for different parametrs with a different scheduling..
    Please guide me to solve the issue.
    Thanks in advance...
    Regards
    Narender B

    Hi ,
    I have used following code for scheduling the concurrent program from backend.
    declare
    l_request_id NUMBER;
    l_return_code boolean := FALSE;
    BEGIN
    fnd_global.apps_initialize(62991,54477,20003);
    l_return_code := FND_REQUEST.SET_OPTIONS ('YES');
    l_return_code :=fnd_request.set_repeat_options('16:36:00','','DAYS','START','','Y');
    l_request_id:=fnd_request.submit_request(application => 'xbol',
    program => 'NAPP_START_GENERATE_CHART_DATA',
    description => 'Processing chart ',
    start_time => SYSDATE,
    sub_request => FALSE,
    argument1 =>4000130957231588,
    argument2 => null
    COMMIT;
    dbms_output.put_line('Program has been submited and request id is '||l_request_id);
    END;
    Here the issue was concurrent program is completing with a warning like
    Resubmission of request 75588551 has been cancelled.
    FND_RESUB_PRIVATE.PROCESS_INCREMENT EXCEPTION: ORA-01403: no data found
    Resubmission of request 75588551 has been cancelled.
    FND_RESUB_PRIVATE.PROCESS_INCREMENT EXCEPTION: ORA-01403: no data found
    so i could not find the solution for this issue,please anybody guide me to solve this issue.
    Regards
    Narender B

  • Hello every one. Please let me know what is the best mouse to use in a Photoshop? Thank you very much. Alex.

    Hello every one. Please let me know what is the best mouse to use in a Photoshop? Thank you very much. Alex.

    My ArtZ II is on a Win2K supplemental computer. I think that the main reason that I keep it around is the 12 x 12 ArtZ II.
    Next workstation will probably force that comupter into a closet and my beloved ArtZ II will probably go with it...
    Even on my laptop out on the patio, if I have to do almost anything in PS, or Painter, I'll go grab my Intuos 2 and hook it up, even though it's a 9 x 12 and a bit big for the patio table (works fine on my various desktop situations though). I cannot be without my tablets, though I am not a fan of the Wacom mice that I have tried (2 still in the box). Best mouse is my Logitec cordless (hated its keyboard and got rid of it in a second), which has nice weight, the right feel for my hand and is just great. Still, I only use it for the duties that the Wacom is not the best at. If I open up PS, or Painter, the mouse sits idle.
    Good luck to the OP,
    Hunt

  • Why value returned by datasocket updates every one second?

    I am using labview object to retrieve modbus register value using datasocket. I configure the poll rate of Modbus to 0:00001 (1ms I think). I read the labview object every 250ms in a loop and store the data into a file. After reading the file, I found that the value changes every four data. It looks as if the software only reads the modbus register once every one second. Is it the way it works or is there anything wrong with my setting?
    I appreciate your help and look forward to your reply.
    Steven

    Hi Steven,
    I've modified the VI you sent to use the new DataSocket VI's, rather than the old compatibility VI's. These VI's should allow you to specify the update rate within the DataSocket URL. You would specify the update rate and deadband in the following way:
    opc:\\ServerName\OPCServer\ItemName?updaterate=100&deadband=0.7
    If you have any further questions, please post a reply.
    Regards,
    Kristi H
    National Instruments
    Attachments:
    datasockettest2.vi ‏32 KB

  • How do I delete hundreds of unread 7 unwanted mails with marking every one individually?

    How do I delete hundreds of unread & unwanted mails with marking every one individually?

    JJ Larsen wrote:
    Simply go to your Camera Roll.  Tap on the photo you want to delete.  When the next window opens, you will see a trash can in lower right hand corner of screen. Hit the trash can. Confirm your desire to delete.  It's as easy as that.
    What does that have to do with deleting email?

  • Hi every one if i connect wired headset to my new iPad it is not showing a headphone connected symbol .is it by default not visible or something happen thanks in advance

    Hi every one if i connect wired headset to my new iPad it is not showing a headphone connected symbol .is it by default not visible or something happen thanks in advance

    When you have kernel panics, the pertinent information is in the panic report.
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    In the Console window, select
              DIAGNOSTIC AND USAGE INFORMATION ▹ System Diagnostic Reports
    (not Diagnostic and Usage Messages) from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar.
    There is a disclosure triangle to the left of the list item. If the triangle is pointing to the right, click it so that it points down. You'll see a list of reports. A panic report has a name that begins with "Kernel" and ends in ".panic". Select the most recent one. The contents of the report will appear on the right. Use copy and paste to post the entire contents—the text, not a screenshot.
    If you don't see any reports listed, but you know there was a panic, you may have chosen Diagnostic and Usage Messages from the log list. Choose DIAGNOSTIC AND USAGE INFORMATION instead.
    In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.)
    Please don’t post other kinds of diagnostic report.
    I know the report is long, maybe several hundred lines. Please post all of it anyway.

  • XML Error Message for Every one hour in SXMB_MONI

    Hi All,
    I am getting XML error Message for every one hour in PI when I check in SXMB_MONI I can see this.
    Details Below
    Sender Componant : PI
    Sender Interface : SAPCCMS
    Reciever Interface/Reciever Componant : Both are empty.
    PI Version 7.1
    Can anybody help in this.
    Dayakar

    Hi!
    I was just searching this about this problem and found a post that might interest you.
    [urn:SAPCCMS;
    cheers

  • Hi every one can any one help i have a problem in importing java dump for

    hi every one can any one help i have a problem in importing java dump for solman 4.0 mssql 2005 sr3

    Hi wahed,
    Please elobrate question not clear.
    Regards,
    Shahed iqbal

  • FP-CTR-500 and Frequency Measurement: How to modify it to report the frequency (0-10 Hz) every one minute?

    How to modify "Frequency Measurement" to report the frequency every one minute?  
    The signal frequencies vary from 0 to 10 Hz (see the analog output plot and attached sample data file), so I want record the average frequency every one minute. 
    Software: Labview 8.5 
    Hardware: FP-CTR-500
    Program: "Frequency Measurement"  --build in and under "NI example finder", It was attached with this message. 
    Physical wiring: (1) The signal I want to measure to count input 1 (pins 2 and 18).  it is a pulse signal (range from 0 to 1 V, see the plot and attached data file). 
     (2) Wire Output 0 (pin 130 to gate 0 (pin 9).   Do com pins 26 and 30 need to wire together? 
    FP-CTR-5000 was set up in Max based on the program instructions. I have tried different gating pulse frequency, my readings are always "0". 
    Attachments:
    H2O_20130809.xlsx ‏18 KB
    Frequency Measurement.vi ‏35 KB

    CTR-500 high pulse is >=10V. Hence, it always read your pulse as low. With this low voltage pulse, you must use analog input module, and write a program to read pulse from analog level. You must also make sure that you pulse is not so narrow that cFP loop is not fast enough to capture voltage change.

  • I want to schedule a dbms_job to run for every one hour

    Hi Guys,
    I want to schedule a dbms_job(in oracle 10g) to run for every one hour. Can any one provide some idea on this.
    KLR

    Thanks for your reply, but I am getting the error below
    'ORA-06550: line 1, column 112:
    PLS-00103: Encountered the symbol "END" when expecting one of the following:
    := . ( @ % ;
    The symbol ";" was substituted for "END" to continue.
    ORA-06512: at "SYS.DBMS_JOB", line 82
    ORA-06512: at "SYS.DBMS_JOB", line 139
    ORA-06512: at line 7'
    can you please check this error and let me know how can I execute one package for every one hour and how to see whether the job is running every one hour or not.
    Thanks in advance.
    KLR.

  • Hows it going every one? I have a WRT54G V8.0 wireless ro...

    Hows it going every one? I have a WRT54G V8.0 wireless router, and I tried to update it's firmware earlier and I guess I failed miserably! The thing wont network, wont let me into thelinksys GUI toconfigure anything. But all the lights work... and it wont let me go into administration mode either to force the old firmware back on. I am really stuck so if anyone knows how to re-flash a router without the routers GUI or something similar, that would be of great help... thanks!
    -Stephen.

    there seems to be consistant issues with Linksys routers according to all the posts ive been reading for the past month while i try to fix my on and off again internet connection.  its becomming very annoying.  i have asked my cable company to replace my modem, which they did and that didn't even help.  last year i bought a new linksys router thinking it would solve my problem back then.  it did for a while, then my lap top wouldn't connect any, so i sent it into have it checked and it came back with no problems.  soooooooooo apparently, while i am connected to my neighbors open connection from his BELKIN ROUTER and even though the signal is very weak............amazingly enough!! i am still online while typing this.......funny eh?? WELL........it seems to me......that i guess i wont be buying linksys anything anymore.  Especially after spending hours on the help line (INDIA) trying to reset channels and reset the router box itself.  i give up.......i  have 2 pieces of crap routers for sale cheap......any takers?  dont waste your time

  • Hey every one ,i bought a new ipad 2 last month,i am not using it  so much but  sometimes it does respond,hang's up,all games and app come out of there folder . can you plz help me

    hey every one ,i bought a new ipad 2 last month,i am not using it  so much but  sometimes it does respond,hang's up,all games and app come out of there folder . can you plz help me.my email id is [email protected]

    Try a reset. Hold the Sleep and Home button down for about 10 seconds until you see the Apple logo. Ignore the red slider.
    Don't leave your email address on a public forum

  • Hi every one. Speed grade crashed while i was applying a mask

    Hi every one. Speed grade crashed while i was applying a mask and since then crashes straight after lounging it. What can I do ? Or is it a bug?

    Hi I reinstalled it with preferences unticked and it worked again.
    Model Name:    iMac
      Model Identifier:    iMac11,3
      Processor Name:    Intel Core i3
      Processor Speed:    3.2 GHz
      Number Of Processors:    1
      Total Number Of Cores:    2
      L2 Cache (per core):    256 KB
      L3 Cache:    4 MB
      Memory:    4 GB
      Processor Interconnect Speed:    5.86 GT/s
      Boot ROM Version:    IM112.0057.B00
      SMC Version (system):    1.59f2
      Serial Number (system):    W80296DJDB6
      Hardware UUID:    5095972F-34B0-5E84-8BD0-701245D32C2A

  • Hi! every one  ... i mine phone ettings cant be restore  its ask passcode am enter mine present mine old all passcode but they cant work  . if any one know solution mine problem plz rply . thanks regards

    hi! every one  ... imine phone settings cant be restore  its ask passcode am enter mine present mine old all passcode but they cant work  . if any one know solution mine problem plz rply . thanks regards

    Locked Out, Forgot Lock or Restrictions Passcode, or Need to Restore Your Device: Several Alternative Solutions
    1. iOS- Forgotten passcode or device disabled after entering wrong passcode
    2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    3. Restoring iPod touch after forgotten passcode
    4. What to Do If You've Forgotten Your iPhone's Passcode
    5. iOS- Understanding passcodes
    6. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
    7. iOS - Unable to update or restore
    Forgotten Restrictions Passcode Help
                iPad,iPod,iPod Touch Recovery Mode
    You will need to restore your device as New to remove a Restrictions passcode. Go through the normal process to restore your device, but when you see the options to restore as New or from a backup, be sure to choose New.
    You can restore from a backup if you have one from BEFORE you set the restrictions passcode.
    Also, see iTunes- Restoring iOS software.

Maybe you are looking for

  • How to show custom error message in WebADI Excel template?

    Hi, I've  created a custom Web ADI integrator and associated it with a 'Procedure' based custom interface. WebADI Interface API Returns is set to  "Error Message". I'm using  raise_application_error(-20001, "Actual Error Message") for invalid rows,bu

  • Not getting data for 1 field in ODS

    Hi BW Experts, I am loading the data from R/3 to BW.I have loaded the data through PSA.The data is available in New data field. After activating the ODS, for 1 field the data is not uploaded and in the report, the values are not displaying. I have ch

  • Can't Separate Libraries Anymore

    I have multiple libraries on the same computer for 4 different ipods and have had them for several months. Since the update all of the libraries now contain the exact same files and when I change one, they all change. I've tried un- and reinstalling

  • Flash not showing up

    First of all thank you in advance whomever may help me. Here's my issue: I am currently working on this site FiveStarTrumpet and I have a flash object at the very top of the page that will not show up. I have went and checked the page source and it's

  • RG23A register updation during excise invoice

    Dear SAP gurus, during excise invoice creation - J1IIN, when do RG23A part2 register get updated. regards, Praveen.