i am facing the problem while creating the DFD, can any one help me please ...

0 votes
asked May 18, 2017 in To be sorted by brahmaiah (200 points)
@startuml
SRC_FILE_NAME-right->STAGINGNONFUNGIBLETABLE1
SRC_FILE_NAME-right->PROJDEF1
SRC_FILE_NAME-down[hidden]->CONSTANT
CONSTANT-right->STAGINGNONFUNGIBLETABLE
-right->PROJDEF
@enduml
 
 at this time, DataFlow Diagram display Perfectly..
 
but  i tried the below code it's displaying ClassDiagram
 
@startuml
SRC_FILE_NAME-right->STAGINGNONFUNGIBLETABLE1
SRC_FILE_NAME-right->PROJDEF1
SRC_FILE_NAME-down[hidden]->CONSTANT
CONSTANT-right->STAGINGNONFUNGIBLETABLE
CONSTANT-right->PROJDEF
@enduml
 
 
could you please help me any one of you to DFD..
 
 

2 Answers

0 votes
answered May 18, 2017 by plantuml (295,000 points)
selected May 18, 2017 by brahmaiah
 
Best answer

You can also have:

@startuml
skinparam roundCorner 20
left to right direction
hide circle
hide empty members
SRC_FILE_NAME-->STAGINGNONFUNGIBLETABLE1
SRC_FILE_NAME-->PROJDEF1
CONSTANT-->STAGINGNONFUNGIBLETABLE
CONSTANT-->PROJDEF
@enduml

commented May 18, 2017 by brahmaiah (200 points)
Thank you so much...
0 votes
answered May 18, 2017 by plantuml (295,000 points)

At this point, I think that you should use the "left to right direction" feature.
It will probably give you better result that using -right-> arrow.

Example:

@startuml
left to right direction
SRC_FILE_NAME--->STAGINGNONFUNGIBLETABLE1
SRC_FILE_NAME-->PROJDEF1

CONSTANT-->STAGINGNONFUNGIBLETABLE
-->PROJDEF
@enduml


 

...